diff --git a/commands/gen-vocabs.rb b/commands/gen-vocabs.rb index a6e1483a..6c8c9fd7 100644 --- a/commands/gen-vocabs.rb +++ b/commands/gen-vocabs.rb @@ -30,7 +30,7 @@ def run end vocabs.each do |id, v| - next if v[:alias] + next if v[:alias] || v[:skip] puts "Generate lib/vocabs/#{id}.rb" @@ -39,23 +39,24 @@ def run File.open("lib/vocabs/#{id}.rb_p", 'w') { |f| f.write v[:patch] } cmd += " patch --patch-file lib/vocabs/#{id}.rb_p" end - cmd += " serialize --uri '#{v[:uri]}' --output-format vocabulary" + cmd += " serialize --uri '#{v[:uri]}' --output-format vocabulary --ordered" cmd += " --module-name #{v.fetch(:module_name, 'RDF::Vocab')}" cmd += " --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/vocabs/#{id}.rb_t" cmd += ' "' + v.fetch(:source, v[:uri]) + '"' puts " #{cmd}" begin - `#{cmd} && mv lib/vocabs/#{id}.rb_t lib/vocabs/#{id}.rb` + %x{#{cmd} && sed 's/\r//g' lib/vocabs/#{id}.rb_t > lib/vocabs/#{id}.rb} rescue require 'English' puts "Failed to load #{id}: #{$ERROR_INFO.message}" ensure - `rm -f lib/vocabs/#{id}.rb_t lib/vocabs/#{id}.rb_p` + %x{rm -f lib/vocabs/#{id}.rb_t lib/vocabs/#{id}.rb_p} end end end @@ -88,9 +89,9 @@ def self.env_for_site(site) view_context = view_context_for(site) { - items: Nanoc::ItemCollectionWithRepsView.new(site.items, view_context), - layouts: Nanoc::LayoutCollectionView.new(site.layouts, view_context), - config: Nanoc::ConfigView.new(site.config, view_context), + items: Nanoc::Core::ItemCollectionWithRepsView.new(site.items, view_context), + layouts: Nanoc::Core::LayoutCollectionView.new(site.layouts, view_context), + config: Nanoc::Core::ConfigView.new(site.config, view_context), } end end diff --git a/etc/vocabs_additional.yaml b/etc/vocabs_additional.yaml index 1e1eea31..51b79188 100644 --- a/etc/vocabs_additional.yaml +++ b/etc/vocabs_additional.yaml @@ -15,10 +15,6 @@ c4o: uri: "http://purl.org/spar/c4o/" source: "http://www.sparontologies.net/ontologies/c4o/source.ttl" -cert: - uri: "https://www.w3.org/ns/auth/cert#" - source: "http://www.w3.org/ns/auth/cert.n3" - co: uri: "http://purl.org/co/" source: "var/vocabs/collections.owl" @@ -31,10 +27,6 @@ ctag: uri: "http://commontag.org/ns#" source: "var/vocabs/ctag_2009-06-08.n3" -dbo: - uri: "http://dbpedia.org/ontology/" - source: "http://mappings.dbpedia.org/server/ontology/dbpedia.owl" - dbr: uri: "http://dbpedia.org/resource/" strict: false @@ -65,25 +57,25 @@ essglobal: uri: "http://purl.org/essglobal/standard/activities/" source: "http://www.maltas.org/ess/standard/activities.skos" strict: false - class_name: "ESSGLOBALActivities" + class_name: "ESSGlobalActivities" "essglobal_legalform": uri: "http://purl.org/essglobal/standard/legal-form/" source: "http://www.maltas.org/ess/standard/legal-form.skos" strict: false - class_name: "ESSGLOBALLegalform" + class_name: "ESSGlobalLegalform" "essglobal_qualifiers": uri: "http://purl.org/essglobal/standard/qualifiers/" source: "http://www.maltas.org/ess/standard/qualifiers.skos" strict: false - class_name: "ESSGLOBALQualifiers" + class_name: "ESSGlobalQualifiers" "essglobal_typeoflabour": uri: "http://purl.org/essglobal/standard/type-of-labour/" source: "http://www.maltas.org/ess/standard/type-of-labour.skos" strict: false - class_name: "ESSGLOBALTypeoflabour" + class_name: "ESSGlobalTypeoflabour" fabio: uri: "http://purl.org/spar/fabio/" @@ -111,9 +103,6 @@ profile: rov: uri: "http://www.w3.org/ns/regorg#" -sioct: - uri: "http://rdfs.org/sioc/types#" - vann: uri: "http://purl.org/vocab/vann/" source: "var/vocabs/vann.ttl" @@ -133,16 +122,17 @@ pentandra: uri: <%= "#{@config[:base_url]}#{@config[:company_root]}#" %> source: <%= "#{@config[:output_dir]}#{@config[:static_root]}#{@config[:company_root]}/index.html" %> strict: false + class_name: Pentandra "pentandra_blog": uri: <%= "#{@config[:base_url]}#{@config[:blog_root]}#" %> source: <%= "#{@config[:output_dir]}#{@config[:static_root]}#{@config[:blog_root]}/index.html" %> strict: false - class_name: PENTANDRABlog + class_name: PentandraBlog "pentandra_website": uri: <%= "#{@config[:base_url]}#" %> source: <%= "#{@config[:output_dir]}#{@config[:static_root]}/index.html" %> strict: false - class_name: PENTANDRAWebsite + class_name: PentandraWebsite ... diff --git a/layouts/blog/blogpost.erb b/layouts/blog/blogpost.erb index 543fd0b9..5cb65cfc 100644 --- a/layouts/blog/blogpost.erb +++ b/layouts/blog/blogpost.erb @@ -1,5 +1,5 @@ <% render('/default.*') do %> -
+

<%= @item[:title] %>

diff --git a/layouts/blog/note.erb b/layouts/blog/note.erb index b3f072e6..cce79ad6 100644 --- a/layouts/blog/note.erb +++ b/layouts/blog/note.erb @@ -1,5 +1,5 @@ <% render('/default.*') do %> -
+

<%= @item[:title] %>

diff --git a/layouts/partials/vocab_metadata.erb b/layouts/partials/vocab_metadata.erb index 1c2c5f45..aa30a8bd 100644 --- a/layouts/partials/vocab_metadata.erb +++ b/layouts/partials/vocab_metadata.erb @@ -1,5 +1,5 @@
    - <% vocabularies_for(group).each do |vocab| %> + <% vocabularies_for(category).each do |vocab| %>
  • <%= h vocab.fetch(:prefix) %>: <%= h vocab.fetch(:title) %>
    diff --git a/layouts/specifications/vocabulary.haml b/layouts/specifications/vocabulary.haml index 31dc85b7..2bc2d53e 100644 --- a/layouts/specifications/vocabulary.haml +++ b/layouts/specifications/vocabulary.haml @@ -13,7 +13,7 @@ %title = ont["rdfs:label"].first['@value'] %link{rel: "stylesheet", href: "/css/specifications.css"} - - pfx = RDF::Vocabulary.find(ont['@id']).__name__.split(':').last.downcase + - pfx = ont['vann:preferredNamespacePrefix']&.first['@value'] || RDF::Vocabulary.find(ont['@id']).__name__.split(':').last.downcase - pfxs = prefixes.inject([]) {|m, (k,v)| m << "#{k}: #{v}"}.join(' ') - typeof = ont['@type'].map {|t| RDF::URI(t).pname}.join(' ') %body{resource: ont['@id'], typeof: typeof, prefix: pfxs} diff --git a/lib/data_sources/vocabularies.rb b/lib/data_sources/vocabularies.rb index a4a5252d..31fc96c0 100644 --- a/lib/data_sources/vocabularies.rb +++ b/lib/data_sources/vocabularies.rb @@ -10,22 +10,43 @@ module DataSources class Vocabularies < Nanoc::DataSource identifier :vocabularies + class UnknownVocabularyPrefix < ::Nanoc::Core::Error + def initialize(prefix) + super("A vocabulary with the prefix “#{prefix}” (specified in the site's configuration file) was not found.") + end + end + def up - @voaf_metadata = - File.open('var/voaf_metadata.yaml') do |file| - YAML.safe_load(file.read, - filename: file.path, - permitted_classes: [Symbol]) - end + load_extra_metadata(@config[:extra_metadata]) + + local_vocabs = + LifePreserver::Vocab.constants + .map(&LifePreserver::Vocab.method(:const_get)) + .select { |constant| constant.is_a? Class } + register_vocabularies(local_vocabs, @config[:prefix_overrides]) + + if (categories = @config[:categories]) + prefixes = categories.values.flatten + RDF::Vocabulary.limit_vocabs(*prefixes.map(&:to_sym)) + end end + # Returns the collection of Vocabulary items, one per vocabulary prefix. + # + # @raise [UnknownVocabularyPrefix] if a vocabulary prefix specified in site config + # does not have a mapping to an {RDF::Vocabulary} class. + # @return [Enumerable] The collection of items. def items items = [] - @config[:prefixes_used].each do |group_name, group| - group.each do |prefix| - vocab = RDF::Vocabulary.find_by_prefix(prefix) - items << vocabulary_to_item(vocab, group_name) + @config.fetch(:categories, {}).each do |category, prefixes| + prefixes.each do |prefix| + # TODO: submit patch for RDF::Vocabulary to handle this edge case? + vocab = RDF::Vocabulary.vocab_map[prefix == 'rdf' ? :rdfv : prefix.to_sym] + raise UnknownVocabularyPrefix.new(prefix) unless vocab + + vocab_class = vocab.fetch(:class, RDF::Vocabulary.from_sym(vocab.fetch(:class_name).to_sym)) + items << vocabulary_to_item(prefix, vocab_class, category) end end @@ -34,14 +55,13 @@ def items protected - def vocabulary_to_item(vocab, group_name) - prefix = vocab.__prefix__ - metadata = extract_metadata_from(vocab) + def vocabulary_to_item(prefix, vocab, category) + metadata = find_vocab_metadata(vocab, @extra_metadata) attributes = { kind: 'vocabulary', prefix: prefix, - group: group_name, + category: category, namespace_uri: vocab.to_uri.value, is_hidden: true, } @@ -49,28 +69,22 @@ def vocabulary_to_item(vocab, group_name) new_item( '', attributes.merge(metadata), - File.join(File::SEPARATOR, group_name.to_s.parameterize, prefix.to_s.parameterize), + File.join(File::SEPARATOR, category.to_s.parameterize, prefix.to_s.parameterize), ) end - # @return [Hash] - def extract_metadata_from(vocab) - vocab_uri = vocab_uri(vocab) - metadata = Hash(@voaf_metadata[vocab_uri.to_sym] || @voaf_metadata[vocab_uri.split(%r{[/#]$})[0].to_sym]) - metadata[:vocab_uri] = vocab_uri - - if metadata.key?(:description) - metadata[:description] = cleanup(metadata[:description]) - end - - metadata - end - + # Clean up punctuation of given text. Start with capital letter + # and end with a full stop if it doesn't already end with some sort of + # terminal punctuation. def cleanup(text) text = text.upcase_first text[/[.!?]$/] ? text : text << '.' end + # Return the URI of the given vocabulary. + # + # @param vocab [RDF::Vocabulary] The vocabulary. + # @return [String] def vocab_uri(vocab) # HACK: until we have better handling of ontology definitions at a # different uri than the vocabulary namespace. @@ -80,6 +94,75 @@ def vocab_uri(vocab) vocab.ontology ? vocab.ontology.value : vocab.to_uri.value end end + + # Find the descriptive metadata of the given vocabulary, searching + # within the given (normalized) metadata. + # + # Provided metadata is expected to have the following form: + # + # @example YAML vocabulary metadata format + # vocab_uri: + # title: Vocab title + # description: Vocab description + # + # @param vocab [RDF::Vocabulary] The vocabulary. + # @return [Hash] Descriptive metadata for the given vocabulary, if found. + # Otherwise, an empty Hash. + def find_vocab_metadata(vocab, extra_metadata = {}) + vocab_uri = vocab_uri(vocab) + + metadata = Hash(extra_metadata[vocab_uri.to_sym] || extra_metadata[vocab_uri.split(%r{[/#]$})[0].to_sym]) + metadata[:vocab_uri] = vocab_uri + + if metadata.key?(:description) + metadata[:description] = cleanup(metadata[:description]) + end + + metadata + end + + # Load descriptive metadata for RDF vocabularies into the class. + # + # @note called by {#up} when the site is loading. + # @param metadata [Hash,String] the extra metadata. If a String, a + # relative path to a YAML file, which will be loaded. If Hash, is used + # directly as metadata. + # @return [Hash{Symbol=>Symbol}] the extra metadata. + def load_extra_metadata(metadata) + return if metadata.nil? || metadata.empty? + + @extra_metadata = + case metadata + when String + File.open(metadata) do |file| + YAML.safe_load(file.read, + filename: file.path, + permitted_classes: [Symbol]) + end + when Hash + metadata + end + end + + # Register local vocabularies with the Ruby RDF framework. + # + # Sets the vocabulary class name if specified in the {:prefix_overrides} + # key of the data source configuration. + # + # @note called by {#up} when the site is loading. + # + # @param vocabs [Array] Vocabulary classes to register. + # @param prefixes [Hash{Symbol=>String}] Optional prefixes with to register + # the vocabularies. + # + # @return [void] + def register_vocabularies(vocabs, prefixes = {}) + Array(vocabs).each do |vocab| + class_name = vocab.__name__.to_s.demodulize + prefix = prefixes[class_name.to_sym] || class_name.downcase + RDF::Vocabulary.register(prefix.to_sym, vocab, class_name: class_name) + end + end end end end diff --git a/lib/filters/rdf_distiller.rb b/lib/filters/rdf_distiller.rb index 9c798197..64c24a08 100644 --- a/lib/filters/rdf_distiller.rb +++ b/lib/filters/rdf_distiller.rb @@ -59,7 +59,7 @@ def run(_content, params = {}) repository = RDF::Repository.new - RDF::Reader.for(input.to_sym).new(+assigns[:content], options) { |reader| repository << reader } + RDF::Reader.for(input.to_sym).new(+assigns[:content], **options) { |reader| repository << reader } if repository.has_statement?(RDF::Statement(RDF::URI.new(base_uri), RDF.type, RDF::OWL.Ontology)) vocab = RDF::Vocabulary.find(base_uri) || RDF::Vocabulary.from_graph(repository, url: base_uri, class_name: prefix.to_s.upcase) @@ -76,10 +76,10 @@ def run(_content, params = {}) vocab.to_html(graph: repository, prefixes: prefixes, template: assigns[:layout][:filename]) else - repository.dump(output_format, options) + repository.dump(output_format, **options) end else - repository.dump(output_format, options) + repository.dump(output_format, **options) end end diff --git a/lib/helpers/vocabulary.rb b/lib/helpers/vocabulary.rb index 17b54fba..d8816e48 100644 --- a/lib/helpers/vocabulary.rb +++ b/lib/helpers/vocabulary.rb @@ -27,8 +27,8 @@ def prefix_mappings_for(*args) # Finds a vocabulary or vocabularies for the given name. # # @param [Array] args The vocabulary prefixes or prefix - # groups. If a group name, it should return the group. If a prefix, - # it should return a single vocabulary. + # categories. If a category name, it should return the entire category of + # vocabularies. If a prefix, it should return a single vocabulary. # # @return [Array] Any applicable items of kind +vocabulary+. def vocabularies_for(*args) @@ -37,7 +37,7 @@ def vocabularies_for(*args) Array(args).flatten.each do |arg| vocabularies_root = @config.fetch(:vocabularies_root) vocabs = @items.find_all(File.join(vocabularies_root, arg.to_s, '*')) - # Look for a single prefix if no group is found + # Look for a single prefix if no category is found vocabs = vocabs.present? ? vocabs : @items[File.join(vocabularies_root, '*', arg.to_s)] if vocabs.blank? diff --git a/lib/patches/vocabulary.rb b/lib/patches/vocabulary.rb index 411725a2..4ad06558 100644 --- a/lib/patches/vocabulary.rb +++ b/lib/patches/vocabulary.rb @@ -1,22 +1,66 @@ # frozen_string_literal: true require 'rdf' +require 'rdf/vocabulary' +require 'rdf/vocab' +require 'rdf/vocab/extensions' require 'active_support/core_ext/string/inflections' module RDF class Vocabulary class << self - # Override __prefix__ class method to have better prefixes for some of - # these longer vocabulary names. - def __prefix__ - __name__.demodulize.underscore.dasherize.to_sym + ## + # Return the vocabulary based on it's class_name symbol + # + # @param sym [Symbol] + # @return [RDF::Vocabulary] + alias_method :_orig_orig_from_sym, :from_sym + def from_sym(sym) + LifePreserver::Vocab.const_defined?(sym.to_sym) ? + LifePreserver::Vocab.const_get(sym.to_sym) : _orig_orig_from_sym(sym) end - def find_by_prefix(prefix) - vocab = prefix.to_sym == :rdf ? RDF::RDFV : RDF::Vocabulary.detect { |v| v.__name__ && v.__prefix__ == prefix.to_sym } - raise "Could not find vocabulary for prefix: #{prefix}" unless vocab - - vocab + ## + # Limits iteration over vocabularies to just those selected + # + # @example limit to set of vocabularies by symbol + # RDF::Vocabulary.limit_vocabs(:rdf, :rdfs, :schema) + # RDF::Vocabulary.find_term('http://schema.org/CreativeWork').pname + # # => 'schema:CreativeWork' + # + # @example limit to set of vocabularies by class name + # RDF::Vocabulary.limit_vocabs(RDF::RDFV, RDF::RDFS, RDF::Vocab::SCHEMA) + # RDF::Vocabulary.find_term('http://schema.org/CreativeWork').pname + # # => 'schema:CreativeWork' + # + # @param [Array] vocabs + # A list of vocabularies (symbols or classes) which may + # be returned by {Vocabulary.each}. Also limits + # vocabularies that will be inspeced for other methods. + # Set to nil, or an empty array to reset. + # @return [Array] + def limit_vocabs(*vocabs) + @vocabs = if Array(vocabs).empty? + nil + else + @classes_loaded = true + vocabs.map do |vocab| + case vocab + when :rdf, :rdfv + RDF::RDFV + when Symbol + if RDF::VOCABS.key?(vocab) + RDF.const_get(RDF::VOCABS[vocab][:class_name].to_sym) + elsif RDF::Vocab::VOCABS.key?(vocab) + RDF::Vocab.const_get(RDF::Vocab::VOCABS[vocab][:class_name].to_sym) + else + @vocab_map.dig(vocab, :class) || LifePreserver::Vocab.const_get(@vocab_map.dig(vocab, :class_name).to_sym) + end + when Class + vocab + end + end.compact + end end end end diff --git a/lib/vocabs/adms.rb b/lib/vocabs/adms.rb index 8922dcfc..906ff295 100644 --- a/lib/vocabs/adms.rb +++ b/lib/vocabs/adms.rb @@ -2,172 +2,168 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/adms# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class ADMS < RDF::StrictVocabulary - # end - class ADMS < RDF::StrictVocabulary("http://www.w3.org/ns/adms#") +module LifePreserver::Vocab + ADMS = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/adms#")) do # Ontology definition ontology :"http://www.w3.org/ns/adms#", - comment: %(This file specifies the set of RDF classes and properties used in ADMS).freeze, - "dc:abstract": "ADMS is a profile of DCAT, used to describe semantic assets (or just 'Assets'), defined as highly reusable metadata (e.g. xml schemata, generic data models) and reference data (e.g. code lists, taxonomies, dictionaries, vocabularies) that are used for eGovernment system development.".freeze, - "dc:creator": [term( - "foaf:homepage": "http://andrea-perego.name/".freeze, - "foaf:name": "Andrea Perego".freeze, - "rdfs:seeAlso": "http://andrea-perego.name/foaf/#me".freeze, - "schema:affiliation": term( - "foaf:homepage": "http://ies.jrc.ec.europa.eu/DE".freeze, - "foaf:name": "European Commission, Joint Research Centre ".freeze - ) + comment: "This file specifies the set of RDF classes and properties used in ADMS".freeze, + "http://purl.org/dc/terms/abstract": "ADMS is a profile of DCAT, used to describe semantic assets (or just 'Assets'), defined as highly reusable metadata (e.g. xml schemata, generic data models) and reference data (e.g. code lists, taxonomies, dictionaries, vocabularies) that are used for eGovernment system development.".freeze, + "http://purl.org/dc/terms/creator": [term( + "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": "http://makxdekkers.com/".freeze, - "foaf:name": "Makx Dekkers".freeze, - "rdfs:seeAlso": "http://makxdekkers.com/makxdekkers.rdf#me".freeze + "http://schema.org/affiliation": term( + "http://xmlns.com/foaf/0.1/homepage": "http://ies.jrc.ec.europa.eu/DE".freeze, + "http://xmlns.com/foaf/0.1/name": "European Commission, Joint Research Centre ".freeze + ).freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://andrea-perego.name/foaf/#me".freeze, + "http://xmlns.com/foaf/0.1/homepage": "http://andrea-perego.name/".freeze, + "http://xmlns.com/foaf/0.1/name": "Andrea Perego".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://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 )], - "dc:description": "This is the RDF encoding of the Asset Description Metadata Schema, originally \n developed under the European Union's ISA Programme and further developed by the W3C Government Linked Data Working Group.\n It re-uses terms from several other vocabularies, notably Dublin Core, with elements of SKOS, FOAF and more. ".freeze, - "dc:modified": ["2013-05-24".freeze, "2013-09-16".freeze, "2013-12-21".freeze, "2015-07-22".freeze], - "dc:title": "Asset Description Metadata Schema (ADMS)".freeze, - "foaf:maker": term( - "foaf:homepage": "http://www.w3.org/2011/gld/".freeze, - "foaf:name": "Government Linked Data WG, based on output from the ADMS Working Group".freeze - ), + "http://purl.org/dc/terms/description": "This is the RDF encoding of the Asset Description Metadata Schema, originally \n developed under the European Union's ISA Programme and further developed by the W3C Government Linked Data Working Group.\n It re-uses terms from several other vocabularies, notably Dublin Core, with elements of SKOS, FOAF and more. ".freeze, + "http://purl.org/dc/terms/modified": ["2013-05-24".freeze, "2013-09-16".freeze, "2013-12-21".freeze, "2015-07-22".freeze], + "http://purl.org/dc/terms/title": "Asset Description Metadata Schema (ADMS)".freeze, "http://purl.org/vocab/vann/preferredNamespacePrefix": "adms".freeze, "http://purl.org/vocab/vann/preferredNamespaceUri": "http://www.w3.org/ns/adms#".freeze, - "http://purl.org/vocommons/voaf#specializes": "dcat:".freeze, + "http://purl.org/vocommons/voaf#specializes": "http://www.w3.org/ns/dcat#".freeze, + "http://www.w3.org/2007/05/powder-s#describedby": "http://www.w3.org/TR/vocab-adms".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, based on output from the ADMS Working Group".freeze + ), label: "Asset Description Metadata Schema (ADMS)".freeze, - type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "owl:Ontology".freeze], - "wdrs:describedby": "http://www.w3.org/TR/vocab-adms".freeze + type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "http://www.w3.org/2002/07/owl#Ontology".freeze] # Class definitions term :Asset, - comment: %(An Asset is an abstract entity that reflects the intellectual content of the asset and represents those characteristics of the asset that are independent of its physical embodiment. This abstract entity combines the FRBR entities work \(a distinct intellectual or artistic creation\) and expression \(the intellectual or artistic realization of a work\). Assets can be versioned. Every time the intellectual content of an asset changes, the result is considered to be a new asset that can be linked to previous and next versions of the Asset. The physical embodiment of an Asset is called an Asset Distribution. A particular Asset may have zero or more Asset Distributions..).freeze, - "dc:identifier": "adms:Asset".freeze, + comment: "An Asset is an abstract entity that reflects the intellectual content of the asset and represents those characteristics of the asset that are independent of its physical embodiment. This abstract entity combines the FRBR entities work (a distinct intellectual or artistic creation) and expression (the intellectual or artistic realization of a work). Assets can be versioned. Every time the intellectual content of an asset changes, the result is considered to be a new asset that can be linked to previous and next versions of the Asset. The physical embodiment of an Asset is called an Asset Distribution. A particular Asset may have zero or more Asset Distributions..".freeze, + "http://purl.org/dc/terms/identifier": "adms:Asset".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "Asset".freeze, - subClassOf: "dcat:Dataset".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/dcat#Dataset".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AssetDistribution, - comment: %(An Asset Distribution represents a particular physical embodiment of an Asset, which is an example of the FRBR entity manifestation \(the physical embodiment of an expression of a work\). An Asset Distribution is typically a downloadable computer file \(but in principle it could also be a paper document\) that implements the intellectual content of an Asset. A particular Asset Distribution is associated with one and only one Asset, while all Distributions of an Asset share the same intellectual content in different physical formats. Asset Distributions themselves are not versioned.).freeze, - "dc:identifier": "adms:AssetDistribution".freeze, + comment: "An Asset Distribution represents a particular physical embodiment of an Asset, which is an example of the FRBR entity manifestation (the physical embodiment of an expression of a work). An Asset Distribution is typically a downloadable computer file (but in principle it could also be a paper document) that implements the intellectual content of an Asset. A particular Asset Distribution is associated with one and only one Asset, while all Distributions of an Asset share the same intellectual content in different physical formats. Asset Distributions themselves are not versioned.".freeze, + "http://purl.org/dc/terms/identifier": "adms:AssetDistribution".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "Asset Distribution".freeze, - subClassOf: "dcat:Distribution".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/dcat#Distribution".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AssetRepository, - comment: %(An Asset Repository is a system or service that provides facilities for storage and maintenance of descriptions of Assets and Asset Distributions, and functionality that allows users to search and access these descriptions. An Asset Repository will typically contain descriptions of several Assets and related Asset Distributions.).freeze, - "dc:identifier": "adms:AssetRepository".freeze, + comment: "An Asset Repository is a system or service that provides facilities for storage and maintenance of descriptions of Assets and Asset Distributions, and functionality that allows users to search and access these descriptions. An Asset Repository will typically contain descriptions of several Assets and related Asset Distributions.".freeze, + "http://purl.org/dc/terms/identifier": "adms:AssetRepository".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "Asset Repository".freeze, - subClassOf: "dcat:Catalog".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/ns/dcat#Catalog".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Identifier, - comment: %(This class is based on the UN/CEFACT Identifier complex type defined in See Section 5.8 of Core Components Data Type Catalogue Version 3.1 \(http://www.unece.org/fileadmin/DAM/cefact/codesfortrade/CCTS/CCTS-DTCatalogueVersion3p1.pdf\) In RDF this is expressed using the following properties: - the content string should be provided using skos:notation, datatyped with the identifier scheme \(inclduing the version number if appropriate\); - use dcterms:creator to link to a class describing the agency that manages the identifier scheme or adms:schemaAgency to provide the name as a literal. Although not part of the ADMS conceptual model, it may be useful to provide further properties to the Identifier class such as dcterms:created to provide the date on which the identifier was issued.).freeze, - "dc:identifier": "adms:Identifier".freeze, + comment: "This class is based on the UN/CEFACT Identifier complex type defined in See Section 5.8 of Core Components Data Type Catalogue Version 3.1 (http://www.unece.org/fileadmin/DAM/cefact/codesfortrade/CCTS/CCTS-DTCatalogueVersion3p1.pdf) In RDF this is expressed using the following properties: - the content string should be provided using skos:notation, datatyped with the identifier scheme (inclduing the version number if appropriate); - use dcterms:creator to link to a class describing the agency that manages the identifier scheme or adms:schemaAgency to provide the name as a literal. Although not part of the ADMS conceptual model, it may be useful to provide further properties to the Identifier class such as dcterms:created to provide the date on which the identifier was issued.".freeze, + "http://purl.org/dc/terms/identifier": "adms:Identifier".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "Identifier".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :identifier, - comment: %(adms:identifier is used to link any resource to an instance of adms:Identifier which is its range. N.B. it is not appropriate to use dcterms:identifer to link to the Identifier class as its range is rdfs:Literal. ADMS uses this to provide any identifier for the Asset.).freeze, - "dc:identifier": "adms:identifier".freeze, + comment: "adms:identifier is used to link any resource to an instance of adms:Identifier which is its range. N.B. it is not appropriate to use dcterms:identifer to link to the Identifier class as its range is rdfs:Literal. ADMS uses this to provide any identifier for the Asset.".freeze, + "http://purl.org/dc/terms/identifier": "adms:identifier".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "identifier".freeze, - range: "adms:Identifier".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/adms#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 :includedAsset, - comment: %(Links to an Asset that is contained in the Asset being described, e.g. when there are several vocabularies defined in a single document.).freeze, - "dc:identifier": "adms:includedAsset".freeze, - domain: "adms:Asset".freeze, + comment: "Links to an Asset that is contained in the Asset being described, e.g. when there are several vocabularies defined in a single document.".freeze, + domain: "http://www.w3.org/ns/adms#Asset".freeze, + "http://purl.org/dc/terms/identifier": "adms:includedAsset".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "included asset".freeze, - range: "adms:Asset".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/adms#Asset".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :interoperabilityLevel, - comment: %(Links an Asset to its adms:InteroperabilityLevel. Since this is encoded using skos:Concept, that is the defined range for this property.).freeze, - "dc:identifier": "adms:interoperabilityLevel".freeze, - domain: "adms:Asset".freeze, + comment: "Links an Asset to its adms:InteroperabilityLevel. Since this is encoded using skos:Concept, that is the defined range for this property.".freeze, + domain: "http://www.w3.org/ns/adms#Asset".freeze, + "http://purl.org/dc/terms/identifier": "adms:interoperabilityLevel".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "interoperability level".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 :last, - comment: %(A link to the current or latest version of the Asset.).freeze, - "dc:identifier": "adms:last".freeze, + comment: "A link to the current or latest version of the Asset.".freeze, + "http://purl.org/dc/terms/identifier": "adms:last".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "last".freeze, - subPropertyOf: "xhv:last".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/1999/xhtml/vocab#last".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :next, - comment: %(A link to the next version of the Asset.).freeze, - "dc:identifier": "adms:next".freeze, + comment: "A link to the next version of the Asset.".freeze, + "http://purl.org/dc/terms/identifier": "adms:next".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "next".freeze, - subPropertyOf: "xhv:next".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/1999/xhtml/vocab#next".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :prev, - comment: %(A link to the previous version of the Asset.).freeze, - "dc:identifier": "adms:prev".freeze, + comment: "A link to the previous version of the Asset.".freeze, + "http://purl.org/dc/terms/identifier": "adms:prev".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "prev".freeze, - subPropertyOf: "xhv:prev".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/1999/xhtml/vocab#prev".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :representationTechnique, - comment: %(Links an adms:AssetDistribution to a skos:Concept that is its adms:RepresentationTechnique.).freeze, - "dc:identifier": "adms:representationTechnique".freeze, + comment: "Links an adms:AssetDistribution to a skos:Concept that is its adms:RepresentationTechnique.".freeze, + "http://purl.org/dc/terms/identifier": "adms:representationTechnique".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "representation technique".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 :sample, - comment: %(Links to a sample of an Asset \(which is itself an Asset\).).freeze, - "dc:identifier": "adms:sample".freeze, - domain: "adms:Asset".freeze, + comment: "Links to a sample of an Asset (which is itself an Asset).".freeze, + domain: "http://www.w3.org/ns/adms#Asset".freeze, + "http://purl.org/dc/terms/identifier": "adms:sample".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "sample".freeze, - range: "adms:Asset".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/adms#Asset".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :schemeAgency, - comment: %(The name of the agency responsible for issuing the identifier).freeze, - "dc:identifier": "adms:schemeAgency".freeze, - domain: "adms:Identifier".freeze, + comment: "The name of the agency responsible for issuing the identifier".freeze, + domain: "http://www.w3.org/ns/adms#Identifier".freeze, + "http://purl.org/dc/terms/identifier": "adms:schemeAgency".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "scheme agency".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 :status, - comment: %(Links to the status of the Asset or Asset Distribution in the context of a particular workflow process. Since Status is defined using a skos:Concept, that is the defined range for this property.).freeze, - "dc:identifier": "adms:status".freeze, + comment: "Links to the status of the Asset or Asset Distribution in the context of a particular workflow process. Since Status is defined using a skos:Concept, that is the defined range for this property.".freeze, + "http://purl.org/dc/terms/identifier": "adms:status".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "status".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 :supportedSchema, - comment: %(A schema according to which the Asset Repository can provide data about its content, e.g. ADMS).freeze, - "dc:identifier": "adms:supportedSchema".freeze, + comment: "A schema according to which the Asset Repository can provide data about its content, e.g. ADMS".freeze, + "http://purl.org/dc/terms/identifier": "adms:supportedSchema".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "supported schema".freeze, - range: "adms:Asset".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/adms#Asset".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :translation, - comment: %(Links Assets that are translations of each other.).freeze, - "dc:identifier": "adms:translation".freeze, + comment: "Links Assets that are translations of each other.".freeze, + "http://purl.org/dc/terms/identifier": "adms:translation".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "translation".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 :versionNotes, - comment: %(A description of changes between this version and the previous version of the Asset.).freeze, - "dc:identifier": "adms:versionNotes".freeze, + comment: "A description of changes between this version and the previous version of the Asset.".freeze, + "http://purl.org/dc/terms/identifier": "adms:versionNotes".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-adms".freeze, label: "version 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] end end diff --git a/lib/vocabs/article.rb b/lib/vocabs/article.rb index df3da61e..536b72d2 100644 --- a/lib/vocabs/article.rb +++ b/lib/vocabs/article.rb @@ -2,49 +2,45 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://ogp.me/ns/article# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class ARTICLE < RDF::Vocabulary - # end - class ARTICLE < RDF::Vocabulary("http://ogp.me/ns/article#") +module LifePreserver::Vocab + ARTICLE = Class.new(RDF::Vocabulary("http://ogp.me/ns/article#")) do # Property definitions property :author, - comment: %(Writers of the article.).freeze, - isDefinedBy: "article:".freeze, + comment: "Writers of the article.".freeze, + isDefinedBy: "http://ogp.me/ns/article#".freeze, label: "author".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 :expiration_time, - comment: %(When the article is out of date after.).freeze, - isDefinedBy: "article:".freeze, + comment: "When the article is out of date after.".freeze, + isDefinedBy: "http://ogp.me/ns/article#".freeze, label: "expiration time".freeze, - range: "ogc:date_time_str".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#date_time_str".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :modified_time, - comment: %(When the article was last changed.).freeze, - isDefinedBy: "article:".freeze, + comment: "When the article was last changed.".freeze, + isDefinedBy: "http://ogp.me/ns/article#".freeze, label: "modified time".freeze, - range: "ogc:date_time_str".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#date_time_str".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :published_time, - comment: %(When the article was first published.).freeze, - isDefinedBy: "article:".freeze, + comment: "When the article was first published.".freeze, + isDefinedBy: "http://ogp.me/ns/article#".freeze, label: "published time".freeze, - range: "ogc:date_time_str".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#date_time_str".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :section, - comment: %(A high-level section name. E.g. Technology).freeze, - isDefinedBy: "article:".freeze, + comment: "A high-level section name. E.g. Technology".freeze, + isDefinedBy: "http://ogp.me/ns/article#".freeze, label: "section".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 :tag, - comment: %(Tag words associated with this article.).freeze, - isDefinedBy: "article:".freeze, + comment: "Tag words associated with this article.".freeze, + isDefinedBy: "http://ogp.me/ns/article#".freeze, label: "tag".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 end end diff --git a/lib/vocabs/biro.rb b/lib/vocabs/biro.rb index fb4c9ec6..6de54a91 100644 --- a/lib/vocabs/biro.rb +++ b/lib/vocabs/biro.rb @@ -2,133 +2,119 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/spar/biro/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class BIRO < RDF::StrictVocabulary - # end - class BIRO < RDF::StrictVocabulary("http://purl.org/spar/biro/") +module LifePreserver::Vocab + BIRO = Class.new(RDF::StrictVocabulary("http://purl.org/spar/biro/")) do # Ontology definition ontology :"http://purl.org/spar/biro/", - comment: [%(The Bibliographic Reference Ontology \(BiRO\) is an ontology meant to define bibliographic records, bibliographic references, and their compilation into bibliographic collections and bibliographic lists, respectively. - -**URL:** http://purl.org/spar/biro - -**Creators**: [David Shotton]\(http://orcid.org/0000-0001-5506-523X\), [Silvio Peroni]\(http://orcid.org/0000-0003-0530-4305\) - -**License:** [Creative Commons Attribution 4.0 International]\(https://creativecommons.org/licenses/by/4.0/legalcode\) - -**Website:** http://www.sparontologies.net/ontologies/biro - -**Cite as:** Di Iorio, A., Nuzzolese, A. G., Peroni, S., Shotton, D., Vitali, F. \(2014\). Describing bibliographic references in RDF. In Proceedings of 4th Workshop on Semantic Publishing \(SePublica 2014\). http://ceur-ws.org/Vol-1155/paper-05.pdf).freeze, %(This ontology is available at http://purl.org/spar/biro, and uses the namespace prefix biro.).freeze], - "dc11:creator": ["David Shotton".freeze, "Silvio Peroni".freeze], - "dc11:date": "2013-05-11".freeze, - "dc11:description": ["BiRO, the Bibliographic Reference Ontology, is an ontology structured according to the FRBR model to define bibliographic records (as subclasses of frbr:Work) and bibliographic references (as subclasses of frbr:Expression), and their compilations into bibliographic collections such as library catalogues, and into bibliographic lists such as reference lists in journal articles, respectively.\n\nIt provides a logical system for relating an individual bibliographic reference, such as appears in the reference list of a published article (which may lack the title of the cited article, the full names of the listed authors, or indeed the full list of authors):\n- to the full bibliographic record for that cited article, which in addition to missing reference fields may also include the name of the publisher, and the ISSN or ISBN of the publication;\n- to collections of bibliographic records such as library catatlogues; and\n- to bibliographic lists, such as reference lists.".freeze, "biro:biro.png".freeze], - "dc11:rights": "This work is distributed under a Creative Commons Attribution License (http://creativecommons.org/licenses/by/3.0/).".freeze, - "dc11:title": "BiRO, the Bibliographic Reference Ontology".freeze, - "owl:imports": ["http://purl.org/co".freeze, "http://purl.org/spar/frbr".freeze], - "owl:priorVersion": "https://svn.code.sf.net/p/sempublishing/code/BiRO/2012-07-03-biro-1_1.owl".freeze, - "owl:versionIRI": "biro:2013-05-11".freeze, - "owl:versionInfo": "1.1.1".freeze, - type: "owl:Ontology".freeze + comment: ["The Bibliographic Reference Ontology (BiRO) is an ontology meant to define bibliographic records, bibliographic references, and their compilation into bibliographic collections and bibliographic lists, respectively.\n\n**URL:** http://purl.org/spar/biro\n\n**Creators**: [David Shotton](http://orcid.org/0000-0001-5506-523X), [Silvio Peroni](http://orcid.org/0000-0003-0530-4305)\n\n**License:** [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/legalcode)\n\n**Website:** http://www.sparontologies.net/ontologies/biro\n\n**Cite as:** Di Iorio, A., Nuzzolese, A. G., Peroni, S., Shotton, D., Vitali, F. (2014). Describing bibliographic references in RDF. In Proceedings of 4th Workshop on Semantic Publishing (SePublica 2014). http://ceur-ws.org/Vol-1155/paper-05.pdf".freeze, "This ontology is available at http://purl.org/spar/biro, and uses the namespace prefix biro.".freeze], + "http://purl.org/dc/elements/1.1/creator": ["David Shotton".freeze, "Silvio Peroni".freeze], + "http://purl.org/dc/elements/1.1/date": "2013-05-11".freeze, + "http://purl.org/dc/elements/1.1/description": ["BiRO, the Bibliographic Reference Ontology, is an ontology structured according to the FRBR model to define bibliographic records (as subclasses of frbr:Work) and bibliographic references (as subclasses of frbr:Expression), and their compilations into bibliographic collections such as library catalogues, and into bibliographic lists such as reference lists in journal articles, respectively.\n\nIt provides a logical system for relating an individual bibliographic reference, such as appears in the reference list of a published article (which may lack the title of the cited article, the full names of the listed authors, or indeed the full list of authors):\n- to the full bibliographic record for that cited article, which in addition to missing reference fields may also include the name of the publisher, and the ISSN or ISBN of the publication;\n- to collections of bibliographic records such as library catatlogues; and\n- to bibliographic lists, such as reference lists.".freeze, "http://purl.org/spar/biro/biro.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/3.0/).".freeze, + "http://purl.org/dc/elements/1.1/title": "BiRO, the Bibliographic Reference Ontology".freeze, + "http://www.w3.org/2002/07/owl#imports": ["http://purl.org/co".freeze, "http://purl.org/spar/frbr".freeze], + "http://www.w3.org/2002/07/owl#priorVersion": "https://svn.code.sf.net/p/sempublishing/code/BiRO/2012-07-03-biro-1_1.owl".freeze, + "http://www.w3.org/2002/07/owl#versionIRI": "http://purl.org/spar/biro/2013-05-11".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.1.1".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :BibliographicCollection, - comment: %(A collection of bibliographic records, each of which references a publication \(or a work in preparation for publication\). Examples of bibliographic collections include a collection of the bibliographic records of all the publications that a single individual has authored, or a collection of those bibliographic records to be included in a research paper, where they are expressed as a reference list.).freeze, - "dc11:description": "A bibliographic collection is composed only of items containing bibliographic records. Moreover, it cannot be part of other bibliographic collections, and it is realized only by bibliographic lists. ".freeze, + comment: "A collection of bibliographic records, each of which references a publication (or a work in preparation for publication). Examples of bibliographic collections include a collection of the bibliographic records of all the publications that a single individual has authored, or a collection of those bibliographic records to be included in a research paper, where they are expressed as a reference list.".freeze, + "http://purl.org/dc/elements/1.1/description": "A bibliographic collection is composed only of items containing bibliographic records. Moreover, it cannot be part of other bibliographic collections, and it is realized only by bibliographic lists. ".freeze, label: "bibliographic collection".freeze, subClassOf: ["http://purl.org/co/Set".freeze, "http://purl.org/vocab/frbr/core#Work".freeze, term( - allValuesFrom: "biro:BibliographicList".freeze, + allValuesFrom: "http://purl.org/spar/biro/BibliographicList".freeze, onProperty: "http://purl.org/vocab/frbr/core#realization".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "biro:BibliographicRecord".freeze, + allValuesFrom: "http://purl.org/spar/biro/BibliographicRecord".freeze, onProperty: "http://purl.org/co/element".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( allValuesFrom: term( - "owl:complementOf": "biro:BibliographicCollection".freeze, - type: "owl:Class".freeze - ), + "http://www.w3.org/2002/07/owl#complementOf": "http://purl.org/spar/biro/BibliographicCollection".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze + ).freeze, onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - type: "owl:Restriction".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 :BibliographicList, - comment: %(An ordered list of bibliographic items, each of which contains a bibliographic reference.).freeze, - "dc11:description": "A bibliographic list is composed only of items containing bibliographic references. Moreover, it is always a realization of a bibliographic collection.".freeze, + comment: "An ordered list of bibliographic items, each of which contains a bibliographic reference.".freeze, + "http://purl.org/dc/elements/1.1/description": "A bibliographic list is composed only of items containing bibliographic references. Moreover, it is always a realization of a bibliographic collection.".freeze, label: "bibliographic list".freeze, subClassOf: ["http://purl.org/co/List".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, term( - allValuesFrom: "biro:BibliographicCollection".freeze, + allValuesFrom: "http://purl.org/spar/biro/BibliographicCollection".freeze, onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "biro:BibliographicReference".freeze, + allValuesFrom: "http://purl.org/spar/biro/BibliographicReference".freeze, onProperty: "http://purl.org/co/element".freeze, - type: "owl:Restriction".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 :BibliographicRecord, - comment: %(A record that uniquely describes a particular textual or data publication \(or a work in preparation for publication\). Each bibliographic record is a set of entities describing aspects of the referenced work, including, for example, but not restricted to: authors, title, journal, publication year, DOI, ISSN, publisher and copyright information, or, in the case of a data publication: creators, title, version, archive, publication year, DOI or other identifier\). The FRBR expression of a bibliographic record is a bibliographic reference, which usually contains only a sub-set of these entities, ordered in a particular way that corresponds to the house style of the publication in which it occurs.).freeze, - "dc11:description": "A bibliographic record is realized only through bibliographic references.".freeze, + comment: "A record that uniquely describes a particular textual or data publication (or a work in preparation for publication). Each bibliographic record is a set of entities describing aspects of the referenced work, including, for example, but not restricted to: authors, title, journal, publication year, DOI, ISSN, publisher and copyright information, or, in the case of a data publication: creators, title, version, archive, publication year, DOI or other identifier). The FRBR expression of a bibliographic record is a bibliographic reference, which usually contains only a sub-set of these entities, ordered in a particular way that corresponds to the house style of the publication in which it occurs.".freeze, + "http://purl.org/dc/elements/1.1/description": "A bibliographic record is realized only through bibliographic references.".freeze, label: "bibliographic record".freeze, subClassOf: ["http://purl.org/co/Set".freeze, "http://purl.org/vocab/frbr/core#Work".freeze, term( - allValuesFrom: "biro:BibliographicReference".freeze, + allValuesFrom: "http://purl.org/spar/biro/BibliographicReference".freeze, onProperty: "http://purl.org/vocab/frbr/core#realization".freeze, - type: "owl:Restriction".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 :BibliographicReference, - comment: %(An expression of a bibliographic record in a specific format, that references a particular textual or data publication \(or a work in preparation for publication\). Each bibliographic reference is a list of items containing entities that describe aspects of the referenced work - for example authors, title, journal, publication year - selected from the bibliographic record. Note that because different journal styles may require omission of elements of the bibliographic record in references included in a paper's reference list \(e.g. the title, the identifier, the names of the eighth and subsequent authors\), and because errors can be introduced when an author creates a bibliographic reference, the bibliographic reference to a published work may not be a complete or fully accurate expression of the information contained within the authoritative bibliographic record for that work.).freeze, - "dc11:description": "A bibliographic reference is a realization of a bibliographic record. Moreover, it can contain only items referring to elements contained by the bibliographic record it realizes.".freeze, + comment: "An expression of a bibliographic record in a specific format, that references a particular textual or data publication (or a work in preparation for publication). Each bibliographic reference is a list of items containing entities that describe aspects of the referenced work - for example authors, title, journal, publication year - selected from the bibliographic record. Note that because different journal styles may require omission of elements of the bibliographic record in references included in a paper's reference list (e.g. the title, the identifier, the names of the eighth and subsequent authors), and because errors can be introduced when an author creates a bibliographic reference, the bibliographic reference to a published work may not be a complete or fully accurate expression of the information contained within the authoritative bibliographic record for that work.".freeze, + "http://purl.org/dc/elements/1.1/description": "A bibliographic reference is a realization of a bibliographic record. Moreover, it can contain only items referring to elements contained by the bibliographic record it realizes.".freeze, label: "bibliographic reference".freeze, subClassOf: ["http://purl.org/co/List".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, term( - allValuesFrom: "biro:BibliographicRecord".freeze, + allValuesFrom: "http://purl.org/spar/biro/BibliographicRecord".freeze, onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( allValuesFrom: term( - allValuesFrom: "biro:BibliographicRecord".freeze, + allValuesFrom: "http://purl.org/spar/biro/BibliographicRecord".freeze, onProperty: "http://purl.org/co/elementOf".freeze, - type: "owl:Restriction".freeze - ), + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ).freeze, onProperty: "http://purl.org/co/element".freeze, - type: "owl:Restriction".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 :LibraryCatalogue, - comment: %(A catalogue of the bibliographic holdings of a library.).freeze, + comment: "A catalogue of the bibliographic holdings of a library.".freeze, label: "library catalogue".freeze, - subClassOf: "biro:BibliographicCollection".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/biro/BibliographicCollection".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReferenceList, - comment: %(A list used to describe the bibliography of a research paper, a journal article, a book, a book chapter or similar publication.).freeze, + comment: "A list used to describe the bibliography of a research paper, a journal article, a book, a book chapter or similar publication.".freeze, label: "reference list".freeze, - subClassOf: "biro:BibliographicList".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/biro/BibliographicList".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :isReferencedBy, - comment: %(The relation between a publication and the bibliographic record or bibliographic reference describing it.).freeze, + comment: "The relation between a publication and the bibliographic record or bibliographic reference describing it.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, label: "is referenced by".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("biro:BibliographicRecord".freeze, "biro:BibliographicReference".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/biro/BibliographicRecord".freeze, "http://purl.org/spar/biro/BibliographicReference".freeze) ), - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :references, - comment: %(The relation between a bibliographic record or a bibliographic reference and the publication being referenced.).freeze, + comment: "The relation between a bibliographic record or a bibliographic reference and the publication being referenced.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("biro:BibliographicRecord".freeze, "biro:BibliographicReference".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/biro/BibliographicRecord".freeze, "http://purl.org/spar/biro/BibliographicReference".freeze) ), - inverseOf: "biro:isReferencedBy".freeze, + inverseOf: "http://purl.org/spar/biro/isReferencedBy".freeze, label: "references".freeze, range: "http://purl.org/vocab/frbr/core#Endeavour".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze end end diff --git a/lib/vocabs/c4o.rb b/lib/vocabs/c4o.rb index 802894f2..5e080bf8 100644 --- a/lib/vocabs/c4o.rb +++ b/lib/vocabs/c4o.rb @@ -2,211 +2,185 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/spar/c4o/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class C4O < RDF::StrictVocabulary - # end - class C4O < RDF::StrictVocabulary("http://purl.org/spar/c4o/") +module LifePreserver::Vocab + C4O = Class.new(RDF::StrictVocabulary("http://purl.org/spar/c4o/")) do # Ontology definition ontology :"http://purl.org/spar/c4o/", - comment: %(The Citation Counting and Context Characterisation Ontology \(C4O\) is an ontology that permits the number of in-text citations of a cited source to be recorded, together with their textual citation contexts, along with the number of citations a cited entity has received globally on a particular date. - -**URL:** http://purl.org/spar/c4o - -**Creators**: [David Shotton]\(http://orcid.org/0000-0001-5506-523X\), [Silvio Peroni]\(http://orcid.org/0000-0003-0530-4305\) - -**License:** [Creative Commons Attribution 4.0 International]\(https://creativecommons.org/licenses/by/4.0/legalcode\) - -**Website:** http://www.sparontologies.net/ontologies/c4o - -**Cite as:** Di Iorio, A., Nuzzolese, A. G., Peroni, S., Shotton, D., Vitali, F. \(2014\). Describing bibliographic references in RDF. In Proceedings of 4th Workshop on Semantic Publishing \(SePublica 2014\). http://ceur-ws.org/Vol-1155/paper-05.pdf).freeze, - "dc11:creator": ["David Shotton".freeze, "Silvio Peroni".freeze], - "dc11:date": "2018-06-22".freeze, - "dc11:description": ["C4O, the Citation Counting and Context Characterization Ontology (C4O) allows the characterization of bibliographic citations in terms of their number and their context.\n\nIt provides the ontological structures to permit the number of in-text citations of a cited source (i.e. the number of in-text reference pointers to a single reference in the citing article's reference list) to be recorded, and also the number of citations a cited entity has received globally, as determined by a bibliographic information resource such as Google Scholar, Scopus or Web of Knowledge on a particular date.\n\nMoreover, it enables ontological descriptions of the context within the citing document in which an in-text reference pointer appears, and permits that context to be related to relevant textual passages in the cited document.\n".freeze, "c4o:CitationCounting%20module.png".freeze], - "dc11:rights": "This work is distributed under a Creative Commons Attribution 4.0 International license (https://creativecommons.org/licenses/by/4.0/legalcode).".freeze, - "dc11:title": "C4O, the Citation Counting and Context Characterization Ontology".freeze, - "owl:imports": "http://purl.org/spar/biro".freeze, - "owl:priorVersion": "c4o:2013-05-11".freeze, - "owl:versionIRI": "c4o:2018-06-22".freeze, - "owl:versionInfo": "1.2".freeze, - type: "owl:Ontology".freeze + comment: "The Citation Counting and Context Characterisation Ontology (C4O) is an ontology that permits the number of in-text citations of a cited source to be recorded, together with their textual citation contexts, along with the number of citations a cited entity has received globally on a particular date.\n\n**URL:** http://purl.org/spar/c4o\n\n**Creators**: [David Shotton](http://orcid.org/0000-0001-5506-523X), [Silvio Peroni](http://orcid.org/0000-0003-0530-4305)\n\n**License:** [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/legalcode)\n\n**Website:** http://www.sparontologies.net/ontologies/c4o\n\n**Cite as:** Di Iorio, A., Nuzzolese, A. G., Peroni, S., Shotton, D., Vitali, F. (2014). Describing bibliographic references in RDF. In Proceedings of 4th Workshop on Semantic Publishing (SePublica 2014). http://ceur-ws.org/Vol-1155/paper-05.pdf".freeze, + "http://purl.org/dc/elements/1.1/creator": ["David Shotton".freeze, "Silvio Peroni".freeze], + "http://purl.org/dc/elements/1.1/date": "2018-06-22".freeze, + "http://purl.org/dc/elements/1.1/description": ["C4O, the Citation Counting and Context Characterization Ontology (C4O) allows the characterization of bibliographic citations in terms of their number and their context.\n\nIt provides the ontological structures to permit the number of in-text citations of a cited source (i.e. the number of in-text reference pointers to a single reference in the citing article's reference list) to be recorded, and also the number of citations a cited entity has received globally, as determined by a bibliographic information resource such as Google Scholar, Scopus or Web of Knowledge on a particular date.\n\nMoreover, it enables ontological descriptions of the context within the citing document in which an in-text reference pointer appears, and permits that context to be related to relevant textual passages in the cited document.\n".freeze, "http://purl.org/spar/c4o/CitationCounting%20module.png".freeze], + "http://purl.org/dc/elements/1.1/rights": "This work is distributed under a Creative Commons Attribution 4.0 International license (https://creativecommons.org/licenses/by/4.0/legalcode).".freeze, + "http://purl.org/dc/elements/1.1/title": "C4O, the Citation Counting and Context Characterization Ontology".freeze, + "http://www.w3.org/2002/07/owl#imports": "http://purl.org/spar/biro".freeze, + "http://www.w3.org/2002/07/owl#priorVersion": "http://purl.org/spar/c4o/2013-05-11".freeze, + "http://www.w3.org/2002/07/owl#versionIRI": "http://purl.org/spar/c4o/2018-06-22".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.2".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :BibliographicInformationSource, - comment: %(A source of information about bibliographic citations, such as Google Scholar, Web of Science or Scopus.).freeze, + comment: "A source of information about bibliographic citations, such as Google Scholar, Web of Science or Scopus.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/spar/c4o/GlobalCitationCount".freeze, "http://purl.org/spar/c4o/InTextReferencePointer".freeze, "http://purl.org/spar/c4o/SingleLocationPointerList".freeze], label: "bibliographic information source".freeze, - "owl:disjointWith": ["c4o:GlobalCitationCount".freeze, "c4o:InTextReferencePointer".freeze, "c4o:SingleLocationPointerList".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GlobalCitationCount, - comment: %(The number of times a work has been cited globally, as determined from a particular bibliographic information source on a particular date.).freeze, + comment: "The number of times a work has been cited globally, as determined from a particular bibliographic information source on a particular date.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://purl.org/spar/c4o/InTextReferencePointer".freeze, "http://purl.org/spar/c4o/SingleLocationPointerList".freeze], label: "global citation count".freeze, - "owl:disjointWith": ["c4o:InTextReferencePointer".freeze, "c4o:SingleLocationPointerList".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :InTextReferencePointer, - comment: %(The in-text reference pointer is a textual element, usually embedded at the end of a phrase or sentence within the text of a document, that denotes a specific bibliographic reference present in the reference list of that document. For example, if the item in the reference list is: - -4. Ko AI, Reis MG, Ribeiro Dourado CM, Johnson WD Jr, Riley LW \(1999\). Urban epidemic of severe leptospirosis in Brazil. Salvador Leptospirosis Study Group. Lancet 354: 820-825. - -the in-text reference pointer to this paper in a journal article may be manifested in a number of ways: - -Numerically, for example by using the numeral 4 in superscript or between square brackets, thus: "[4]". - -Or by use of the author names \(or the first author's name plus et al.\) and the publication year in parentheses, thus: "\(Ko et al., 1999\)". - -Or, less commonly, by the use of a code, e.g. by specifying the first surname letter of the first three author of the cited work followed by the last two digits of the year of publication, this string of characters being enclosed within square brackets, thus: "[KRR99]". - -If reference pointers are aggregated, e.g. "[4, 5, 6-9]", they may be described by means of the class c4o:SingleLocationPointerList.).freeze, - "dc11:description": ["An in-text reference pointer is a textual device denoting a single bibliographic reference that is embedded in the text of a document within the context of a particular sentence.".freeze, "c4o:InTextReferencePointer%20module.png".freeze], + comment: "The in-text reference pointer is a textual element, usually embedded at the end of a phrase or sentence within the text of a document, that denotes a specific bibliographic reference present in the reference list of that document. For example, if the item in the reference list is: \n\n4. Ko AI, Reis MG, Ribeiro Dourado CM, Johnson WD Jr, Riley LW (1999). Urban epidemic of severe leptospirosis in Brazil. Salvador Leptospirosis Study Group. Lancet 354: 820-825.\n\nthe in-text reference pointer to this paper in a journal article may be manifested in a number of ways:\t\n\nNumerically, for example by using the numeral 4 in superscript or between square brackets, thus: \"[4]\".\n\nOr by use of the author names (or the first author's name plus et al.) and the publication year in parentheses, thus: \"(Ko et al., 1999)\". \n\nOr, less commonly, by the use of a code, e.g. by specifying the first surname letter of the first three author of the cited work followed by the last two digits of the year of publication, this string of characters being enclosed within square brackets, thus: \"[KRR99]\".\n\nIf reference pointers are aggregated, e.g. \"[4, 5, 6-9]\", they may be described by means of the class c4o:SingleLocationPointerList.".freeze, + "http://purl.org/dc/elements/1.1/description": ["An in-text reference pointer is a textual device denoting a single bibliographic reference that is embedded in the text of a document within the context of a particular sentence.".freeze, "http://purl.org/spar/c4o/InTextReferencePointer%20module.png".freeze], + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/c4o/SingleLocationPointerList".freeze, label: "in-text reference pointer".freeze, - "owl:disjointWith": "c4o:SingleLocationPointerList".freeze, subClassOf: ["http://purl.org/vocab/frbr/core#Expression".freeze, term( - cardinality: "1".freeze, - onProperty: "c4o:hasContext".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#onClass": "http://purl.org/spar/biro/BibliographicReference".freeze, + "http://www.w3.org/2002/07/owl#qualifiedCardinality": "1".freeze, + onProperty: "http://purl.org/spar/c4o/denotes".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "c4o:denotes".freeze, - "owl:onClass": "http://purl.org/spar/biro/BibliographicReference".freeze, - "owl:qualifiedCardinality": "1".freeze, - type: "owl:Restriction".freeze + cardinality: "1".freeze, + onProperty: "http://purl.org/spar/c4o/hasContext".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 :InTextReferencePointerList, - comment: %(A list containing only in-text reference pointers denoting the specific bibliographic references to which the list pertains.).freeze, - "dc11:description": "An in-text reference pointer list can only contain in-text reference pointer list items, and it always pertains to one or more bibliographic references.".freeze, + comment: "A list containing only in-text reference pointers denoting the specific bibliographic references to which the list pertains.".freeze, + "http://purl.org/dc/elements/1.1/description": "An in-text reference pointer list can only contain in-text reference pointer list items, and it always pertains to one or more bibliographic references.".freeze, label: "in-text reference pointer list".freeze, subClassOf: ["http://purl.org/co/List".freeze, term( - allValuesFrom: "c4o:InTextReferencePointerListItem".freeze, + allValuesFrom: "http://purl.org/spar/c4o/InTextReferencePointerListItem".freeze, onProperty: "http://purl.org/co/item".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "c4o:pertainsTo".freeze, + onProperty: "http://purl.org/spar/c4o/pertainsTo".freeze, someValuesFrom: "http://purl.org/spar/biro/BibliographicReference".freeze, - type: "owl:Restriction".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 :InTextReferencePointerListItem, - comment: %(This class describes all the list items that must be used in the context of an in-text reference pointer list.).freeze, - "dc11:description": "An in-text reference pointer list item can contain only a single in-text reference pointer.\n\nNote that, as specified through the hasKey assertion, such a list cannot contain more than one item containing the same in-text reference pointer entity.".freeze, + comment: "This class describes all the list items that must be used in the context of an in-text reference pointer list.".freeze, + "http://purl.org/dc/elements/1.1/description": "An in-text reference pointer list item can contain only a single in-text reference pointer.\n\nNote that, as specified through the hasKey assertion, such a list cannot contain more than one item containing the same in-text reference pointer entity.".freeze, label: "in-text reference pointer list item".freeze, subClassOf: ["http://purl.org/co/ListItem".freeze, term( - allValuesFrom: "c4o:InTextReferencePointer".freeze, + allValuesFrom: "http://purl.org/spar/c4o/InTextReferencePointer".freeze, onProperty: "http://purl.org/co/itemContent".freeze, - type: "owl:Restriction".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 :SingleLocationPointerList, - comment: %(An in-text reference pointer list that pertains to all the in-text reference pointers to two or more references occurring at a single location in the text of the citing work.).freeze, - "dc11:description": "A single location pointer list pertains to two or more references occurring at a single location in the text of the citing work - e.g. \"[3,4,9]\" or \"[7-12]\".".freeze, + comment: "An in-text reference pointer list that pertains to all the in-text reference pointers to two or more references occurring at a single location in the text of the citing work.".freeze, + "http://purl.org/dc/elements/1.1/description": "A single location pointer list pertains to two or more references occurring at a single location in the text of the citing work - e.g. \"[3,4,9]\" or \"[7-12]\".".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/c4o/SingleReferencePointerList".freeze, label: "single location pointer list".freeze, - "owl:disjointWith": "c4o:SingleReferencePointerList".freeze, - subClassOf: ["c4o:InTextReferencePointerList".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, term( + subClassOf: ["http://purl.org/spar/c4o/InTextReferencePointerList".freeze, "http://purl.org/vocab/frbr/core#Expression".freeze, term( cardinality: "1".freeze, - onProperty: "c4o:hasContext".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/spar/c4o/hasContext".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "2".freeze, - onProperty: "c4o:pertainsTo".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/spar/c4o/pertainsTo".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 :SingleReferencePointerList, - comment: %(An in-text reference pointer list that pertains to exactly one bibliographic reference.).freeze, - "dc11:description": "A single reference pointer list pertains only to one bibliographic reference, being a list of all the in-text reference pointers to that single reference to be found in the citing work.\n\nNote that this semantic constraint is handled by the combined use of a particular restriction of this class, i.e. that the list pertains to exactly one owl:Thing, and that the following SWRL rule applies:\n\nc4o:InTextReferencePointerList(?l), c4o:denotes(?p, ?r), swan:item(?l, ?i), swan:itemContent(?i, ?p) -> c4o:pertainsTo(?l, ?r)".freeze, + comment: "An in-text reference pointer list that pertains to exactly one bibliographic reference.".freeze, + "http://purl.org/dc/elements/1.1/description": "A single reference pointer list pertains only to one bibliographic reference, being a list of all the in-text reference pointers to that single reference to be found in the citing work.\n\nNote that this semantic constraint is handled by the combined use of a particular restriction of this class, i.e. that the list pertains to exactly one owl:Thing, and that the following SWRL rule applies:\n\nc4o:InTextReferencePointerList(?l), c4o:denotes(?p, ?r), swan:item(?l, ?i), swan:itemContent(?i, ?p) -> c4o:pertainsTo(?l, ?r)".freeze, label: "single reference pointer list".freeze, - subClassOf: ["c4o:InTextReferencePointerList".freeze, term( + subClassOf: ["http://purl.org/spar/c4o/InTextReferencePointerList".freeze, term( cardinality: "1".freeze, - onProperty: "c4o:pertainsTo".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/spar/c4o/pertainsTo".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 :denotes, - comment: %(A property used to assert the connection between an in-text reference pointer and the bibliographic reference it points to.).freeze, - domain: "c4o:InTextReferencePointer".freeze, - inverseOf: "c4o:isDenotedBy".freeze, + comment: "A property used to assert the connection between an in-text reference pointer and the bibliographic reference it points to.".freeze, + domain: "http://purl.org/spar/c4o/InTextReferencePointer".freeze, + inverseOf: "http://purl.org/spar/c4o/isDenotedBy".freeze, label: "denotes".freeze, range: "http://purl.org/spar/biro/BibliographicReference".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasContent, - comment: %(It is used to specify the textual content of a particular FRBR expression.).freeze, + comment: "It is used to specify the textual content of a particular FRBR expression.".freeze, domain: "http://purl.org/vocab/frbr/core#Expression".freeze, label: "has content".freeze, - range: "rdfs:Literal".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasContext, - comment: %(This property is used to indicate the textual context \(e.g. a sentence or a paragraph\) of a particular in-text reference pointer, this context providing the rhetorical motivation for the existence of that citation.).freeze, - "dc11:description": "Any FRBR expression that constitutes the range of this property can have at most one particular literal textual content specified through the property c4o:hasContent.".freeze, - domain: "c4o:InTextReferencePointer".freeze, + comment: "This property is used to indicate the textual context (e.g. a sentence or a paragraph) of a particular in-text reference pointer, this context providing the rhetorical motivation for the existence of that citation.".freeze, + domain: "http://purl.org/spar/c4o/InTextReferencePointer".freeze, + "http://purl.org/dc/elements/1.1/description": "Any FRBR expression that constitutes the range of this property can have at most one particular literal textual content specified through the property c4o:hasContent.".freeze, label: "has context".freeze, range: term( intersectionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( maxCardinality: "1".freeze, - onProperty: "c4o:hasContent".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/spar/c4o/hasContent".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 ), - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasGlobalCitationFrequency, - comment: %(A property linking a publication entity to the property c40:GlobalCitationCount that specify how many times a work has been cited by others, according to a particular information source on a particular date.).freeze, + comment: "A property linking a publication entity to the property c40:GlobalCitationCount that specify how many times a work has been cited by others, according to a particular information source on a particular date.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, label: "has global citation frequency".freeze, - range: "c4o:GlobalCitationCount".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/spar/c4o/GlobalCitationCount".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasGlobalCountDate, - comment: %(The date on which the global citation count of the cited entity was recorded from a named bibliographic information source.).freeze, - domain: "c4o:GlobalCitationCount".freeze, + comment: "The date on which the global citation count of the cited entity was recorded from a named bibliographic information source.".freeze, + domain: "http://purl.org/spar/c4o/GlobalCitationCount".freeze, label: "has global count date".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 :hasGlobalCountSource, - comment: %(A property linking the property c40:GlobalCitationCount to the bibliographic information source providing the global citation count information for a particular publication on a particular date.).freeze, - domain: "c4o:GlobalCitationCount".freeze, + comment: "A property linking the property c40:GlobalCitationCount to the bibliographic information source providing the global citation count information for a particular publication on a particular date.".freeze, + domain: "http://purl.org/spar/c4o/GlobalCitationCount".freeze, label: "has global count source".freeze, - range: "c4o:BibliographicInformationSource".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/spar/c4o/BibliographicInformationSource".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasGlobalCountValue, - comment: %(An integer defining the value of the global citation count of a cited entity recorded from a named bibliographic information source on a particular date.).freeze, - domain: "c4o:GlobalCitationCount".freeze, + comment: "An integer defining the value of the global citation count of a cited entity recorded from a named bibliographic information source on a particular date.".freeze, + domain: "http://purl.org/spar/c4o/GlobalCitationCount".freeze, label: "has global count value".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 :hasInTextCitationFrequency, - comment: %(This property allows one to specify how many separate in-text reference pointers exist within the text of a citing document that all denote the same single bibliographic reference to a cited document \(i.e how many distinct textual contexts exist within the citing document from which a citation is made to a particular document\). ).freeze, + comment: "This property allows one to specify how many separate in-text reference pointers exist within the text of a citing document that all denote the same single bibliographic reference to a cited document (i.e how many distinct textual contexts exist within the citing document from which a citation is made to a particular document). ".freeze, domain: "http://purl.org/spar/biro/BibliographicReference".freeze, label: "has in text citation frequency".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 :isDenotedBy, - comment: %(A property used to assert the connection between a bibliographic reference and the in-text reference pointer that points to it.).freeze, + comment: "A property used to assert the connection between a bibliographic reference and the in-text reference pointer that points to it.".freeze, domain: "http://purl.org/spar/biro/BibliographicReference".freeze, label: "is denoted by".freeze, - range: "c4o:InTextReferencePointer".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/spar/c4o/InTextReferencePointer".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isRelevantTo, - comment: %(A property allowing one FRBR expression to be declared to be of rhetorical relevance to another, for instance that the textual context of a particular in-text reference pointer in one document is relevant to a section of text within the published document that is referenced by the bibliographic reference denoted by the in-text reference pointer, and vice versa that the converse relevance also exists.).freeze, + comment: "A property allowing one FRBR expression to be declared to be of rhetorical relevance to another, for instance that the textual context of a particular in-text reference pointer in one document is relevant to a section of text within the published document that is referenced by the bibliographic reference denoted by the in-text reference pointer, and vice versa that the converse relevance also exists.".freeze, domain: "http://purl.org/vocab/frbr/core#Expression".freeze, label: "is relevant to".freeze, range: "http://purl.org/vocab/frbr/core#Expression".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze] + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :pertainsTo, - comment: %(The property linking an in-text reference pointer list to the bibliographic reference or references denoted by the in-text reference pointers within that list.).freeze, - domain: "c4o:InTextReferencePointerList".freeze, + comment: "The property linking an in-text reference pointer list to the bibliographic reference or references denoted by the in-text reference pointers within that list.".freeze, + domain: "http://purl.org/spar/c4o/InTextReferencePointerList".freeze, label: "pertains to".freeze, range: "http://purl.org/spar/biro/BibliographicReference".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze end end diff --git a/lib/vocabs/cert.rb b/lib/vocabs/cert.rb deleted file mode 100644 index 8ffeab22..00000000 --- a/lib/vocabs/cert.rb +++ /dev/null @@ -1,12 +0,0 @@ -# -*- encoding: utf-8 -*- -# frozen_string_literal: true -# This file generated automatically using rdf vocabulary format from https://www.w3.org/ns/auth/cert# -require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class CERT < RDF::StrictVocabulary - # end - class CERT < RDF::StrictVocabulary("https://www.w3.org/ns/auth/cert#") - end -end diff --git a/lib/vocabs/co.rb b/lib/vocabs/co.rb index fb429ad9..3edeb4ea 100644 --- a/lib/vocabs/co.rb +++ b/lib/vocabs/co.rb @@ -2,212 +2,208 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/co/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class CO < RDF::StrictVocabulary - # end - class CO < RDF::StrictVocabulary("http://purl.org/co/") +module LifePreserver::Vocab + CO = Class.new(RDF::StrictVocabulary("http://purl.org/co/")) do # Ontology definition ontology :"http://purl.org/co/", - "dc11:contributor": ["Marco Ocana".freeze, "Paolo Ciccarese".freeze, "Silvio Peroni".freeze], - "dc11:creator": "http://www.paolociccarese.info".freeze, - "dc11:date": "March 19, 2012".freeze, - "dc11:format": "application/rdf+xml".freeze, - "dc11:language": "en".freeze, - "dc11:title": "The Collections Ontology\n(CO)".freeze, - "owl:imports": "http://www.essepuntato.it/2009/10/error".freeze, - "owl:versionInfo": "2.0".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/elements/1.1/contributor": ["Marco Ocana".freeze, "Paolo Ciccarese".freeze, "Silvio Peroni".freeze], + "http://purl.org/dc/elements/1.1/creator": "http://www.paolociccarese.info".freeze, + "http://purl.org/dc/elements/1.1/date": "March 19, 2012".freeze, + "http://purl.org/dc/elements/1.1/format": "application/rdf+xml".freeze, + "http://purl.org/dc/elements/1.1/language": "en".freeze, + "http://purl.org/dc/elements/1.1/title": "The Collections Ontology\n(CO)".freeze, + "http://www.w3.org/2002/07/owl#imports": "http://www.essepuntato.it/2009/10/error".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "2.0".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Bag, - comment: %(Collection that can have a number of copies of each object).freeze, + comment: "Collection that can have a number of copies of each object".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/co/Set".freeze, label: "bag".freeze, - "owl:disjointWith": "co:Set".freeze, - subClassOf: "co:Collection".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/co/Collection".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Collection, - comment: %(A group of objects that can be considered as a whole.).freeze, + comment: "A group of objects that can be considered as a whole.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/co/Item".freeze, label: "collection".freeze, - "owl:disjointWith": "co:Item".freeze, - subClassOf: ["owl:Thing".freeze, term( - allValuesFrom: "owl:Thing".freeze, - onProperty: "co:element".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.w3.org/2002/07/owl#Thing".freeze, term( + allValuesFrom: "http://www.w3.org/2002/07/owl#Thing".freeze, + onProperty: "http://purl.org/co/element".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( cardinality: "1".freeze, - onProperty: "co:size".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/co/size".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 :Item, - comment: %(Element belonging to a bag).freeze, + comment: "Element belonging to a bag".freeze, label: "item".freeze, - subClassOf: ["owl:Thing".freeze, term( + subClassOf: ["http://www.w3.org/2002/07/owl#Thing".freeze, term( onProperty: term( - inverseOf: "co:item".freeze - ), - someValuesFrom: "co:Bag".freeze, - type: "owl:Restriction".freeze + inverseOf: "http://purl.org/co/item".freeze + ).freeze, + someValuesFrom: "http://purl.org/co/Bag".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 :List, - comment: %(An ordered array of items, that can be present in multiple copies).freeze, + comment: "An ordered array of items, that can be present in multiple copies".freeze, label: "list".freeze, subClassOf: [term( - intersectionOf: list("co:Bag".freeze, term( - allValuesFrom: "co:ListItem".freeze, - onProperty: "co:item".freeze, - type: "owl:Restriction".freeze + intersectionOf: list("http://purl.org/co/Bag".freeze, term( + allValuesFrom: "http://purl.org/co/ListItem".freeze, + onProperty: "http://purl.org/co/item".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( maxCardinality: "1".freeze, - onProperty: "co:firstItem".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/co/firstItem".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( maxCardinality: "1".freeze, - onProperty: "co:lastItem".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/co/lastItem".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 :ListItem, - comment: %(element belonging to a list).freeze, + comment: "element belonging to a list".freeze, label: "list item".freeze, - subClassOf: ["co:Item".freeze, term( + subClassOf: ["http://purl.org/co/Item".freeze, term( cardinality: "1".freeze, - onProperty: "co:index".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/co/index".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 :Set, - comment: %(A collection that cannot contain duplicate elements.).freeze, + comment: "A collection that cannot contain duplicate elements.".freeze, label: "set".freeze, - subClassOf: "co:Collection".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/co/Collection".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :element, - comment: %(The link to the members of a collection).freeze, - domain: "co:Collection".freeze, + comment: "The link to the members of a collection".freeze, + domain: "http://purl.org/co/Collection".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://purl.org/co/item".freeze, "http://purl.org/co/itemContent".freeze), label: "has element".freeze, - "owl:propertyChainAxiom": list("co:item".freeze, "co:itemContent".freeze), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :elementOf, - comment: %(The link to a collection in which the object is member.).freeze, - inverseOf: "co:element".freeze, + comment: "The link to a collection in which the object is member.".freeze, + inverseOf: "http://purl.org/co/element".freeze, label: "is element of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :firstItem, - comment: %(The link to the first item of the list.).freeze, - domain: "co:List".freeze, + comment: "The link to the first item of the list.".freeze, + domain: "http://purl.org/co/List".freeze, label: "has first item".freeze, range: term( - intersectionOf: list("co:ListItem".freeze, term( + intersectionOf: list("http://purl.org/co/ListItem".freeze, term( cardinality: "0".freeze, - onProperty: "co:previousItem".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/co/previousItem".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "co:index".freeze, - "owl:hasValue": "1".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#hasValue": "1".freeze, + onProperty: "http://purl.org/co/index".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 ), - subPropertyOf: "co:item".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + subPropertyOf: "http://purl.org/co/item".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :firstItemOf, - comment: %(The link to a list in which the item is first item.).freeze, - inverseOf: "co:firstItem".freeze, + comment: "The link to a list in which the item is first item.".freeze, + inverseOf: "http://purl.org/co/firstItem".freeze, label: "is first item of".freeze, - subPropertyOf: "co:itemOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/co/itemOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :followedBy, - comment: %(The link to the following item in a list.).freeze, - "dc11:description": "Given the list (I[1], I[2], ... , I[i-1], I[i], I[i+1], ... , I[n-1], I[n]), the item I[i] is followed by I[i+1], ... , I[n-1] and I[n].".freeze, - domain: "co:ListItem".freeze, + comment: "The link to the following item in a list.".freeze, + domain: "http://purl.org/co/ListItem".freeze, + "http://purl.org/dc/elements/1.1/description": "Given the list (I[1], I[2], ... , I[i-1], I[i], I[i+1], ... , I[n-1], I[n]), the item I[i] is followed by I[i+1], ... , I[n-1] and I[n].".freeze, label: "is followed by".freeze, - range: "co:ListItem".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://purl.org/co/ListItem".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :index, - comment: %(A number identifying the position, starting from 1, of a particular list item within a list.).freeze, - domain: "co:ListItem".freeze, + comment: "A number identifying the position, starting from 1, of a particular list item within a list.".freeze, + domain: "http://purl.org/co/ListItem".freeze, label: "has index".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 :item, - comment: %(The link to every item of the bag).freeze, - domain: "co:Bag".freeze, + comment: "The link to every item of the bag".freeze, + domain: "http://purl.org/co/Bag".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://purl.org/co/item".freeze, "http://purl.org/co/nextItem".freeze), label: "has item".freeze, - "owl:propertyChainAxiom": list("co:item".freeze, "co:nextItem".freeze), - range: "co:Item".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/co/Item".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :itemContent, - comment: %(The link to the actual resource to which the item refers.).freeze, - domain: "co:Item".freeze, + comment: "The link to the actual resource to which the item refers.".freeze, + domain: "http://purl.org/co/Item".freeze, label: "has item content".freeze, range: term( - "owl:complementOf": "co:Item".freeze, - type: "owl:Class".freeze + "http://www.w3.org/2002/07/owl#complementOf": "http://purl.org/co/Item".freeze, + type: "http://www.w3.org/2002/07/owl#Class".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 :itemContentOf, - comment: %(The link to the item that refers to the resource.).freeze, - inverseOf: "co:itemContent".freeze, + comment: "The link to the item that refers to the resource.".freeze, + inverseOf: "http://purl.org/co/itemContent".freeze, label: "is item content of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :itemOf, - comment: %(The link to a bag in which the item is member.).freeze, - inverseOf: "co:item".freeze, + comment: "The link to a bag in which the item is member.".freeze, + inverseOf: "http://purl.org/co/item".freeze, label: "is item of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :lastItem, - comment: %(The link to the last item of the list.).freeze, - domain: "co:List".freeze, + comment: "The link to the last item of the list.".freeze, + domain: "http://purl.org/co/List".freeze, label: "has last item".freeze, range: term( - intersectionOf: list("co:ListItem".freeze, term( + intersectionOf: list("http://purl.org/co/ListItem".freeze, term( cardinality: "0".freeze, - onProperty: "co:nextItem".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/co/nextItem".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 ), - subPropertyOf: "co:item".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + subPropertyOf: "http://purl.org/co/item".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :lastItemOf, - comment: %(The link to a list in which the item is last item.).freeze, - inverseOf: "co:lastItem".freeze, + comment: "The link to a list in which the item is last item.".freeze, + inverseOf: "http://purl.org/co/lastItem".freeze, label: "is last item of".freeze, - subPropertyOf: "co:itemOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/co/itemOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :nextItem, - comment: %(The link to the next item in a list.).freeze, - "dc11:description": "Given the list (I[1], I[2], ... , I[i-1], I[i], I[i+1], ... , I[n-1], I[n]), the next item of I[i] is I[i+1].".freeze, + comment: "The link to the next item in a list.".freeze, + "http://purl.org/dc/elements/1.1/description": "Given the list (I[1], I[2], ... , I[i-1], I[i], I[i+1], ... , I[n-1], I[n]), the next item of I[i] is I[i+1].".freeze, label: "has next item".freeze, - subPropertyOf: "co:followedBy".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + subPropertyOf: "http://purl.org/co/followedBy".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :precededBy, - comment: %(The link to the preceding item in a list.).freeze, - "dc11:description": "Given the list (I[1], I[2], ... , I[i-1], I[i], I[i+1], ... , I[n-1], I[n]), the item I[i] is preceded by I[i-1], ... , I[2] and I[1].".freeze, - inverseOf: "co:followedBy".freeze, + comment: "The link to the preceding item in a list.".freeze, + "http://purl.org/dc/elements/1.1/description": "Given the list (I[1], I[2], ... , I[i-1], I[i], I[i+1], ... , I[n-1], I[n]), the item I[i] is preceded by I[i-1], ... , I[2] and I[1].".freeze, + inverseOf: "http://purl.org/co/followedBy".freeze, label: "is preceded by".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :previousItem, - comment: %(The link to the previous item in a list.).freeze, - "dc11:description": "Given the list (I[1], I[2], ... , I[i-1], I[i], I[i+1], ... , I[n-1], I[n]), the previous item of I[i] is I[i-1].".freeze, - inverseOf: "co:nextItem".freeze, + comment: "The link to the previous item in a list.".freeze, + "http://purl.org/dc/elements/1.1/description": "Given the list (I[1], I[2], ... , I[i-1], I[i], I[i+1], ... , I[n-1], I[n]), the previous item of I[i] is I[i-1].".freeze, + inverseOf: "http://purl.org/co/nextItem".freeze, label: "has previous item".freeze, - subPropertyOf: "co:precededBy".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + subPropertyOf: "http://purl.org/co/precededBy".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :size, - comment: %(The number of item belonging to a collection.).freeze, - "dc11:description": "CO defines the size of a collection as the sum of the number of times entities that are part of the collection appear in it. This means that co:size considers how much each entity is involved by a particular collection, i.e.:\n- the size of the set {a, b, c} is three\n- the size of the bag [a, a, b, b, b, c] is five\n- the size of the list (a, b, c, b, a, b, c, c) is seven".freeze, - domain: "co:Collection".freeze, + comment: "The number of item belonging to a collection.".freeze, + domain: "http://purl.org/co/Collection".freeze, + "http://purl.org/dc/elements/1.1/description": "CO defines the size of a collection as the sum of the number of times entities that are part of the collection appear in it. This means that co:size considers how much each entity is involved by a particular collection, i.e.:\n- the size of the set {a, b, c} is three\n- the size of the bag [a, a, b, b, b, c] is five\n- the size of the list (a, b, c, b, a, b, c, c) is seven".freeze, label: "has size".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 end end diff --git a/lib/vocabs/cro.rb b/lib/vocabs/cro.rb index 869324dc..04b83abc 100644 --- a/lib/vocabs/cro.rb +++ b/lib/vocabs/cro.rb @@ -2,17 +2,13 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.obolibrary.org/obo/cro.owl# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class CRO < RDF::StrictVocabulary - # end - class CRO < RDF::StrictVocabulary("http://purl.obolibrary.org/obo/cro.owl#") +module LifePreserver::Vocab + CRO = Class.new(RDF::StrictVocabulary("http://purl.obolibrary.org/obo/cro.owl#")) do # Ontology definition ontology :"http://purl.obolibrary.org/obo/cro.owl#", - "owl:imports": "http://vivoweb.org/ontology/core".freeze, - type: "owl:Ontology".freeze + "http://www.w3.org/2002/07/owl#imports": "http://vivoweb.org/ontology/core".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :CRO_0000000, @@ -20,334 +16,334 @@ class CRO < RDF::StrictVocabulary("http://purl.obolibrary.org/obo/cro.owl#") "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles".freeze, label: "Contribution Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000001, "http://purl.obolibrary.org/obo/IAO_0000115": "Contributions to the published research object".freeze, label: "Author Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000002, "http://purl.obolibrary.org/obo/IAO_0000115": "Includes literature searches and contributions to review activities (systematic reviews, scoping reviews, etc.)".freeze, label: "Background and Literature Search Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000003, "http://purl.obolibrary.org/obo/IAO_0000115": "Ideas; formulation or evolution of overarching research goals and aims.".freeze, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Conceptualization".freeze, label: "Conceptualization Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000004, "http://purl.obolibrary.org/obo/IAO_0000115": "Coordination of the deposit of the manuscript, data, and any secondary materials to appropriate repositories; ensure that outputs comply with OA mandates.".freeze, label: "Preservation Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000005, label: "Data Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000006, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Funding_acquisition".freeze, label: "Funding Acquisition Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000007, "http://purl.obolibrary.org/obo/IAO_0000115": "Conducting a research and investigation process, specifically performing the experiments, or data/evidence collection.".freeze, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Investigation".freeze, label: "Study Investigation Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000008, "http://purl.obolibrary.org/obo/IAO_0000115": "Development or design of methodology; creation of models.".freeze, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Methodology".freeze, label: "Methodology Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000009, "http://purl.obolibrary.org/obo/IAO_0000115": "Management and coordination responsibility for the research activity planning and execution.".freeze, "http://purl.obolibrary.org/obo/IAO_0000118": "Project Administrator Role".freeze, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Project_administration".freeze, label: "Project Management Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000010, "http://purl.obolibrary.org/obo/IAO_0000115": "Coordination of diverse team members, often across different disciplines and locations.".freeze, label: "Team Management Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000011, "http://purl.obolibrary.org/obo/IAO_0000115": "Manage regulatory and compliance issues for the research project.".freeze, label: "Regulatory Administration Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000012, label: "Policy Development Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000013, "http://purl.obolibrary.org/obo/IAO_0000115": "Provision of study materials, reagents, materials, patients, laboratory samples, animals, instrumentation, computing resources, or other analysis tools.".freeze, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Resources".freeze, label: "Resource Provider Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000014, "http://purl.obolibrary.org/obo/IAO_0000115": "Coordination of research dissemination through popular media and the press, as well as Community Outreach and liaising of project directly to the community.".freeze, "http://purl.obolibrary.org/obo/IAO_0000116": "Similar to vivo:OutreachProviderRole?".freeze, label: "Communication Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000015, "http://purl.obolibrary.org/obo/IAO_0000115": "Programming, software development; designing computer programs; implementation of the computer code and supporting algorithms; testing of existing code components.".freeze, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Software".freeze, label: "Software Developer Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000016, label: "Information Technology Systems Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000017, "http://purl.obolibrary.org/obo/IAO_0000115": "Oversight and leadership responsibility for the research activity planning and execution, including mentorship external to the core team.".freeze, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Supervision".freeze, label: "Supervision Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000018, "http://purl.obolibrary.org/obo/IAO_0000115": "Verification, whether as a part of the activity or separate, of the overall replication/reproducibility of results/experiments and other research outputs.".freeze, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Validation".freeze, label: "Validation Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000019, "http://purl.obolibrary.org/obo/IAO_0000115": "Preparation, creation and/or presentation of the published work, specifically writing the initial draft.".freeze, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Writing_%E2%80%93_original_draft".freeze, label: "Writing Original Draft Role".freeze, - subClassOf: "cro:CRO_0000001".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000001".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000020, "http://purl.obolibrary.org/obo/IAO_0000115": "Preparation, creation and/or presentation of the published work by those from the original research group, specifically critical review, commentary or revision – including pre- or post-publication stages.".freeze, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Writing_%E2%80%93_review_%26_editing".freeze, label: "Editing and Proofreading Role".freeze, - subClassOf: "cro:CRO_0000001".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000001".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000021, "http://purl.obolibrary.org/obo/IAO_0000115": "Preparation, creation and/or presentation of the published work, specifically visualization/data presentation.".freeze, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Visualization".freeze, label: "Figure Development Role".freeze, - subClassOf: "cro:CRO_0000001".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000001".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000022, "http://purl.obolibrary.org/obo/IAO_0000115": "Translating words or text from one language to another.".freeze, label: "Translator Role".freeze, - subClassOf: "cro:CRO_0000001".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000001".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000023, label: "Archivist Role".freeze, - subClassOf: "cro:CRO_0000004".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000004".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000024, label: "Digital Preservation Role".freeze, - subClassOf: "cro:CRO_0000004".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000004".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000025, label: "Conservator Role".freeze, - subClassOf: "cro:CRO_0000004".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000004".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000026, "http://purl.obolibrary.org/obo/IAO_0000115": "Management activities to annotate (produce metadata), scrub data and maintain research data (including software code, where it is necessary for interpreting the data itself) for initial use and later re-use.".freeze, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Data_curation".freeze, label: "Data Curation Role".freeze, - subClassOf: "cro:CRO_0000005".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000005".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000027, "http://purl.obolibrary.org/obo/IAO_0000115": "Manual entry or automated ingestion.".freeze, label: "Data Entry Role".freeze, - subClassOf: "cro:CRO_0000005".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000005".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000028, label: "Data Visualization Role".freeze, - subClassOf: "cro:CRO_0000005".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000005".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000029, "http://purl.obolibrary.org/obo/IAO_0000115": "Preparation, creation and/or presentation of the published work, specifically visualization/data presentation.".freeze, "http://purl.obolibrary.org/obo/IAO_0000119": "http://dictionary.casrai.org/Contributor_Roles/Formal_analysis".freeze, label: "Data Analysis Role".freeze, - subClassOf: "cro:CRO_0000005".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000005".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000030, label: "Data Collection Role".freeze, - subClassOf: "cro:CRO_0000005".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000005".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000031, label: "Data Aggregation Role".freeze, - subClassOf: "cro:CRO_0000005".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000005".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000032, label: "Data Integration Role".freeze, - subClassOf: "cro:CRO_0000005".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000005".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000033, "http://purl.obolibrary.org/obo/IAO_0000118": "Data Scrubbing Role".freeze, label: "Data Quality Assurance Role".freeze, - subClassOf: "cro:CRO_0000005".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000005".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000034, label: "Data Modeling Role".freeze, - subClassOf: "cro:CRO_0000005".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000005".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000035, "http://purl.obolibrary.org/obo/IAO_0000115": "Development of ontology, terminology, code lists, etc.".freeze, label: "Data Standards Developer Role".freeze, - subClassOf: "cro:CRO_0000005".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000005".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000036, label: "Technique Development Role".freeze, - subClassOf: "cro:CRO_0000008".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000008".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000037, label: "Protocol Creation Role".freeze, - subClassOf: "cro:CRO_0000008".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000008".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000038, "http://purl.obolibrary.org/obo/IAO_0000118": "Best Practices Role".freeze, label: "Guideline Development Role".freeze, - subClassOf: "cro:CRO_0000008".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000008".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000039, label: "Standard Operating Procedure Development Role".freeze, - subClassOf: "cro:CRO_0000008".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000008".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000040, "http://purl.obolibrary.org/obo/IAO_0000115": "Detailed design of study components including data collection, analysis, and dissemination.".freeze, label: "Study Design Role".freeze, - subClassOf: "cro:CRO_0000008".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000008".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000041, label: "Marketing Role".freeze, - subClassOf: "cro:CRO_0000014".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000014".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000042, label: "Networking Facilitation Role".freeze, - subClassOf: "cro:CRO_0000014".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000014".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000043, label: "Graphic Design Role".freeze, - subClassOf: "cro:CRO_0000014".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000014".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000044, label: "Website Development Role".freeze, - subClassOf: "cro:CRO_0000014".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000014".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000045, label: "Documentation Role".freeze, - subClassOf: "cro:CRO_0000014".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000014".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000046, "http://purl.obolibrary.org/obo/IAO_0000115": "Creation of high-level structures of a software system.".freeze, label: "Software Architecture Role".freeze, - subClassOf: "cro:CRO_0000015".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000015".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000047, "http://purl.obolibrary.org/obo/IAO_0000115": "Creation of low-level software component and algorithm design.".freeze, label: "Software Design Role".freeze, - subClassOf: "cro:CRO_0000015".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000015".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000048, "http://purl.obolibrary.org/obo/IAO_0000115": "Requirements analysis, algorithm development, and implementation of software in a computer programming language.".freeze, label: "Computer Programming Role".freeze, - subClassOf: "cro:CRO_0000015".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000015".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000049, "http://purl.obolibrary.org/obo/IAO_0000115": "Systematic application of scientific and technological knowledge, methods, and experience to the design, implementation, testing, and documentation of software.".freeze, label: "Software Engineering Role".freeze, - subClassOf: "cro:CRO_0000015".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000015".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000050, "http://purl.obolibrary.org/obo/IAO_0000115": "Verification that software meets requirements; validation that software meets users' needs, identification of software bugs, assessment of software performance and usability.".freeze, "http://purl.obolibrary.org/obo/IAO_0000118": "Software Quality Assurance Role".freeze, label: "Software Testing Role".freeze, - subClassOf: "cro:CRO_0000015".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000015".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000051, "http://purl.obolibrary.org/obo/IAO_0000115": "Planning, management, and monitoring of software projects.".freeze, label: "Software Project Management Role".freeze, - subClassOf: "cro:CRO_0000015".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000015".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000052, "http://purl.obolibrary.org/obo/IAO_0000115": "Examination of software code to identify build-breaking changes prior to acceptance into a codebase.".freeze, label: "Code Review Role".freeze, - subClassOf: "cro:CRO_0000015".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000015".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000053, "http://purl.obolibrary.org/obo/IAO_0000115": "Creation of software documentation.".freeze, "http://purl.obolibrary.org/obo/IAO_0000118": "Software Documentation Role".freeze, label: "Technical Writing Role".freeze, - subClassOf: "cro:CRO_0000015".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000015".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000054, label: "Software Systems Role".freeze, - subClassOf: "cro:CRO_0000016".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000016".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000055, label: "Hardware Systems Role".freeze, - subClassOf: "cro:CRO_0000016".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000016".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000056, label: "Metadata Application Role".freeze, - subClassOf: "cro:CRO_0000026".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000026".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000057, label: "Statistical Data Analysis Role".freeze, - subClassOf: "cro:CRO_0000029".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000029".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000058, label: "System Administrator Role".freeze, - subClassOf: "cro:CRO_0000054".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000054".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000059, label: "Database Administrator Role".freeze, - subClassOf: "cro:CRO_0000054".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000054".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000060, label: "Research Instrumentation Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000061, label: "Educational Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000062, label: "Intellectual Property Advisor Role".freeze, - subClassOf: "cro:CRO_0000000".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000000".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000063, label: "Educational Program Development Role".freeze, - subClassOf: "cro:CRO_0000061".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000061".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000064, label: "Educational Material Development Role".freeze, - subClassOf: "cro:CRO_0000061".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000061".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000065, "http://purl.obolibrary.org/obo/IAO_0000116": "This may be equivalent to vivo:Teacher Role".freeze, label: "Teaching Role".freeze, - subClassOf: "cro:CRO_0000061".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000061".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000066, label: "Device Development Role".freeze, - subClassOf: "cro:CRO_0000060".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000060".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000067, label: "Equipment Technician Role".freeze, - subClassOf: "cro:CRO_0000060".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000060".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000068, label: "Survey and Questionnaire Role".freeze, - subClassOf: "cro:CRO_0000060".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.obolibrary.org/obo/cro.owl#CRO_0000060".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CRO_0000069, label: "Contributorship".freeze, subClassOf: "http://vivoweb.org/ontology/core#Relationship".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze end end diff --git a/lib/vocabs/ctag.rb b/lib/vocabs/ctag.rb index 582f3161..99fb99b2 100644 --- a/lib/vocabs/ctag.rb +++ b/lib/vocabs/ctag.rb @@ -2,76 +2,72 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://commontag.org/ns# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class CTAG < RDF::StrictVocabulary - # end - class CTAG < RDF::StrictVocabulary("http://commontag.org/ns#") +module LifePreserver::Vocab + CTAG = Class.new(RDF::StrictVocabulary("http://commontag.org/ns#")) do # Ontology definition ontology :"http://commontag.org/ns#", - "dc11:contributor": ["Alex Iskold".freeze, "Alexandre Passant".freeze, "Andraz Tori".freeze, "Jamie Taylor".freeze, "Peter Mika".freeze, "Scott Montgomerie".freeze, "Vuk Milicic".freeze], - "dc11:description": "Common Tag RDF vocabulary, described using W3C RDF Schema. Common Tags allows documents and document fragments (any resource which can be identified by a URI) to be labeled with keywords and URIs, unambigiously idenfying the concepts covered by the resource.".freeze, - "dc11:title": "Common Tag vocabulary".freeze, - "dc:issued": "2009-06-08".freeze, + "http://purl.org/dc/elements/1.1/contributor": ["Alex Iskold".freeze, "Alexandre Passant".freeze, "Andraz Tori".freeze, "Jamie Taylor".freeze, "Peter Mika".freeze, "Scott Montgomerie".freeze, "Vuk Milicic".freeze], + "http://purl.org/dc/elements/1.1/description": "Common Tag RDF vocabulary, described using W3C RDF Schema. Common Tags allows documents and document fragments (any resource which can be identified by a URI) to be labeled with keywords and URIs, unambigiously idenfying the concepts covered by the resource.".freeze, + "http://purl.org/dc/elements/1.1/title": "Common Tag vocabulary".freeze, + "http://purl.org/dc/terms/issued": "2009-06-08".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://commontag.org/mappings".freeze, label: "Common Tag vocabulary".freeze, - "rdfs:seeAlso": "http://commontag.org/mappings".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :AuthorTag, - comment: %(A Tag asserted by the author of a content resource.).freeze, + comment: "A Tag asserted by the author of a content resource.".freeze, label: "Author Tag".freeze, - subClassOf: "ctag:Tag".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://commontag.org/ns#Tag".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :AutoTag, - comment: %(A Tag asserted by an automated tool on a content resource.).freeze, + comment: "A Tag asserted by an automated tool on a content resource.".freeze, label: "Auto Tag".freeze, - subClassOf: "ctag:Tag".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://commontag.org/ns#Tag".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :ReaderTag, - comment: %(A Tag asserted by the reader \(consumer\) of a content resource.).freeze, + comment: "A Tag asserted by the reader (consumer) of a content resource.".freeze, label: "Reader Tag".freeze, - subClassOf: "ctag:Tag".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://commontag.org/ns#Tag".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Tag, - comment: %(A Common Tag associating a URI and a keyword to annotate a resource.).freeze, + comment: "A Common Tag associating a URI and a keyword to annotate a resource.".freeze, label: "Tag".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :TaggedContent, - comment: %(Content which has one or more Common Tag.).freeze, + comment: "Content which has one or more Common Tag.".freeze, label: "Tagged Content".freeze, - type: "rdfs:Class".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze # Property definitions property :isAbout, - comment: %(A resource \(URI\) representing the concepts described by the content.).freeze, - domain: "ctag:TaggedContent".freeze, + comment: "A resource (URI) representing the concepts described by the content.".freeze, + domain: "http://commontag.org/ns#TaggedContent".freeze, label: "is about".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :label, - comment: %(A local, human-readable name for a Tag.).freeze, - domain: "ctag:Tag".freeze, + comment: "A local, human-readable name for a Tag.".freeze, + domain: "http://commontag.org/ns#Tag".freeze, label: "tag label".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 :means, - comment: %(A a resource \(URI\) representing the conceptual meaning of a Tag.).freeze, - domain: "ctag:Tag".freeze, + comment: "A a resource (URI) representing the conceptual meaning of a Tag.".freeze, + domain: "http://commontag.org/ns#Tag".freeze, label: "means".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :tagged, - comment: %(Links a resource to a Common Tag.).freeze, - domain: "ctag:TaggedContent".freeze, + comment: "Links a resource to a Common Tag.".freeze, + domain: "http://commontag.org/ns#TaggedContent".freeze, label: "tagged".freeze, - range: "ctag:Tag".freeze, - type: "rdf:Property".freeze + range: "http://commontag.org/ns#Tag".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :taggingDate, - comment: %(The date the Tag was assigned.).freeze, - domain: "ctag:Tag".freeze, + comment: "The date the Tag was assigned.".freeze, + domain: "http://commontag.org/ns#Tag".freeze, label: "tagging date".freeze, - subPropertyOf: "dc:created".freeze, - type: "rdf:Property".freeze + subPropertyOf: "http://purl.org/dc/terms/created".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/vocabs/dbo.rb b/lib/vocabs/dbo.rb deleted file mode 100644 index 5bc2a07f..00000000 --- a/lib/vocabs/dbo.rb +++ /dev/null @@ -1,23098 +0,0 @@ -# -*- encoding: utf-8 -*- -# frozen_string_literal: true -# This file generated automatically using rdf vocabulary format from http://dbpedia.org/ontology/ -require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class DBO < RDF::StrictVocabulary - # end - class DBO < RDF::StrictVocabulary("http://dbpedia.org/ontology/") - - # 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: %( - 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. - ).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": "2019-10-23T18:53Z".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://purl.org/vocab/vann/preferredNamespacePrefix": "dbo".freeze, - "http://purl.org/vocab/vann/preferredNamespaceUri": "http://dbpedia.org/ontology/".freeze, - "owl:versionInfo": "latest-snapshot".freeze, - type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "owl:Ontology".freeze] - - # Class definitions - term :AcademicConference, - equivalentClass: "http://www.wikidata.org/entity/Q2020153".freeze, - label: "academic conference".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AcademicConference".freeze, - subClassOf: "dbo:SocietalEvent".freeze, - type: "owl:Class".freeze - term :AcademicJournal, - comment: %(An academic journal is a mostly peer-reviewed periodical in which scholarship relating to a particular academic discipline is published. Academic journals serve as forums for the introduction and presentation for scrutiny of new research, and the critique of existing research. Content typically takes the form of articles presenting original research, review articles, and book reviews.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q737498".freeze, - label: "academic journal".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AcademicJournal".freeze, - subClassOf: "dbo:PeriodicalLiterature".freeze, - type: "owl:Class".freeze - term :AcademicSubject, - comment: %(Genres of art, e.g. Mathematics, History, Philosophy, Medicine).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q11862829".freeze, - label: "academic subject".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AcademicSubject".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :Activity, - equivalentClass: ["http://www.ontologydesignpatterns.org/ont/d0.owl#Activity".freeze, "http://www.wikidata.org/entity/Q1914636".freeze], - label: "activity".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Activity".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Actor, - comment: %(An actor or actress is a person who acts in a dramatic production and who works in film, television, theatre, or radio in that capacity.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q33999".freeze, - label: "actor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Actor".freeze, - subClassOf: "dbo:Artist".freeze, - type: "owl:Class".freeze - term :AdministrativeRegion, - comment: %(A PopulatedPlace under the jurisdiction of an administrative body. This body may administer either a whole region or one or more adjacent Settlements \(town administration\)).freeze, - equivalentClass: ["http://www.wikidata.org/entity/Q3455524".freeze, "schema:AdministrativeArea".freeze], - label: "administrative region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AdministrativeRegion".freeze, - subClassOf: "dbo:Region".freeze, - type: "owl:Class".freeze - term :AdultActor, - comment: %(A pornographic actor or actress or a porn star is a person who performs sex acts in film, normally characterised as a pornographic film.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q488111".freeze, - label: "adult (pornographic) actor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AdultActor".freeze, - subClassOf: "dbo:Actor".freeze, - type: "owl:Class".freeze - term :Agent, - comment: %(Analogous to a foaf:Agent, an agent is an entity that acts. This is intended to be the super class of Person and Organisation.).freeze, - equivalentClass: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, "http://www.wikidata.org/entity/Q24229398".freeze], - label: "agent".freeze, - "owl:disjointWith": "dbo:Place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Agent".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Agglomeration, - label: "agglomeration".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Agglomeration".freeze, - subClassOf: "dbo:PopulatedPlace".freeze, - type: "owl:Class".freeze - term :Aircraft, - equivalentClass: "http://www.wikidata.org/entity/Q11436".freeze, - label: "aircraft".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Aircraft".freeze, - subClassOf: ["dbo:MeanOfTransportation".freeze, "schema:Product".freeze], - type: "owl:Class".freeze - term :Airline, - equivalentClass: "http://www.wikidata.org/entity/Q46970".freeze, - label: "airline".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Airline".freeze, - subClassOf: "dbo:PublicTransitSystem".freeze, - type: "owl:Class".freeze - term :Airport, - equivalentClass: ["http://www.wikidata.org/entity/Q1248784".freeze, "schema:Airport".freeze], - label: "airport".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Airport".freeze, - subClassOf: "dbo:Infrastructure".freeze, - type: "owl:Class".freeze - term :Album, - equivalentClass: ["http://www.wikidata.org/entity/Q482994".freeze, "schema:MusicAlbum".freeze], - label: "album".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Album".freeze, - subClassOf: "dbo:MusicalWork".freeze, - type: "owl:Class".freeze - term :Algorithm, - equivalentClass: "http://www.wikidata.org/entity/Q8366".freeze, - label: "Algorithm".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Algorithm".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Altitude, - equivalentClass: "http://www.wikidata.org/entity/Q190200".freeze, - label: "altitude".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Altitude".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :AmateurBoxer, - label: "amateur boxer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AmateurBoxer".freeze, - subClassOf: "dbo:Boxer".freeze, - type: "owl:Class".freeze - term :Ambassador, - comment: %(An ambassador is the highest ranking diplomat that represents a nation and is usually accredited to a foreign sovereign or government, or to an international organization.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q121998".freeze, - label: "ambassador".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Ambassador".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :AmericanFootballCoach, - label: "american football coach".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AmericanFootballCoach".freeze, - subClassOf: "dbo:Coach".freeze, - type: "owl:Class".freeze - term :AmericanFootballLeague, - comment: %(A group of sports teams that compete against each other in american football.).freeze, - label: "american football league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AmericanFootballLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :AmericanFootballPlayer, - equivalentClass: "http://www.wikidata.org/entity/Q14128148".freeze, - label: "american football player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AmericanFootballPlayer".freeze, - subClassOf: "dbo:GridironFootballPlayer".freeze, - type: "owl:Class".freeze - term :AmericanFootballTeam, - label: "american football Team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AmericanFootballTeam".freeze, - subClassOf: "dbo:SportsTeam".freeze, - type: "owl:Class".freeze - term :Amphibian, - label: "amphibian".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Amphibian".freeze, - subClassOf: "dbo:Animal".freeze, - type: "owl:Class".freeze - term :AmusementParkAttraction, - label: "amusement park attraction".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AmusementParkAttraction".freeze, - subClassOf: "dbo:ArchitecturalStructure".freeze, - type: "owl:Class".freeze - term :AnatomicalStructure, - equivalentClass: "http://www.wikidata.org/entity/Q4936952".freeze, - label: "anatomical structure".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AnatomicalStructure".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Animal, - equivalentClass: "http://www.wikidata.org/entity/Q729".freeze, - label: "animal".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Animal".freeze, - subClassOf: "dbo:Eukaryote".freeze, - type: "owl:Class".freeze - term :AnimangaCharacter, - comment: %(Anime/Manga character).freeze, - label: "animanga character".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AnimangaCharacter".freeze, - subClassOf: "dbo:ComicsCharacter".freeze, - type: "owl:Class".freeze - term :Anime, - comment: %(A style of animation originating in Japan).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q1107".freeze, - label: "Anime".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Anime".freeze, - subClassOf: "dbo:Cartoon".freeze, - type: "owl:Class".freeze - term :Annotation, - equivalentClass: ["bibo:Note".freeze, "schema:Comment".freeze], - label: "Annotation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Annotation".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :Arachnid, - label: "arachnid".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Arachnid".freeze, - subClassOf: "dbo:Animal".freeze, - type: "owl:Class".freeze - term :Archaea, - label: "archaea".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Archaea".freeze, - subClassOf: "dbo:Species".freeze, - type: "owl:Class".freeze - term :Archbishop, - label: "archbishop".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Archbishop".freeze, - subClassOf: "dbo:ChristianBishop".freeze, - type: "owl:Class".freeze - term :Archeologist, - equivalentClass: "http://www.wikidata.org/entity/Q3621491".freeze, - label: "archeologist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Archeologist".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :ArcherPlayer, - label: "Archer Player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ArcherPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Archipelago, - equivalentClass: "http://www.wikidata.org/entity/Q33837".freeze, - label: "archipelago".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Archipelago".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :Architect, - equivalentClass: "http://www.wikidata.org/entity/Q42973".freeze, - label: "architect".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Architect".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :ArchitecturalStructure, - comment: %(An architectural structure is a human-made, free-standing, immobile outdoor construction \(http://en.wikipedia.org/wiki/Architectural_structure\).).freeze, - label: "architectural structure".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ArchitecturalStructure".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :Archive, - comment: %(Collection of documents pertaining to a person or organisation.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q166118".freeze, - label: "Archive".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Archive".freeze, - subClassOf: "dbo:CollectionOfValuables".freeze, - type: "owl:Class".freeze - term :Area, - comment: %(Area of something. Use "value" for the value, "min" & "max" for a range \(if uncertain\) and "rank" \(integer\) for the rank of that thing amongst its siblings \(eg regions ordered by area\)).freeze, - label: "area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Area".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Arena, - comment: %(An arena is an enclosed area, often circular or oval-shaped, designed to showcase theater, musical performances, or sporting events. \(http://en.wikipedia.org/wiki/Arena\)).freeze, - label: "arena".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Arena".freeze, - subClassOf: ["dbo:ArchitecturalStructure".freeze, "schema:StadiumOrArena".freeze], - type: "owl:Class".freeze - term :Aristocrat, - label: "aristocrat".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Aristocrat".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Arrondissement, - comment: %(An administrative \(France\) or lawcourts \(Netherlands\) body governing a territorial unity on the intermediate level, between local and national level).freeze, - label: "arrondissement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Arrondissement".freeze, - subClassOf: "dbo:GovernmentalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :Artery, - equivalentClass: "http://www.wikidata.org/entity/Q9655".freeze, - label: "artery".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Artery".freeze, - subClassOf: "dbo:AnatomicalStructure".freeze, - type: "owl:Class".freeze - term :Article, - equivalentClass: "bibo:Article".freeze, - label: "article".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Article".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :ArtificialSatellite, - comment: %(In the context of spaceflight, an artificial satellite is an artificial object which has been intentionally placed into orbit.).freeze, - label: "ArtificialSatellite".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ArtificialSatellite".freeze, - subClassOf: "dbo:Satellite".freeze, - type: "owl:Class".freeze - term :Artist, - equivalentClass: "http://www.wikidata.org/entity/Q483501".freeze, - label: "artist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Artist".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :ArtistDiscography, - label: "artist discography".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ArtistDiscography".freeze, - subClassOf: "dbo:MusicalWork".freeze, - type: "owl:Class".freeze - term :ArtisticGenre, - comment: %(Genres of art, e.g. Pointillist, Modernist).freeze, - label: "artistic genre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ArtisticGenre".freeze, - subClassOf: "dbo:Genre".freeze, - type: "owl:Class".freeze - term :Artwork, - comment: %(A work of art, artwork, art piece, or art object is an aesthetic item or artistic creation.).freeze, - label: "artwork".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Artwork".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :Asteroid, - equivalentClass: "http://www.wikidata.org/entity/Q3863".freeze, - label: "asteroid".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Asteroid".freeze, - subClassOf: "dbo:CelestialBody".freeze, - type: "owl:Class".freeze - term :Astronaut, - equivalentClass: "http://www.wikidata.org/entity/Q11631".freeze, - label: "astronaut".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Astronaut".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Athlete, - label: "athlete".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Athlete".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Athletics, - label: "athletics".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Athletics".freeze, - subClassOf: "dbo:Sport".freeze, - type: "owl:Class".freeze - term :AthleticsPlayer, - label: "athletics player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AthleticsPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Atoll, - label: "atoll".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Atoll".freeze, - subClassOf: "dbo:Island".freeze, - type: "owl:Class".freeze - term :Attack, - comment: %(An Attack is not necessarily part of a Military Conflict).freeze, - label: "attack".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Attack".freeze, - subClassOf: "dbo:SocietalEvent".freeze, - type: "owl:Class".freeze - term :AustralianFootballLeague, - comment: %(A group of sports teams that compete against each other in australian football.).freeze, - label: "australian football league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AustralianFootballLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :AustralianFootballTeam, - label: "australian football Team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AustralianFootballTeam".freeze, - subClassOf: "dbo:SportsTeam".freeze, - type: "owl:Class".freeze - term :AustralianRulesFootballPlayer, - equivalentClass: "http://www.wikidata.org/entity/Q13414980".freeze, - label: "Australian rules football player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AustralianRulesFootballPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :AutoRacingLeague, - comment: %(a group of sports teams or individual athletes that compete against each other in auto racing).freeze, - label: "auto racing league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AutoRacingLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :Automobile, - label: "automobile".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Automobile".freeze, - subClassOf: ["dbo:MeanOfTransportation".freeze, "schema:Product".freeze], - type: "owl:Class".freeze - term :AutomobileEngine, - label: "automobile engine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:AutomobileEngine".freeze, - subClassOf: "dbo:Engine".freeze, - type: "owl:Class".freeze - term :Award, - equivalentClass: "http://www.wikidata.org/entity/Q618779".freeze, - label: "award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Award".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :BackScene, - label: "back scene".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BackScene".freeze, - subClassOf: "dbo:MusicalArtist".freeze, - type: "owl:Class".freeze - term :Bacteria, - label: "bacteria".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Bacteria".freeze, - subClassOf: "dbo:Species".freeze, - type: "owl:Class".freeze - term :BadmintonPlayer, - label: "badminton player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BadmintonPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Band, - equivalentClass: "http://www.wikidata.org/entity/Q215380".freeze, - label: "Band".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Band".freeze, - subClassOf: ["dbo:Group".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialPerson".freeze, "schema:MusicGroup".freeze], - type: "owl:Class".freeze - term :Bank, - comment: %(a company which main services are banking or financial services.).freeze, - equivalentClass: "schema:BankOrCreditUnion".freeze, - label: "bank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Bank".freeze, - subClassOf: "dbo:Company".freeze, - type: "owl:Class".freeze - term :Baronet, - label: "baronet".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Baronet".freeze, - subClassOf: "dbo:BritishRoyalty".freeze, - type: "owl:Class".freeze - term :BaseballLeague, - comment: %(a group of sports teams that compete against each other in Baseball.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q6631808".freeze, - label: "baseball league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BaseballLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :BaseballPlayer, - equivalentClass: "http://www.wikidata.org/entity/Q10871364".freeze, - label: "baseball player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BaseballPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :BaseballSeason, - label: "baseball season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BaseballSeason".freeze, - subClassOf: "dbo:SportsTeamSeason".freeze, - type: "owl:Class".freeze - term :BaseballTeam, - label: "baseball team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BaseballTeam".freeze, - subClassOf: "dbo:SportsTeam".freeze, - type: "owl:Class".freeze - term :BasketballLeague, - comment: %(a group of sports teams that compete against each other in Basketball).freeze, - label: "basketball league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BasketballLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :BasketballPlayer, - equivalentClass: "http://www.wikidata.org/entity/Q3665646".freeze, - label: "basketball player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BasketballPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :BasketballTeam, - label: "basketball team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BasketballTeam".freeze, - subClassOf: "dbo:SportsTeam".freeze, - type: "owl:Class".freeze - term :Battery, - comment: %(The battery \(type\) used as energy source in vehicles.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q267298".freeze, - label: "battery".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Battery".freeze, - subClassOf: "dbo:Device".freeze, - type: "owl:Class".freeze - term :Bay, - label: "bay".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Bay".freeze, - subClassOf: "dbo:BodyOfWater".freeze, - type: "owl:Class".freeze - term :Beach, - comment: %(The shore of a body of water, especially when sandy or pebbly.).freeze, - label: "beach".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Beach".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :BeachVolleyballPlayer, - label: "beach volleyball player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BeachVolleyballPlayer".freeze, - subClassOf: "dbo:VolleyballPlayer".freeze, - type: "owl:Class".freeze - term :BeautyQueen, - comment: %(A beauty pageant titleholder).freeze, - label: "beauty queen".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BeautyQueen".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Beer, - equivalentClass: "http://www.wikidata.org/entity/Q44".freeze, - label: "beer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Beer".freeze, - subClassOf: "dbo:Beverage".freeze, - type: "owl:Class".freeze - term :Beverage, - comment: %(A drink, or beverage, is a liquid which is specifically prepared for human consumption.).freeze, - label: "beverage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Beverage".freeze, - subClassOf: "dbo:Food".freeze, - type: "owl:Class".freeze - term :Biathlete, - label: "Biathlete".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Biathlete".freeze, - subClassOf: "dbo:WinterSportPlayer".freeze, - type: "owl:Class".freeze - term :BiologicalDatabase, - label: "Biological database".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BiologicalDatabase".freeze, - subClassOf: "dbo:Database".freeze, - type: "owl:Class".freeze - term :Biologist, - label: "biologist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Biologist".freeze, - subClassOf: "dbo:Scientist".freeze, - type: "owl:Class".freeze - term :Biomolecule, - comment: %(equivalent to http://ccdb.ucsd.edu/NIF/BIRNLex-OBO-UBO.owl#birnlex_22.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q206229".freeze, - label: "Biomolecule".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Biomolecule".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Bird, - label: "bird".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Bird".freeze, - subClassOf: "dbo:Animal".freeze, - type: "owl:Class".freeze - term :Blazon, - label: "Blazon".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Blazon".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :BloodVessel, - label: "blood vessel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BloodVessel".freeze, - subClassOf: "dbo:AnatomicalStructure".freeze, - type: "owl:Class".freeze - term :BoardGame, - comment: %(come from http://en.wikipedia.org/wiki/Category:Board_games).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q131436".freeze, - label: "board game".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BoardGame".freeze, - subClassOf: "dbo:Game".freeze, - type: "owl:Class".freeze - term :BobsleighAthlete, - label: "BobsleighAthlete".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BobsleighAthlete".freeze, - subClassOf: "dbo:WinterSportPlayer".freeze, - type: "owl:Class".freeze - term :BodyOfWater, - equivalentClass: "schema:BodyOfWater".freeze, - label: "body of water".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BodyOfWater".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :Bodybuilder, - equivalentClass: "http://www.wikidata.org/entity/Q15982795".freeze, - label: "bodybuilder".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Bodybuilder".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Bone, - equivalentClass: "http://www.wikidata.org/entity/Q265868".freeze, - label: "bone".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Bone".freeze, - subClassOf: "dbo:AnatomicalStructure".freeze, - type: "owl:Class".freeze - term :Book, - equivalentClass: ["bibo:Book".freeze, "http://www.wikidata.org/entity/Q571".freeze, "schema:Book".freeze], - label: "book".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Book".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :BowlingLeague, - comment: %(a group of sports teams or players that compete against each other in Bowling).freeze, - label: "bowling league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BowlingLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :Boxer, - label: "boxer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Boxer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :BoxingLeague, - comment: %(A group of sports teams or fighters that compete against each other in Boxing).freeze, - label: "boxing league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BoxingLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :Brain, - label: "brain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Brain".freeze, - subClassOf: "dbo:AnatomicalStructure".freeze, - type: "owl:Class".freeze - term :Brewery, - label: "brewery".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Brewery".freeze, - subClassOf: "dbo:Company".freeze, - type: "owl:Class".freeze - term :Bridge, - comment: %(A bridge is a structure built to span physical obstacles such as a body of water, valley, or road, for the purpose of providing passage over the obstacle \(http://en.wikipedia.org/wiki/Bridge\).).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q12280".freeze, - label: "bridge".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Bridge".freeze, - subClassOf: "dbo:RouteOfTransportation".freeze, - type: "owl:Class".freeze - term :BritishRoyalty, - label: "British royalty".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BritishRoyalty".freeze, - subClassOf: "dbo:Royalty".freeze, - type: "owl:Class".freeze - term :BroadcastNetwork, - comment: %(A broadcast network is an organization, such as a corporation or other association, that provides live or recorded content, such as movies, newscasts, sports, and public affairs programs for broadcast over a group of radio or television stations. \(http://en.wikipedia.org/wiki/Broadcast_network - 28/03/2011\)).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q141683".freeze, - label: "broadcast network".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BroadcastNetwork".freeze, - subClassOf: "dbo:Broadcaster".freeze, - type: "owl:Class".freeze - term :Broadcaster, - comment: %(A broadcaster is an organisation responsible for the production of radio or television programs and/or their transmission. \(http://en.wikipedia.org/wiki/Broadcaster - 28/03/2011\)).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q15265344".freeze, - label: "broadcaster".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Broadcaster".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :BrownDwarf, - equivalentClass: "http://www.wikidata.org/entity/Q101600".freeze, - label: "brown dwarf".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BrownDwarf".freeze, - subClassOf: "dbo:Star".freeze, - type: "owl:Class".freeze - term :Browser, - label: "Browser".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Browser".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Building, - comment: %(Building is defined as a Civil Engineering structure such as a house, worship center, factory etc. that has a foundation, wall, roof etc. that protect human being and their properties from direct harsh effect of weather like rain, wind, sun etc. \(http://en.wikipedia.org/wiki/Building\).).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q41176".freeze, - label: "building".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Building".freeze, - subClassOf: "dbo:ArchitecturalStructure".freeze, - type: "owl:Class".freeze - term :BullFighter, - label: "bullfighter".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BullFighter".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :BusCompany, - label: "bus company".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BusCompany".freeze, - subClassOf: "dbo:PublicTransitSystem".freeze, - type: "owl:Class".freeze - term :BusinessPerson, - label: "businessperson".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:BusinessPerson".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Camera, - label: "camera".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Camera".freeze, - subClassOf: "dbo:Device".freeze, - type: "owl:Class".freeze - term :CanadianFootballLeague, - comment: %(A group of sports teams that compete against each other in canadian football league.).freeze, - label: "liga de fútbol canadiense".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CanadianFootballLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :CanadianFootballPlayer, - label: "canadian football Player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CanadianFootballPlayer".freeze, - subClassOf: "dbo:GridironFootballPlayer".freeze, - type: "owl:Class".freeze - term :CanadianFootballTeam, - label: "canadian football Team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CanadianFootballTeam".freeze, - subClassOf: "dbo:SportsTeam".freeze, - type: "owl:Class".freeze - term :Canal, - comment: %(a man-made channel for water).freeze, - equivalentClass: "schema:Canal".freeze, - label: "canal".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Canal".freeze, - subClassOf: "dbo:Stream".freeze, - type: "owl:Class".freeze - term :Canoeist, - label: "canoeist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Canoeist".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Canton, - comment: %(An administrative \(France\) or lawcourts \(Netherlands\) body governing a territorial unity on the municipal level or somewhat above).freeze, - label: "canton".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Canton".freeze, - subClassOf: "dbo:GovernmentalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :Cape, - label: "cape".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Cape".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :Capital, - comment: %(A municipality enjoying primary status in a state, country, province, or other region as its seat of government.).freeze, - label: "Capital".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Capital".freeze, - subClassOf: "dbo:City".freeze, - type: "owl:Class".freeze - term :CapitalOfRegion, - comment: %(seat of a first order administration division.).freeze, - label: "Capital of region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CapitalOfRegion".freeze, - subClassOf: "dbo:City".freeze, - type: "owl:Class".freeze - term :CardGame, - comment: %(come from http://en.wikipedia.org/wiki/Category:Card_games).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q142714".freeze, - label: "card game".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CardGame".freeze, - subClassOf: "dbo:Game".freeze, - type: "owl:Class".freeze - term :Cardinal, - label: "cardinal".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Cardinal".freeze, - subClassOf: "dbo:Cleric".freeze, - type: "owl:Class".freeze - term :CardinalDirection, - comment: %(One of the four main directions on a compass or any other system to determine a geographical position).freeze, - label: "Cardinal direction".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CardinalDirection".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :CareerStation, - comment: %(this class marks a career step in the life of a person, e.g. a soccer player, holding information on the time span, matches and goals he or she achieved at a certain club).freeze, - label: "career station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CareerStation".freeze, - subClassOf: "dbo:TimePeriod".freeze, - type: "owl:Class".freeze - term :Cartoon, - equivalentClass: "http://www.wikidata.org/entity/Q627603".freeze, - label: "cartoon".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Cartoon".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :Case, - comment: %(A case is the total of work done to prepare for an administrative or business decision. As a rule, a case is reflected in a set of documents.).freeze, - label: "case".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Case".freeze, - subClassOf: "dbo:UnitOfWork".freeze, - type: "owl:Class".freeze - term :Casino, - comment: %(In modern English, a casino is a facility which houses and accommodates certain types of gambling activities.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q133215".freeze, - label: "casino".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Casino".freeze, - subClassOf: "dbo:Building".freeze, - type: "owl:Class".freeze - term :Castle, - comment: %(Castles often are, but need not be a military structure. They can serve for status, pleasure and hunt as well.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q23413".freeze, - label: "castle".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Castle".freeze, - subClassOf: "dbo:Building".freeze, - type: "owl:Class".freeze - term :Cat, - equivalentClass: "http://www.wikidata.org/entity/Q146".freeze, - label: "cat".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Cat".freeze, - subClassOf: "dbo:Mammal".freeze, - type: "owl:Class".freeze - term :Caterer, - label: "Caterer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Caterer".freeze, - subClassOf: "dbo:Company".freeze, - type: "owl:Class".freeze - term :Cave, - equivalentClass: "http://www.wikidata.org/entity/Q35509".freeze, - label: "cave".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Cave".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :CelestialBody, - label: "celestial body".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CelestialBody".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :Cemetery, - comment: %(A burial place).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q39614".freeze, - label: "cemetery".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Cemetery".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :Chancellor, - equivalentClass: "http://www.wikidata.org/entity/Q373085".freeze, - label: "chancellor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Chancellor".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :ChartsPlacements, - label: "Place in the Music Charts".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ChartsPlacements".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Cheese, - comment: %(A milk product prepared for human consumption).freeze, - label: "cheese".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Cheese".freeze, - subClassOf: "dbo:Food".freeze, - type: "owl:Class".freeze - term :Chef, - comment: %(a person who cooks professionally for other people).freeze, - label: "chef".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Chef".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :ChemicalCompound, - equivalentClass: "http://www.wikidata.org/entity/Q11173".freeze, - label: "chemical compound".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ChemicalCompound".freeze, - subClassOf: "dbo:ChemicalSubstance".freeze, - type: "owl:Class".freeze - term :ChemicalElement, - label: "chemical element".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ChemicalElement".freeze, - subClassOf: "dbo:ChemicalSubstance".freeze, - type: "owl:Class".freeze - term :ChemicalSubstance, - equivalentClass: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#ChemicalObject".freeze, - label: "chemical substance".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ChemicalSubstance".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :ChessPlayer, - label: "chess player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ChessPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :ChristianBishop, - label: "Christian Bishop".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ChristianBishop".freeze, - subClassOf: "dbo:Cleric".freeze, - type: "owl:Class".freeze - term :ChristianDoctrine, - comment: %(Tenets of the Christian faith, e.g. Trinity, Nicene Creed).freeze, - label: "Christian Doctrine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ChristianDoctrine".freeze, - subClassOf: "dbo:TheologicalConcept".freeze, - type: "owl:Class".freeze - term :ChristianPatriarch, - label: "Christian Patriarch".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ChristianPatriarch".freeze, - subClassOf: "dbo:Cleric".freeze, - type: "owl:Class".freeze - term :Church, - comment: %(This is used for church buildings, not any other meaning of church.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q16970".freeze, - label: "church".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Church".freeze, - subClassOf: "dbo:ReligiousBuilding".freeze, - type: "owl:Class".freeze - term :Cinema, - comment: %(A building for viewing films.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q41253".freeze, - label: "cinema (movie theater)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Cinema".freeze, - subClassOf: "dbo:Venue".freeze, - type: "owl:Class".freeze - term :Cipher, - label: "Cipher".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Cipher".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :City, - comment: %(a relatively large and permanent settlement, particularly a large urban settlement).freeze, - equivalentClass: ["http://www.wikidata.org/entity/Q515".freeze, "schema:City".freeze], - label: "city".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:City".freeze, - subClassOf: "dbo:Settlement".freeze, - type: "owl:Class".freeze - term :CityDistrict, - comment: %(District, borough, area or neighbourhood in a city or town).freeze, - label: "city district".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CityDistrict".freeze, - subClassOf: "dbo:Settlement".freeze, - type: "owl:Class".freeze - term :ClassicalMusicArtist, - label: "classical music artist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ClassicalMusicArtist".freeze, - subClassOf: "dbo:MusicalArtist".freeze, - type: "owl:Class".freeze - term :ClassicalMusicComposition, - label: "classical music composition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ClassicalMusicComposition".freeze, - subClassOf: "dbo:MusicalWork".freeze, - type: "owl:Class".freeze - term :Cleric, - label: "cleric".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Cleric".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :ClericalAdministrativeRegion, - comment: %(An administrative body governing some territorial unity, in this case a clerical administrative body).freeze, - label: "clerical administrative region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ClericalAdministrativeRegion".freeze, - subClassOf: "dbo:AdministrativeRegion".freeze, - type: "owl:Class".freeze - term :ClericalOrder, - label: "clerical order".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ClericalOrder".freeze, - subClassOf: "dbo:ReligiousOrganisation".freeze, - type: "owl:Class".freeze - term :ClubMoss, - label: "club moss".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ClubMoss".freeze, - subClassOf: "dbo:Plant".freeze, - type: "owl:Class".freeze - term :Coach, - label: "coach".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Coach".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :CoalPit, - comment: %(A coal pit is a place where charcoal is or was extracted).freeze, - label: "coal pit".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CoalPit".freeze, - subClassOf: "dbo:Mine".freeze, - type: "owl:Class".freeze - term :CollectionOfValuables, - comment: %(Collection of valuables is a collection considered to be a work in itself\)).freeze, - label: "collection of valuables".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CollectionOfValuables".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :College, - label: "college".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:College".freeze, - subClassOf: ["dbo:EducationalInstitution".freeze, "schema:CollegeOrUniversity".freeze], - type: "owl:Class".freeze - term :CollegeCoach, - label: "college coach".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CollegeCoach".freeze, - subClassOf: "dbo:Coach".freeze, - type: "owl:Class".freeze - term :Colour, - comment: %(Color or colour is the visual perceptual property corresponding in humans to the categories called red, yellow, blue and others. Color derives from the spectrum of light \(distribution of light energy versus wavelength\) interacting in the eye with the spectral sensitivities of the light receptors.).freeze, - label: "colour".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Colour".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :CombinationDrug, - comment: %(Medikamente die mehrere Wirkstoffe enthalten).freeze, - label: "combination drug".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CombinationDrug".freeze, - subClassOf: "dbo:Drug".freeze, - type: "owl:Class".freeze - term :Comedian, - label: "comedian".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Comedian".freeze, - subClassOf: "dbo:Artist".freeze, - type: "owl:Class".freeze - term :ComedyGroup, - label: "Comedy Group".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ComedyGroup".freeze, - subClassOf: "dbo:Group".freeze, - type: "owl:Class".freeze - term :Comic, - equivalentClass: "http://www.wikidata.org/entity/Q245068".freeze, - label: "comic".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Comic".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :ComicStrip, - label: "comic strip".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ComicStrip".freeze, - subClassOf: "dbo:Comic".freeze, - type: "owl:Class".freeze - term :ComicsCharacter, - label: "comics character".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ComicsCharacter".freeze, - subClassOf: "dbo:FictionalCharacter".freeze, - type: "owl:Class".freeze - term :ComicsCreator, - label: "comics creator".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ComicsCreator".freeze, - subClassOf: "dbo:Artist".freeze, - type: "owl:Class".freeze - term :Community, - label: "Community".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Community".freeze, - subClassOf: "dbo:PopulatedPlace".freeze, - type: "owl:Class".freeze - term :Company, - equivalentClass: "http://www.wikidata.org/entity/Q4830453".freeze, - label: "company".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Company".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :Competition, - label: "competition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Competition".freeze, - subClassOf: "dbo:Event".freeze, - type: "owl:Class".freeze - term :ConcentrationCamp, - comment: %(camp in which people are imprisoned or confined, commonly in large groups, without trial. -Includes concentration, extermination, transit, detention, internment, \(forced\) labor, prisoner-of-war, Gulag; Nazi camps related to the Holocaust).freeze, - label: "Concentration camp".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ConcentrationCamp".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :Congressman, - label: "congressman".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Congressman".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :Conifer, - label: "conifer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Conifer".freeze, - subClassOf: "dbo:Plant".freeze, - type: "owl:Class".freeze - term :Constellation, - equivalentClass: "http://www.wikidata.org/entity/Q8928".freeze, - label: "constellation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Constellation".freeze, - subClassOf: "dbo:CelestialBody".freeze, - type: "owl:Class".freeze - term :Contest, - equivalentClass: "http://www.wikidata.org/entity/Q476300".freeze, - label: "contest".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Contest".freeze, - subClassOf: "dbo:Competition".freeze, - type: "owl:Class".freeze - term :Continent, - equivalentClass: "schema:Continent".freeze, - label: "continent".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Continent".freeze, - subClassOf: "dbo:PopulatedPlace".freeze, - type: "owl:Class".freeze - term :ControlledDesignationOfOriginWine, - comment: %(A quality assurance label for wines).freeze, - label: "Controlled designation of origin wine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ControlledDesignationOfOriginWine".freeze, - subClassOf: "dbo:Wine".freeze, - type: "owl:Class".freeze - term :Convention, - label: "convention".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Convention".freeze, - subClassOf: "dbo:SocietalEvent".freeze, - type: "owl:Class".freeze - term :ConveyorSystem, - label: "conveyor system".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ConveyorSystem".freeze, - subClassOf: "dbo:On-SiteTransportation".freeze, - type: "owl:Class".freeze - term :Country, - equivalentClass: ["http://www.wikidata.org/entity/Q6256".freeze, "schema:Country".freeze], - label: "country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Country".freeze, - subClassOf: "dbo:PopulatedPlace".freeze, - type: "owl:Class".freeze - term :CountrySeat, - comment: %(A country seat is a rural patch of land owned by a land owner.).freeze, - label: "country estate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CountrySeat".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :Crater, - label: "crater".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Crater".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :CricketGround, - label: "cricket ground".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CricketGround".freeze, - subClassOf: "dbo:SportFacility".freeze, - type: "owl:Class".freeze - term :CricketLeague, - comment: %(a group of sports teams that compete against each other in Cricket).freeze, - label: "cricket league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CricketLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :CricketTeam, - label: "cricket team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CricketTeam".freeze, - subClassOf: "dbo:SportsTeam".freeze, - type: "owl:Class".freeze - term :Cricketer, - label: "cricketer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Cricketer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Criminal, - equivalentClass: "http://www.wikidata.org/entity/Q2159907".freeze, - label: "criminal".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Criminal".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :CrossCountrySkier, - label: "cross-country skier".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CrossCountrySkier".freeze, - subClassOf: "dbo:WinterSportPlayer".freeze, - type: "owl:Class".freeze - term :Crustacean, - label: "crustacean".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Crustacean".freeze, - subClassOf: "dbo:Animal".freeze, - type: "owl:Class".freeze - term :CultivatedVariety, - comment: %(A cultivar is a plant or grouping of plants selected for desirable characteristics that can be maintained by propagation. A plant whose origin or selection is primarily due to intentional human activity.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q4886".freeze, - label: "cultivar (cultivated variety)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CultivatedVariety".freeze, - subClassOf: "dbo:Plant".freeze, - type: "owl:Class".freeze - term :Curler, - label: "curler".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Curler".freeze, - subClassOf: "dbo:WinterSportPlayer".freeze, - type: "owl:Class".freeze - term :CurlingLeague, - comment: %(a group of sports teams that compete against each other in Curling).freeze, - label: "curling league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CurlingLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :Currency, - label: "currency".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Currency".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Cycad, - label: "cycad".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Cycad".freeze, - subClassOf: "dbo:Plant".freeze, - type: "owl:Class".freeze - term :CyclingCompetition, - label: "cycling competition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CyclingCompetition".freeze, - subClassOf: "dbo:SportsEvent".freeze, - type: "owl:Class".freeze - term :CyclingLeague, - comment: %(a group of sports teams that compete against each other in Cycling).freeze, - label: "cycling league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CyclingLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :CyclingRace, - equivalentClass: "http://www.wikidata.org/entity/Q15091377".freeze, - label: "cycling race".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CyclingRace".freeze, - subClassOf: "dbo:Race".freeze, - type: "owl:Class".freeze - term :CyclingTeam, - label: "cycling team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:CyclingTeam".freeze, - subClassOf: "dbo:SportsTeam".freeze, - type: "owl:Class".freeze - term :Cyclist, - label: "cyclist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Cyclist".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :DBpedian, - label: "DBpedian".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:DBpedian".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :DTMRacer, - label: "DTM racer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:DTMRacer".freeze, - subClassOf: "dbo:RacingDriver".freeze, - type: "owl:Class".freeze - term :Dam, - comment: %(A dam is part of a landscape infrastructure, like waterworks \(canals\) or roads, much more than a building, though, of course, it has been built, too.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q12323".freeze, - label: "dam".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Dam".freeze, - subClassOf: "dbo:Infrastructure".freeze, - type: "owl:Class".freeze - term :Dancer, - label: "dancer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Dancer".freeze, - subClassOf: "dbo:Artist".freeze, - type: "owl:Class".freeze - term :DartsPlayer, - label: "darts player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:DartsPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Database, - label: "Database".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Database".freeze, - subClassOf: ["dbo:Work".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject".freeze], - type: "owl:Class".freeze - term :Deanery, - comment: %(The intermediate level of a clerical administrative body between parish and diocese).freeze, - label: "deanery".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Deanery".freeze, - subClassOf: "dbo:ClericalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :Decoration, - comment: %(An object, such as a medal or an order, that is awarded to honor the recipient ostentatiously.).freeze, - label: "decoration".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Decoration".freeze, - subClassOf: "dbo:Award".freeze, - type: "owl:Class".freeze - term :Deity, - equivalentClass: "http://www.wikidata.org/entity/Q178885".freeze, - label: "deity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Deity".freeze, - subClassOf: "dbo:Agent".freeze, - type: "owl:Class".freeze - term :Demographics, - comment: %(Population of a place. Uses these properties: populationTotal, year \(when measured, populationYear\), rank \(sortOrder of this place amongst its siblings at the same level\), name \(areal measured by the population, eg: "locality", "municipality" or "comitat"\)).freeze, - label: "demographics".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Demographics".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Department, - label: "department".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Department".freeze, - subClassOf: "dbo:GovernmentalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :Depth, - label: "depth".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Depth".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Deputy, - label: "deputy".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Deputy".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :Desert, - comment: %(A barren area of land where little precipitation occurs.).freeze, - label: "Desert".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Desert".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :Device, - label: "device".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Device".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :DigitalCamera, - label: "digital camera".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:DigitalCamera".freeze, - subClassOf: "dbo:Camera".freeze, - type: "owl:Class".freeze - term :Dike, - comment: %(A dike is an elongated naturally occurring ridge or artificially constructed fill or wall, which regulates water levels).freeze, - label: "dike".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Dike".freeze, - subClassOf: "dbo:Infrastructure".freeze, - type: "owl:Class".freeze - term :Diocese, - comment: %(District or see under the supervision of a bishop.).freeze, - label: "diocese".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Diocese".freeze, - subClassOf: "dbo:ClericalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :Diploma, - label: "diploma".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Diploma".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Disease, - equivalentClass: "http://www.wikidata.org/entity/Q12136".freeze, - label: "disease".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Disease".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :DisneyCharacter, - label: "disney character".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:DisneyCharacter".freeze, - subClassOf: "dbo:FictionalCharacter".freeze, - type: "owl:Class".freeze - term :District, - label: "district".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:District".freeze, - subClassOf: "dbo:GovernmentalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :DistrictWaterBoard, - comment: %(Conservancy, governmental agency dedicated to surface water management).freeze, - label: "district water board".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:DistrictWaterBoard".freeze, - subClassOf: "dbo:GovernmentalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :Document, - comment: %(Any document).freeze, - equivalentClass: "foaf:Document".freeze, - label: "document".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Document".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :DocumentType, - comment: %(type of document \(official, informal etc.\)).freeze, - label: "Document Type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:DocumentType".freeze, - subClassOf: "dbo:Type".freeze, - type: "owl:Class".freeze - term :Dog, - equivalentClass: "http://www.wikidata.org/entity/Q25324".freeze, - label: "dog".freeze, - "owl:disjointWith": "dbo:Cat".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Dog".freeze, - subClassOf: "dbo:Mammal".freeze, - type: "owl:Class".freeze - term :Drama, - equivalentClass: "http://www.wikidata.org/entity/Q25372".freeze, - label: "drama".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Drama".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :Drug, - equivalentClass: "http://www.wikidata.org/entity/Q8386".freeze, - label: "drug".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Drug".freeze, - subClassOf: "dbo:ChemicalSubstance".freeze, - type: "owl:Class".freeze - term :Earthquake, - comment: %(the result of a sudden release of energy in the Earth's crust that creates seismic waves).freeze, - label: "earthquake".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Earthquake".freeze, - subClassOf: "dbo:NaturalEvent".freeze, - type: "owl:Class".freeze - term :Economist, - comment: %(An economist is a professional in the social science discipline of economics.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q188094".freeze, - label: "economist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Economist".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :EducationalInstitution, - equivalentClass: ["http://www.wikidata.org/entity/Q2385804".freeze, "schema:EducationalOrganization".freeze], - label: "educational institution".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:EducationalInstitution".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :Egyptologist, - equivalentClass: "http://www.wikidata.org/entity/Q1350189".freeze, - label: "egyptologist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Egyptologist".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Election, - equivalentClass: "http://www.wikidata.org/entity/Q40231".freeze, - label: "Election".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Election".freeze, - subClassOf: "dbo:SocietalEvent".freeze, - type: "owl:Class".freeze - term :ElectionDiagram, - label: "Election Diagram".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ElectionDiagram".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :ElectricalSubstation, - label: "electrical substation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ElectricalSubstation".freeze, - subClassOf: "dbo:Infrastucture".freeze, - type: "owl:Class".freeze - term :Embryology, - label: "embryology".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Embryology".freeze, - subClassOf: "dbo:AnatomicalStructure".freeze, - type: "owl:Class".freeze - term :Employer, - comment: %(a person, business, firm, etc, that employs workers.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q3053337".freeze, - label: "Employer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Employer".freeze, - subClassOf: "dbo:Agent".freeze, - type: "owl:Class".freeze - term :EmployersOrganisation, - comment: %(An employers' organisation is an organisation of entrepreneurs who work together to coordinate their actions in the field of labour relations).freeze, - label: "Employers' Organisation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:EmployersOrganisation".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :Engine, - label: "engine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Engine".freeze, - subClassOf: "dbo:Device".freeze, - type: "owl:Class".freeze - term :Engineer, - equivalentClass: "http://www.wikidata.org/entity/Q81096".freeze, - label: "engineer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Engineer".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Entomologist, - equivalentClass: "http://www.wikidata.org/entity/Q3055126".freeze, - label: "entomologist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Entomologist".freeze, - subClassOf: "dbo:Scientist".freeze, - type: "owl:Class".freeze - term :Enzyme, - equivalentClass: "http://www.wikidata.org/entity/Q8047".freeze, - label: "enzyme".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Enzyme".freeze, - subClassOf: "dbo:Biomolecule".freeze, - type: "owl:Class".freeze - term :Escalator, - label: "escalator".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Escalator".freeze, - subClassOf: "dbo:On-SiteTransportation".freeze, - type: "owl:Class".freeze - term :EthnicGroup, - equivalentClass: "http://www.wikidata.org/entity/Q41710".freeze, - label: "ethnic group".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:EthnicGroup".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Eukaryote, - equivalentClass: "http://www.wikidata.org/entity/Q19088".freeze, - label: "eukaryote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Eukaryote".freeze, - subClassOf: "dbo:Species".freeze, - type: "owl:Class".freeze - term :EurovisionSongContestEntry, - label: "Eurovision song contest entry".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:EurovisionSongContestEntry".freeze, - subClassOf: "dbo:Song".freeze, - type: "owl:Class".freeze - term :Event, - equivalentClass: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, "http://www.wikidata.org/entity/Q1656682".freeze, "schema:Event".freeze], - label: "event".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Event".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Factory, - comment: %(A factory \(previously manufactory\) or manufacturing plant is an industrial site, usually consisting of buildings and machinery, or more commonly a complex having several buildings, where workers manufacture goods or operate machines processing one product into another.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q83405".freeze, - label: "factory".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Factory".freeze, - subClassOf: "dbo:Building".freeze, - type: "owl:Class".freeze - term :Family, - comment: %(A group of people related by common descent, a lineage.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q8436".freeze, - label: "family".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Family".freeze, - subClassOf: "dbo:Agent".freeze, - type: "owl:Class".freeze - term :Farmer, - equivalentClass: "http://www.wikidata.org/entity/Q131512".freeze, - label: "farmer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Farmer".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Fashion, - comment: %(type or code of dressing, according to the standards of the time or individual design.).freeze, - label: "fashion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Fashion".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :FashionDesigner, - equivalentClass: "http://www.wikidata.org/entity/Q3501317".freeze, - label: "fashion designer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:FashionDesigner".freeze, - subClassOf: "dbo:Artist".freeze, - type: "owl:Class".freeze - term :Fencer, - equivalentClass: "http://www.wikidata.org/entity/Q737498Q13381863".freeze, - label: "fencer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Fencer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Fern, - label: "fern".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Fern".freeze, - subClassOf: "dbo:Plant".freeze, - type: "owl:Class".freeze - term :FictionalCharacter, - equivalentClass: "http://www.wikidata.org/entity/Q95074".freeze, - label: "fictional character".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:FictionalCharacter".freeze, - subClassOf: "dbo:Agent".freeze, - type: "owl:Class".freeze - term :FieldHockeyLeague, - comment: %(a group of sports teams that compete against each other in Field Hockey).freeze, - label: "field hockey league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:FieldHockeyLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :FigureSkater, - equivalentClass: "http://www.wikidata.org/entity/Q13219587".freeze, - label: "figure skater".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:FigureSkater".freeze, - subClassOf: "dbo:WinterSportPlayer".freeze, - type: "owl:Class".freeze - term :File, - comment: %(A document with a filename).freeze, - label: "file".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:File".freeze, - subClassOf: "dbo:Document".freeze, - type: "owl:Class".freeze - term :FileSystem, - label: "File system".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:FileSystem".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Film, - equivalentClass: ["http://www.wikidata.org/entity/Q11424".freeze, "schema:Movie".freeze], - label: "movie".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Film".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :FilmFestival, - equivalentClass: "http://www.wikidata.org/entity/Q220505".freeze, - label: "film festival".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:FilmFestival".freeze, - subClassOf: ["dbo:SocietalEvent".freeze, "schema:Festival".freeze], - type: "owl:Class".freeze - term :Fish, - equivalentClass: "http://www.wikidata.org/entity/Q152".freeze, - label: "fish".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Fish".freeze, - subClassOf: "dbo:Animal".freeze, - type: "owl:Class".freeze - term :Flag, - equivalentClass: "http://www.wikidata.org/entity/Q14660".freeze, - label: "flag".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Flag".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :FloweringPlant, - label: "flowering plant".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:FloweringPlant".freeze, - subClassOf: "dbo:Plant".freeze, - type: "owl:Class".freeze - term :Food, - comment: %(Food is any eatable or drinkable substance that is normally consumed by humans.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q2095".freeze, - label: "Food".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Food".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :FootballLeagueSeason, - label: "football league season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:FootballLeagueSeason".freeze, - subClassOf: "dbo:SportsTeamSeason".freeze, - type: "owl:Class".freeze - term :FootballMatch, - comment: %(a competition between two football teams).freeze, - label: "football match".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:FootballMatch".freeze, - subClassOf: "dbo:SportsEvent".freeze, - type: "owl:Class".freeze - term :Forest, - comment: %(A natural place more or less densely grown with trees).freeze, - label: "forest".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Forest".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :FormerMunicipality, - comment: %(A municipality that has ceased to exist, and most of the time got incorporated \(wholesale or partly\) into another municipality).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q19730508".freeze, - label: "one-time municipality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:FormerMunicipality".freeze, - subClassOf: "dbo:Municipality".freeze, - type: "owl:Class".freeze - term :FormulaOneRacer, - label: "Formula One racer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:FormulaOneRacer".freeze, - subClassOf: "dbo:RacingDriver".freeze, - type: "owl:Class".freeze - term :FormulaOneRacing, - label: "formula one racing".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:FormulaOneRacing".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :FormulaOneTeam, - label: "formula 1 team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:FormulaOneTeam".freeze, - subClassOf: "dbo:SportsTeam".freeze, - type: "owl:Class".freeze - term :Fort, - comment: %(Fortified place, most of the time to protect traffic routes).freeze, - label: "fort".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Fort".freeze, - subClassOf: "dbo:MilitaryStructure".freeze, - type: "owl:Class".freeze - term :Fungus, - label: "fungus".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Fungus".freeze, - subClassOf: "dbo:Eukaryote".freeze, - type: "owl:Class".freeze - term :GaelicGamesPlayer, - label: "Gaelic games player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GaelicGamesPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Galaxy, - equivalentClass: "http://www.wikidata.org/entity/Q318".freeze, - label: "galaxy".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Galaxy".freeze, - subClassOf: "dbo:CelestialBody".freeze, - type: "owl:Class".freeze - term :Game, - comment: %(a structured activity, usually undertaken for enjoyment and sometimes used as an educational tool).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q11410".freeze, - label: "game".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Game".freeze, - subClassOf: "dbo:Activity".freeze, - type: "owl:Class".freeze - term :Garden, - comment: %(A garden is a planned space, usually outdoors, set aside for the display, cultivation, and enjoyment of plants and other forms of nature. \(http://en.wikipedia.org/wiki/Garden\)).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q1107656".freeze, - label: "garden".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Garden".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :GatedCommunity, - label: "Gated community".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GatedCommunity".freeze, - subClassOf: "dbo:PopulatedPlace".freeze, - type: "owl:Class".freeze - term :Gene, - equivalentClass: "http://www.wikidata.org/entity/Q7187".freeze, - label: "gene".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Gene".freeze, - subClassOf: "dbo:Biomolecule".freeze, - type: "owl:Class".freeze - term :GeneLocation, - label: "GeneLocation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GeneLocation".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Genre, - label: "genre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Genre".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :GeologicalPeriod, - equivalentClass: "http://www.wikidata.org/entity/Q392928".freeze, - label: "geological period".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GeologicalPeriod".freeze, - subClassOf: "dbo:TimePeriod".freeze, - type: "owl:Class".freeze - term :GeopoliticalOrganisation, - label: "geopolitical organisation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GeopoliticalOrganisation".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :Ginkgo, - label: "ginkgo".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Ginkgo".freeze, - subClassOf: "dbo:Plant".freeze, - type: "owl:Class".freeze - term :GivenName, - equivalentClass: "http://www.wikidata.org/entity/Q202444".freeze, - label: "given name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GivenName".freeze, - subClassOf: "dbo:Name".freeze, - type: "owl:Class".freeze - term :Glacier, - equivalentClass: "http://www.wikidata.org/entity/Q35666".freeze, - label: "glacier".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Glacier".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :Globularswarm, - label: "Globular Swarm".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Globularswarm".freeze, - subClassOf: "dbo:Swarm".freeze, - type: "owl:Class".freeze - term :Gnetophytes, - label: "Gnetophytes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Gnetophytes".freeze, - subClassOf: "dbo:Plant".freeze, - type: "owl:Class".freeze - term :GolfCourse, - equivalentClass: "http://www.wikidata.org/entity/Q1048525".freeze, - label: "golf course".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GolfCourse".freeze, - subClassOf: "dbo:SportFacility".freeze, - type: "owl:Class".freeze - term :GolfLeague, - comment: %(Golfplayer that compete against each other in Golf).freeze, - label: "golf league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GolfLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :GolfPlayer, - equivalentClass: "http://www.wikidata.org/entity/Q13156709".freeze, - label: "golf player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GolfPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :GolfTournament, - equivalentClass: "http://www.wikidata.org/entity/Q15061650".freeze, - label: "golf tournament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GolfTournament".freeze, - subClassOf: "dbo:Tournament".freeze, - type: "owl:Class".freeze - term :GovernmentAgency, - comment: %(A government agency is a permanent or semi-permanent organization in the machinery of government that is responsible for the oversight and administration of specific functions, such as an intelligence agency.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q327333".freeze, - label: "government agency".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GovernmentAgency".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :GovernmentCabinet, - comment: %(A cabinet is a body of high-ranking state officials, typically consisting of the top leaders of the executive branch.).freeze, - label: "cabinet of ministers".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GovernmentCabinet".freeze, - subClassOf: "dbo:GovernmentAgency".freeze, - type: "owl:Class".freeze - term :GovernmentType, - comment: %(a form of government).freeze, - label: "Government Type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GovernmentType".freeze, - subClassOf: "dbo:Type".freeze, - type: "owl:Class".freeze - term :GovernmentalAdministrativeRegion, - comment: %(An administrative body governing some territorial unity, in this case a governmental administrative body).freeze, - label: "governmental administrative region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GovernmentalAdministrativeRegion".freeze, - subClassOf: "dbo:AdministrativeRegion".freeze, - type: "owl:Class".freeze - term :Governor, - equivalentClass: "http://www.wikidata.org/entity/Q132050".freeze, - label: "governor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Governor".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :GrandPrix, - label: "Grand Prix".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GrandPrix".freeze, - subClassOf: "dbo:SportsEvent".freeze, - type: "owl:Class".freeze - term :Grape, - equivalentClass: "http://www.wikidata.org/entity/Q10978".freeze, - label: "grape".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Grape".freeze, - subClassOf: "dbo:FloweringPlant".freeze, - type: "owl:Class".freeze - term :GraveMonument, - comment: %(A monument erected on a tomb, or a memorial stone.).freeze, - label: "grave stone or grave monument".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GraveMonument".freeze, - subClassOf: "dbo:Monument".freeze, - type: "owl:Class".freeze - term :GreenAlga, - label: "green alga".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GreenAlga".freeze, - subClassOf: "dbo:Plant".freeze, - type: "owl:Class".freeze - term :GridironFootballPlayer, - equivalentClass: "http://www.wikidata.org/entity/Q14128148".freeze, - label: "gridiron football player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GridironFootballPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :GrossDomesticProduct, - label: "gross domestic product".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GrossDomesticProduct".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :GrossDomesticProductPerCapita, - label: "gross domestic product per capita".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:GrossDomesticProductPerCapita".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Group, - comment: %(An \(informal\) group of people.).freeze, - label: "group".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Group".freeze, - subClassOf: ["dbo:Organisation".freeze, "schema:Organization".freeze], - type: "owl:Class".freeze - term :Guitar, - comment: %(Describes the guitar).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q6607".freeze, - label: "guitar".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Guitar".freeze, - subClassOf: "dbo:Instrument".freeze, - type: "owl:Class".freeze - term :Guitarist, - equivalentClass: "http://www.wikidata.org/entity/Q855091".freeze, - label: "guitarist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Guitarist".freeze, - subClassOf: "dbo:Instrumentalist".freeze, - type: "owl:Class".freeze - term :Gymnast, - comment: %(A gymnast is one who performs gymnastics).freeze, - label: "gymnast".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Gymnast".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :HandballLeague, - comment: %(a group of sports teams that compete against each other in Handball).freeze, - label: "handball league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HandballLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :HandballPlayer, - equivalentClass: "http://www.wikidata.org/entity/Q13365117".freeze, - label: "handball player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HandballPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :HandballTeam, - equivalentClass: "http://www.wikidata.org/entity/Q10517054".freeze, - label: "handball team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HandballTeam".freeze, - subClassOf: "dbo:SportsTeam".freeze, - type: "owl:Class".freeze - term :HighDiver, - label: "high diver".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HighDiver".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Historian, - label: "historian".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Historian".freeze, - subClassOf: "dbo:Writer".freeze, - type: "owl:Class".freeze - term :HistoricBuilding, - label: "historic building".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HistoricBuilding".freeze, - subClassOf: ["dbo:Building".freeze, "schema:LandmarksOrHistoricalBuildings".freeze], - type: "owl:Class".freeze - term :HistoricPlace, - label: "historic place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HistoricPlace".freeze, - subClassOf: ["dbo:Place".freeze, "schema:LandmarksOrHistoricalBuildings".freeze], - type: "owl:Class".freeze - term :HistoricalAreaOfAuthority, - comment: %(Mostly for feudal forms of authority, but can also serve for historical forms of centralised authority).freeze, - label: "ancient area of jurisdiction of a person (feudal) or of a governmental body".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HistoricalAreaOfAuthority".freeze, - subClassOf: "dbo:AdministrativeRegion".freeze, - type: "owl:Class".freeze - term :HistoricalCountry, - comment: %(A place which used to be a country.).freeze, - label: "Historical country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HistoricalCountry".freeze, - subClassOf: "dbo:Country".freeze, - type: "owl:Class".freeze - term :HistoricalDistrict, - comment: %(a place which used to be a district.).freeze, - label: "Historical district".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HistoricalDistrict".freeze, - subClassOf: "dbo:District".freeze, - type: "owl:Class".freeze - term :HistoricalEvent, - comment: %(an event that is clearly different from strictly personal events and had historical impact).freeze, - label: "historical event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HistoricalEvent".freeze, - subClassOf: "dbo:SocietalEvent".freeze, - type: "owl:Class".freeze - term :HistoricalPeriod, - comment: %(A historical Period should be linked to a Place by way of the property dct:spatial \(already defined\)).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q11514315".freeze, - label: "historical period".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HistoricalPeriod".freeze, - subClassOf: "dbo:TimePeriod".freeze, - type: "owl:Class".freeze - term :HistoricalProvince, - comment: %(A place which used to be a province.).freeze, - label: "Historical province".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HistoricalProvince".freeze, - subClassOf: "dbo:Province".freeze, - type: "owl:Class".freeze - term :HistoricalRegion, - comment: %(a place which used to be a region.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q1620908".freeze, - label: "Historical region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HistoricalRegion".freeze, - subClassOf: "dbo:Region".freeze, - type: "owl:Class".freeze - term :HistoricalSettlement, - comment: %(A place which used to be a city or town or village.).freeze, - label: "Historical settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HistoricalSettlement".freeze, - subClassOf: "dbo:Settlement".freeze, - type: "owl:Class".freeze - term :HockeyClub, - label: "hockey club".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HockeyClub".freeze, - subClassOf: "dbo:SportsClub".freeze, - type: "owl:Class".freeze - term :HockeyTeam, - equivalentClass: "http://www.wikidata.org/entity/Q4498974".freeze, - label: "hockey team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HockeyTeam".freeze, - subClassOf: "dbo:SportsTeam".freeze, - type: "owl:Class".freeze - term :Holiday, - equivalentClass: "http://www.wikidata.org/entity/Q1445650".freeze, - label: "holiday".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Holiday".freeze, - subClassOf: "dbo:TimeInterval".freeze, - type: "owl:Class".freeze - term :HollywoodCartoon, - label: "hollywood cartoon".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HollywoodCartoon".freeze, - subClassOf: "dbo:Cartoon".freeze, - type: "owl:Class".freeze - term :Hormone, - comment: %(A hormone is any member of a class of signaling molecules produced by glands in multicellular organisms that are transported by the circulatory system to target distant organs to regulate physiology and behaviour.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q8047".freeze, - label: "Hormone".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Hormone".freeze, - subClassOf: "dbo:Biomolecule".freeze, - type: "owl:Class".freeze - term :Horse, - label: "horse".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Horse".freeze, - subClassOf: "dbo:Mammal".freeze, - type: "owl:Class".freeze - term :HorseRace, - label: "horse race".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HorseRace".freeze, - subClassOf: "dbo:Race".freeze, - type: "owl:Class".freeze - term :HorseRider, - label: "horse rider".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HorseRider".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :HorseTrainer, - label: "horse trainer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HorseTrainer".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Hospital, - equivalentClass: ["http://www.wikidata.org/entity/Q16917".freeze, "schema:Hospital".freeze], - label: "hospital".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Hospital".freeze, - subClassOf: "dbo:Building".freeze, - type: "owl:Class".freeze - term :HotSpring, - equivalentClass: "http://www.wikidata.org/entity/Q177380".freeze, - label: "hot spring".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HotSpring".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :Hotel, - equivalentClass: ["http://www.wikidata.org/entity/Q27686".freeze, "schema:Hotel".freeze], - label: "hotel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Hotel".freeze, - subClassOf: "dbo:Building".freeze, - type: "owl:Class".freeze - term :HumanGene, - label: "HumanGene".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HumanGene".freeze, - subClassOf: "dbo:Gene".freeze, - type: "owl:Class".freeze - term :HumanGeneLocation, - label: "HumanGeneLocation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:HumanGeneLocation".freeze, - subClassOf: "dbo:GeneLocation".freeze, - type: "owl:Class".freeze - term :Humorist, - label: "humorist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Humorist".freeze, - subClassOf: "dbo:Artist".freeze, - type: "owl:Class".freeze - term :IceHockeyLeague, - comment: %(a group of sports teams that compete against each other in Ice Hockey.).freeze, - label: "ice hockey league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:IceHockeyLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :IceHockeyPlayer, - equivalentClass: "http://www.wikidata.org/entity/Q11774891".freeze, - label: "ice hockey player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:IceHockeyPlayer".freeze, - subClassOf: "dbo:WinterSportPlayer".freeze, - type: "owl:Class".freeze - term :Identifier, - equivalentClass: "http://www.wikidata.org/entity/Q6545185".freeze, - label: "identifier".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Identifier".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Ideology, - comment: %(for example: Progressivism_in_the_United_States, Classical_liberalism).freeze, - equivalentClass: ["http://www.ontologydesignpatterns.org/ont/d0.owl#CognitiveEntity".freeze, "http://www.wikidata.org/entity/Q7257".freeze], - label: "ideology".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Ideology".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :Image, - comment: %(A document that contains a visual image).freeze, - label: "image".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Image".freeze, - subClassOf: "dbo:Document".freeze, - type: "owl:Class".freeze - term :InformationAppliance, - comment: %(An information device such as PDAs or Video game consoles, etc.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q1067263".freeze, - label: "information appliance".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:InformationAppliance".freeze, - subClassOf: "dbo:Device".freeze, - type: "owl:Class".freeze - term :Infrastructure, - label: "infrastructure".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Infrastructure".freeze, - subClassOf: "dbo:ArchitecturalStructure".freeze, - type: "owl:Class".freeze - term :InlineHockeyLeague, - comment: %(group of sports teams that compete against each other in Inline Hockey.).freeze, - label: "inline hockey league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:InlineHockeyLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :Insect, - equivalentClass: "http://www.wikidata.org/entity/Q1390".freeze, - label: "insect".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Insect".freeze, - subClassOf: "dbo:Animal".freeze, - type: "owl:Class".freeze - term :Instrument, - comment: %(Describes all musical instrument).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q225829".freeze, - label: "Instrument".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Instrument".freeze, - subClassOf: ["dbo:Device".freeze, "schema:Product".freeze], - type: "owl:Class".freeze - term :Instrumentalist, - label: "instrumentalist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Instrumentalist".freeze, - subClassOf: "dbo:MusicalArtist".freeze, - type: "owl:Class".freeze - term :Intercommunality, - equivalentClass: "http://www.wikidata.org/entity/Q3153117".freeze, - label: "Intercommunality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Intercommunality".freeze, - subClassOf: "dbo:PopulatedPlace".freeze, - type: "owl:Class".freeze - term :InternationalFootballLeagueEvent, - label: "international football league event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:InternationalFootballLeagueEvent".freeze, - subClassOf: "dbo:SportsEvent".freeze, - type: "owl:Class".freeze - term :InternationalOrganisation, - comment: %(An international organisation is either a private or a public organisation seeking to accomplish goals across country borders).freeze, - label: "international organisation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:InternationalOrganisation".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :Island, - equivalentClass: "http://www.wikidata.org/entity/Q23442".freeze, - label: "island".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Island".freeze, - subClassOf: "dbo:PopulatedPlace".freeze, - type: "owl:Class".freeze - term :Jockey, - label: "jockey (horse racer)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Jockey".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Journalist, - equivalentClass: "http://www.wikidata.org/entity/Q1930187".freeze, - label: "journalist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Journalist".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Judge, - equivalentClass: "http://www.wikidata.org/entity/Q16533".freeze, - label: "judge".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Judge".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :LacrosseLeague, - comment: %(a group of sports teams that compete against each other in Lacrosse.).freeze, - label: "lacrosse league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:LacrosseLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :LacrossePlayer, - label: "lacrosse player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:LacrossePlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Lake, - equivalentClass: ["http://www.wikidata.org/entity/Q23397".freeze, "schema:LakeBodyOfWater".freeze], - label: "lake".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Lake".freeze, - subClassOf: "dbo:BodyOfWater".freeze, - type: "owl:Class".freeze - term :Language, - equivalentClass: ["http://www.wikidata.org/entity/Q315".freeze, "schema:Language".freeze], - label: "language".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Language".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :LaunchPad, - equivalentClass: "http://www.wikidata.org/entity/Q1353183".freeze, - label: "launch pad".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:LaunchPad".freeze, - subClassOf: "dbo:Infrastructure".freeze, - type: "owl:Class".freeze - term :Law, - label: "law".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Law".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :LawFirm, - comment: %(A law firm is a business entity formed by one or more lawyers to engage in the practice of law. The primary service provided by a law firm is to advise clients \(individuals or corporations\) about their legal rights and responsibilities, and to represent their clients in civil or criminal cases, business transactions, and other matters in which legal advice and other assistance are sought.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q613142".freeze, - label: "law firm".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:LawFirm".freeze, - subClassOf: "dbo:Company".freeze, - type: "owl:Class".freeze - term :Lawyer, - comment: %(a person who is practicing law.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q40348".freeze, - label: "Lawyer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Lawyer".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :LegalCase, - equivalentClass: "http://www.wikidata.org/entity/Q2334719".freeze, - label: "Legal Case".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:LegalCase".freeze, - subClassOf: "dbo:Case".freeze, - type: "owl:Class".freeze - term :Legislature, - equivalentClass: "http://www.wikidata.org/entity/Q11204".freeze, - label: "legislature".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Legislature".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :Letter, - comment: %(A letter from the alphabet.).freeze, - equivalentClass: ["http://www.wikidata.org/entity/Q133492".freeze, "http://www.wikidata.org/entity/Q9788".freeze], - label: "letter".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Letter".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :Library, - equivalentClass: ["http://www.wikidata.org/entity/Q7075".freeze, "schema:Library".freeze], - label: "library".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Library".freeze, - subClassOf: "dbo:EducationalInstitution".freeze, - type: "owl:Class".freeze - term :Lieutenant, - label: "lieutenant".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Lieutenant".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :LifeCycleEvent, - label: "life cycle event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:LifeCycleEvent".freeze, - subClassOf: "dbo:Event".freeze, - type: "owl:Class".freeze - term :Ligament, - equivalentClass: "http://www.wikidata.org/entity/Q39888".freeze, - label: "ligament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Ligament".freeze, - subClassOf: "dbo:AnatomicalStructure".freeze, - type: "owl:Class".freeze - term :LightNovel, - comment: %(A style of Japanese novel).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q747381".freeze, - label: "light novel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:LightNovel".freeze, - subClassOf: "dbo:Novel".freeze, - type: "owl:Class".freeze - term :Lighthouse, - equivalentClass: "http://www.wikidata.org/entity/Q39715".freeze, - label: "lighthouse".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Lighthouse".freeze, - subClassOf: "dbo:Tower".freeze, - type: "owl:Class".freeze - term :LineOfFashion, - comment: %(A coherent type of clothing or dressing following a particular fashion).freeze, - label: "line of fashion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:LineOfFashion".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :Linguist, - equivalentClass: "http://www.wikidata.org/entity/Q14467526".freeze, - label: "linguist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Linguist".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Lipid, - label: "lipid".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Lipid".freeze, - subClassOf: "dbo:Biomolecule".freeze, - type: "owl:Class".freeze - term :List, - comment: %(A general list of items.).freeze, - equivalentClass: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, "skos:OrderedCollection".freeze], - label: "list".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:List".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :LiteraryGenre, - comment: %(Genres of literature, e.g. Satire, Gothic).freeze, - label: "literary genre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:LiteraryGenre".freeze, - subClassOf: "dbo:Genre".freeze, - type: "owl:Class".freeze - term :Locality, - equivalentClass: "http://www.wikidata.org/entity/Q3257686".freeze, - label: "locality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Locality".freeze, - subClassOf: "dbo:PopulatedPlace".freeze, - type: "owl:Class".freeze - term :Lock, - label: "lock".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Lock".freeze, - subClassOf: "dbo:Infrastructure".freeze, - type: "owl:Class".freeze - term :Locomotive, - equivalentClass: "http://www.wikidata.org/entity/Q93301".freeze, - label: "locomotive".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Locomotive".freeze, - subClassOf: ["dbo:MeanOfTransportation".freeze, "schema:Product".freeze], - type: "owl:Class".freeze - term :LunarCrater, - equivalentClass: "http://www.wikidata.org/entity/Q1348589".freeze, - label: "lunar crater".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:LunarCrater".freeze, - subClassOf: "dbo:Crater".freeze, - type: "owl:Class".freeze - term :Lymph, - label: "lymph".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Lymph".freeze, - subClassOf: "dbo:AnatomicalStructure".freeze, - type: "owl:Class".freeze - term :Magazine, - comment: %(Magazines, periodicals, glossies or serials are publications, generally published on a regular schedule, containing a variety of articles. They are generally financed by advertising, by a purchase price, by pre-paid magazine subscriptions, or all three.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q41298".freeze, - label: "magazine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Magazine".freeze, - subClassOf: "dbo:PeriodicalLiterature".freeze, - type: "owl:Class".freeze - term :Mammal, - equivalentClass: "http://www.wikidata.org/entity/Q7377".freeze, - label: "mammal".freeze, - "owl:disjointWith": "dbo:Fish".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Mammal".freeze, - subClassOf: "dbo:Animal".freeze, - type: "owl:Class".freeze - term :Manga, - comment: %(Manga are comics created in Japan).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q8274".freeze, - label: "manga".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Manga".freeze, - subClassOf: "dbo:Comic".freeze, - type: "owl:Class".freeze - term :Manhua, - comment: %(Comics originally produced in China).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q754669".freeze, - label: "manhua".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Manhua".freeze, - subClassOf: "dbo:Comic".freeze, - type: "owl:Class".freeze - term :Manhwa, - comment: %(Korean term for comics and print cartoons).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q562214".freeze, - label: "manhwa".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Manhwa".freeze, - subClassOf: "dbo:Comic".freeze, - type: "owl:Class".freeze - term :MartialArtist, - label: "martial artist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MartialArtist".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :MathematicalConcept, - comment: %(Mathematical concepts, e.g. Fibonacci numbers, Imaginary numbers, Symmetry).freeze, - label: "Mathematical concept".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MathematicalConcept".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :Mayor, - equivalentClass: "http://www.wikidata.org/entity/Q30185".freeze, - label: "mayor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Mayor".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :MeanOfTransportation, - label: "mean of transportation".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MeanOfTransportation".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Media, - comment: %(storage and transmission channels or tools used to store and deliver information or data).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q340169".freeze, - label: "media".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Media".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :MedicalSpecialty, - equivalentClass: "http://www.wikidata.org/entity/Q930752".freeze, - label: "medical specialty".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MedicalSpecialty".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Medician, - label: "medician".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Medician".freeze, - subClassOf: "dbo:Scientist".freeze, - type: "owl:Class".freeze - term :Medicine, - comment: %(The science and art of healing the human body and identifying the causes of disease).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q11190".freeze, - label: "Medicine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Medicine".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Meeting, - comment: %(A regular or irregular meeting of people as an event to keep record of).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q2761147".freeze, - label: "meeting".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Meeting".freeze, - subClassOf: "dbo:SocietalEvent".freeze, - type: "owl:Class".freeze - term :MemberOfParliament, - equivalentClass: "http://www.wikidata.org/entity/Q486839".freeze, - label: "member of parliament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MemberOfParliament".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :MemberResistanceMovement, - label: "Member of a Resistance Movement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MemberResistanceMovement".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Memorial, - comment: %(A monument erected to commemorate a person, an event and/or group. In the case of a person, this might be a grave or tomb.).freeze, - label: "memorial".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Memorial".freeze, - subClassOf: "dbo:Monument".freeze, - type: "owl:Class".freeze - term :MetroStation, - equivalentClass: "http://www.wikidata.org/entity/Q928830".freeze, - label: "subway station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MetroStation".freeze, - subClassOf: "dbo:Station".freeze, - type: "owl:Class".freeze - term :MicroRegion, - comment: %(A microregion is a - mainy statistical - region in Brazil, at an administrative level between a meso-region and a community).freeze, - label: "micro-region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MicroRegion".freeze, - subClassOf: "dbo:GovernmentalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :MilitaryAircraft, - label: "military aircraft".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MilitaryAircraft".freeze, - subClassOf: "dbo:Aircraft".freeze, - type: "owl:Class".freeze - term :MilitaryConflict, - label: "military conflict".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MilitaryConflict".freeze, - subClassOf: "dbo:SocietalEvent".freeze, - type: "owl:Class".freeze - term :MilitaryPerson, - label: "military person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MilitaryPerson".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :MilitaryService, - label: "military service".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MilitaryService".freeze, - subClassOf: "dbo:CareerStation".freeze, - type: "owl:Class".freeze - term :MilitaryStructure, - comment: %(A military structure such as a Castle, Fortress, Wall, etc.).freeze, - label: "military structure".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MilitaryStructure".freeze, - subClassOf: "dbo:ArchitecturalStructure".freeze, - type: "owl:Class".freeze - term :MilitaryUnit, - equivalentClass: "http://www.wikidata.org/entity/Q176799".freeze, - label: "military unit".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MilitaryUnit".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :MilitaryVehicle, - label: "military vehicle".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MilitaryVehicle".freeze, - subClassOf: ["dbo:MeanOfTransportation".freeze, "schema:Product".freeze], - type: "owl:Class".freeze - term :Mill, - comment: %(a unit operation designed to break a solid material into smaller pieces).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q44494".freeze, - label: "Mill".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Mill".freeze, - subClassOf: "dbo:ArchitecturalStructure".freeze, - type: "owl:Class".freeze - term :Mine, - comment: %(A mine is a place where mineral resources are or were extracted).freeze, - label: "mine".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Mine".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :Mineral, - comment: %(A naturally occurring solid chemical substance.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q7946".freeze, - label: "mineral".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Mineral".freeze, - subClassOf: "dbo:ChemicalSubstance".freeze, - type: "owl:Class".freeze - term :Minister, - label: "minister".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Minister".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :MixedMartialArtsEvent, - label: "mixed martial arts event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MixedMartialArtsEvent".freeze, - subClassOf: "dbo:SportsEvent".freeze, - type: "owl:Class".freeze - term :MixedMartialArtsLeague, - comment: %(a group of sports teams that compete against each other in Mixed Martial Arts).freeze, - label: "mixed martial arts league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MixedMartialArtsLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :MobilePhone, - equivalentClass: "http://www.wikidata.org/entity/Q17517".freeze, - label: "mobile phone".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MobilePhone".freeze, - subClassOf: "dbo:Device".freeze, - type: "owl:Class".freeze - term :Model, - equivalentClass: "http://www.wikidata.org/entity/Q4610556".freeze, - label: "model".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Model".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Mollusca, - equivalentClass: "http://www.wikidata.org/entity/Q25326".freeze, - label: "mollusca".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Mollusca".freeze, - subClassOf: "dbo:Animal".freeze, - type: "owl:Class".freeze - term :Monarch, - equivalentClass: "http://www.wikidata.org/entity/Q116".freeze, - label: "monarch".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Monarch".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Monastery, - comment: %(Monastery denotes the building, or complex of buildings, comprising the domestic quarters and workplace\(s\) of monastics, whether monks or nuns, and whether living in community or alone \(hermits\). The monastery generally includes a place reserved for prayer which may be a chapel, church or temple, and may also serve as an oratory.).freeze, - equivalentClass: ["http://www.ontologydesignpatterns.org/ont/d0.owl#Location".freeze, "http://www.wikidata.org/entity/Q44613".freeze], - label: "monastery".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Monastery".freeze, - subClassOf: "dbo:ReligiousBuilding".freeze, - type: "owl:Class".freeze - term :MonoclonalAntibody, - comment: %(Medikamente welche monoklonale Antikörper sind).freeze, - label: "monoclonal antibody".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MonoclonalAntibody".freeze, - subClassOf: "dbo:Drug".freeze, - type: "owl:Class".freeze - term :Monument, - comment: %(A type of structure \(a statue or an art object\) created to commemorate a person or important event, not necessarily of a catastrophic nature.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q4989906".freeze, - label: "monument".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Monument".freeze, - subClassOf: "dbo:ArchitecturalStructure".freeze, - type: "owl:Class".freeze - term :Mosque, - comment: %(A mosque, sometimes spelt mosk, is a place of worship for followers of Islam.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q32815".freeze, - label: "mosque".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Mosque".freeze, - subClassOf: "dbo:ReligiousBuilding".freeze, - type: "owl:Class".freeze - term :Moss, - label: "moss".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Moss".freeze, - subClassOf: "dbo:Plant".freeze, - type: "owl:Class".freeze - term :MotocycleRacer, - label: "motocycle racer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MotocycleRacer".freeze, - subClassOf: "dbo:MotorcycleRider".freeze, - type: "owl:Class".freeze - term :MotorRace, - label: "motor race".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MotorRace".freeze, - subClassOf: "dbo:Race".freeze, - type: "owl:Class".freeze - term :Motorcycle, - equivalentClass: "http://www.wikidata.org/entity/Q34493".freeze, - label: "motorcycle".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Motorcycle".freeze, - subClassOf: "dbo:MeanOfTransportation".freeze, - type: "owl:Class".freeze - term :MotorcycleRacingLeague, - comment: %(a group of sports teams or bikerider that compete against each other in Motorcycle Racing).freeze, - label: "motorcycle racing league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MotorcycleRacingLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :MotorcycleRider, - label: "motorcycle rider".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MotorcycleRider".freeze, - subClassOf: "dbo:MotorsportRacer".freeze, - type: "owl:Class".freeze - term :MotorsportRacer, - label: "motorsport racer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MotorsportRacer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :MotorsportSeason, - label: "motorsport season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MotorsportSeason".freeze, - subClassOf: "dbo:SportsSeason".freeze, - type: "owl:Class".freeze - term :Mountain, - equivalentClass: ["http://www.wikidata.org/entity/Q8502".freeze, "schema:Mountain".freeze], - label: "mountain".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Mountain".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :MountainPass, - comment: %(a path that allows the crossing of a mountain chain. It is usually a saddle point in between two areas of higher elevation).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q133056".freeze, - label: "mountain pass".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MountainPass".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :MountainRange, - comment: %(a chain of mountains bordered by highlands or separated from other mountains by passes or valleys.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q46831".freeze, - label: "mountain range".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MountainRange".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :MouseGene, - label: "MouseGene".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MouseGene".freeze, - subClassOf: "dbo:Gene".freeze, - type: "owl:Class".freeze - term :MouseGeneLocation, - label: "MouseGeneLocation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MouseGeneLocation".freeze, - subClassOf: "dbo:GeneLocation".freeze, - type: "owl:Class".freeze - term :MovieDirector, - comment: %(a person who oversees making of film.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q2526255".freeze, - label: "Movie director".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MovieDirector".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :MovieGenre, - label: "movie genre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MovieGenre".freeze, - subClassOf: "dbo:Genre".freeze, - type: "owl:Class".freeze - term :MovingImage, - comment: %(A visual document that is intended to be animated; equivalent to http://purl.org/dc/dcmitype/MovingImage).freeze, - label: "moving image".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MovingImage".freeze, - subClassOf: "dbo:Image".freeze, - type: "owl:Class".freeze - term :MovingWalkway, - label: "travellator".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MovingWalkway".freeze, - subClassOf: "dbo:On-SiteTransportation".freeze, - type: "owl:Class".freeze - term :MultiVolumePublication, - label: "multi volume publication".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MultiVolumePublication".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :Municipality, - comment: %(An administrative body governing a territorial unity on the lower level, administering one or a few more settlements).freeze, - label: "municipality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Municipality".freeze, - subClassOf: "dbo:GovernmentalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :Murderer, - equivalentClass: "http://www.wikidata.org/entity/Q16266334".freeze, - label: "murderer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Murderer".freeze, - subClassOf: "dbo:Criminal".freeze, - type: "owl:Class".freeze - term :Muscle, - equivalentClass: "http://www.wikidata.org/entity/Q7365".freeze, - label: "muscle".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Muscle".freeze, - subClassOf: "dbo:AnatomicalStructure".freeze, - type: "owl:Class".freeze - term :Museum, - equivalentClass: "http://www.wikidata.org/entity/Q33506".freeze, - label: "museum".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Museum".freeze, - subClassOf: "dbo:Building".freeze, - type: "owl:Class".freeze - term :MusicComposer, - comment: %(a person who creates music.).freeze, - label: "music composer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MusicComposer".freeze, - subClassOf: "dbo:Writer".freeze, - type: "owl:Class".freeze - term :MusicDirector, - comment: %(A person who is the director of an orchestra or concert band.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q1198887".freeze, - label: "music director".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MusicDirector".freeze, - subClassOf: "dbo:MusicalArtist".freeze, - type: "owl:Class".freeze - term :MusicFestival, - equivalentClass: ["http://www.wikidata.org/entity/Q868557".freeze, "schema:Festival".freeze], - label: "music festival".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MusicFestival".freeze, - subClassOf: "dbo:SocietalEvent".freeze, - type: "owl:Class".freeze - term :MusicGenre, - equivalentClass: "http://www.wikidata.org/entity/Q188451".freeze, - label: "music genre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MusicGenre".freeze, - subClassOf: "dbo:Genre".freeze, - type: "owl:Class".freeze - term :Musical, - equivalentClass: "http://www.wikidata.org/entity/Q2743".freeze, - label: "musical".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Musical".freeze, - subClassOf: "dbo:MusicalWork".freeze, - type: "owl:Class".freeze - term :MusicalArtist, - label: "musical artist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MusicalArtist".freeze, - subClassOf: ["dbo:Artist".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#NaturalPerson".freeze, "schema:MusicGroup".freeze], - type: "owl:Class".freeze - term :MusicalWork, - equivalentClass: "http://www.wikidata.org/entity/Q2188189".freeze, - label: "musical work".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MusicalWork".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :MythologicalFigure, - equivalentClass: "http://www.wikidata.org/entity/Q15410431".freeze, - label: "mythological figure".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:MythologicalFigure".freeze, - subClassOf: "dbo:FictionalCharacter".freeze, - type: "owl:Class".freeze - term :NCAATeamSeason, - label: "national collegiate athletic association team season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NCAATeamSeason".freeze, - subClassOf: "dbo:SportsTeamSeason".freeze, - type: "owl:Class".freeze - term :Name, - equivalentClass: "http://www.wikidata.org/entity/Q82799".freeze, - label: "name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Name".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :NarutoCharacter, - label: "naruto character".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NarutoCharacter".freeze, - subClassOf: "dbo:FictionalCharacter".freeze, - type: "owl:Class".freeze - term :NascarDriver, - label: "nascar driver".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NascarDriver".freeze, - subClassOf: "dbo:RacingDriver".freeze, - type: "owl:Class".freeze - term :NationalAnthem, - comment: %(Patriotic musical composition which is the offcial national song.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q23691".freeze, - label: "National anthem".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NationalAnthem".freeze, - subClassOf: "dbo:MusicalWork".freeze, - type: "owl:Class".freeze - term :NationalCollegiateAthleticAssociationAthlete, - label: "national collegiate athletic association athlete".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NationalCollegiateAthleticAssociationAthlete".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :NationalFootballLeagueEvent, - label: "national football league event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NationalFootballLeagueEvent".freeze, - subClassOf: "dbo:SportsEvent".freeze, - type: "owl:Class".freeze - term :NationalFootballLeagueSeason, - label: "national football league season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NationalFootballLeagueSeason".freeze, - subClassOf: "dbo:FootballLeagueSeason".freeze, - type: "owl:Class".freeze - term :NationalSoccerClub, - label: "national soccer club".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NationalSoccerClub".freeze, - subClassOf: "dbo:SoccerClub".freeze, - type: "owl:Class".freeze - term :NaturalEvent, - label: "natural event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NaturalEvent".freeze, - subClassOf: "dbo:Event".freeze, - type: "owl:Class".freeze - term :NaturalPlace, - comment: %(The natural place encompasses all places occurring naturally in universe.).freeze, - label: "natural place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NaturalPlace".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :NaturalRegion, - equivalentClass: "http://www.wikidata.org/entity/Q1970725".freeze, - label: "natural region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NaturalRegion".freeze, - subClassOf: "dbo:Region".freeze, - type: "owl:Class".freeze - term :Nebula, - label: "Nebula".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Nebula".freeze, - subClassOf: "dbo:CelestialBody".freeze, - type: "owl:Class".freeze - term :Nerve, - equivalentClass: "http://www.wikidata.org/entity/Q9620".freeze, - label: "nerve".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Nerve".freeze, - subClassOf: "dbo:AnatomicalStructure".freeze, - type: "owl:Class".freeze - term :NetballPlayer, - label: "netball player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NetballPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Newspaper, - comment: %(A newspaper is a regularly scheduled publication containing news of current events, informative articles, diverse features and advertising. It usually is printed on relatively inexpensive, low-grade paper such as newsprint.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q11032".freeze, - label: "newspaper".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Newspaper".freeze, - subClassOf: "dbo:PeriodicalLiterature".freeze, - type: "owl:Class".freeze - term :NobelPrize, - equivalentClass: "http://www.wikidata.org/entity/Q7191".freeze, - label: "Nobel Prize".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NobelPrize".freeze, - subClassOf: "dbo:Award".freeze, - type: "owl:Class".freeze - term :Noble, - label: "noble".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Noble".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :NobleFamily, - comment: %(Family deemed to be of noble descent).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q13417114".freeze, - label: "Noble family".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NobleFamily".freeze, - subClassOf: "dbo:Family".freeze, - type: "owl:Class".freeze - term :"Non-ProfitOrganisation", - equivalentClass: "http://www.wikidata.org/entity/Q163740".freeze, - label: "non-profit organisation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Non-ProfitOrganisation".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :NordicCombined, - label: "Nordic Combined".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NordicCombined".freeze, - subClassOf: "dbo:WinterSportPlayer".freeze, - type: "owl:Class".freeze - term :Novel, - comment: %(A book of long narrative in literary prose).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q8261".freeze, - label: "novel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Novel".freeze, - subClassOf: "dbo:Book".freeze, - type: "owl:Class".freeze - term :NuclearPowerStation, - equivalentClass: "http://www.wikidata.org/entity/Q134447".freeze, - label: "Nuclear Power plant".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:NuclearPowerStation".freeze, - subClassOf: "dbo:PowerStation".freeze, - type: "owl:Class".freeze - term :Ocean, - comment: %(A body of saline water that composes much of a planet's hydrosphere.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q9430".freeze, - label: "Ocean".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Ocean".freeze, - subClassOf: "dbo:BodyOfWater".freeze, - type: "owl:Class".freeze - term :OfficeHolder, - label: "office holder".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:OfficeHolder".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :OldTerritory, - label: "old territory".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:OldTerritory".freeze, - subClassOf: "dbo:Territory".freeze, - type: "owl:Class".freeze - term :OlympicEvent, - label: "olympic event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:OlympicEvent".freeze, - subClassOf: "dbo:Olympics".freeze, - type: "owl:Class".freeze - term :OlympicResult, - label: "olympic result".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:OlympicResult".freeze, - subClassOf: "dbo:SportCompetitionResult".freeze, - type: "owl:Class".freeze - term :Olympics, - label: "olympics".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Olympics".freeze, - subClassOf: "dbo:SportsEvent".freeze, - type: "owl:Class".freeze - term :"On-SiteTransportation", - label: "on-site mean of transportation".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:On-SiteTransportation".freeze, - subClassOf: "dbo:MeanOfTransportation".freeze, - type: "owl:Class".freeze - term :Openswarm, - label: "Open Swarm".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Openswarm".freeze, - subClassOf: "dbo:Swarm".freeze, - type: "owl:Class".freeze - term :Opera, - equivalentClass: "http://www.wikidata.org/entity/Q1344".freeze, - label: "opera".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Opera".freeze, - subClassOf: "dbo:MusicalWork".freeze, - type: "owl:Class".freeze - term :Organ, - comment: %(All types and sizes of organs).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q1444".freeze, - label: "organ".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Organ".freeze, - subClassOf: "dbo:Instrument".freeze, - type: "owl:Class".freeze - term :Organisation, - equivalentClass: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialPerson".freeze, "http://www.wikidata.org/entity/Q43229".freeze, "schema:Organization".freeze], - label: "organisation".freeze, - "owl:disjointWith": "http://dbpedia.org/ontology/wgs84_pos:SpatialThing".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Organisation".freeze, - subClassOf: "dbo:Agent".freeze, - type: "owl:Class".freeze - term :OrganisationMember, - comment: %(A member of an organisation.).freeze, - label: "Organisation member".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:OrganisationMember".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :OverseasDepartment, - equivalentClass: "http://www.wikidata.org/entity/Q202216".freeze, - label: "overseas department".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:OverseasDepartment".freeze, - subClassOf: "dbo:Department".freeze, - type: "owl:Class".freeze - term :PaintballLeague, - comment: %(a group of sports teams that compete against each other in Paintball).freeze, - label: "paintball league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PaintballLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :Painter, - equivalentClass: "http://www.wikidata.org/entity/Q1028181".freeze, - label: "painter".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Painter".freeze, - subClassOf: "dbo:Artist".freeze, - type: "owl:Class".freeze - term :Painting, - comment: %(Describes a painting to assign picture entries in wikipedia to artists.).freeze, - equivalentClass: "schema:Painting".freeze, - label: "Painting".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Painting".freeze, - subClassOf: "dbo:Artwork".freeze, - type: "owl:Class".freeze - term :Parish, - comment: %(The smallest unit of a clerical administrative body).freeze, - label: "parish".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Parish".freeze, - subClassOf: "dbo:ClericalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :Park, - comment: %(A park is an area of open space provided for recreational use. http://en.wikipedia.org/wiki/Park).freeze, - equivalentClass: "schema:Park".freeze, - label: "park".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Park".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :Parliament, - equivalentClass: "http://www.wikidata.org/entity/Q35749".freeze, - label: "parliament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Parliament".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :PenaltyShootOut, - label: "penalty shoot-out".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PenaltyShootOut".freeze, - subClassOf: ["dbo:Event".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze], - type: "owl:Class".freeze - term :PeriodOfArtisticStyle, - label: "period of artistic style".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PeriodOfArtisticStyle".freeze, - subClassOf: "dbo:TimePeriod".freeze, - type: "owl:Class".freeze - term :PeriodicalLiterature, - comment: %(Periodical literature \(also called a periodical publication or simply a periodical\) is a published work that appears in a new edition on a regular schedule. The most familiar examples are the newspaper, often published daily, or weekly; or the magazine, typically published weekly, monthly or as a quarterly. Other examples would be a newsletter, a literary journal or learned journal, or a yearbook.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q1092563".freeze, - label: "periodical literature".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PeriodicalLiterature".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :Person, - equivalentClass: ["foaf:Person".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#NaturalPerson".freeze, "http://www.wikidata.org/entity/Q215627".freeze, "http://www.wikidata.org/entity/Q5".freeze, "schema:Person".freeze], - label: "person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Person".freeze, - subClassOf: "dbo:Agent".freeze, - type: "owl:Class".freeze - term :PersonFunction, - label: "person function".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PersonFunction".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :PersonalEvent, - comment: %(an event that occurs in someone's personal life).freeze, - label: "personal event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PersonalEvent".freeze, - subClassOf: "dbo:LifeCycleEvent".freeze, - type: "owl:Class".freeze - term :Philosopher, - equivalentClass: "http://www.wikidata.org/entity/Q4964182".freeze, - label: "philosopher".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Philosopher".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :PhilosophicalConcept, - comment: %(Philosophical concepts, e.g. Existentialism, Cogito Ergo Sum).freeze, - label: "Philosophical concept".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PhilosophicalConcept".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :Photographer, - equivalentClass: "http://www.wikidata.org/entity/Q33231".freeze, - label: "photographer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Photographer".freeze, - subClassOf: "dbo:Artist".freeze, - type: "owl:Class".freeze - term :Place, - comment: %(Immobile things or locations.).freeze, - equivalentClass: ["dbo:Location".freeze, "schema:Place".freeze], - label: "place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Place".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Planet, - equivalentClass: "http://www.wikidata.org/entity/Q634".freeze, - label: "planet".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Planet".freeze, - subClassOf: "dbo:CelestialBody".freeze, - type: "owl:Class".freeze - term :Plant, - equivalentClass: "http://www.wikidata.org/entity/Q756".freeze, - label: "plant".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Plant".freeze, - subClassOf: "dbo:Eukaryote".freeze, - type: "owl:Class".freeze - term :Play, - comment: %(A play is a form of literature written by a playwright, usually consisting of scripted dialogue between characters, intended for theatrical performance rather than just reading.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q25379".freeze, - label: "play".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Play".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :PlayWright, - comment: %(A person who writes dramatic literature or drama.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q214917".freeze, - label: "Playwright".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PlayWright".freeze, - subClassOf: "dbo:Writer".freeze, - type: "owl:Class".freeze - term :PlayboyPlaymate, - label: "Playboy Playmate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PlayboyPlaymate".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Poem, - equivalentClass: "http://www.wikidata.org/entity/Q5185279".freeze, - label: "poem".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Poem".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :Poet, - equivalentClass: "http://www.wikidata.org/entity/Q49757".freeze, - label: "poet".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Poet".freeze, - subClassOf: "dbo:Writer".freeze, - type: "owl:Class".freeze - term :PokerPlayer, - label: "poker player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PokerPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :PoliticalConcept, - comment: %(Political concepts, e.g. Capitalism, Democracy).freeze, - label: "Political concept".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PoliticalConcept".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :PoliticalFunction, - label: "political function".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PoliticalFunction".freeze, - subClassOf: "dbo:PersonFunction".freeze, - type: "owl:Class".freeze - term :PoliticalParty, - comment: %(for example: Democratic_Party_\(United_States\)).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q7278".freeze, - label: "political party".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PoliticalParty".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :Politician, - equivalentClass: "http://www.wikidata.org/entity/Q82955".freeze, - label: "politician".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Politician".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :PoliticianSpouse, - label: "politician spouse".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PoliticianSpouse".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :PoloLeague, - comment: %(A group of sports teams that compete against each other in Polo.).freeze, - label: "polo league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PoloLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :Polysaccharide, - label: "polysaccharide".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Polysaccharide".freeze, - subClassOf: "dbo:Biomolecule".freeze, - type: "owl:Class".freeze - term :Pope, - equivalentClass: "http://www.wikidata.org/entity/Q19546".freeze, - label: "pope".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Pope".freeze, - subClassOf: "dbo:Cleric".freeze, - type: "owl:Class".freeze - term :PopulatedPlace, - comment: %(As defined by the United States Geological Survey, a populated place is a place or area with clustered or scattered buildings and a permanent human population \(city, settlement, town, or village\) referenced with geographic coordinates \(http://en.wikipedia.org/wiki/Populated_place\).).freeze, - label: "populated place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PopulatedPlace".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :Population, - equivalentClass: "http://www.wikidata.org/entity/Q33829".freeze, - label: "population".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Population".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Port, - comment: %(a location on a coast or shore containing one or more harbors where ships can dock and transfer people or cargo to or from land.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q44782".freeze, - label: "Port".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Port".freeze, - subClassOf: "dbo:Infrastructure".freeze, - type: "owl:Class".freeze - term :PowerStation, - equivalentClass: "http://www.wikidata.org/entity/Q159719".freeze, - label: "power station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PowerStation".freeze, - subClassOf: "dbo:Infrastructure".freeze, - type: "owl:Class".freeze - term :Prefecture, - equivalentClass: "http://www.wikidata.org/entity/Q515716".freeze, - label: "prefecture".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Prefecture".freeze, - subClassOf: "dbo:GovernmentalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :PrehistoricalPeriod, - label: "prehistorical period".freeze, - "owl:disjointWith": "dbo:HistoricalPeriod".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PrehistoricalPeriod".freeze, - subClassOf: "dbo:TimePeriod".freeze, - type: "owl:Class".freeze - term :Presenter, - comment: %(TV or radio show presenter).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q13590141".freeze, - label: "presenter".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Presenter".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :President, - equivalentClass: "http://www.wikidata.org/entity/Q30461".freeze, - label: "president".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:President".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :Priest, - equivalentClass: "http://www.wikidata.org/entity/Q42603".freeze, - label: "priest".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Priest".freeze, - subClassOf: "dbo:Cleric".freeze, - type: "owl:Class".freeze - term :PrimeMinister, - label: "prime minister".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PrimeMinister".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :Prison, - equivalentClass: "http://www.wikidata.org/entity/Q40357".freeze, - label: "prison".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Prison".freeze, - subClassOf: "dbo:Building".freeze, - type: "owl:Class".freeze - term :Producer, - comment: %(a person who manages movies or music recordings.).freeze, - equivalentClass: ["http://www.wikidata.org/entity/Q3282637".freeze, "schema:Producer".freeze], - label: "Producer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Producer".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Profession, - equivalentClass: "http://www.wikidata.org/entity/Q28640".freeze, - label: "profession".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Profession".freeze, - subClassOf: "dbo:PersonFunction".freeze, - type: "owl:Class".freeze - term :Professor, - label: "professor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Professor".freeze, - subClassOf: "dbo:Scientist".freeze, - type: "owl:Class".freeze - term :ProgrammingLanguage, - equivalentClass: "http://www.wikidata.org/entity/Q9143".freeze, - label: "programming language".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ProgrammingLanguage".freeze, - subClassOf: "dbo:Language".freeze, - type: "owl:Class".freeze - term :Project, - comment: %(A project is a temporary endeavor undertaken to achieve defined objectives.).freeze, - label: "project".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Project".freeze, - subClassOf: "dbo:UnitOfWork".freeze, - type: "owl:Class".freeze - term :ProtectedArea, - comment: %(This class should be used for protected nature. For enclosed neighbourhoods there is now class GatedCommunity).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q473972".freeze, - label: "protected area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ProtectedArea".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :Protein, - equivalentClass: "http://www.wikidata.org/entity/Q8054".freeze, - label: "protein".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Protein".freeze, - subClassOf: "dbo:Biomolecule".freeze, - type: "owl:Class".freeze - term :Protocol, - label: "Protocol".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Protocol".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :ProtohistoricalPeriod, - label: "protohistorical period".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ProtohistoricalPeriod".freeze, - subClassOf: "dbo:TimePeriod".freeze, - type: "owl:Class".freeze - term :Province, - comment: %(An administrative body governing a territorial unity on the intermediate level, between local and national level).freeze, - label: "province".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Province".freeze, - subClassOf: "dbo:GovernmentalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :Psychologist, - equivalentClass: "http://www.wikidata.org/entity/Q212980".freeze, - label: "psychologist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Psychologist".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :PublicService, - equivalentClass: "http://www.wikidata.org/entity/Q161837".freeze, - label: "public service".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PublicService".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :PublicTransitSystem, - comment: %(A public transit system is a shared passenger transportation service which is available for use by the general public. Public transport modes include buses, trolleybuses, trams and trains, 'rapid transit' \(metro/subways/undergrounds etc\) and ferries. Intercity public transport is dominated by airlines, coaches, and intercity rail. \(http://en.wikipedia.org/wiki/Public_transit\).).freeze, - label: "public transit system".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:PublicTransitSystem".freeze, - subClassOf: "dbo:Company".freeze, - type: "owl:Class".freeze - term :Publisher, - comment: %(Publishing company).freeze, - label: "publisher".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Publisher".freeze, - subClassOf: "dbo:Company".freeze, - type: "owl:Class".freeze - term :Pyramid, - comment: %(a structure whose shape is roughly that of a pyramid in the geometric sense.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q12516".freeze, - label: "Pyramid".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Pyramid".freeze, - subClassOf: "dbo:ArchitecturalStructure".freeze, - type: "owl:Class".freeze - term :Quote, - label: "Quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Quote".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :Race, - label: "race".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Race".freeze, - subClassOf: "dbo:SportsEvent".freeze, - type: "owl:Class".freeze - term :RaceTrack, - equivalentClass: "http://www.wikidata.org/entity/Q1777138".freeze, - label: "race track".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RaceTrack".freeze, - subClassOf: "dbo:SportFacility".freeze, - type: "owl:Class".freeze - term :Racecourse, - comment: %(A racecourse is an alternate term for a horse racing track, found in countries such as the United Kingdom, Australia, Hong Kong, and the United Arab Emirates.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q1777138".freeze, - label: "racecourse".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Racecourse".freeze, - subClassOf: "dbo:RaceTrack".freeze, - type: "owl:Class".freeze - term :RacingDriver, - equivalentClass: "http://www.wikidata.org/entity/Q378622".freeze, - label: "racing driver".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RacingDriver".freeze, - subClassOf: "dbo:MotorsportRacer".freeze, - type: "owl:Class".freeze - term :RadioControlledRacingLeague, - comment: %(A group of sports teams or person that compete against each other in radio-controlled racing.).freeze, - label: "radio-controlled racing league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RadioControlledRacingLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :RadioHost, - equivalentClass: "http://www.wikidata.org/entity/Q2722764".freeze, - label: "radio host".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RadioHost".freeze, - subClassOf: "dbo:Presenter".freeze, - type: "owl:Class".freeze - term :RadioProgram, - equivalentClass: "http://www.wikidata.org/entity/Q1555508".freeze, - label: "radio program".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RadioProgram".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :RadioStation, - comment: %(A radio station has one line up. For instance the radio station BBC Radio 1. Not to be confused with the broadcasting network BBC, which has many radio stations.).freeze, - equivalentClass: "schema:RadioStation".freeze, - label: "radio station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RadioStation".freeze, - subClassOf: "dbo:Broadcaster".freeze, - type: "owl:Class".freeze - term :RailwayLine, - comment: %(A railway line is a transport service by trains that pull passengers or freight provided by an organization. Not to be mistaken for railway track, which is the structure consisting of the rails. Wikipedia do not clearly differentiate between both, so there is one infobox describing tracks and lines.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q728937".freeze, - label: "railway line".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RailwayLine".freeze, - subClassOf: "dbo:RouteOfTransportation".freeze, - type: "owl:Class".freeze - term :RailwayStation, - equivalentClass: "http://www.wikidata.org/entity/Q55488".freeze, - label: "train station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RailwayStation".freeze, - subClassOf: "dbo:Station".freeze, - type: "owl:Class".freeze - term :RailwayTunnel, - equivalentClass: "http://www.wikidata.org/entity/Q1311958".freeze, - label: "railway tunnel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RailwayTunnel".freeze, - subClassOf: "dbo:RouteOfTransportation".freeze, - type: "owl:Class".freeze - term :RallyDriver, - equivalentClass: "http://www.wikidata.org/entity/Q10842936".freeze, - label: "rally driver".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RallyDriver".freeze, - subClassOf: "dbo:RacingDriver".freeze, - type: "owl:Class".freeze - term :Rebellion, - label: "rebellion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Rebellion".freeze, - subClassOf: "dbo:SocietalEvent".freeze, - type: "owl:Class".freeze - term :RecordLabel, - equivalentClass: "http://www.wikidata.org/entity/Q18127".freeze, - label: "record label".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RecordLabel".freeze, - subClassOf: "dbo:Company".freeze, - type: "owl:Class".freeze - term :RecordOffice, - label: "Record Office".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RecordOffice".freeze, - subClassOf: "dbo:Non-ProfitOrganisation".freeze, - type: "owl:Class".freeze - term :Referee, - comment: %(An official who watches a game or match closely to ensure that the rules are adhered to.).freeze, - label: "referee".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Referee".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :Reference, - comment: %(Reference to a work \(book, movie, website\) providing info about the subject).freeze, - label: "Reference".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Reference".freeze, - subClassOf: "dbo:Annotation".freeze, - type: "owl:Class".freeze - term :Regency, - label: "regency".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Regency".freeze, - subClassOf: "dbo:GovernmentalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :Region, - equivalentClass: "http://www.wikidata.org/entity/Q3455524".freeze, - label: "region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Region".freeze, - subClassOf: "dbo:PopulatedPlace".freeze, - type: "owl:Class".freeze - term :Reign, - label: "reign".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Reign".freeze, - subClassOf: "dbo:TimePeriod".freeze, - type: "owl:Class".freeze - term :Relationship, - label: "Relationship".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Relationship".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Religious, - equivalentClass: "http://www.wikidata.org/entity/Q2566598".freeze, - label: "religious".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Religious".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :ReligiousBuilding, - equivalentClass: "http://www.wikidata.org/entity/Q1370598".freeze, - label: "religious building".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ReligiousBuilding".freeze, - subClassOf: "dbo:Building".freeze, - type: "owl:Class".freeze - term :ReligiousOrganisation, - label: "religious organisation".freeze, - "owl:disjointWith": "http://dbpedia.org/ontology/wgs84_pos:SpatialThing".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ReligiousOrganisation".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :Reptile, - label: "reptile".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Reptile".freeze, - subClassOf: "dbo:Animal".freeze, - type: "owl:Class".freeze - term :ResearchProject, - comment: %(A research project is a scientific investigation, usually using scientific methods, to achieve defined objectives.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q1298668".freeze, - label: "research project".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ResearchProject".freeze, - subClassOf: "dbo:Project".freeze, - type: "owl:Class".freeze - term :RestArea, - comment: %(A rest area is part of a Road, meant to stop and rest. More often than not, there is a filling station).freeze, - label: "rest area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RestArea".freeze, - subClassOf: "dbo:Infrastructure".freeze, - type: "owl:Class".freeze - term :Restaurant, - equivalentClass: ["http://www.wikidata.org/entity/Q11707".freeze, "schema:Restaurant".freeze], - label: "restaurant".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Restaurant".freeze, - subClassOf: "dbo:Building".freeze, - type: "owl:Class".freeze - term :Resume, - comment: %(A Resume describes a persons work experience and skill set.).freeze, - label: "Resume".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Resume".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :River, - comment: %(a large natural stream).freeze, - equivalentClass: ["http://www.wikidata.org/entity/Q4022".freeze, "schema:RiverBodyOfWater".freeze], - label: "river".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:River".freeze, - subClassOf: "dbo:Stream".freeze, - type: "owl:Class".freeze - term :Road, - equivalentClass: "http://www.wikidata.org/entity/Q34442".freeze, - label: "road".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Road".freeze, - subClassOf: "dbo:RouteOfTransportation".freeze, - type: "owl:Class".freeze - term :RoadJunction, - comment: %(A road junction is a location where vehicular traffic going in different directions can proceed in a controlled manner designed to minimize accidents. In some cases, vehicles can change between different routes or directions of travel \(http://en.wikipedia.org/wiki/Junction_%28road%29\).).freeze, - label: "road junction".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RoadJunction".freeze, - subClassOf: "dbo:RouteOfTransportation".freeze, - type: "owl:Class".freeze - term :RoadTunnel, - equivalentClass: "http://www.wikidata.org/entity/Q2354973".freeze, - label: "road tunnel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RoadTunnel".freeze, - subClassOf: "dbo:RouteOfTransportation".freeze, - type: "owl:Class".freeze - term :Robot, - label: "Robot".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Robot".freeze, - subClassOf: "dbo:Device".freeze, - type: "owl:Class".freeze - term :Rocket, - equivalentClass: "http://www.wikidata.org/entity/Q41291".freeze, - label: "rocket".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Rocket".freeze, - subClassOf: "dbo:MeanOfTransportation".freeze, - type: "owl:Class".freeze - term :RocketEngine, - label: "rocket engine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RocketEngine".freeze, - subClassOf: "dbo:Engine".freeze, - type: "owl:Class".freeze - term :RollerCoaster, - label: "roller coaster".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RollerCoaster".freeze, - subClassOf: "dbo:AmusementParkAttraction".freeze, - type: "owl:Class".freeze - term :RomanEmperor, - equivalentClass: "http://www.wikidata.org/entity/Q842606".freeze, - label: "roman emperor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RomanEmperor".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :RouteOfTransportation, - comment: %(A route of transportation \(thoroughfare\) may refer to a public road, highway, path or trail or a route on water from one place to another for use by a variety of general traffic \(http://en.wikipedia.org/wiki/Thoroughfare\).).freeze, - label: "route of transportation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RouteOfTransportation".freeze, - subClassOf: "dbo:Infrastructure".freeze, - type: "owl:Class".freeze - term :RouteStop, - comment: %(designated place where vehicles stop for passengers to board or alight).freeze, - label: "route stop".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RouteStop".freeze, - subClassOf: "dbo:Station".freeze, - type: "owl:Class".freeze - term :Rower, - equivalentClass: "http://www.wikidata.org/entity/Q13382576".freeze, - label: "rower".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Rower".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Royalty, - label: "royalty".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Royalty".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :RugbyClub, - label: "rugby club".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RugbyClub".freeze, - subClassOf: "dbo:SportsClub".freeze, - type: "owl:Class".freeze - term :RugbyLeague, - comment: %(A group of sports teams that compete against each other in rugby.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q10962".freeze, - label: "rugby league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RugbyLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :RugbyPlayer, - equivalentClass: "http://www.wikidata.org/entity/Q13415036".freeze, - label: "rugby player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:RugbyPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Saint, - equivalentClass: "http://www.wikidata.org/entity/Q43115".freeze, - label: "saint".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Saint".freeze, - subClassOf: "dbo:Cleric".freeze, - type: "owl:Class".freeze - term :Sales, - equivalentClass: "http://www.wikidata.org/entity/Q194189".freeze, - label: "sales".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Sales".freeze, - subClassOf: "dbo:Activity".freeze, - type: "owl:Class".freeze - term :SambaSchool, - label: "samba school".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SambaSchool".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :Satellite, - comment: %(An astronomic object orbiting around a planet or star. Definition partly derived from http://www.ontotext.com/proton/protonext# \(and thus WordNet 1.7\).).freeze, - label: "Satellite".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Satellite".freeze, - subClassOf: "dbo:CelestialBody".freeze, - type: "owl:Class".freeze - term :School, - equivalentClass: ["http://www.wikidata.org/entity/Q3914".freeze, "schema:School".freeze], - label: "school".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:School".freeze, - subClassOf: "dbo:EducationalInstitution".freeze, - type: "owl:Class".freeze - term :ScientificConcept, - comment: %(Scientific concepts, e.g. Theory of relativity, Quantum gravity).freeze, - label: "Scientific concept".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ScientificConcept".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :Scientist, - equivalentClass: "http://www.wikidata.org/entity/Q901".freeze, - label: "scientist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Scientist".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :ScreenWriter, - equivalentClass: "http://www.wikidata.org/entity/Q28389".freeze, - label: "screenwriter".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ScreenWriter".freeze, - subClassOf: "dbo:Writer".freeze, - type: "owl:Class".freeze - term :Sculptor, - label: "sculptor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Sculptor".freeze, - subClassOf: "dbo:Artist".freeze, - type: "owl:Class".freeze - term :Sculpture, - comment: %(Sculpture is three-dimensional artwork created by shaping or combining hard materials, typically stone such as marble, metal, glass, or wood, or plastic materials such as clay, textiles, polymers and softer metals.).freeze, - equivalentClass: "schema:Sculpture".freeze, - label: "Sculpture".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Sculpture".freeze, - subClassOf: "dbo:Artwork".freeze, - type: "owl:Class".freeze - term :Sea, - equivalentClass: "schema:SeaBodyOfWater".freeze, - label: "sea".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Sea".freeze, - subClassOf: "dbo:BodyOfWater".freeze, - type: "owl:Class".freeze - term :Senator, - label: "senator".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Senator".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :SerialKiller, - equivalentClass: "http://www.wikidata.org/entity/Q484188".freeze, - label: "serial killer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SerialKiller".freeze, - subClassOf: "dbo:Murderer".freeze, - type: "owl:Class".freeze - term :Settlement, - equivalentClass: "http://www.wikidata.org/entity/Q486972".freeze, - label: "settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Settlement".freeze, - subClassOf: "dbo:PopulatedPlace".freeze, - type: "owl:Class".freeze - term :Ship, - equivalentClass: "http://www.wikidata.org/entity/Q11446".freeze, - label: "ship".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Ship".freeze, - subClassOf: ["dbo:MeanOfTransportation".freeze, "schema:Product".freeze], - type: "owl:Class".freeze - term :ShoppingMall, - equivalentClass: ["http://www.wikidata.org/entity/Q11315".freeze, "schema:ShoppingCenter".freeze], - label: "shopping mall".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:ShoppingMall".freeze, - subClassOf: "dbo:Building".freeze, - type: "owl:Class".freeze - term :Shrine, - equivalentClass: "http://www.wikidata.org/entity/Q697295".freeze, - label: "shrine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Shrine".freeze, - subClassOf: "dbo:ReligiousBuilding".freeze, - type: "owl:Class".freeze - term :Singer, - comment: %(a person who sings.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q177220".freeze, - label: "Singer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Singer".freeze, - subClassOf: "dbo:MusicalArtist".freeze, - type: "owl:Class".freeze - term :Single, - comment: %(In music, a single or record single is a type of release, typically a recording of fewer tracks than an LP or a CD.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q134556".freeze, - label: "single".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Single".freeze, - subClassOf: "dbo:MusicalWork".freeze, - type: "owl:Class".freeze - term :SiteOfSpecialScientificInterest, - comment: %(A Site of Special Scientific Interest \(SSSI\) is a conservation designation denoting a protected area in the United Kingdom. SSSIs are the basic building block of site-based nature conservation legislation and most other legal nature/geological conservation designations in Great Britain are based upon them, including National Nature Reserves, Ramsar Sites, Special Protection Areas, and Special Areas of Conservation.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q422211".freeze, - label: "Site of Special Scientific Interest".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SiteOfSpecialScientificInterest".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :Skater, - equivalentClass: "http://www.wikidata.org/entity/Q847400".freeze, - label: "skater".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Skater".freeze, - subClassOf: "dbo:WinterSportPlayer".freeze, - type: "owl:Class".freeze - term :SkiArea, - equivalentClass: "schema:SkiResort".freeze, - label: "ski area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SkiArea".freeze, - subClassOf: "dbo:SportFacility".freeze, - type: "owl:Class".freeze - term :SkiResort, - equivalentClass: "http://www.wikidata.org/entity/Q130003".freeze, - label: "ski resort".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SkiResort".freeze, - subClassOf: "dbo:SkiArea".freeze, - type: "owl:Class".freeze - term :Ski_jumper, - label: "ski jumper".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Ski_jumper".freeze, - subClassOf: "dbo:WinterSportPlayer".freeze, - type: "owl:Class".freeze - term :Skier, - equivalentClass: "http://www.wikidata.org/entity/Q4270517".freeze, - label: "skier".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Skier".freeze, - subClassOf: "dbo:WinterSportPlayer".freeze, - type: "owl:Class".freeze - term :Skyscraper, - equivalentClass: "http://www.wikidata.org/entity/Q11303".freeze, - label: "skyscraper".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Skyscraper".freeze, - subClassOf: "dbo:Building".freeze, - type: "owl:Class".freeze - term :SnookerChamp, - comment: %(An athlete that plays snooker and won the world championship at least once).freeze, - label: "snooker world champion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SnookerChamp".freeze, - subClassOf: "dbo:SnookerPlayer".freeze, - type: "owl:Class".freeze - term :SnookerPlayer, - comment: %(An athlete that plays snooker, which is a billard derivate).freeze, - label: "snooker player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SnookerPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :SnookerWorldRanking, - comment: %(The official world ranking in snooker for a certain year/season).freeze, - label: "snooker world ranking".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SnookerWorldRanking".freeze, - subClassOf: "dbo:SportCompetitionResult".freeze, - type: "owl:Class".freeze - term :SoapCharacter, - label: "soap character".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SoapCharacter".freeze, - subClassOf: "dbo:FictionalCharacter".freeze, - type: "owl:Class".freeze - term :SoccerClub, - equivalentClass: "http://www.wikidata.org/entity/Q476028".freeze, - label: "soccer club".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SoccerClub".freeze, - subClassOf: "dbo:SportsClub".freeze, - type: "owl:Class".freeze - term :SoccerClubSeason, - label: "soccer club season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SoccerClubSeason".freeze, - subClassOf: "dbo:SportsTeamSeason".freeze, - type: "owl:Class".freeze - term :SoccerLeague, - comment: %(A group of sports teams that compete against each other in soccer.).freeze, - label: "soccer league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SoccerLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :SoccerLeagueSeason, - label: "soccer league season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SoccerLeagueSeason".freeze, - subClassOf: "dbo:SportsTeamSeason".freeze, - type: "owl:Class".freeze - term :SoccerManager, - equivalentClass: "http://www.wikidata.org/entity/Q628099".freeze, - label: "soccer manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SoccerManager".freeze, - subClassOf: "dbo:SportsManager".freeze, - type: "owl:Class".freeze - term :SoccerPlayer, - equivalentClass: "http://www.wikidata.org/entity/Q937857".freeze, - label: "soccer player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SoccerPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :SoccerTournament, - label: "soccer tournoment".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SoccerTournament".freeze, - subClassOf: "dbo:Tournament".freeze, - type: "owl:Class".freeze - term :SocietalEvent, - comment: %(an event that is clearly different from strictly personal events).freeze, - label: "societal event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SocietalEvent".freeze, - subClassOf: "dbo:Event".freeze, - type: "owl:Class".freeze - term :SoftballLeague, - comment: %(A group of sports teams that compete against each other in softball.).freeze, - label: "softball league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SoftballLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :Software, - equivalentClass: "http://www.wikidata.org/entity/Q7397".freeze, - label: "software".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Software".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :SolarEclipse, - equivalentClass: "http://www.wikidata.org/entity/Q3887".freeze, - label: "solar eclipse".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SolarEclipse".freeze, - subClassOf: "dbo:NaturalEvent".freeze, - type: "owl:Class".freeze - term :Song, - label: "song".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Song".freeze, - subClassOf: ["dbo:MusicalWork".freeze, "schema:MusicRecording".freeze], - type: "owl:Class".freeze - term :SongWriter, - comment: %(a person who writes songs.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q753110".freeze, - label: "songwriter".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SongWriter".freeze, - subClassOf: "dbo:Writer".freeze, - type: "owl:Class".freeze - term :Sound, - comment: %(An audio document intended to be listened to; equivalent to http://purl.org/dc/dcmitype/Sound).freeze, - label: "sound".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Sound".freeze, - subClassOf: "dbo:Document".freeze, - type: "owl:Class".freeze - term :SpaceMission, - equivalentClass: "http://www.wikidata.org/entity/Q2133344".freeze, - label: "space mission".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SpaceMission".freeze, - subClassOf: "dbo:SocietalEvent".freeze, - type: "owl:Class".freeze - term :SpaceShuttle, - equivalentClass: "http://www.wikidata.org/entity/Q48806".freeze, - label: "space shuttle".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SpaceShuttle".freeze, - subClassOf: "dbo:MeanOfTransportation".freeze, - type: "owl:Class".freeze - term :SpaceStation, - equivalentClass: "http://www.wikidata.org/entity/Q25956".freeze, - label: "space station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SpaceStation".freeze, - subClassOf: "dbo:MeanOfTransportation".freeze, - type: "owl:Class".freeze - term :Spacecraft, - equivalentClass: "http://www.wikidata.org/entity/Q40218".freeze, - label: "spacecraft".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Spacecraft".freeze, - subClassOf: "dbo:MeanOfTransportation".freeze, - type: "owl:Class".freeze - term :Species, - label: "species".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Species".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :SpeedSkater, - label: "speed skater".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SpeedSkater".freeze, - subClassOf: "dbo:WinterSportPlayer".freeze, - type: "owl:Class".freeze - term :SpeedwayLeague, - comment: %(A group of sports teams that compete against each other in motorcycle speedway racing.).freeze, - label: "speedway league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SpeedwayLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :SpeedwayRider, - label: "speedway rider".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SpeedwayRider".freeze, - subClassOf: "dbo:MotorcycleRider".freeze, - type: "owl:Class".freeze - term :SpeedwayTeam, - label: "speedway team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SpeedwayTeam".freeze, - subClassOf: "dbo:SportsTeam".freeze, - type: "owl:Class".freeze - term :Sport, - comment: %(A sport is commonly defined as an organized, competitive, and skillful physical activity.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q349".freeze, - label: "sport".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Sport".freeze, - subClassOf: "dbo:Activity".freeze, - type: "owl:Class".freeze - term :SportCompetitionResult, - label: "results of a sport competition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SportCompetitionResult".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :SportFacility, - label: "sport facility".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SportFacility".freeze, - subClassOf: "dbo:ArchitecturalStructure".freeze, - type: "owl:Class".freeze - term :SportsClub, - label: "sports club".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SportsClub".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :SportsEvent, - comment: %(a event of competitive physical activity).freeze, - equivalentClass: "schema:SportsEvent".freeze, - label: "sports event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SportsEvent".freeze, - subClassOf: "dbo:SocietalEvent".freeze, - type: "owl:Class".freeze - term :SportsLeague, - comment: %(A group of sports teams or individual athletes that compete against each other in a specific sport.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q623109".freeze, - label: "sports league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SportsLeague".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :SportsManager, - comment: %(According to the french label sub Soccer, trainership could be meant. However, here a Sportsmanager is interpreted as a member of the board of a sporting club.).freeze, - label: "sports manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SportsManager".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :SportsSeason, - label: "sports season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SportsSeason".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :SportsTeam, - equivalentClass: ["http://www.wikidata.org/entity/Q12973014".freeze, "schema:SportsTeam".freeze], - label: "sports team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SportsTeam".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :SportsTeamMember, - comment: %(A member of an athletic team.).freeze, - label: "Sports team member".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SportsTeamMember".freeze, - subClassOf: "dbo:OrganisationMember".freeze, - type: "owl:Class".freeze - term :SportsTeamSeason, - comment: %(A season for a particular sports team \(as opposed to the season for the entire league that the team is in\)).freeze, - label: "sports team season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SportsTeamSeason".freeze, - subClassOf: "dbo:SportsSeason".freeze, - type: "owl:Class".freeze - term :Spreadsheet, - label: "Spreadsheet".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Spreadsheet".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Square, - equivalentClass: "http://www.wikidata.org/entity/Q174782".freeze, - label: "square".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Square".freeze, - subClassOf: "dbo:ArchitecturalStructure".freeze, - type: "owl:Class".freeze - term :SquashPlayer, - equivalentClass: "http://www.wikidata.org/entity/Q16278103".freeze, - label: "squash player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SquashPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Stadium, - label: "stadium".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Stadium".freeze, - subClassOf: ["dbo:Venue".freeze, "schema:StadiumOrArena".freeze], - type: "owl:Class".freeze - term :Standard, - comment: %(a common specification).freeze, - label: "standard".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Standard".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :Star, - label: "star".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Star".freeze, - subClassOf: "dbo:CelestialBody".freeze, - type: "owl:Class".freeze - term :StarCluster, - label: "Star сluster".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:StarCluster".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :State, - equivalentClass: "http://www.wikidata.org/entity/Q7275".freeze, - label: "state".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:State".freeze, - subClassOf: "dbo:PopulatedPlace".freeze, - type: "owl:Class".freeze - term :StatedResolution, - comment: %(A Resolution describes a formal statement adopted by a meeting or convention.).freeze, - label: "Stated Resolution".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:StatedResolution".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :Station, - comment: %(Public transport station \(eg. railway station, metro station, bus station\).).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q719456".freeze, - label: "station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Station".freeze, - subClassOf: "dbo:Infrastructure".freeze, - type: "owl:Class".freeze - term :Statistic, - equivalentClass: "http://www.wikidata.org/entity/Q1949963".freeze, - label: "statistic".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Statistic".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :StillImage, - comment: %(A visual document that is not intended to be animated; equivalent to http://purl.org/dc/dcmitype/StillImage).freeze, - label: "still image".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:StillImage".freeze, - subClassOf: "dbo:Image".freeze, - type: "owl:Class".freeze - term :StormSurge, - label: "storm surge".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:StormSurge".freeze, - subClassOf: "dbo:NaturalEvent".freeze, - type: "owl:Class".freeze - term :Stream, - comment: %(a flowing body of water with a current, confined within a bed and stream banks).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q47521".freeze, - label: "stream".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Stream".freeze, - subClassOf: "dbo:BodyOfWater".freeze, - type: "owl:Class".freeze - term :Street, - comment: %(A Street is different from a Road in as far as the infrastructure aspect is much less important here. A Street is a social and architectural ensemble much more than the connection between two geographic points.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q79007".freeze, - label: "street".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Street".freeze, - subClassOf: "dbo:PopulatedPlace".freeze, - type: "owl:Class".freeze - term :SubMunicipality, - comment: %(An administrative body governing a territorial unity on the lowest level, administering part of a municipality).freeze, - label: "borough".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SubMunicipality".freeze, - subClassOf: "dbo:GovernmentalAdministrativeRegion".freeze, - type: "owl:Class".freeze - term :SumoWrestler, - label: "sumo wrestler".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SumoWrestler".freeze, - subClassOf: "dbo:Wrestler".freeze, - type: "owl:Class".freeze - term :SupremeCourtOfTheUnitedStatesCase, - label: "Supreme Court of the United States case".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SupremeCourtOfTheUnitedStatesCase".freeze, - subClassOf: "dbo:LegalCase".freeze, - type: "owl:Class".freeze - term :Surfer, - equivalentClass: "http://www.wikidata.org/entity/Q13561328".freeze, - label: "surfer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Surfer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Surname, - label: "surname".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Surname".freeze, - subClassOf: "dbo:Name".freeze, - type: "owl:Class".freeze - term :Swarm, - label: "Swarm".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Swarm".freeze, - subClassOf: "dbo:CelestialBody".freeze, - type: "owl:Class".freeze - term :Swimmer, - comment: %(a trained athlete who participates in swimming meets).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q10843402".freeze, - label: "swimmer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Swimmer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Synagogue, - comment: %(A synagogue, sometimes spelt synagog, is a Jewish or Samaritan house of prayer.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q34627".freeze, - label: "synagogue".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Synagogue".freeze, - subClassOf: "dbo:ReligiousBuilding".freeze, - type: "owl:Class".freeze - term :SystemOfLaw, - comment: %(a system of legislation, either national or international).freeze, - label: "System of law".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:SystemOfLaw".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :TableTennisPlayer, - comment: %(Athlete who plays table tennis).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q13382519".freeze, - label: "table tennis player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TableTennisPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :Tank, - label: "Tank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Tank".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Tax, - equivalentClass: "http://www.wikidata.org/entity/Q8161".freeze, - label: "tax".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Tax".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :Taxon, - comment: %(a category within a classification system for Species).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q16521".freeze, - label: "taxonomic group".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Taxon".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :TeamMember, - comment: %(A member of an athletic team.).freeze, - label: "Team member".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TeamMember".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :TeamSport, - comment: %(A team sport is commonly defined as a sport that is being played by competing teams).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q216048".freeze, - label: "team sport".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TeamSport".freeze, - subClassOf: "dbo:Sport".freeze, - type: "owl:Class".freeze - term :TelevisionDirector, - comment: %(a person who directs the activities involved in making a television program.).freeze, - label: "Television director".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TelevisionDirector".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :TelevisionEpisode, - comment: %(A television episode is a part of serial television program.).freeze, - equivalentClass: "schema:TVEpisode".freeze, - label: "television episode".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TelevisionEpisode".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :TelevisionHost, - equivalentClass: "http://www.wikidata.org/entity/Q947873".freeze, - label: "television host".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TelevisionHost".freeze, - subClassOf: "dbo:Presenter".freeze, - type: "owl:Class".freeze - term :TelevisionSeason, - label: "television season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TelevisionSeason".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :TelevisionShow, - equivalentClass: "http://www.wikidata.org/entity/Q15416".freeze, - label: "television show".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TelevisionShow".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :TelevisionStation, - comment: %(A television station has usually one line up. For instance the television station WABC-TV \(or ABC 7, Channel 7\). Not to be confused with the broadcasting network ABC, which has many television stations.).freeze, - equivalentClass: "schema:TelevisionStation".freeze, - label: "television station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TelevisionStation".freeze, - subClassOf: "dbo:Broadcaster".freeze, - type: "owl:Class".freeze - term :Temple, - label: "temple".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Temple".freeze, - subClassOf: "dbo:ReligiousBuilding".freeze, - type: "owl:Class".freeze - term :TennisLeague, - comment: %(A group of sports teams or person that compete against each other in tennis.).freeze, - label: "tennis league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TennisLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :TennisPlayer, - equivalentClass: "http://www.wikidata.org/entity/Q10833314".freeze, - label: "tennis player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TennisPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :TennisTournament, - equivalentClass: "http://www.wikidata.org/entity/Q13219666".freeze, - label: "tennis tournament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TennisTournament".freeze, - subClassOf: "dbo:Tournament".freeze, - type: "owl:Class".freeze - term :Tenure, - label: "tenure".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Tenure".freeze, - subClassOf: "dbo:TimePeriod".freeze, - type: "owl:Class".freeze - term :TermOfOffice, - equivalentClass: "http://www.wikidata.org/entity/Q524572".freeze, - label: "term of office".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TermOfOffice".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :Territory, - comment: %(A territory may refer to a country subdivision, a non-sovereign geographic region.).freeze, - label: "territory".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Territory".freeze, - subClassOf: "dbo:PopulatedPlace".freeze, - type: "owl:Class".freeze - term :Theatre, - comment: %(A theater or theatre \(also a playhouse\) is a structure where theatrical works or plays are performed or other performances such as musical concerts may be produced.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q24354".freeze, - label: "theatre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Theatre".freeze, - subClassOf: "dbo:Venue".freeze, - type: "owl:Class".freeze - term :TheatreDirector, - comment: %(A director in the theatre field who oversees and orchestrates the mounting of a theatre production.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q3387717".freeze, - label: "Theatre director".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TheatreDirector".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :TheologicalConcept, - comment: %(Theological concepts, e.g. The apocalypse, Trinty, Stoicism).freeze, - label: "Theological concept".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TheologicalConcept".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :TimePeriod, - label: "time period".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TimePeriod".freeze, - subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".freeze, "owl:Thing".freeze], - type: "owl:Class".freeze - term :TopLevelDomain, - equivalentClass: "http://www.wikidata.org/entity/Q14296".freeze, - label: "top level domain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TopLevelDomain".freeze, - subClassOf: "dbo:Identifier".freeze, - type: "owl:Class".freeze - term :TopicalConcept, - equivalentClass: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, - label: "topical concept".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TopicalConcept".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Tournament, - equivalentClass: "http://www.wikidata.org/entity/Q500834".freeze, - label: "tournament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Tournament".freeze, - subClassOf: "dbo:SportsEvent".freeze, - type: "owl:Class".freeze - term :Tower, - comment: %(A Tower is a kind of structure \(not necessarily a building\) that is higher than the rest).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q12518".freeze, - label: "tower".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Tower".freeze, - subClassOf: "dbo:ArchitecturalStructure".freeze, - type: "owl:Class".freeze - term :Town, - comment: %(a settlement ranging from a few hundred to several thousand \(occasionally hundreds of thousands\). The precise meaning varies between countries and is not always a matter of legal definition. Usually, a town is thought of as larger than a village but smaller than a city, though there are exceptions to this rule.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q3957".freeze, - label: "town".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Town".freeze, - subClassOf: "dbo:Settlement".freeze, - type: "owl:Class".freeze - term :TrackList, - comment: %(A list of music tracks, like on a CD).freeze, - label: "track list".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TrackList".freeze, - subClassOf: "dbo:List".freeze, - type: "owl:Class".freeze - term :TradeUnion, - comment: %(A trade union or labor union is an organization of workers who have banded together to achieve common goals such as better working conditions.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q178790".freeze, - label: "trade union".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TradeUnion".freeze, - subClassOf: "dbo:Organisation".freeze, - type: "owl:Class".freeze - term :Train, - equivalentClass: "http://www.wikidata.org/entity/Q870".freeze, - label: "train".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Train".freeze, - subClassOf: "dbo:MeanOfTransportation".freeze, - type: "owl:Class".freeze - term :TrainCarriage, - label: "train carriage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TrainCarriage".freeze, - subClassOf: "dbo:MeanOfTransportation".freeze, - type: "owl:Class".freeze - term :Tram, - label: "streetcar".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Tram".freeze, - subClassOf: "dbo:MeanOfTransportation".freeze, - type: "owl:Class".freeze - term :TramStation, - equivalentClass: "http://dbpedia.org/ontology/%3Chttp://vocab.org/transit/terms/stop%3E".freeze, - label: "tram station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:TramStation".freeze, - subClassOf: "dbo:Station".freeze, - type: "owl:Class".freeze - term :Treadmill, - comment: %(A mill driven by the tractive power of horses, donkeys or even people).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q683267".freeze, - label: "Treadmill".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Treadmill".freeze, - subClassOf: "dbo:Mill".freeze, - type: "owl:Class".freeze - term :Treaty, - label: "treaty".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Treaty".freeze, - subClassOf: "dbo:WrittenWork".freeze, - type: "owl:Class".freeze - term :Tunnel, - comment: %(A tunnel may be for foot or vehicular road traffic, for rail traffic, or for a canal. Some tunnels are aqueducts to supply water for consumption or for hydroelectric stations or are sewers \(http://en.wikipedia.org/wiki/Tunnel\).).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q44377".freeze, - label: "tunnel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Tunnel".freeze, - subClassOf: "dbo:ArchitecturalStructure".freeze, - type: "owl:Class".freeze - term :Type, - comment: %(a category within a classification system).freeze, - label: "type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Type".freeze, - subClassOf: "dbo:TopicalConcept".freeze, - type: "owl:Class".freeze - term :UndergroundJournal, - comment: %(An underground journal is, although over time there have always been publications forbidden by law, a phenomenon typical of countries occupied by the Germans during the Second World War. The writing in the underground press aims at stiffening a spirit of resistance against Nazi occupation. The distribution of underground journals had to be very secretive and was, therefore, very much dependant on illegal distribution circuits and the hazards of persecution by the occupant.).freeze, - label: "underground journal".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:UndergroundJournal".freeze, - subClassOf: "dbo:PeriodicalLiterature".freeze, - type: "owl:Class".freeze - term :UnitOfWork, - comment: %(This class is meant to convey the notion of an amount work to be done. It is different from Activity in that it has a definite end and is being measured.).freeze, - label: "unit of work".freeze, - "owl:disjointWith": "dbo:Person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:UnitOfWork".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :University, - equivalentClass: "http://www.wikidata.org/entity/Q3918".freeze, - label: "university".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:University".freeze, - subClassOf: ["dbo:EducationalInstitution".freeze, "schema:CollegeOrUniversity".freeze], - type: "owl:Class".freeze - term :Unknown, - label: "Unknown".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Unknown".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :Vaccine, - comment: %(Drugs that are a vaccine‎).freeze, - label: "vaccine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Vaccine".freeze, - subClassOf: "dbo:Drug".freeze, - type: "owl:Class".freeze - term :Valley, - comment: %(a depression with predominant extent in one direction).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q39816".freeze, - label: "valley".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Valley".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :Vein, - equivalentClass: "http://www.wikidata.org/entity/Q9609".freeze, - label: "vein".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Vein".freeze, - subClassOf: "dbo:AnatomicalStructure".freeze, - type: "owl:Class".freeze - term :Venue, - label: "venue".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Venue".freeze, - subClassOf: "dbo:Building".freeze, - type: "owl:Class".freeze - term :Vicar, - label: "vicar".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Vicar".freeze, - subClassOf: "dbo:Cleric".freeze, - type: "owl:Class".freeze - term :VicePresident, - equivalentClass: "http://www.wikidata.org/entity/Q42178".freeze, - label: "vice president".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:VicePresident".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :VicePrimeMinister, - label: "vice prime minister".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:VicePrimeMinister".freeze, - subClassOf: "dbo:Politician".freeze, - type: "owl:Class".freeze - term :VideoGame, - comment: %(A video game is an electronic game that involves interaction with a user interface to generate visual feedback on a video device.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q7889".freeze, - label: "video game".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:VideoGame".freeze, - subClassOf: "dbo:Software".freeze, - type: "owl:Class".freeze - term :VideogamesLeague, - comment: %(A group of sports teams or person that compete against each other in videogames.).freeze, - label: "videogames league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:VideogamesLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :Village, - comment: %(a clustered human settlement or community, usually smaller a town).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q532".freeze, - label: "village".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Village".freeze, - subClassOf: "dbo:Settlement".freeze, - type: "owl:Class".freeze - term :Vodka, - label: "vodka".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Vodka".freeze, - subClassOf: "dbo:Beverage".freeze, - type: "owl:Class".freeze - term :VoiceActor, - label: "voice actor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:VoiceActor".freeze, - subClassOf: "dbo:Actor".freeze, - type: "owl:Class".freeze - term :Volcano, - comment: %(A volcano is currently subclass of naturalplace, but it might also be considered a mountain.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q8072".freeze, - label: "volcano".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Volcano".freeze, - subClassOf: "dbo:NaturalPlace".freeze, - type: "owl:Class".freeze - term :VolleyballCoach, - label: "volleyball coach".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:VolleyballCoach".freeze, - subClassOf: "dbo:Coach".freeze, - type: "owl:Class".freeze - term :VolleyballLeague, - comment: %(A group of sports teams that compete against each other in volleyball.).freeze, - label: "volleyball league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:VolleyballLeague".freeze, - subClassOf: "dbo:SportsLeague".freeze, - type: "owl:Class".freeze - term :VolleyballPlayer, - equivalentClass: "http://www.wikidata.org/entity/Q15117302".freeze, - label: "volleyball player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:VolleyballPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :WaterPoloPlayer, - label: "water polo Player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:WaterPoloPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :WaterRide, - equivalentClass: "http://www.wikidata.org/entity/Q2870166".freeze, - label: "water ride".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:WaterRide".freeze, - subClassOf: "dbo:AmusementParkAttraction".freeze, - type: "owl:Class".freeze - term :WaterTower, - comment: %(a construction designed to store larger quantities of water at a place of some elevation in order to keep pressure on the water provision system).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q274153".freeze, - label: "Water tower".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:WaterTower".freeze, - subClassOf: "dbo:Tower".freeze, - type: "owl:Class".freeze - term :Watermill, - comment: %(A watermill is a structure that uses a water wheel or turbine to drive a mechanical process such as flour, lumber or textile production, or metal shaping \(rolling, grinding or wire drawing\)).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q185187".freeze, - label: "Watermill".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Watermill".freeze, - subClassOf: "dbo:Mill".freeze, - type: "owl:Class".freeze - term :WaterwayTunnel, - label: "waterway tunnel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:WaterwayTunnel".freeze, - subClassOf: "dbo:RouteOfTransportation".freeze, - type: "owl:Class".freeze - term :Weapon, - equivalentClass: "http://www.wikidata.org/entity/Q728".freeze, - label: "weapon".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Weapon".freeze, - subClassOf: ["dbo:Device".freeze, "schema:Product".freeze], - type: "owl:Class".freeze - term :Website, - equivalentClass: "schema:WebSite".freeze, - label: "website".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Website".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :WikimediaTemplate, - comment: %(DO NOT USE THIS CLASS! This is for internal use only!).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q11266439".freeze, - label: "Wikimedia template".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:WikimediaTemplate".freeze, - subClassOf: "dbo:Unknown".freeze, - type: "owl:Class".freeze - term :WindMotor, - comment: %(A wind-driven turbine that adapts itself to wind direction and to wind-force. Is considered to be a class in its own, despite the wind as common factor with Windmill.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q15854792".freeze, - label: "Wind motor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:WindMotor".freeze, - subClassOf: "dbo:Mill".freeze, - type: "owl:Class".freeze - term :Windmill, - comment: %(A windmill is a machine that converts the energy of wind into rotational energy by means of vanes called sails).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q38720".freeze, - label: "Windmill".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Windmill".freeze, - subClassOf: "dbo:Mill".freeze, - type: "owl:Class".freeze - term :Wine, - equivalentClass: "http://www.wikidata.org/entity/Q282".freeze, - label: "wine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Wine".freeze, - subClassOf: "dbo:Beverage".freeze, - type: "owl:Class".freeze - term :WineRegion, - label: "wine region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:WineRegion".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :Winery, - equivalentClass: "http://www.wikidata.org/entity/Q156362".freeze, - label: "winery".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Winery".freeze, - subClassOf: "dbo:Company".freeze, - type: "owl:Class".freeze - term :WinterSportPlayer, - label: "winter sport Player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:WinterSportPlayer".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :WomensTennisAssociationTournament, - label: "Women's Tennis Association tournament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:WomensTennisAssociationTournament".freeze, - subClassOf: "dbo:Tournament".freeze, - type: "owl:Class".freeze - term :Work, - equivalentClass: ["http://www.wikidata.org/entity/Q386724".freeze, "schema:CreativeWork".freeze], - label: "work".freeze, - "owl:disjointWith": "http://dbpedia.org/ontology/wgs84_pos:SpatialThing".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Work".freeze, - subClassOf: "owl:Thing".freeze, - type: "owl:Class".freeze - term :WorldHeritageSite, - comment: %(A UNESCO World Heritage Site is a site \(such as a forest, mountain, lake, desert, monument, building, complex, or city\) that is on the list that is maintained by the international World Heritage Programme administered by the UNESCO World Heritage Committee, composed of 21 state parties which are elected by their General Assembly for a four-year term. A World Heritage Site is a place of either cultural or physical significance.).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q9259".freeze, - label: "World Heritage Site".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:WorldHeritageSite".freeze, - subClassOf: "dbo:Place".freeze, - type: "owl:Class".freeze - term :Wrestler, - equivalentClass: "http://www.wikidata.org/entity/Q13474373".freeze, - label: "wrestler".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Wrestler".freeze, - subClassOf: "dbo:Athlete".freeze, - type: "owl:Class".freeze - term :WrestlingEvent, - label: "wrestling event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:WrestlingEvent".freeze, - subClassOf: "dbo:SportsEvent".freeze, - type: "owl:Class".freeze - term :Writer, - equivalentClass: "http://www.wikidata.org/entity/Q36180".freeze, - label: "writer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Writer".freeze, - subClassOf: "dbo:Person".freeze, - type: "owl:Class".freeze - term :WrittenWork, - comment: %(Written work is any text written to read it \(e.g.: books, newspaper, articles\)).freeze, - equivalentClass: "http://www.wikidata.org/entity/Q234460".freeze, - label: "written work".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:WrittenWork".freeze, - subClassOf: "dbo:Work".freeze, - type: "owl:Class".freeze - term :Year, - equivalentClass: "http://www.wikidata.org/entity/Q577".freeze, - label: "year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Year".freeze, - subClassOf: "dbo:TimePeriod".freeze, - type: "owl:Class".freeze - term :YearInSpaceflight, - label: "year in spaceflight".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:YearInSpaceflight".freeze, - subClassOf: "dbo:TimePeriod".freeze, - type: "owl:Class".freeze - term :Zoo, - equivalentClass: "http://www.wikidata.org/entity/Q43501".freeze, - label: "zoo".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyClass:Zoo".freeze, - subClassOf: "dbo:ArchitecturalStructure".freeze, - type: "owl:Class".freeze - - # Property definitions - property :"Astronaut/timeInSpace", - domain: "dbo:Astronaut".freeze, - label: "total time person has spent in space (m)".freeze, - range: "http://dbpedia.org/datatype/minute".freeze, - type: "owl:DatatypeProperty".freeze - property :"Automobile/fuelCapacity", - domain: "dbo:Automobile".freeze, - label: "fuel capacity (l)".freeze, - range: "http://dbpedia.org/datatype/litre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Automobile/wheelbase", - domain: "dbo:Automobile".freeze, - label: "wheelbase (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Building/floorArea", - domain: "dbo:Building".freeze, - label: "floor area (m2)".freeze, - range: "http://dbpedia.org/datatype/squareMetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Canal/maximumBoatBeam", - domain: "dbo:Canal".freeze, - label: "maximum boat beam (μ)".freeze, - range: "http://dbpedia.org/datatype/metre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Canal/maximumBoatLength", - domain: "dbo:Canal".freeze, - label: "maximum boat length (μ)".freeze, - range: "http://dbpedia.org/datatype/metre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Canal/originalMaximumBoatBeam", - domain: "dbo:Canal".freeze, - label: "original maximum boat beam (μ)".freeze, - range: "http://dbpedia.org/datatype/metre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Canal/originalMaximumBoatLength", - domain: "dbo:Canal".freeze, - label: "original maximum boat length (μ)".freeze, - range: "http://dbpedia.org/datatype/metre".freeze, - type: "owl:DatatypeProperty".freeze - property :"ChemicalSubstance/boilingPoint", - domain: "dbo:ChemicalSubstance".freeze, - label: "boiling point (K)".freeze, - range: "http://dbpedia.org/datatype/kelvin".freeze, - type: "owl:DatatypeProperty".freeze - property :"ChemicalSubstance/density", - domain: "dbo:ChemicalSubstance".freeze, - label: "density (μ3)".freeze, - range: "http://dbpedia.org/datatype/kilogramPerCubicMetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"ChemicalSubstance/meltingPoint", - domain: "dbo:ChemicalSubstance".freeze, - label: "melting point (K)".freeze, - range: "http://dbpedia.org/datatype/kelvin".freeze, - type: "owl:DatatypeProperty".freeze - property :"ConveyorSystem/diameter", - domain: "dbo:ConveyorSystem".freeze, - label: "diameter (μ)".freeze, - range: "http://dbpedia.org/datatype/metre".freeze, - type: "owl:DatatypeProperty".freeze - property :"ConveyorSystem/height", - domain: "dbo:ConveyorSystem".freeze, - label: "height (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"ConveyorSystem/length", - domain: "dbo:ConveyorSystem".freeze, - label: "length (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"ConveyorSystem/mass", - domain: "dbo:ConveyorSystem".freeze, - label: "mass (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"ConveyorSystem/weight", - domain: "dbo:ConveyorSystem".freeze, - label: "weight (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"ConveyorSystem/width", - domain: "dbo:ConveyorSystem".freeze, - label: "width (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Drug/boilingPoint", - domain: "dbo:Drug".freeze, - label: "boiling point (K)".freeze, - range: "http://dbpedia.org/datatype/kelvin".freeze, - type: "owl:DatatypeProperty".freeze - property :"Drug/meltingPoint", - domain: "dbo:Drug".freeze, - label: "melting point (K)".freeze, - range: "http://dbpedia.org/datatype/kelvin".freeze, - type: "owl:DatatypeProperty".freeze - property :"Engine/acceleration", - domain: "dbo:Engine".freeze, - label: "acceleration (s)".freeze, - range: "http://dbpedia.org/datatype/second".freeze, - type: "owl:DatatypeProperty".freeze - property :"Engine/co2Emission", - domain: "dbo:Engine".freeze, - label: "CO2 emission (g/km)".freeze, - range: "http://dbpedia.org/datatype/gramPerKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Engine/cylinderBore", - domain: "dbo:Engine".freeze, - label: "cylinder bore (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Engine/diameter", - domain: "dbo:Engine".freeze, - label: "diameter (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Engine/displacement", - domain: "dbo:Engine".freeze, - label: "displacement (cc)".freeze, - range: "http://dbpedia.org/datatype/cubicCentimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Engine/height", - domain: "dbo:Engine".freeze, - label: "height (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Engine/length", - domain: "dbo:Engine".freeze, - label: "length (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Engine/pistonStroke", - domain: "dbo:Engine".freeze, - label: "piston stroke (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Engine/powerOutput", - domain: "dbo:Engine".freeze, - label: "power output (kW)".freeze, - range: "http://dbpedia.org/datatype/kilowatt".freeze, - type: "owl:DatatypeProperty".freeze - property :"Engine/topSpeed", - domain: "dbo:Engine".freeze, - label: "top speed (kmh)".freeze, - range: "http://dbpedia.org/datatype/kilometrePerHour".freeze, - type: "owl:DatatypeProperty".freeze - property :"Engine/torqueOutput", - domain: "dbo:Engine".freeze, - label: "torque output (Nm)".freeze, - range: "http://dbpedia.org/datatype/newtonMetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Engine/weight", - domain: "dbo:Engine".freeze, - label: "weight (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Engine/width", - domain: "dbo:Engine".freeze, - label: "width (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Escalator/diameter", - domain: "dbo:Escalator".freeze, - label: "diameter (μ)".freeze, - range: "http://dbpedia.org/datatype/metre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Escalator/height", - domain: "dbo:Escalator".freeze, - label: "height (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Escalator/length", - domain: "dbo:Escalator".freeze, - label: "length (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Escalator/mass", - domain: "dbo:Escalator".freeze, - label: "mass (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Escalator/weight", - domain: "dbo:Escalator".freeze, - label: "weight (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Escalator/width", - domain: "dbo:Escalator".freeze, - label: "width (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Galaxy/apoapsis", - domain: "dbo:Galaxy".freeze, - label: "apoapsis (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Galaxy/averageSpeed", - comment: %(The average speed of a thing.).freeze, - domain: "dbo:Galaxy".freeze, - label: "average speed (km/s)".freeze, - range: "http://dbpedia.org/datatype/kilometrePerSecond".freeze, - type: "owl:DatatypeProperty".freeze - property :"Galaxy/density", - domain: "dbo:Galaxy".freeze, - label: "density (μ3)".freeze, - range: "http://dbpedia.org/datatype/kilogramPerCubicMetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Galaxy/mass", - domain: "dbo:Galaxy".freeze, - label: "mass (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Galaxy/maximumTemperature", - domain: "dbo:Galaxy".freeze, - label: "maximum temperature (K)".freeze, - range: "http://dbpedia.org/datatype/kelvin".freeze, - type: "owl:DatatypeProperty".freeze - property :"Galaxy/meanRadius", - domain: "dbo:Galaxy".freeze, - label: "mean radius (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Galaxy/meanTemperature", - domain: "dbo:Galaxy".freeze, - label: "mean temperature (K)".freeze, - range: "http://dbpedia.org/datatype/kelvin".freeze, - type: "owl:DatatypeProperty".freeze - property :"Galaxy/minimumTemperature", - domain: "dbo:Galaxy".freeze, - label: "minimum temperature (K)".freeze, - range: "http://dbpedia.org/datatype/kelvin".freeze, - type: "owl:DatatypeProperty".freeze - property :"Galaxy/orbitalPeriod", - domain: "dbo:Galaxy".freeze, - label: "orbital period (μ)".freeze, - range: "http://dbpedia.org/datatype/day".freeze, - type: "owl:DatatypeProperty".freeze - property :"Galaxy/periapsis", - domain: "dbo:Galaxy".freeze, - label: "periapsis (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Galaxy/surfaceArea", - domain: "dbo:Galaxy".freeze, - label: "surface area (km2)".freeze, - range: "http://dbpedia.org/datatype/squareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Galaxy/temperature", - domain: "dbo:Galaxy".freeze, - label: "temperature (K)".freeze, - range: "http://dbpedia.org/datatype/kelvin".freeze, - type: "owl:DatatypeProperty".freeze - property :"Galaxy/volume", - domain: "dbo:Galaxy".freeze, - label: "volume (km3)".freeze, - range: "http://dbpedia.org/datatype/cubicKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"GeopoliticalOrganisation/areaMetro", - domain: "dbo:GeopoliticalOrganisation".freeze, - label: "area metro (km2)".freeze, - range: "http://dbpedia.org/datatype/squareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"GeopoliticalOrganisation/populationDensity", - domain: "dbo:GeopoliticalOrganisation".freeze, - label: "population density (/sqkm)".freeze, - range: "http://dbpedia.org/datatype/inhabitantsPerSquareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"GrandPrix/course", - domain: "dbo:GrandPrix".freeze, - label: "course (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"GrandPrix/distance", - domain: "dbo:GrandPrix".freeze, - label: "distance (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Infrastructure/length", - domain: "dbo:Infrastructure".freeze, - label: "length (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Lake/areaOfCatchment", - domain: "dbo:Lake".freeze, - label: "area of catchment (km2)".freeze, - range: "http://dbpedia.org/datatype/squareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Lake/shoreLength", - domain: "dbo:Lake".freeze, - label: "shore length (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Lake/volume", - domain: "dbo:Lake".freeze, - label: "volume (μ³)".freeze, - range: "http://dbpedia.org/datatype/cubicMetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"LunarCrater/diameter", - domain: "dbo:LunarCrater".freeze, - label: "diameter (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"MeanOfTransportation/diameter", - domain: "dbo:MeanOfTransportation".freeze, - label: "diameter (μ)".freeze, - range: "http://dbpedia.org/datatype/metre".freeze, - type: "owl:DatatypeProperty".freeze - property :"MeanOfTransportation/height", - domain: "dbo:MeanOfTransportation".freeze, - label: "height (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"MeanOfTransportation/length", - domain: "dbo:MeanOfTransportation".freeze, - label: "length (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"MeanOfTransportation/mass", - domain: "dbo:MeanOfTransportation".freeze, - label: "mass (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"MeanOfTransportation/weight", - domain: "dbo:MeanOfTransportation".freeze, - label: "weight (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"MeanOfTransportation/width", - domain: "dbo:MeanOfTransportation".freeze, - label: "width (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"MovingWalkway/diameter", - domain: "dbo:MovingWalkway".freeze, - label: "diameter (μ)".freeze, - range: "http://dbpedia.org/datatype/metre".freeze, - type: "owl:DatatypeProperty".freeze - property :"MovingWalkway/height", - domain: "dbo:MovingWalkway".freeze, - label: "height (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"MovingWalkway/length", - domain: "dbo:MovingWalkway".freeze, - label: "length (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"MovingWalkway/mass", - domain: "dbo:MovingWalkway".freeze, - label: "mass (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"MovingWalkway/weight", - domain: "dbo:MovingWalkway".freeze, - label: "weight (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"MovingWalkway/width", - domain: "dbo:MovingWalkway".freeze, - label: "width (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"On-SiteTransportation/diameter", - domain: "dbo:On-SiteTransportation".freeze, - label: "diameter (μ)".freeze, - range: "http://dbpedia.org/datatype/metre".freeze, - type: "owl:DatatypeProperty".freeze - property :"On-SiteTransportation/height", - domain: "dbo:On-SiteTransportation".freeze, - label: "height (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"On-SiteTransportation/length", - domain: "dbo:On-SiteTransportation".freeze, - label: "length (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"On-SiteTransportation/mass", - domain: "dbo:On-SiteTransportation".freeze, - label: "mass (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"On-SiteTransportation/weight", - domain: "dbo:On-SiteTransportation".freeze, - label: "weight (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"On-SiteTransportation/width", - domain: "dbo:On-SiteTransportation".freeze, - label: "width (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Person/height", - domain: "dbo:Person".freeze, - label: "height (cm)".freeze, - range: "http://dbpedia.org/datatype/centimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Person/weight", - domain: "dbo:Person".freeze, - label: "weight (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Planet/apoapsis", - domain: "dbo:Planet".freeze, - label: "apoapsis (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Planet/averageSpeed", - comment: %(The average speed of a thing.).freeze, - domain: "dbo:Planet".freeze, - label: "average speed (km/s)".freeze, - range: "http://dbpedia.org/datatype/kilometrePerSecond".freeze, - type: "owl:DatatypeProperty".freeze - property :"Planet/density", - domain: "dbo:Planet".freeze, - label: "density (μ3)".freeze, - range: "http://dbpedia.org/datatype/kilogramPerCubicMetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Planet/mass", - domain: "dbo:Planet".freeze, - label: "mass (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Planet/maximumTemperature", - domain: "dbo:Planet".freeze, - label: "maximum temperature (K)".freeze, - range: "http://dbpedia.org/datatype/kelvin".freeze, - type: "owl:DatatypeProperty".freeze - property :"Planet/meanRadius", - domain: "dbo:Planet".freeze, - label: "mean radius (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Planet/meanTemperature", - domain: "dbo:Planet".freeze, - label: "mean temperature (K)".freeze, - range: "http://dbpedia.org/datatype/kelvin".freeze, - type: "owl:DatatypeProperty".freeze - property :"Planet/minimumTemperature", - domain: "dbo:Planet".freeze, - label: "minimum temperature (K)".freeze, - range: "http://dbpedia.org/datatype/kelvin".freeze, - type: "owl:DatatypeProperty".freeze - property :"Planet/orbitalPeriod", - domain: "dbo:Planet".freeze, - label: "orbital period (μ)".freeze, - range: "http://dbpedia.org/datatype/day".freeze, - type: "owl:DatatypeProperty".freeze - property :"Planet/periapsis", - domain: "dbo:Planet".freeze, - label: "periapsis (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Planet/surfaceArea", - domain: "dbo:Planet".freeze, - label: "surface area (km2)".freeze, - range: "http://dbpedia.org/datatype/squareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Planet/temperature", - domain: "dbo:Planet".freeze, - label: "temperature (K)".freeze, - range: "http://dbpedia.org/datatype/kelvin".freeze, - type: "owl:DatatypeProperty".freeze - property :"Planet/volume", - domain: "dbo:Planet".freeze, - label: "volume (km3)".freeze, - range: "http://dbpedia.org/datatype/cubicKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"PopulatedPlace/area", - comment: %(The area of the thing in square meters.).freeze, - domain: "dbo:PopulatedPlace".freeze, - label: "area (km2)".freeze, - range: "http://dbpedia.org/datatype/squareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"PopulatedPlace/areaMetro", - domain: "dbo:PopulatedPlace".freeze, - label: "area metro (km2)".freeze, - range: "http://dbpedia.org/datatype/squareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"PopulatedPlace/areaTotal", - domain: "dbo:PopulatedPlace".freeze, - label: "area total (km2)".freeze, - range: "http://dbpedia.org/datatype/squareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"PopulatedPlace/areaUrban", - domain: "dbo:PopulatedPlace".freeze, - label: "area urban (km2)".freeze, - range: "http://dbpedia.org/datatype/squareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"PopulatedPlace/populationDensity", - domain: "dbo:PopulatedPlace".freeze, - label: "population density (/sqkm)".freeze, - range: "http://dbpedia.org/datatype/inhabitantsPerSquareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"PopulatedPlace/populationMetroDensity", - domain: "dbo:PopulatedPlace".freeze, - label: "population metro density (/sqkm)".freeze, - range: "http://dbpedia.org/datatype/inhabitantsPerSquareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"PopulatedPlace/populationUrbanDensity", - domain: "dbo:PopulatedPlace".freeze, - label: "population urban density (/sqkm)".freeze, - range: "http://dbpedia.org/datatype/inhabitantsPerSquareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Rocket/lowerEarthOrbitPayload", - comment: %(Payload mass in a typical Low Earth orbit).freeze, - domain: "dbo:Rocket".freeze, - label: "lower earth orbit payload (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Rocket/mass", - domain: "dbo:Rocket".freeze, - label: "mass (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"School/campusSize", - domain: "dbo:School".freeze, - label: "campus size (km2)".freeze, - range: "http://dbpedia.org/datatype/squareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Software/fileSize", - comment: %(size of a file or software).freeze, - domain: "dbo:Software".freeze, - label: "size (MB)".freeze, - range: "http://dbpedia.org/datatype/megabyte".freeze, - type: "owl:DatatypeProperty".freeze - property :"SpaceMission/cmpEvaDuration", - domain: "dbo:SpaceMission".freeze, - label: "CMP EVA duration (ω)".freeze, - range: "http://dbpedia.org/datatype/hour".freeze, - type: "owl:DatatypeProperty".freeze - property :"SpaceMission/distanceTraveled", - domain: "dbo:SpaceMission".freeze, - label: "distance traveled (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"SpaceMission/lunarEvaTime", - domain: "dbo:SpaceMission".freeze, - label: "lunar EVA time (ω)".freeze, - range: "http://dbpedia.org/datatype/hour".freeze, - type: "owl:DatatypeProperty".freeze - property :"SpaceMission/lunarOrbitTime", - domain: "dbo:SpaceMission".freeze, - label: "lunar orbit time (ω)".freeze, - range: "http://dbpedia.org/datatype/hour".freeze, - type: "owl:DatatypeProperty".freeze - property :"SpaceMission/lunarSampleMass", - domain: "dbo:SpaceMission".freeze, - label: "lunar sample mass (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"SpaceMission/lunarSurfaceTime", - domain: "dbo:SpaceMission".freeze, - label: "lunar surface time (ω)".freeze, - range: "http://dbpedia.org/datatype/hour".freeze, - type: "owl:DatatypeProperty".freeze - property :"SpaceMission/mass", - domain: "dbo:SpaceMission".freeze, - label: "mass (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"SpaceMission/missionDuration", - domain: "dbo:SpaceMission".freeze, - label: "mission duration (μ)".freeze, - range: "http://dbpedia.org/datatype/day".freeze, - type: "owl:DatatypeProperty".freeze - property :"SpaceMission/stationEvaDuration", - domain: "dbo:SpaceMission".freeze, - label: "station EVA duration (ω)".freeze, - range: "http://dbpedia.org/datatype/hour".freeze, - type: "owl:DatatypeProperty".freeze - property :"SpaceMission/stationVisitDuration", - domain: "dbo:SpaceMission".freeze, - label: "station visit duration (ω)".freeze, - range: "http://dbpedia.org/datatype/hour".freeze, - type: "owl:DatatypeProperty".freeze - property :"SpaceShuttle/distance", - domain: "dbo:SpaceShuttle".freeze, - label: "distance (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"SpaceShuttle/timeInSpace", - domain: "dbo:SpaceShuttle".freeze, - label: "total time person has spent in space (μ)".freeze, - range: "http://dbpedia.org/datatype/day".freeze, - type: "owl:DatatypeProperty".freeze - property :"SpaceStation/volume", - domain: "dbo:SpaceStation".freeze, - label: "volume (μ³)".freeze, - range: "http://dbpedia.org/datatype/cubicMetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Spacecraft/apoapsis", - domain: "dbo:Spacecraft".freeze, - label: "apoapsis (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Spacecraft/cargoFuel", - domain: "dbo:Spacecraft".freeze, - label: "cargo fuel (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Spacecraft/cargoGas", - domain: "dbo:Spacecraft".freeze, - label: "cargo gas (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Spacecraft/cargoWater", - domain: "dbo:Spacecraft".freeze, - label: "cargo water (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Spacecraft/dockedTime", - domain: "dbo:Spacecraft".freeze, - label: "docked time (μ)".freeze, - range: "http://dbpedia.org/datatype/day".freeze, - type: "owl:DatatypeProperty".freeze - property :"Spacecraft/dryCargo", - domain: "dbo:Spacecraft".freeze, - label: "dry cargo (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Spacecraft/freeFlightTime", - domain: "dbo:Spacecraft".freeze, - label: "free flight time (μ)".freeze, - range: "http://dbpedia.org/datatype/day".freeze, - type: "owl:DatatypeProperty".freeze - property :"Spacecraft/periapsis", - domain: "dbo:Spacecraft".freeze, - label: "periapsis (km)".freeze, - range: "http://dbpedia.org/datatype/kilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Spacecraft/totalCargo", - domain: "dbo:Spacecraft".freeze, - label: "total cargo (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Spacecraft/totalMass", - domain: "dbo:Spacecraft".freeze, - label: "total mass (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Stream/discharge", - domain: "dbo:Stream".freeze, - label: "discharge (m³/s)".freeze, - range: "http://dbpedia.org/datatype/cubicMetrePerSecond".freeze, - type: "owl:DatatypeProperty".freeze - property :"Stream/dischargeAverage", - domain: "dbo:Stream".freeze, - label: "discharge average (m³/s)".freeze, - range: "http://dbpedia.org/datatype/cubicMetrePerSecond".freeze, - type: "owl:DatatypeProperty".freeze - property :"Stream/maximumDischarge", - domain: "dbo:Stream".freeze, - label: "maximum discharge (m³/s)".freeze, - range: "http://dbpedia.org/datatype/cubicMetrePerSecond".freeze, - type: "owl:DatatypeProperty".freeze - property :"Stream/minimumDischarge", - domain: "dbo:Stream".freeze, - label: "minimum discharge (m³/s)".freeze, - range: "http://dbpedia.org/datatype/cubicMetrePerSecond".freeze, - type: "owl:DatatypeProperty".freeze - property :"Stream/watershed", - domain: "dbo:Stream".freeze, - label: "watershed (km2)".freeze, - range: "http://dbpedia.org/datatype/squareKilometre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Weapon/diameter", - domain: "dbo:Weapon".freeze, - label: "diameter (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Weapon/height", - domain: "dbo:Weapon".freeze, - label: "height (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Weapon/length", - domain: "dbo:Weapon".freeze, - label: "length (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Weapon/weight", - domain: "dbo:Weapon".freeze, - label: "weight (kg)".freeze, - range: "http://dbpedia.org/datatype/kilogram".freeze, - type: "owl:DatatypeProperty".freeze - property :"Weapon/width", - domain: "dbo:Weapon".freeze, - label: "width (mm)".freeze, - range: "http://dbpedia.org/datatype/millimetre".freeze, - type: "owl:DatatypeProperty".freeze - property :"Work/runtime", - domain: "dbo:Work".freeze, - label: "runtime (m)".freeze, - range: "http://dbpedia.org/datatype/minute".freeze, - type: "owl:DatatypeProperty".freeze - property :aSide, - domain: "dbo:Single".freeze, - label: "a side".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aSide".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :abbeychurchBlessing, - domain: "dbo:Cleric".freeze, - label: "abbey church blessing".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:abbeychurchBlessing".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :abbeychurchBlessingCharge, - domain: "dbo:Cleric".freeze, - label: "abbey church blessing charge".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:abbeychurchBlessingCharge".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :abbreviation, - equivalentProperty: "http://www.wikidata.org/entity/P743".freeze, - label: "abbreviation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:abbreviation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ableToGrind, - domain: "dbo:Mill".freeze, - label: "able to grind".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ableToGrind".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :absoluteMagnitude, - domain: "dbo:CelestialBody".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1457".freeze, - label: "absolute magnitude".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:absoluteMagnitude".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :abstentions, - comment: %(Number of abstentions from the vote).freeze, - domain: "dbo:StatedResolution".freeze, - label: "abstentions".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:abstentions".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :abstract, - comment: %(Reserved for DBpedia.).freeze, - label: "has abstract".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:abstract".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :academicAdvisor, - domain: "dbo:Scientist".freeze, - label: "academic advisor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:academicAdvisor".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :academicDiscipline, - comment: %(An academic discipline, or field of study, is a branch of knowledge that is taught and researched at the college or university level. Disciplines are defined \(in part\), and recognized by the academic journals in which research is published, and the learned societies and academic departments or faculties to which their practitioners belong.).freeze, - domain: "dbo:AcademicJournal".freeze, - label: "academic discipline".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:academicDiscipline".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isAbout".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :academyAward, - domain: "dbo:Artist".freeze, - label: "Academy Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:academyAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :acceleration, - domain: "dbo:AutomobileEngine".freeze, - label: "acceleration (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:acceleration".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :access, - label: "access".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:access".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :accessDate, - label: "access date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:accessDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :achievement, - domain: "dbo:Person".freeze, - label: "achievement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:achievement".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :acquirementDate, - domain: "dbo:Ship".freeze, - label: "date of acquirement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:acquirementDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :actScore, - comment: %(most recent average ACT scores).freeze, - domain: "dbo:School".freeze, - label: "ACT score".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:actScore".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasQuality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :actingHeadteacher, - domain: "dbo:EducationalInstitution".freeze, - label: "acting headteacher".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:actingHeadteacher".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :activeYears, - comment: %(Also called "floruit". Use this if the active years are in one field that can't be split. Else use activeYearsStartYear and activeYearsEndYear).freeze, - domain: "dbo:Person".freeze, - label: "active years".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:activeYears".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :activeYearsEndDate, - label: "active years end date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:activeYearsEndDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :activeYearsEndDateMgr, - domain: "dbo:Person".freeze, - label: "active years end date manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:activeYearsEndDateMgr".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :activeYearsEndYear, - label: "active years end year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:activeYearsEndYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :activeYearsEndYearMgr, - domain: "dbo:Person".freeze, - label: "active years end year manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:activeYearsEndYearMgr".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :activeYearsStartDate, - label: "active years start date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:activeYearsStartDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :activeYearsStartDateMgr, - domain: "dbo:Person".freeze, - label: "active years start date manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:activeYearsStartDateMgr".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :activeYearsStartYear, - label: "active years start year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:activeYearsStartYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :activeYearsStartYearMgr, - domain: "dbo:Person".freeze, - label: "active years start year manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:activeYearsStartYearMgr".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :activity, - domain: "dbo:Person".freeze, - label: "activity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:activity".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :address, - comment: %(Address of something as literal. Usually Building, but we also use it for the address of a Region's or Settlement's government).freeze, - domain: "dbo:Place".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P969".freeze, - label: "address".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:address".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :addressInRoad, - comment: %(A building, organisation or other thing that is located in the road.).freeze, - domain: "dbo:Road".freeze, - label: "address in road".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:addressInRoad".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :adjacentSettlement, - domain: "dbo:Settlement".freeze, - label: "adjacent settlement of a switzerland settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:adjacentSettlement".freeze, - range: "dbo:Settlement".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#nearTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :administrativeCenter, - domain: "dbo:AdministrativeRegion".freeze, - label: "administrative center".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:administrativeCenter".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :administrativeCollectivity, - domain: "dbo:Settlement".freeze, - label: "administrative collectivity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:administrativeCollectivity".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :administrativeDistrict, - domain: "dbo:Settlement".freeze, - label: "administrative district".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:administrativeDistrict".freeze, - range: "dbo:PopulatedPlace".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :administrativeHeadCity, - comment: %(city where stand the administrative power).freeze, - domain: "dbo:PopulatedPlace".freeze, - label: "head city".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:administrativeHeadCity".freeze, - range: "dbo:City".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :administrativeStatus, - label: "administrative status".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:administrativeStatus".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :administrator, - domain: "dbo:Organisation".freeze, - label: "administrator".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:administrator".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :afdbId, - domain: "dbo:Film".freeze, - label: "afdb id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:afdbId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :affair, - domain: "dbo:Person".freeze, - label: "affair".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:affair".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :affiliate, - domain: "dbo:FictionalCharacter".freeze, - label: "affiliate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:affiliate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :affiliation, - label: "affiliation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:affiliation".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :afiAward, - domain: "dbo:Artist".freeze, - label: "AFI Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:afiAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :age, - domain: "dbo:Agent".freeze, - label: "age".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:age".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ageRange, - comment: %(Age range of students admitted in a School, MilitaryUnit, etc).freeze, - label: "age range".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ageRange".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :agency, - domain: "dbo:Person".freeze, - label: "agency".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:agency".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :agencyStationCode, - comment: %(Agency station code \(used on tickets/reservations, etc.\).).freeze, - domain: "dbo:Station".freeze, - label: "agency station code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:agencyStationCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :agglomeration, - domain: "dbo:PopulatedPlace".freeze, - label: "agglomeration".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:agglomeration".freeze, - range: "dbo:Agglomeration".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :agglomerationArea, - domain: "dbo:PopulatedPlace".freeze, - label: "agglomeration area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:agglomerationArea".freeze, - range: "dbo:Area".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :agglomerationDemographics, - domain: "dbo:PopulatedPlace".freeze, - label: "agglomeration demographics".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:agglomerationDemographics".freeze, - range: "dbo:Demographics".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :agglomerationPopulation, - domain: "dbo:Settlement".freeze, - label: "agglomeration population".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:agglomerationPopulation".freeze, - range: "dbo:Population".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :agglomerationPopulationTotal, - label: "agglomeration population total".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:agglomerationPopulationTotal".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :agglomerationPopulationYear, - domain: "dbo:Settlement".freeze, - label: "agglomerationPopulationYear".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:agglomerationPopulationYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :aggregation, - domain: "dbo:ChemicalSubstance".freeze, - label: "Aggregation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aggregation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :airDate, - domain: "dbo:RadioStation".freeze, - label: "airdate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:airDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :aircraftAttack, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft attack".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftAttack".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftBomber, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft bomber".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftBomber".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftElectronic, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft electronic".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftElectronic".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftFighter, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft fighter".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftFighter".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftHelicopter, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft helicopter".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftHelicopter".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftHelicopterAttack, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft helicopter attack".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftHelicopterAttack".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftHelicopterCargo, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft helicopter cargo".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftHelicopterCargo".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftHelicopterMultirole, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft helicopter multirole".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftHelicopterMultirole".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftHelicopterObservation, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft helicopter observation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftHelicopterObservation".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftHelicopterTransport, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft helicopter transport".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftHelicopterTransport".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftHelicopterUtility, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft helicopter utility".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftHelicopterUtility".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftInterceptor, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft interceptor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftInterceptor".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftPatrol, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft patrol".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftPatrol".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftRecon, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft recon".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftRecon".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftTrainer, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft trainer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftTrainer".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftTransport, - domain: "dbo:MilitaryUnit".freeze, - label: "aircraft transport".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftTransport".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aircraftType, - domain: "dbo:Aircraft".freeze, - label: "aircraft type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :aircraftUser, - domain: "dbo:Aircraft".freeze, - label: "aircraft user".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aircraftUser".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :airportUsing, - domain: "dbo:Airport".freeze, - label: "Different usage of an airport".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:airportUsing".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :aitaCode, - label: "aita code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aitaCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :albedo, - comment: %(reflection coefficient).freeze, - domain: "dbo:Planet".freeze, - label: "albedo".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:albedo".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :album, - label: "album".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:album".freeze, - range: "dbo:Album".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :albumRuntime, - domain: "dbo:Album".freeze, - label: "album duration (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:albumRuntime".freeze, - range: "xsd:double".freeze, - subPropertyOf: "dbo:runtime".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :alias, - equivalentProperty: "http://www.wikidata.org/entity/P742".freeze, - label: "alias".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alias".freeze, - range: "rdf:langString".freeze, - subPropertyOf: "dbo:alternativeName".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :allcinemaId, - domain: "dbo:Film".freeze, - label: "allcinema id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:allcinemaId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :allegiance, - comment: %(The country or other power the person served. Multiple countries may be indicated together with the corresponding dates. This field should not be used to indicate a particular service branch, which is better indicated by the branch field.).freeze, - domain: "dbo:Person".freeze, - label: "allegiance".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:allegiance".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :alliance, - domain: "dbo:Airline".freeze, - label: "alliance".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alliance".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :almaMater, - comment: %(schools that they attended).freeze, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P69".freeze, - label: "alma mater".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:almaMater".freeze, - range: "dbo:EducationalInstitution".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :alongside, - label: "alongside".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alongside".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :alpsGroup, - comment: %(the Alps group to which the mountain belongs, according to the SOIUSA classification).freeze, - domain: "dbo:Mountain".freeze, - label: "Alps group".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alpsGroup".freeze, - range: "dbo:MountainRange".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :alpsMainPart, - comment: %(the Alps main part to which the mountain belongs, according to the SOIUSA classification).freeze, - domain: "dbo:Mountain".freeze, - label: "Alps main part".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alpsMainPart".freeze, - range: "dbo:MountainRange".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :alpsMajorSector, - comment: %(the Alps major sector to which the mountain belongs, according to the SOIUSA classification).freeze, - domain: "dbo:Mountain".freeze, - label: "Alps major sector".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alpsMajorSector".freeze, - range: "dbo:MountainRange".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :alpsSection, - comment: %(the Alps section to which the mountain belongs, according to the SOIUSA classification).freeze, - domain: "dbo:Mountain".freeze, - label: "Alps section".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alpsSection".freeze, - range: "dbo:MountainRange".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :alpsSoiusaCode, - comment: %(the Alps SOIUSA code corresponding to the mountain, according to the SOIUSA classification).freeze, - domain: "dbo:Mountain".freeze, - label: "Alps SOIUSA code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alpsSoiusaCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :alpsSubgroup, - comment: %(the Alps subgroup to which the mountain belongs, according to the SOIUSA classification).freeze, - domain: "dbo:Mountain".freeze, - label: "Alps subgroup".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alpsSubgroup".freeze, - range: "dbo:MountainRange".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :alpsSubsection, - comment: %(the Alps subsection to which the mountain belongs, according to the SOIUSA classification).freeze, - domain: "dbo:Mountain".freeze, - label: "Alps subsection".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alpsSubsection".freeze, - range: "dbo:MountainRange".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :alpsSupergroup, - comment: %(the Alps supergroup to which the mountain belongs, according to the SOIUSA classification).freeze, - domain: "dbo:Mountain".freeze, - label: "Alps supergroup".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alpsSupergroup".freeze, - range: "dbo:MountainRange".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :alternativeName, - comment: %(Alternative naming of anything not being a Person \(for which case foaf:nick should be used\).).freeze, - label: "alternative name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alternativeName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :alternativeTitle, - comment: %(The alternative title attributed to a work).freeze, - domain: "dbo:Work".freeze, - label: "alternative title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alternativeTitle".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :altitude, - domain: "dbo:Place".freeze, - label: "altitude".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:altitude".freeze, - range: "dbo:Altitude".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :alumni, - domain: "dbo:EducationalInstitution".freeze, - label: "alumni".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:alumni".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :amateurDefeat, - domain: "dbo:Boxer".freeze, - label: "amateur defeat".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:amateurDefeat".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :amateurFight, - domain: "dbo:Boxer".freeze, - label: "amateur fight".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:amateurFight".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :amateurKo, - domain: "dbo:Boxer".freeze, - label: "amateur ko".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:amateurKo".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :amateurNoContest, - domain: "dbo:Boxer".freeze, - label: "amateur no contest".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:amateurNoContest".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :amateurTeam, - domain: "dbo:Athlete,_CareerStation".freeze, - label: "amateur team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:amateurTeam".freeze, - range: "dbo:SportsTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :amateurTie, - domain: "dbo:Boxer".freeze, - label: "amateur tie".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:amateurTie".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :amateurTitle, - domain: "dbo:Boxer".freeze, - label: "amateur title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:amateurTitle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :amateurVictory, - domain: "dbo:Boxer".freeze, - label: "amateur victory".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:amateurVictory".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :amateurYear, - domain: "dbo:Athlete,_CareerStation".freeze, - label: "amateur year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:amateurYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :americanComedyAward, - domain: "dbo:Comedian".freeze, - label: "American Comedy Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:americanComedyAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :amgid, - domain: "dbo:Film".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1562".freeze, - label: "amgId".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:amgid".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :amsterdamCode, - domain: "dbo:Municipality".freeze, - label: "Amsterdam Code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:amsterdamCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :analogChannel, - domain: "dbo:Broadcaster".freeze, - label: "analog channel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:analogChannel".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :animal, - label: "animal".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:animal".freeze, - range: "dbo:Animal".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :animator, - domain: "dbo:Cartoon".freeze, - label: "animator".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:animator".freeze, - range: "dbo:Agent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :anniversary, - domain: "dbo:MilitaryUnit".freeze, - label: "anniversary".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:anniversary".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :announcedFrom, - domain: "dbo:Person".freeze, - label: "announcedFrom".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:announcedFrom".freeze, - range: "dbo:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :annualTemperature, - domain: "dbo:Place".freeze, - label: "annual temperature (K)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:annualTemperature".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :anthem, - comment: %(Official song \(anthem\) of a PopulatedPlace, SportsTeam, School or other).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P85".freeze, - label: "anthem".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:anthem".freeze, - range: "dbo:Work".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :aoCloassification, - domain: "dbo:Disease".freeze, - label: "AO".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aoCloassification".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :apcPresident, - label: "apc president".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:apcPresident".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :apoapsis, - domain: "dbo:CelestialBody".freeze, - label: "apoapsis (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:apoapsis".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :apofocus, - domain: "dbo:CelestialBody".freeze, - label: "apofocus".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:apofocus".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :apparentMagnitude, - domain: "dbo:Planet".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1215".freeze, - label: "apparent magnitude".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:apparentMagnitude".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :appearance, - label: "appearance".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:appearance".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :appearancesInLeague, - domain: "dbo:SoccerPlayer".freeze, - label: "appearances in league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:appearancesInLeague".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :appearancesInNationalTeam, - domain: "dbo:SoccerPlayer".freeze, - label: "appearances in national team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:appearancesInNationalTeam".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :appointer, - label: "appointer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:appointer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :apprehended, - domain: "dbo:Criminal".freeze, - label: "apprehended".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:apprehended".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :approach, - domain: "dbo:Person".freeze, - label: "approach".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:approach".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :approvedByLowerParliament, - comment: %(Date of approval by lower parliament \(House of Commons, Chambre des Députés, Bundestag, Tweede Kamer etc.\).).freeze, - domain: "dbo:Law".freeze, - label: "date of approval by lower parliament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:approvedByLowerParliament".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :approvedByUpperParliament, - comment: %(Date of approval by upper parliament \(House of Lords, Sénat, Eerste Kamer etc.\).).freeze, - domain: "dbo:Law".freeze, - label: "date of approval by upper parliament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:approvedByUpperParliament".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :approximateCalories, - comment: %(Approximate calories per serving.).freeze, - domain: "dbo:Food".freeze, - label: "approximate calories (J)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:approximateCalories".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :apskritis, - domain: "dbo:PopulatedPlace".freeze, - label: "apskritis".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:apskritis".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :archipelago, - domain: "dbo:Island".freeze, - label: "archipelago".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:archipelago".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :architect, - domain: "dbo:ArchitecturalStructure".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P84".freeze, - label: "architect".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:architect".freeze, - range: "dbo:Architect".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :architectualBureau, - domain: "dbo:ArchitecturalStructure".freeze, - label: "architectual bureau".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:architectualBureau".freeze, - range: "dbo:Company".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :architecturalMovement, - domain: "dbo:Architect".freeze, - label: "architectural movement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:architecturalMovement".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :architecturalStyle, - domain: "dbo:ArchitecturalStructure".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P149".freeze, - label: "architectural style".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:architecturalStyle".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDescribedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :area, - comment: %(The area of the thing in square meters.).freeze, - label: "area (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:area".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :areaCode, - comment: %(Area code for telephone numbers. Use this not phonePrefix).freeze, - domain: "dbo:Place".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P473".freeze, - label: "area code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :areaDate, - domain: "dbo:Place".freeze, - label: "area date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :areaLand, - domain: "dbo:Place".freeze, - label: "area land (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaLand".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :areaMetro, - label: "area metro (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaMetro".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :areaOfCatchment, - domain: "dbo:Lake".freeze, - label: "area of catchment (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaOfCatchment".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :areaOfCatchmentQuote, - domain: "dbo:Place".freeze, - label: "area of catchment quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaOfCatchmentQuote".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :areaOfSearch, - domain: "dbo:SiteOfSpecialScientificInterest".freeze, - label: "area of search".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaOfSearch".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :areaQuote, - domain: "dbo:Place".freeze, - label: "area quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaQuote".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :areaRank, - domain: "dbo:Place".freeze, - label: "area rank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaRank".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :areaRural, - domain: "dbo:PopulatedPlace".freeze, - label: "area rural (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaRural".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :areaTotal, - domain: "dbo:Place".freeze, - label: "area total (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaTotal".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :areaTotalRanking, - domain: "dbo:PopulatedPlace".freeze, - label: "total area ranking".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaTotalRanking".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :areaUrban, - domain: "dbo:PopulatedPlace".freeze, - label: "area urban (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaUrban".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :areaWater, - domain: "dbo:Place".freeze, - label: "area water (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:areaWater".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :argueDate, - domain: "dbo:SupremeCourtOfTheUnitedStatesCase".freeze, - label: "argue date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:argueDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :arielAward, - domain: "dbo:Actor".freeze, - label: "Ariel Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:arielAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :arm, - domain: "dbo:Protein".freeze, - label: "arm".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:arm".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :army, - domain: "dbo:MilitaryPerson".freeze, - label: "army".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:army".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :arrestDate, - domain: "dbo:Person".freeze, - label: "arrest date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:arrestDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :arrondissement, - domain: "dbo:PopulatedPlace".freeze, - label: "arrondissement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:arrondissement".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :artPatron, - comment: %(An influential, wealthy person who supported an artist, craftsman, a scholar or a noble.. See also).freeze, - domain: "dbo:Agent".freeze, - label: "patron (art)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:artPatron".freeze, - range: "dbo:Artist".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :artery, - domain: "dbo:AnatomicalStructure".freeze, - label: "artery".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:artery".freeze, - range: "dbo:Artery".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :artificialSnowArea, - domain: "dbo:Place".freeze, - label: "artificial snow area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:artificialSnowArea".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :artist, - comment: %(The performer or creator of the musical work.).freeze, - domain: "dbo:MusicalWork".freeze, - equivalentProperty: ["http://www.wikidata.org/entity/P175".freeze, "schema:byArtist".freeze], - label: "performer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:artist".freeze, - range: "dbo:Agent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :artisticFunction, - domain: "dbo:Person".freeze, - label: "artistic function".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:artisticFunction".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :asWikiText, - label: "Contains a WikiText representation of this thing".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:asWikiText".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ascent, - comment: %(Ascent of a celestial body, aircraft, etc. For person who ascended a mountain, use firstAscent).freeze, - label: "ascent".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ascent".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :asiaChampionship, - domain: "dbo:Athlete".freeze, - label: "asia championship".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:asiaChampionship".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :aspectRatio, - domain: "dbo:Software".freeze, - label: "Aspect Ratio".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:aspectRatio".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasQuality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :assembly, - domain: "dbo:MeanOfTransportation".freeze, - label: "assembly".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:assembly".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :assetUnderManagement, - domain: "dbo:Company".freeze, - label: "asset under management ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:assetUnderManagement".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :assets, - comment: %(Assets and liabilities are part of a companis balance sheet. In financial accounting, assets are economic resources. Anything tangible or intangible that is capable of being owned or controlled to produce value and that is held to have positive economic value is considered an asset.).freeze, - domain: "dbo:Company".freeze, - label: "assets ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:assets".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :assistantPrincipal, - domain: "dbo:EducationalInstitution".freeze, - label: "assistant principal".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:assistantPrincipal".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :associate, - label: "associate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:associate".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :associateEditor, - domain: "dbo:Newspaper".freeze, - label: "associate editor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:associateEditor".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :associateStar, - label: "associateStar".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:associateStar".freeze, - range: "dbo:Constellation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :associatedAct, - domain: "dbo:Artist".freeze, - label: "associated act".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:associatedAct".freeze, - range: "dbo:Artist".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :associatedBand, - label: "associated band".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:associatedBand".freeze, - range: "dbo:Band".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :associatedMusicalArtist, - label: "associated musical artist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:associatedMusicalArtist".freeze, - range: "dbo:MusicalArtist".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :associatedRocket, - domain: "dbo:LaunchPad".freeze, - label: "associated rocket".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:associatedRocket".freeze, - range: "dbo:Rocket".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :associationOfLocalGovernment, - domain: "dbo:Settlement".freeze, - label: "association of local government".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:associationOfLocalGovernment".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :astrologicalSign, - domain: "dbo:Person".freeze, - label: "astrological sign".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:astrologicalSign".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDescribedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :atPage, - comment: %(Page # where the referenced resource is to be found in the source document).freeze, - domain: "dbo:Reference".freeze, - label: "page number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:atPage".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :atRowNumber, - comment: %(Row # where the referenced resource is to be found in the source file).freeze, - domain: "dbo:Reference".freeze, - label: "row number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:atRowNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :atcCode, - label: "ATC code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:atcCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :atcPrefix, - label: "ATC prefix".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:atcPrefix".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :atcSuffix, - label: "ATC suffix".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:atcSuffix".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :athletics, - domain: "dbo:University".freeze, - label: "athletics".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:athletics".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :athleticsDiscipline, - domain: "dbo:Athlete".freeze, - label: "athletics discipline".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:athleticsDiscipline".freeze, - range: "dbo:Athletics".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :atomicNumber, - comment: %(the ratio of the average mass of atoms of an element \(from a single given sample or source\) to 1⁄12 of the mass of an atom of carbon-12).freeze, - domain: "dbo:ChemicalElement".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1086".freeze, - label: "atomic number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:atomicNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :attorneyGeneral, - comment: %(Public attorney).freeze, - domain: "dbo:LegalCase".freeze, - label: "attorney general".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:attorneyGeneral".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :australiaOpenDouble, - domain: "dbo:TennisPlayer".freeze, - label: "australia open double".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:australiaOpenDouble".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :australiaOpenMixed, - domain: "dbo:TennisPlayer".freeze, - label: "australia open mixed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:australiaOpenMixed".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :australiaOpenSingle, - domain: "dbo:TennisPlayer".freeze, - label: "australia open single".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:australiaOpenSingle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :author, - domain: "dbo:Work".freeze, - equivalentProperty: ["http://www.wikidata.org/entity/P50".freeze, "schema:author".freeze], - label: "author".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:author".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :authority, - label: "authority".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:authority".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :authorityMandate, - domain: "dbo:Place".freeze, - label: "authority mandate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:authorityMandate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :authorityTitle, - domain: "dbo:RomaniaSettlement".freeze, - label: "authority title of a romanian settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:authorityTitle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :automobileModel, - domain: "dbo:AutomobileEngine".freeze, - label: "automobile model".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:automobileModel".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :automobilePlatform, - domain: "dbo:Automobile".freeze, - label: "automobile platform".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:automobilePlatform".freeze, - range: "dbo:Automobile".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasComponent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :autonomy, - label: "autonomy".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:autonomy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :availableSmartCard, - comment: %(Smartcard for fare payment system for public transit systems that are or will be available at the station.).freeze, - domain: "dbo:Station".freeze, - label: "available smart card".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:availableSmartCard".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :average, - label: "average".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:average".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :averageAnnualGeneration, - domain: "dbo:PowerStation".freeze, - label: "average annual gross power generation (J)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:averageAnnualGeneration".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :averageClassSize, - domain: "dbo:School".freeze, - label: "average class size".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:averageClassSize".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :averageDepth, - comment: %(Source of the value can be declare by .).freeze, - domain: "dbo:Place".freeze, - label: "average depth (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:averageDepth".freeze, - range: "xsd:double".freeze, - subPropertyOf: "dbo:depth".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :averageDepthQuote, - comment: %(Source of the value.).freeze, - domain: "dbo:Place".freeze, - label: "average depth quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:averageDepthQuote".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :averageSpeed, - comment: %(The average speed of a thing.).freeze, - label: "average speed (kmh)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:averageSpeed".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :avifaunaPopulation, - domain: "dbo:Place".freeze, - label: "avifauna population".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:avifaunaPopulation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :award, - comment: %(Award won by a Person, Musical or other Work, RaceHorse, Building, etc).freeze, - equivalentProperty: ["http://www.wikidata.org/entity/P166".freeze, "schema:awards".freeze], - label: "award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:award".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :awardName, - comment: %(Award a person has received \(literal\). Compare to award \(ObjectProperty\)).freeze, - domain: "dbo:Person".freeze, - label: "awardName".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:awardName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :awayColourHexCode, - comment: %(A colour represented by its hex code \(e.g.: #FF0000 or #40E0D0\).).freeze, - label: "colour hex code of away jersey or its parts".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:awayColourHexCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:colourHexCode".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bSide, - domain: "dbo:Single".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1432".freeze, - label: "b side".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bSide".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :background, - label: "background".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:background".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :backhand, - domain: "dbo:Athlete".freeze, - label: "backhand".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:backhand".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :badGuy, - domain: "dbo:Person".freeze, - label: "bad guy".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:badGuy".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :baftaAward, - domain: "dbo:Artist".freeze, - label: "BAFTA Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:baftaAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :band, - domain: "dbo:Protein".freeze, - label: "band".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:band".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bandMember, - comment: %(A member of the band.).freeze, - domain: "dbo:Band".freeze, - label: "band member".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bandMember".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :barPassRate, - domain: "dbo:School".freeze, - label: "bar pass rate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:barPassRate".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :barangays, - domain: "dbo:PopulatedPlace".freeze, - label: "barangays".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:barangays".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :basedOn, - domain: "dbo:Work".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P144".freeze, - label: "based on".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:basedOn".freeze, - range: "dbo:Work".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :battery, - comment: %(Points out the battery used with/in a thing.).freeze, - label: "battery".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:battery".freeze, - range: "dbo:Battery".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :battingSide, - domain: "dbo:Athlete".freeze, - label: "batting side".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:battingSide".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :battle, - equivalentProperty: "http://www.wikidata.org/entity/P607".freeze, - label: "battle".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:battle".freeze, - range: "dbo:MilitaryConflict".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :battleHonours, - domain: "dbo:MilitaryUnit".freeze, - label: "battle honours".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:battleHonours".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bbr, - comment: %(For NBA players, the text between the last slash and .html in the URL of the player's basketball-reference.com profile \(linked at http://www.basketball-reference.com/players/\).).freeze, - domain: "dbo:GridironFootballPlayer".freeze, - label: "BBR".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bbr".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :beatifiedBy, - domain: "dbo:Saint".freeze, - label: "beatified by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:beatifiedBy".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :beatifiedDate, - domain: "dbo:Saint".freeze, - label: "beatified date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:beatifiedDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :beatifiedPlace, - domain: "dbo:Saint".freeze, - label: "beatified place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:beatifiedPlace".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :bedCount, - domain: "dbo:Hospital".freeze, - label: "bed count".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bedCount".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :believers, - domain: "dbo:ChristianDoctrine".freeze, - label: "Believers".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:believers".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :beltwayCity, - domain: "dbo:Road".freeze, - label: "beltway city".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:beltwayCity".freeze, - range: "dbo:City".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :bestFinish, - domain: "dbo:SnookerPlayer".freeze, - label: "best ranking finish".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bestFinish".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bestLap, - domain: "dbo:Person".freeze, - label: "best lap".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bestLap".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bestRankDouble, - domain: "dbo:TennisPlayer".freeze, - label: "best rank double".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bestRankDouble".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bestRankSingle, - domain: "dbo:TennisPlayer".freeze, - label: "best rank single".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bestRankSingle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bestWsopRank, - domain: "dbo:PokerPlayer".freeze, - label: "best wsop rank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bestWsopRank".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bestYearWsop, - domain: "dbo:PokerPlayer".freeze, - label: "best year wsop".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bestYearWsop".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bgafdId, - domain: "dbo:Film".freeze, - label: "bgafd id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bgafdId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bibsysId, - comment: %(BIBSYS is a supplier of library and information systems for all Norwegian university Libraries, the National Library of Norway, college libraries, and a number of research libraries and institutions.).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1015".freeze, - label: "BIBSYS Id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bibsysId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bicycleInformation, - comment: %(Information on station's bicycle facilities.).freeze, - domain: "dbo:Station".freeze, - label: "bicycle information".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bicycleInformation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bigPoolRecord, - domain: "dbo:Person".freeze, - label: "big pool record".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bigPoolRecord".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :biggestCity, - domain: "dbo:Place".freeze, - label: "biggest city".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:biggestCity".freeze, - range: "dbo:PopulatedPlace".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :billed, - domain: "dbo:Wrestler".freeze, - label: "billed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:billed".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :binomial, - domain: "dbo:Species".freeze, - label: "binomial".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:binomial".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :binomialAuthority, - domain: "dbo:Species".freeze, - label: "binomial authority".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:binomialAuthority".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :bioavailability, - comment: %("The rate and extent to which the active ingredient or active moiety is absorbed from a drug product and becomes available at the site of action. For drug products that are not intended to be absorbed into the bloodstream, bioavailability may be assessed by measurements intended to reflect the rate and extent to which the active ingredient or active moiety becomes available at the site of action \(21CFR320.1\).").freeze, - domain: "dbo:Drug".freeze, - label: "Bioavailability".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bioavailability".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bioclimate, - domain: "dbo:Place".freeze, - label: "bioclimate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bioclimate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :biome, - label: "biome".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:biome".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :bird, - domain: "dbo:Place".freeze, - label: "bird".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bird".freeze, - range: "dbo:Species".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :birthDate, - domain: "dbo:Person".freeze, - equivalentProperty: ["http://www.wikidata.org/entity/P569".freeze, "schema:birthDate".freeze], - label: "birth date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:birthDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :birthName, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1477".freeze, - label: "birth name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:birthName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :birthPlace, - comment: %(where the person was born).freeze, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P19".freeze, - label: "birth place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:birthPlace".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :birthSign, - domain: "dbo:Person".freeze, - label: "birth sign".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:birthSign".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :birthYear, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P569".freeze, - label: "birth year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:birthYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :bishopric, - comment: %(A bishopric \(diocese or episcopal see\) is a district under the supervision of a bishop. It is divided into parishes. Compare with eparchy).freeze, - domain: "dbo:ReligiousBuilding".freeze, - label: "bishopric".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bishopric".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :blackLongDistancePisteNumber, - domain: "dbo:Place".freeze, - label: "long distance piste number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:blackLongDistancePisteNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :blackSkiPisteNumber, - domain: "dbo:Place".freeze, - label: "black ski piste number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:blackSkiPisteNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :blazon, - comment: %(Coat of arms \(heraldic image\) or emblem).freeze, - label: "blazon".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:blazon".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :blazonCaption, - domain: "dbo:Blazon".freeze, - label: "Blazon caption".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:blazonCaption".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :blazonLink, - label: "blazon link".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:blazonLink".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :blazonRatio, - label: "blazon ratio".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:blazonRatio".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :block, - domain: "dbo:VolleyballPlayer".freeze, - label: "block".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:block".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :blockAlloy, - domain: "dbo:AutomobileEngine".freeze, - label: "block alloy".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:blockAlloy".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :bloodGroup, - domain: "dbo:Person".freeze, - label: "blood group".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bloodGroup".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bloodType, - domain: "dbo:Person".freeze, - label: "blood type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bloodType".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :blueLongDistancePisteNumber, - domain: "dbo:Place".freeze, - label: "blue long distance piste number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:blueLongDistancePisteNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :blueSkiPisteNumber, - domain: "dbo:Place".freeze, - label: "blue ski piste number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:blueSkiPisteNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bnfId, - comment: %(Authority data of people listed in the general catalogue of the National Library of France).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P268".freeze, - label: "BNF Id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bnfId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :board, - domain: "dbo:Person".freeze, - label: "board".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:board".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :bodyDiscovered, - domain: "dbo:Person".freeze, - label: "body discovered".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bodyDiscovered".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :bodyStyle, - domain: "dbo:Automobile".freeze, - label: "body style".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bodyStyle".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDescribedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :boiler, - domain: "dbo:Locomotive".freeze, - label: "boiler".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:boiler".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasComponent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :boilerPressure, - domain: "dbo:Locomotive".freeze, - label: "boiler pressure".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:boilerPressure".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :boilingPoint, - domain: "dbo:ChemicalSubstance".freeze, - label: "boiling point (K)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:boilingPoint".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :book, - label: "name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:book".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :booster, - domain: "dbo:SpaceMission".freeze, - label: "booster".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:booster".freeze, - range: "dbo:Rocket".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :border, - label: "border".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:border".freeze, - range: "dbo:Area".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :borough, - domain: "dbo:PopulatedPlace".freeze, - label: "borough".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:borough".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :bourgmestre, - domain: "dbo:Settlement".freeze, - label: "bourgmestre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bourgmestre".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :bowlRecord, - domain: "dbo:CollegeCoach".freeze, - label: "bowl record".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bowlRecord".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bowlingSide, - domain: "dbo:Athlete".freeze, - label: "bowling side".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bowlingSide".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :boxerStyle, - domain: "dbo:Boxer".freeze, - label: "boxing style".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:boxerStyle".freeze, - range: "dbo:Sport".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :bpnId, - comment: %(Dutch project with material for 40,000 digitized biographies, including former colonies of the Netherlands.).freeze, - label: "BPN Id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bpnId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :brainInfoNumber, - domain: "dbo:Brain".freeze, - label: "brain info number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:brainInfoNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :brainInfoType, - domain: "dbo:Brain".freeze, - label: "brain info type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:brainInfoType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :branchFrom, - domain: "dbo:AnatomicalStructure".freeze, - label: "branch from".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:branchFrom".freeze, - range: "dbo:AnatomicalStructure".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :branchTo, - domain: "dbo:AnatomicalStructure".freeze, - label: "branch to".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:branchTo".freeze, - range: "dbo:AnatomicalStructure".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :brand, - domain: "dbo:WrestlingEvent".freeze, - label: "brand".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:brand".freeze, - range: "dbo:TelevisionShow".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :breeder, - domain: "dbo:Animal".freeze, - label: "breeder".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:breeder".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :bridgeCarries, - comment: %(Type of vehicles the bridge carries.).freeze, - domain: "dbo:Bridge".freeze, - label: "bridge carries".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bridgeCarries".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :brinCode, - comment: %(The code used by the Dutch Ministry of Education to identify a school \(as an organisation\)).freeze, - domain: "dbo:EducationalInstitution".freeze, - label: "BRIN code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:brinCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :britishComedyAwards, - domain: "dbo:Comedian".freeze, - label: "British Comedy Awards".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:britishComedyAwards".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :britishOpen, - domain: "dbo:Athlete".freeze, - label: "britishOpen".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:britishOpen".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :britishWins, - domain: "dbo:Person".freeze, - label: "british wins".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:britishWins".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :broadcastArea, - domain: "dbo:Broadcaster".freeze, - label: "broadcast area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:broadcastArea".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :broadcastNetwork, - comment: %(The parent broadcast network to which the broadcaster belongs.).freeze, - domain: "dbo:Broadcaster".freeze, - label: "broadcast network".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:broadcastNetwork".freeze, - range: "dbo:BroadcastNetwork".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :broadcastRepeater, - domain: "dbo:Broadcaster".freeze, - label: "broadcast repeater".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:broadcastRepeater".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :broadcastStationClass, - domain: "dbo:Broadcaster".freeze, - label: "broadcast station class".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:broadcastStationClass".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :broadcastTranslator, - domain: "dbo:Broadcaster".freeze, - label: "broadcast translator".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:broadcastTranslator".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bronzeMedalDouble, - domain: "dbo:TennisPlayer".freeze, - label: "bronze medal double".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bronzeMedalDouble".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bronzeMedalMixed, - domain: "dbo:TennisPlayer".freeze, - label: "bronze medal mixed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bronzeMedalMixed".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bronzeMedalSingle, - domain: "dbo:TennisPlayer".freeze, - label: "bronze medal single".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bronzeMedalSingle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bronzeMedalist, - domain: "dbo:SportsEvent".freeze, - label: "bronze medalist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bronzeMedalist".freeze, - range: "dbo:Person".freeze, - subPropertyOf: ["dbo:Medalist".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :budget, - label: "budget ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:budget".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :budgetYear, - domain: "dbo:Place".freeze, - label: "budget year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:budgetYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :builder, - equivalentProperty: "http://www.wikidata.org/entity/P176".freeze, - label: "builder".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:builder".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :building, - domain: "dbo:Island".freeze, - label: "building".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:building".freeze, - range: "dbo:Building".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :buildingEndDate, - comment: %(Building end date of an ArchitecturalStructure, man-made Lake, etc. For older structures this can be just a year or century, for newer structures an exact date is preferred).freeze, - label: "building end date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:buildingEndDate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :buildingEndYear, - domain: "dbo:ArchitecturalStructure".freeze, - label: "building end year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:buildingEndYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :buildingStartDate, - comment: %(Building start date of an ArchitecturalStructure, man-made Lake, etc. For older structures this can be just a year or century, for newer structures an exact date is preferred).freeze, - label: "building start date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:buildingStartDate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :buildingStartYear, - domain: "dbo:ArchitecturalStructure".freeze, - label: "building start year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:buildingStartYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :buildingType, - comment: %(Type is too general. We should be able to distinguish types of music from types of architecture).freeze, - domain: "dbo:Building".freeze, - label: "buildingType".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:buildingType".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :bustSize, - domain: "dbo:Person".freeze, - label: "bust size (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bustSize".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :bustWaistHipSize, - comment: %(Use this property if all 3 sizes are given together \(DBpedia cannot currently extract 3 Lengths out of a field\). Otherwise use separate fields bustSize, waistSize, hipSize).freeze, - domain: "dbo:Person".freeze, - label: "bust-waist-hip Size".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:bustWaistHipSize".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cableCar, - domain: "dbo:Place".freeze, - label: "cable car".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cableCar".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :calculationNeeds, - label: "its calculation needs".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:calculationNeeds".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :callSign, - comment: %(A call sign is not the name of a broadcaster! In broadcasting and radio communications, a call sign \(also known as a call name or call letters, or abbreviated as a call\) is a unique designation for a transmitting station.).freeze, - label: "call sign".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:callSign".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :callsignMeaning, - comment: %(The out written call sign.).freeze, - domain: "dbo:Broadcaster".freeze, - label: "call sign meaning".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:callsignMeaning".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :campus, - domain: "dbo:University".freeze, - label: "campus".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:campus".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :campusSize, - domain: "dbo:School".freeze, - label: "campus size (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:campusSize".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :campusType, - domain: "dbo:EducationalInstitution".freeze, - label: "campus type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:campusType".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :canBaggageChecked, - comment: %(Whether bags can be checked.).freeze, - domain: "dbo:Station".freeze, - label: "can baggage checked".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:canBaggageChecked".freeze, - range: "xsd:boolean".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cannonNumber, - domain: "dbo:Place".freeze, - label: "cannon number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cannonNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :canonizedBy, - domain: "dbo:Saint".freeze, - label: "canonized by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:canonizedBy".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :canonizedDate, - domain: "dbo:Saint".freeze, - label: "canonized date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:canonizedDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :canonizedPlace, - domain: "dbo:Saint".freeze, - label: "canonized place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:canonizedPlace".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :canton, - domain: "dbo:Settlement".freeze, - label: "canton".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:canton".freeze, - range: "dbo:Settlement".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :capacity, - comment: %(Number of people who can be served by a Train or other service; or participate in a SoccerClub, CricketTeam, etc).freeze, - label: "capacity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:capacity".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :capacityFactor, - domain: "dbo:PowerStation".freeze, - label: "capacity factor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:capacityFactor".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :capital, - domain: "dbo:PopulatedPlace".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P36".freeze, - label: "capital".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:capital".freeze, - range: "dbo:City".freeze, - subPropertyOf: ["dbo:administrativeHeadCity".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :capitalCoordinates, - domain: "dbo:Place".freeze, - label: "capital coordinates".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:capitalCoordinates".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :capitalCountry, - domain: "dbo:Island".freeze, - label: "capital country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:capitalCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :capitalDistrict, - domain: "dbo:Island".freeze, - label: "capital district".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:capitalDistrict".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :capitalElevation, - domain: "dbo:Island".freeze, - label: "capital elevation (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:capitalElevation".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :capitalMountain, - domain: "dbo:Island".freeze, - label: "capital mountain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:capitalMountain".freeze, - range: "dbo:Mountain".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :capitalPlace, - domain: "dbo:Island".freeze, - label: "capital place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:capitalPlace".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :capitalPosition, - domain: "dbo:Island".freeze, - label: "capital position".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:capitalPosition".freeze, - range: "geo:SpatialThing".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :capitalRegion, - domain: "dbo:Island".freeze, - label: "capital region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:capitalRegion".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :captureDate, - domain: "dbo:Ship".freeze, - label: "capture date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:captureDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :carNumber, - domain: "dbo:FormulaOneRacer".freeze, - label: "car number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:carNumber".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :carbohydrate, - comment: %(Amount of carbohydrates per servingSize of a Food).freeze, - domain: "dbo:Food".freeze, - label: "carbohydrate (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:carbohydrate".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :carcinogen, - domain: "dbo:ChemicalSubstance".freeze, - label: "carcinogen".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:carcinogen".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :careerPoints, - domain: "dbo:FormulaOneRacer".freeze, - label: "career points".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:careerPoints".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :careerPrizeMoney, - domain: "dbo:TennisPlayer".freeze, - label: "career prize money ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:careerPrizeMoney".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :careerStation, - comment: %(this property links to a step in the career of a person, e.g. a soccer player, holding information on the time span, matches and goals he or she achieved at a club.).freeze, - domain: "dbo:Person".freeze, - label: "career station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:careerStation".freeze, - range: "dbo:CareerStation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasSetting".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :cargoFuel, - domain: "dbo:Spacecraft".freeze, - label: "cargo fuel (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cargoFuel".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cargoGas, - domain: "dbo:Spacecraft".freeze, - label: "cargo gas (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cargoGas".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cargoWater, - domain: "dbo:Spacecraft".freeze, - label: "cargo water (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cargoWater".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :casNumber, - comment: %(Chemical Abstracts Service number. Applicable to ChemicalCompound or Biomolecule \(eg Protein\)).freeze, - label: "CAS number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:casNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :casSupplemental, - label: "CAS supplemental".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:casSupplemental".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :case, - domain: "dbo:Person".freeze, - label: "case".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:case".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :casualties, - comment: %(Number of casualties of a MilitaryConflict or natural disaster such as an Earthquake).freeze, - domain: "dbo:MilitaryConflict_,_NaturalEvent_,_Attack".freeze, - label: "casualties".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:casualties".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :catch, - domain: "dbo:Person".freeze, - label: "catch".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:catch".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :category, - label: "category".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:category".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :caterer, - domain: "dbo:Infrastructure".freeze, - label: "caterer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:caterer".freeze, - range: "dbo:Caterer".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :catholicPercentage, - domain: "dbo:PopulatedPlace".freeze, - label: "catholic percentage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:catholicPercentage".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :causalties, - domain: "dbo:MilitaryConflict".freeze, - label: "causalties".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:causalties".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :causeOfDeath, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P509".freeze, - label: "cause of death".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:causeOfDeath".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :causedBy, - domain: "dbo:Event".freeze, - label: "caused by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:causedBy".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :ccaState, - domain: "dbo:PopulatedPlace".freeze, - label: "cca state".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ccaState".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ceeb, - domain: "dbo:School".freeze, - label: "ceeb".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ceeb".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ceiling, - comment: %(Maximum distance to the earth surface, to be expressed in kilometers).freeze, - domain: "dbo:Aircraft".freeze, - label: "ceiling".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ceiling".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cemetery, - domain: "dbo:ReligiousBuilding".freeze, - label: "cemetery".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cemetery".freeze, - range: "dbo:Cemetery".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :censusYear, - domain: "dbo:PopulatedPlace".freeze, - label: "census year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:censusYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :center, - domain: "dbo:NorwaySettlement".freeze, - label: "norwegian center".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:center".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :centuryBreaks, - comment: %(number of breaks with 100 points and more).freeze, - domain: "dbo:SnookerPlayer".freeze, - label: "century breaks".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:centuryBreaks".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ceo, - domain: "dbo:Organisation".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P169".freeze, - label: "chief executive officer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ceo".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :ceremonialCounty, - domain: "dbo:PopulatedPlace".freeze, - label: "Ceremonial County".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ceremonialCounty".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :certification, - domain: "dbo:Single".freeze, - label: "certification".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:certification".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :certificationDate, - domain: "dbo:Single".freeze, - label: "certification date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:certificationDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cesarAward, - domain: "dbo:Artist".freeze, - label: "Cesar Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cesarAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :chEBI, - comment: %(A unique identifier for the drug in the Chemical Entities of Biological Interest \(ChEBI\) ontology).freeze, - domain: "dbo:Drug".freeze, - label: "ChEBI".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chEBI".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :chEMBL, - comment: %(ChEMBL is a manually curated chemical database of bioactive molecules with drug-like properties.).freeze, - domain: "dbo:ChemicalSubstance".freeze, - label: "ChEMBL".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chEMBL".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :chain, - comment: %(The \(business\) chain this instance is associated with.).freeze, - label: "chain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chain".freeze, - range: "dbo:Company".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :chairLabel, - label: "chair label".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chairLabel".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :chairman, - label: "chairman".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chairman".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :chairmanTitle, - domain: "dbo:SoccerClub".freeze, - label: "chairman title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chairmanTitle".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :chairperson, - domain: "dbo:Organisation".freeze, - label: "chairperson".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chairperson".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :champion, - comment: %(winner of a competition).freeze, - domain: "dbo:SportsEvent".freeze, - label: "champion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:champion".freeze, - range: "dbo:Athlete".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :championInDouble, - comment: %(winner of a competition in the double session \(as in tennis\)).freeze, - domain: "dbo:SportsEvent".freeze, - label: "champion in double".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:championInDouble".freeze, - range: "dbo:Athlete".freeze, - subPropertyOf: ["dbo:champion".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :championInDoubleFemale, - comment: %(winner of a competition in the female double session \(as in tennis\)).freeze, - domain: "dbo:SportsEvent".freeze, - label: "champion in double female".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:championInDoubleFemale".freeze, - range: "dbo:Athlete".freeze, - subPropertyOf: ["dbo:championInDouble".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :championInDoubleMale, - comment: %(winner of a competition in the male double session \(as in tennis\)).freeze, - domain: "dbo:SportsEvent".freeze, - label: "champion in double male".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:championInDoubleMale".freeze, - range: "dbo:Athlete".freeze, - subPropertyOf: ["dbo:championInDouble".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :championInMixedDouble, - comment: %(winner of a competition in the mixed double session \(as in tennis\)).freeze, - domain: "dbo:SportsEvent".freeze, - label: "champion in mixed double".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:championInMixedDouble".freeze, - range: "dbo:Athlete".freeze, - subPropertyOf: ["dbo:championInDouble".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :championInSingle, - comment: %(winner of a competition in the single session, to distinguish from the double session \(as in tennis\)).freeze, - domain: "dbo:SportsEvent".freeze, - label: "champion in single".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:championInSingle".freeze, - range: "dbo:Athlete".freeze, - subPropertyOf: ["dbo:champion".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :championInSingleFemale, - comment: %(winner of a competition in the single female session, to distinguish from the double session \(as in tennis\)).freeze, - domain: "dbo:SportsEvent".freeze, - label: "champion in single female".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:championInSingleFemale".freeze, - range: "dbo:Athlete".freeze, - subPropertyOf: ["dbo:championInSingle".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :championInSingleMale, - comment: %(winner of a competition in the single male session, to distinguish from the double session \(as in tennis\)).freeze, - domain: "dbo:SportsEvent".freeze, - label: "champion in single male".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:championInSingleMale".freeze, - range: "dbo:Athlete".freeze, - subPropertyOf: ["dbo:championInSingle".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :championships, - domain: "dbo:Agent".freeze, - label: "championships".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:championships".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :chancellor, - label: "chancellor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chancellor".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :channel, - label: "channel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:channel".freeze, - range: "dbo:Broadcaster".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :chaplain, - domain: "dbo:Organisation".freeze, - label: "chaplain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chaplain".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :characterInPlay, - comment: %(Name of a character in play.).freeze, - domain: "dbo:Play".freeze, - label: "character in play".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:characterInPlay".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :chef, - domain: "dbo:Restaurant".freeze, - label: "chef".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chef".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :chemSpiderId, - comment: %(identifier in a free chemical database, owned by the Royal Society of Chemistry).freeze, - domain: "dbo:ChemicalSubstance".freeze, - label: "ChemSpider Id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chemSpiderId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :chemicalFormula, - domain: "dbo:ChemicalSubstance".freeze, - label: "chemical formula".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chemicalFormula".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :chiefEditor, - domain: "dbo:Work".freeze, - label: "chief editor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chiefEditor".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :chiefPlace, - label: "chief place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chiefPlace".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :child, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P40".freeze, - label: "child".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:child".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :childOrganisation, - domain: "dbo:Organisation".freeze, - label: "child organisation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:childOrganisation".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :choreographer, - domain: "dbo:FigureSkater".freeze, - label: "choreographer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:choreographer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :chorusCharacterInPlay, - comment: %(The name of the \(Greek\) chorus character in play.).freeze, - domain: "dbo:Play".freeze, - label: "chorus character in play".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chorusCharacterInPlay".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:characterInPlay".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :christeningDate, - domain: "dbo:Ship".freeze, - label: "date of christening".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:christeningDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :chromosome, - domain: "dbo:Protein".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1057".freeze, - label: "chromosome".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:chromosome".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cinematography, - domain: "dbo:Film".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P344".freeze, - label: "cinematography".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cinematography".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :circle, - domain: "dbo:PopulatedPlace".freeze, - label: "region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:circle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :circuitLength, - domain: "dbo:FormulaOneRacing".freeze, - label: "circuit length (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:circuitLength".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :circuitName, - domain: "dbo:FormulaOneRacing".freeze, - label: "circuit name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:circuitName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :circulation, - domain: "dbo:WrittenWork".freeze, - label: "circulation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:circulation".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :circumcised, - domain: "dbo:Person".freeze, - label: "circumcised".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:circumcised".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cites, - comment: %(A document cited by this work. Like OntologyProperty:dct:references, but as a datatype property.).freeze, - domain: "dbo:Work".freeze, - label: "cites".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cites".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :citizenship, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P27".freeze, - label: "citizenship".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:citizenship".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :city, - equivalentProperty: "http://www.wikidata.org/entity/P131".freeze, - label: "city".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:city".freeze, - range: "dbo:City".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :cityLink, - domain: "dbo:Place".freeze, - label: "city link".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cityLink".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cityRank, - comment: %(Place of the building in the list of the highest buildings in the city).freeze, - domain: "dbo:Skyscraper".freeze, - label: "city rank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cityRank".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :citySince, - domain: "dbo:PopulatedPlace".freeze, - label: "city since".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:citySince".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cityType, - domain: "dbo:PopulatedPlace".freeze, - label: "city type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cityType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :clade, - domain: "dbo:Species".freeze, - label: "clade".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:clade".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :class, - label: "class".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:class".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :classes, - domain: "dbo:School".freeze, - label: "classes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:classes".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :classification, - comment: %(Any string representing a class or category this thing is assigned to.).freeze, - label: "classification".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:classification".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :classis, - comment: %(the living thing class \(from the Latin "classis"\), according to the biological taxonomy).freeze, - domain: "dbo:Species".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P77".freeze, - label: "classis".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:classis".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :climate, - domain: "dbo:Place".freeze, - label: "climate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:climate".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasQuality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :climbUpNumber, - domain: "dbo:Place".freeze, - label: "clip up number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:climbUpNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :closeTo, - comment: %(place close to another place).freeze, - domain: "dbo:Place".freeze, - label: "is close to".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:closeTo".freeze, - range: "dbo:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :closed, - domain: "dbo:EducationalInstitution".freeze, - label: "closed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:closed".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :closingDate, - label: "closing date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:closingDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :closingFilm, - domain: "dbo:FilmFestival".freeze, - label: "closing film".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:closingFilm".freeze, - range: "dbo:Film".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :closingYear, - label: "closing year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:closingYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :clothSize, - domain: "dbo:Person".freeze, - label: "cloth size".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:clothSize".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :clothingSize, - domain: "dbo:Person".freeze, - label: "clothing size".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:clothingSize".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :club, - domain: "dbo:Athlete".freeze, - equivalentProperty: "dbo:team".freeze, - label: "club".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:club".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :clubsRecordGoalscorer, - domain: "dbo:SoccerClub".freeze, - label: "clubs record goalscorer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:clubsRecordGoalscorer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :cluster, - domain: "dbo:Galaxy".freeze, - label: "cluster".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cluster".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :cmpEvaDuration, - domain: "dbo:SpaceMission".freeze, - label: "CMP EVA duration (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cmpEvaDuration".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cmykCoordinateBlack, - domain: "dbo:Colour".freeze, - label: "black coordinate in the CMYK space".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cmykCoordinateBlack".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cmykCoordinateCyanic, - domain: "dbo:Colour".freeze, - label: "cyanic coordinate in the CMYK space".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cmykCoordinateCyanic".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cmykCoordinateMagenta, - domain: "dbo:Colour".freeze, - label: "magenta coordinate in the CMYK space".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cmykCoordinateMagenta".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cmykCoordinateYellow, - domain: "dbo:Colour".freeze, - label: "yellow coordinate in the CMYK space".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cmykCoordinateYellow".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :co2Emission, - domain: "dbo:AutomobileEngine".freeze, - label: "CO2 emission (g/km)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:co2Emission".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :coExecutiveProducer, - domain: "dbo:TelevisionShow".freeze, - label: "co executive producer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coExecutiveProducer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :coProducer, - domain: "dbo:TelevisionShow".freeze, - label: "co producer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coProducer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :coach, - label: "coach".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coach".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :coachClub, - domain: "dbo:Athlete".freeze, - label: "coach club".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coachClub".freeze, - range: "dbo:SportsTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :coachSeason, - domain: "dbo:Athlete".freeze, - label: "coach season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coachSeason".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :coachedTeam, - label: "coached team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coachedTeam".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :coachingRecord, - domain: "dbo:CollegeCoach".freeze, - label: "coaching record".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coachingRecord".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :coalition, - domain: "dbo:Person".freeze, - label: "coalition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coalition".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :coastLength, - domain: "dbo:Place".freeze, - label: "length of a coast".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coastLength".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :coastLine, - domain: "dbo:Settlement".freeze, - label: "coast line (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coastLine".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :coatOfArms, - comment: %(image of the coat of arms \(heraldic symbol\)).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P94".freeze, - label: "coat of arms image".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coatOfArms".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :code, - comment: %(Superproperty for any designation \(string, integer as string\) that is meant to identify an entity within the context of a system).freeze, - label: "code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:code".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :codeBook, - comment: %(code book or statute book referred to in this legal case).freeze, - domain: "dbo:LegalCase".freeze, - label: "code book".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:codeBook".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :codeDistrict, - domain: "dbo:CityDistrict".freeze, - label: "City district code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:codeDistrict".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :codeIndex, - domain: "dbo:MemberResistanceMovement".freeze, - label: "code on index".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:codeIndex".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :codeListOfHonour, - domain: "dbo:MemberResistanceMovement".freeze, - label: "code on List of Honour".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:codeListOfHonour".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :codeMemorial, - comment: %(Identifier for monuments of the Memorial type).freeze, - domain: "dbo:Memorial".freeze, - label: "memorial ID number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:codeMemorial".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:Code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :codeMunicipalMonument, - comment: %(Code assigned to \(Dutch\) monuments at the municipal level, deemed to be of local value).freeze, - domain: "dbo:Place".freeze, - label: "monument code (municipal)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:codeMunicipalMonument".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :codeNationalMonument, - comment: %(Code assigned to \(Dutch\) monuments at the national level, deemed to be of national value).freeze, - domain: "dbo:Place".freeze, - label: "monument code (national)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:codeNationalMonument".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :codeProvincialMonument, - comment: %(Code assigned to \(Dutch\) monuments at the provincial level, mostly for monuments in the countryside, or for waterworks).freeze, - domain: "dbo:Place".freeze, - label: "monument code (provinciall)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:codeProvincialMonument".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :codeSettlement, - domain: "dbo:Settlement".freeze, - label: "settlement code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:codeSettlement".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :codeStockExchange, - domain: "dbo:Company".freeze, - label: "code Stock Exchange".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:codeStockExchange".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :coden, - comment: %(CODEN is a six character, alphanumeric bibliographic code, that provides concise, unique and unambiguous identification of the titles of serials and non-serial publications from all subject areas.).freeze, - domain: "dbo:WrittenWork".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1159".freeze, - label: "CODEN".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coden".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :coemperor, - domain: "dbo:Monarch".freeze, - label: "coemperor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coemperor".freeze, - range: "dbo:Monarch".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :collaboration, - domain: "dbo:Person".freeze, - label: "collaboration".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:collaboration".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :colleague, - comment: %(Colleague of a Person or OfficeHolder \(not PersonFunction nor CareerStation\). Sub-properties include: president, vicePresident, chancellor, viceChancellor, governor, lieutenant. Points to a Person who may have a general "position" \(resource\) or "title" \(literal\).).freeze, - domain: "dbo:Person".freeze, - label: "colleague".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:colleague".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :collection, - domain: "dbo:Museum".freeze, - label: "collection".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:collection".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :collectionSize, - label: "country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:collectionSize".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasRegion".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :collectivityMinority, - domain: "dbo:Settlement".freeze, - label: "collectivity minority".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:collectivityMinority".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :college, - domain: "dbo:Person".freeze, - label: "college".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:college".freeze, - range: "dbo:EducationalInstitution".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :collegeHof, - domain: "dbo:Athlete".freeze, - label: "college hof".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:collegeHof".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :colonialName, - domain: "dbo:PopulatedPlace".freeze, - label: "colonial name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:colonialName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :colorChart, - domain: "dbo:FictionalCharacter".freeze, - label: "colorChart".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:colorChart".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :colour, - comment: %(A colour represented by its entity.).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P462".freeze, - label: "colour".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:colour".freeze, - range: "dbo:Colour".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasQuality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :colourHexCode, - comment: %(A colour represented by its hex code \(e.g.: #FF0000 or #40E0D0\)).freeze, - label: "colour hex code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:colourHexCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :colourName, - comment: %(A colour represented by a string holding its name \(e.g.: red or green\).).freeze, - label: "colour name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:colourName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :combatant, - domain: "dbo:MilitaryConflict".freeze, - label: "combatant".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:combatant".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :comic, - domain: "dbo:FictionalCharacter".freeze, - label: "comic".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:comic".freeze, - range: "dbo:Comic".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :comitat, - domain: "dbo:HungarySettlement".freeze, - label: "comitat of a settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:comitat".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :command, - domain: "dbo:MilitaryPerson".freeze, - label: "command".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:command".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :commandModule, - domain: "dbo:SpaceMission".freeze, - label: "command module".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:commandModule".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :commandStructure, - domain: "dbo:MilitaryUnit".freeze, - label: "command structure".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:commandStructure".freeze, - range: "dbo:MilitaryUnit".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :commandant, - label: "commandant".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:commandant".freeze, - range: "dbo:Person".freeze, - subPropertyOf: ["dbo:keyPerson".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :commander, - label: "commander".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:commander".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :comment, - label: "comment".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:comment".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :commissioner, - domain: "dbo:Work".freeze, - label: "commissioner".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:commissioner".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :commissionerDate, - domain: "dbo:PopulatedPlace".freeze, - label: "commissioner date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:commissionerDate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :commissioningDate, - domain: "dbo:Ship".freeze, - label: "commissioning date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:commissioningDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :committee, - label: "committee".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:committee".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :committeeInLegislature, - comment: %(Committee in the legislature \(eg.: Committee on Economic and Monetary Affairs of the European Parliament\).).freeze, - domain: "dbo:Legislature".freeze, - label: "committee in legislature".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:committeeInLegislature".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :commonName, - comment: %(The common name of an entity. Frequently, foaf:name is used for all of the different names of a person; this property just defines the most commonly used name.).freeze, - label: "common name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:commonName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :commune, - domain: "dbo:Settlement".freeze, - label: "commune".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:commune".freeze, - range: "dbo:Settlement".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :communityIsoCode, - domain: "dbo:PopulatedPlace".freeze, - label: "iso code of a community".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:communityIsoCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:isoCode".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :company, - label: "company".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:company".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :comparable, - comment: %(similar, unrelated rockets).freeze, - domain: "dbo:Rocket".freeze, - label: "comparable".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:comparable".freeze, - range: "dbo:Rocket".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :competition, - domain: "dbo:SportCompetitionResult".freeze, - label: "competition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:competition".freeze, - range: "dbo:Event".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :competitionTitle, - domain: "dbo:Person".freeze, - label: "competition title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:competitionTitle".freeze, - range: "dbo:SportsEvent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :compiler, - comment: %(For compilation albums: the person or entity responsible for selecting the album's track listing.).freeze, - domain: "dbo:Album".freeze, - label: "compiler".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:compiler".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :completionDate, - domain: "dbo:Work".freeze, - label: "completion date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:completionDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :complexion, - domain: "dbo:Person".freeze, - label: "complexion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:complexion".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasQuality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :complexity, - comment: %(Complexity of preparing a Food \(recipe\)).freeze, - domain: "dbo:Food".freeze, - label: "complexity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:complexity".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :complications, - domain: "dbo:Disease".freeze, - label: "complications".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:complications".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :component, - domain: "dbo:Brain".freeze, - label: "component".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:component".freeze, - range: "dbo:AnatomicalStructure".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasComponent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :composer, - domain: "dbo:Work".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P86".freeze, - label: "composer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:composer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :compressionRatio, - domain: "dbo:AutomobileEngine".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1247".freeze, - label: "compression ratio".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:compressionRatio".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :computingInput, - domain: "dbo:Software".freeze, - label: "Computing input".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:computingInput".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :computingMedia, - domain: "dbo:Software".freeze, - label: "Computing Media".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:computingMedia".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :computingPlatform, - comment: %(some sort of hardware architecture or software framework, that allows this software to run).freeze, - domain: "dbo:Software".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P400".freeze, - label: "computing platform".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:computingPlatform".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :configuration, - domain: "dbo:AutomobileEngine".freeze, - label: "configuration".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:configuration".freeze, - range: "http://dbpedia.org/datatype/engineConfiguration".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :conflict, - label: "conflict".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:conflict".freeze, - range: "dbo:MilitaryConflict".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :congressionalDistrict, - domain: "dbo:AdministrativeRegion".freeze, - label: "congressional district".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:congressionalDistrict".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :connectsReferencedTo, - comment: %(connects a referenced resource to another resource. This property is important to connect non-extracted resources to extracted ones).freeze, - domain: "dbo:Reference".freeze, - label: "connects referenced to".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:connectsReferencedTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :connotation, - comment: %(A meaning of a word or phrase that is suggested or implied, as opposed to a denotation, or literal meaning.).freeze, - label: "connotation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:connotation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :consecration, - domain: "dbo:Cleric".freeze, - label: "consecration".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:consecration".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :conservationStatus, - domain: "dbo:Species".freeze, - label: "conservation status".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:conservationStatus".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :conservationStatusSystem, - domain: "dbo:Species".freeze, - label: "conservation status system".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:conservationStatusSystem".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :constellation, - domain: "dbo:CelestialBody".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P59".freeze, - label: "constellation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:constellation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :constituencyDistrict, - label: "constituency district".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:constituencyDistrict".freeze, - range: "dbo:PopulatedPlace".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :construction, - domain: "dbo:ArchitecturalStructure".freeze, - label: "construction".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:construction".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :constructionMaterial, - comment: %(Construction material \(eg. concrete, steel, iron, stone, brick, wood\).).freeze, - domain: "dbo:ArchitecturalStructure".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P186".freeze, - label: "construction material".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:constructionMaterial".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasConstituent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :contest, - domain: "dbo:Person".freeze, - label: "contest".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:contest".freeze, - range: "dbo:Contest".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :continent, - comment: %(links a country to the continent it belongs).freeze, - domain: "dbo:Country".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P30".freeze, - label: "continent".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:continent".freeze, - range: "dbo:Continent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :continentRank, - comment: %(Place of the building in the list of the highest buildings in the continent).freeze, - domain: "dbo:Skyscraper".freeze, - label: "continent rank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:continentRank".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :continentalTournament, - domain: "dbo:Person".freeze, - label: "continental tournament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:continentalTournament".freeze, - range: "dbo:Tournament".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :continentalTournamentBronze, - domain: "dbo:Person".freeze, - label: "continental tournament bronze".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:continentalTournamentBronze".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :continentalTournamentGold, - domain: "dbo:Person".freeze, - label: "continental tournament gold".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:continentalTournamentGold".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :continentalTournamentSilver, - domain: "dbo:Person".freeze, - label: "continental tournament silver".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:continentalTournamentSilver".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :contractAward, - domain: "dbo:SpaceShuttle".freeze, - label: "contract award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:contractAward".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :contractor, - domain: "dbo:Skyscraper".freeze, - label: "contractor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:contractor".freeze, - range: "dbo:Company".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :convictionDate, - domain: "dbo:Person".freeze, - label: "conviction date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:convictionDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :convictionPenalty, - domain: "dbo:Criminal".freeze, - label: "conviction penalty".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:convictionPenalty".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :coolingSystem, - domain: "dbo:AutomobileEngine".freeze, - label: "cooling system".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coolingSystem".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :copilote, - domain: "dbo:Person".freeze, - label: "copilote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:copilote".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :coronationDate, - domain: "dbo:Royalty".freeze, - label: "coronation date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coronationDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cosparId, - comment: %(Described at http://en.wikipedia.org/wiki/International_Designator).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P247".freeze, - label: "COSPAR id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cosparId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cost, - comment: %(Cost of building an ArchitecturalStructure, Ship, etc).freeze, - label: "cost ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cost".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :costumeDesigner, - comment: %(the person who is responsible for the film costume design).freeze, - domain: "dbo:Film".freeze, - label: "costume designer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:costumeDesigner".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :council, - domain: "dbo:LiechtensteinSettlement".freeze, - label: "council of a liechtenstein settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:council".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :councilArea, - domain: "dbo:PopulatedPlace".freeze, - label: "Council area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:councilArea".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :country, - comment: %(The country where the thing is located.).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P17".freeze, - label: "country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:country".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :countryCode, - comment: %(Country code for telephone numbers.).freeze, - domain: "dbo:Place".freeze, - label: "country code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:countryCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :countryOrigin, - domain: "dbo:Rocket".freeze, - label: "country origin".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:countryOrigin".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :countryRank, - comment: %(Place of the building in the list of the highest buildings in the country).freeze, - domain: "dbo:Skyscraper".freeze, - label: "country rank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:countryRank".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :countryWithFirstAstronaut, - domain: "dbo:YearInSpaceflight".freeze, - label: "country with first astronaut".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:countryWithFirstAstronaut".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :countryWithFirstSatellite, - domain: "dbo:YearInSpaceflight".freeze, - label: "country with first satellite".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:countryWithFirstSatellite".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :countryWithFirstSatelliteLaunched, - domain: "dbo:YearInSpaceflight".freeze, - label: "country with first satellite launched".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:countryWithFirstSatelliteLaunched".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :countryWithFirstSpaceflight, - domain: "dbo:YearInSpaceflight".freeze, - label: "country with first spaceflight".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:countryWithFirstSpaceflight".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :county, - comment: %(The county where the thing is located.).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P131".freeze, - label: "county".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:county".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :countySeat, - domain: "dbo:PopulatedPlace".freeze, - label: "county seat".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:countySeat".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :course, - domain: "dbo:GrandPrix".freeze, - label: "course (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:course".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :courseArea, - comment: %(The area of courses in square meters.).freeze, - label: "course area (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:courseArea".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cousurper, - domain: "dbo:Person".freeze, - label: "cousurper".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cousurper".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :coverArtist, - comment: %(Cover artist).freeze, - domain: "dbo:Work".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P736".freeze, - label: "cover artist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:coverArtist".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :cpu, - comment: %(CPU of an InformationAppliance or VideoGame \(which unfortunately is currently under Software\)).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P880".freeze, - label: "CPU".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cpu".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :created, - domain: "dbo:Person".freeze, - label: "created".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:created".freeze, - range: "dbo:Work".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :creationChristianBishop, - domain: "dbo:Bishop".freeze, - label: "creation christian bishop".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:creationChristianBishop".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :creationYear, - label: "year of creation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:creationYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :creativeDirector, - domain: "dbo:TelevisionShow".freeze, - label: "creative director".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:creativeDirector".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :creator, - comment: %(Creator/author of a work. For literal \(string\) use dc:creator; for object \(URL\) use creator).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P170".freeze, - label: "creator (agent)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:creator".freeze, - range: "dbo:Agent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :creatorOfDish, - comment: %(The person that creates \(invents\) the food \(eg. Caesar Cardini is the creator of the Caesar salad\).).freeze, - domain: "dbo:Food".freeze, - label: "creator of dish".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:creatorOfDish".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :credit, - domain: "dbo:Openswarm".freeze, - label: "credit".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:credit".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :crest, - label: "crest".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:crest".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :crew, - domain: "dbo:Spacecraft".freeze, - label: "crew".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:crew".freeze, - range: "dbo:SpaceMission".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :crewMember, - domain: "dbo:SpaceMission".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1029".freeze, - label: "crew member".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:crewMember".freeze, - range: "dbo:Astronaut".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :crewSize, - domain: "dbo:SpaceMission".freeze, - label: "crew size".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:crewSize".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :crews, - domain: "dbo:SpaceShuttle".freeze, - label: "crews".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:crews".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :criminalCharge, - domain: "dbo:Criminal".freeze, - label: "criminal charge".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:criminalCharge".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :criteria, - label: "criteria".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:criteria".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :crosses, - domain: "dbo:Bridge".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P177".freeze, - label: "crosses".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:crosses".freeze, - range: "dbo:River".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :crownDependency, - domain: "dbo:City".freeze, - label: "crown dependency".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:crownDependency".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cuisine, - comment: %(National cuisine of a Food or Restaurant).freeze, - label: "cuisine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cuisine".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cultivatedVariety, - comment: %(Name of the cultivar \(cultivated variety\)).freeze, - domain: "dbo:Plant".freeze, - label: "cultivar".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cultivatedVariety".freeze, - range: "dbo:CultivatedVariety".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSpecializedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :curator, - domain: "dbo:Museum".freeze, - label: "curator".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:curator".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :currency, - equivalentProperty: "http://www.wikidata.org/entity/P38".freeze, - label: "currency".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currency".freeze, - range: "dbo:Currency".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :currencyCode, - comment: %(ISO 4217 currency designators.).freeze, - domain: "dbo:Place".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P498".freeze, - label: "currency code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currencyCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :currentCity, - label: "current city".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentCity".freeze, - range: "dbo:City".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :currentLeague, - domain: "dbo:Athlete".freeze, - label: "current league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentLeague".freeze, - range: "dbo:SportsLeague".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :currentMember, - domain: "dbo:SportsTeam".freeze, - label: "current member".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentMember".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :currentPartner, - domain: "dbo:FigureSkater".freeze, - label: "current partner".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentPartner".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :currentProduction, - comment: %(The current production running in the theatre.).freeze, - domain: "dbo:Theatre".freeze, - label: "current production".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentProduction".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :currentRank, - domain: "dbo:SnookerPlayer".freeze, - label: "current rank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentRank".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :currentRecord, - domain: "dbo:CollegeCoach".freeze, - label: "current record".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentRecord".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :currentSeason, - domain: "dbo:SportsLeague".freeze, - label: "current season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentSeason".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :currentStatus, - label: "current status".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentStatus".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :currentTeam, - domain: "dbo:Athlete".freeze, - label: "current team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentTeam".freeze, - range: "dbo:SportsTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :currentTeamManager, - domain: "dbo:Person".freeze, - label: "current team manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentTeamManager".freeze, - range: "dbo:SportsTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :currentTeamMember, - comment: %(A current member of an athletic team.).freeze, - domain: "dbo:SportsTeam".freeze, - label: "current team member".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentTeamMember".freeze, - range: "dbo:TeamMember".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :currentWorldChampion, - domain: "dbo:Sport".freeze, - label: "current world champion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentWorldChampion".freeze, - range: "dbo:Agent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :currentlyUsedFor, - comment: %(Current use of the architectural structure, if it is currently being used as anything other than its original purpose.).freeze, - domain: "dbo:ArchitecturalStructure".freeze, - label: "currently used for".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:currentlyUsedFor".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :custodian, - domain: "dbo:EducationalInstitution".freeze, - label: "custodian".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:custodian".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :cyclistGenre, - domain: "dbo:Athlete,_CareerStation".freeze, - label: "cyclist genre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cyclistGenre".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :cylinderBore, - domain: "dbo:AutomobileEngine".freeze, - label: "cylinder bore (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cylinderBore".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :cylinderCount, - domain: "dbo:Locomotive".freeze, - label: "cylinder count".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:cylinderCount".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :daira, - domain: "dbo:Settlement".freeze, - label: "daira".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:daira".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :dam, - domain: "dbo:Animal".freeze, - label: "dam".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dam".freeze, - range: "dbo:Animal".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :damage, - domain: "dbo:Event".freeze, - label: "damage amount".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:damage".freeze, - range: "dbo:Currency".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :damsire, - domain: "dbo:Animal".freeze, - label: "damsire".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:damsire".freeze, - range: "dbo:Animal".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :danseCompetition, - domain: "dbo:Person".freeze, - label: "danse competition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:danseCompetition".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :danseScore, - domain: "dbo:Person".freeze, - label: "danse score".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:danseScore".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :date, - equivalentProperty: "http://www.wikidata.org/entity/P585".freeze, - label: "date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:date".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dateAct, - domain: "dbo:Canal".freeze, - label: "date act".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dateAct".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dateAgreement, - domain: "dbo:Place".freeze, - label: "date of an agreement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dateAgreement".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dateBudget, - label: "date budget".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dateBudget".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dateClosed, - domain: "dbo:Canal".freeze, - label: "date closed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dateClosed".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dateCompleted, - domain: "dbo:Canal".freeze, - label: "date completed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dateCompleted".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dateConstruction, - domain: "dbo:Canal".freeze, - label: "date construction".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dateConstruction".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dateExtended, - domain: "dbo:Canal".freeze, - label: "date extended".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dateExtended".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dateLastUpdated, - domain: "dbo:Document".freeze, - label: "Date Last Updated".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dateLastUpdated".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dateOfAbandonment, - label: "date of abandonment".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dateOfAbandonment".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dateOfBurial, - domain: "dbo:Person".freeze, - label: "date of burial".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dateOfBurial".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dateUnveiled, - comment: %(Designates the unveiling date).freeze, - domain: "dbo:Monument".freeze, - label: "date unveiled".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dateUnveiled".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dateUse, - domain: "dbo:Canal".freeze, - label: "date use".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dateUse".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :davisCup, - domain: "dbo:TennisPlayer".freeze, - label: "davis cup".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:davisCup".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :day, - domain: "dbo:Settlement".freeze, - label: "day".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:day".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :daylightSavingTimeZone, - domain: "dbo:Place".freeze, - label: "daylight saving time zone".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:daylightSavingTimeZone".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :dbnlCodeDutch, - comment: %(identifier in Dutch digital library \(dbnl\)).freeze, - domain: "dbo:Writer".freeze, - label: "Digital Library code NL".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dbnlCodeDutch".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dcc, - comment: %(The Dewey Decimal Classification is a proprietary system of library classification developed by Melvil Dewey in 1876.).freeze, - domain: "dbo:Work".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1036".freeze, - label: "Dewey Decimal Classification".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dcc".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :deFactoLanguage, - equivalentProperty: "dbo:language".freeze, - label: "de facto language".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:deFactoLanguage".freeze, - range: "dbo:Language".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :deadInFightDate, - domain: "dbo:Person".freeze, - label: "dead in fight date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:deadInFightDate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :deadInFightPlace, - domain: "dbo:Person".freeze, - label: "dead in fight place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:deadInFightPlace".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dean, - domain: "dbo:EducationalInstitution".freeze, - label: "dean".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dean".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :deanery, - comment: %(Dioceses and parishes should know which deaneries there are).freeze, - domain: "dbo:Diocese,_Parish".freeze, - label: "deanery".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:deanery".freeze, - range: "dbo:Deanery".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :deathAge, - domain: "dbo:Person".freeze, - label: "death age".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:deathAge".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :deathCause, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P509".freeze, - label: "death cause".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:deathCause".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :deathDate, - domain: "dbo:Person".freeze, - equivalentProperty: ["http://www.wikidata.org/entity/P570".freeze, "schema:deathDate".freeze], - label: "death date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:deathDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :deathPlace, - comment: %(The place where the person died.).freeze, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P20".freeze, - label: "death place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:deathPlace".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :deathYear, - domain: "dbo:Person".freeze, - label: "death year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:deathYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :debut, - domain: "dbo:Wrestler".freeze, - label: "debut".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:debut".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :debutTeam, - domain: "dbo:Athlete".freeze, - label: "debut team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:debutTeam".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :debutWork, - comment: %(First work of a person \(may be notableWork or not\)).freeze, - domain: "dbo:Person".freeze, - label: "debutWork".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:debutWork".freeze, - range: "dbo:Work".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :dec, - domain: "dbo:Openswarm".freeze, - label: "dec".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dec".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :decay, - domain: "dbo:Spacecraft".freeze, - label: "decay".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:decay".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :decideDate, - domain: "dbo:SupremeCourtOfTheUnitedStatesCase".freeze, - label: "decide date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:decideDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :declination, - domain: "dbo:Constellation".freeze, - label: "declination".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:declination".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :decommissioningDate, - domain: "dbo:Ship".freeze, - label: "decommissioning date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:decommissioningDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :decoration, - domain: "dbo:Person".freeze, - label: "decoration".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:decoration".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :defeat, - domain: "dbo:Boxer".freeze, - label: "defeat".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:defeat".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :defeatAsMgr, - domain: "dbo:Coach".freeze, - label: "defeat as team manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:defeatAsMgr".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :definition, - domain: "dbo:Galaxy".freeze, - label: "definition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:definition".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :defunct, - comment: %(If the company is defunct or not. Use end_date if a date is given).freeze, - domain: "dbo:Company".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:defunct".freeze, - range: "xsd:boolean".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :delegateMayor, - domain: "dbo:PopulatedPlace".freeze, - label: "delegate mayor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:delegateMayor".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :delegation, - domain: "dbo:PopulatedPlace".freeze, - label: "delegation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:delegation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :deliveryDate, - label: "delivery date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:deliveryDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :deme, - domain: "dbo:PopulatedPlace".freeze, - label: "deme".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:deme".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :demographics, - domain: "dbo:PopulatedPlace".freeze, - label: "demographics".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:demographics".freeze, - range: "dbo:Demographics".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :demographicsAsOf, - domain: "dbo:PopulatedPlace".freeze, - label: "demographics as of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:demographicsAsOf".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :demolitionDate, - comment: %(The date the building was demolished.).freeze, - domain: "dbo:ArchitecturalStructure".freeze, - label: "demolition date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:demolitionDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :demolitionYear, - comment: %(The year the building was demolished.).freeze, - domain: "dbo:ArchitecturalStructure".freeze, - label: "demolition year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:demolitionYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :demonym, - label: "demonym".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:demonym".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :denomination, - comment: %(Religious denomination of a church, religious school, etc. Examples: Haredi_Judaism, Sunni_Islam, Seventh-day_Adventist_Church, Non-Denominational, Multi-denominational, Non-denominational_Christianity).freeze, - domain: "dbo:Agent".freeze, - label: "denomination".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:denomination".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isExpressedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :density, - label: "density (μ3)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:density".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :department, - domain: "dbo:PopulatedPlace".freeze, - label: "department".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:department".freeze, - range: "dbo:Department".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :departmentCode, - domain: "dbo:Municipality".freeze, - label: "code of the department".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:departmentCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :departmentPosition, - domain: "dbo:PopulatedPlace".freeze, - label: "geolocDepartment".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:departmentPosition".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :depictionDescription, - comment: %(This property can be used to map image captions from Infoboxes).freeze, - label: "depiction description (caption)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:depictionDescription".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :depth, - comment: %(Is a measure of the distance between a reference height and a point underneath. The exact meaning for a place is unclear. If possible, use or to be unambiguous.).freeze, - domain: "dbo:Place".freeze, - label: "depth (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:depth".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :depthQuote, - domain: "dbo:Place".freeze, - label: "depth quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:depthQuote".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :depths, - domain: "dbo:Place".freeze, - label: "depths".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:depths".freeze, - range: "dbo:Depth".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :deputy, - label: "deputy".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:deputy".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :derivative, - domain: "dbo:MusicGenre".freeze, - label: "derivative".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:derivative".freeze, - range: "dbo:MusicGenre".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#specializes".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :derivedWord, - domain: "dbo:Person".freeze, - label: "derived word".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:derivedWord".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :description, - comment: %(Short description of a person).freeze, - label: "description".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:description".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :designCompany, - label: "designer company".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:designCompany".freeze, - range: "dbo:Company".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :designer, - equivalentProperty: "http://www.wikidata.org/entity/P287".freeze, - label: "designer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:designer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :destination, - domain: "dbo:PublicTransitSystem".freeze, - label: "destination".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:destination".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :destructionDate, - label: "destruction date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:destructionDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :detectionMethod, - domain: "dbo:Planet".freeze, - label: "Method of discovery".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:detectionMethod".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :detractor, - domain: "dbo:Person".freeze, - label: "detractor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:detractor".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :developer, - comment: %(Developer of a Work \(Artwork, Book, Software\) or Building \(Hotel, Skyscraper\)).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P178".freeze, - label: "developer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:developer".freeze, - range: "dbo:Agent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :dfE, - comment: %(Department for Education \(UK\) number of a school in England or Wales).freeze, - domain: "dbo:School".freeze, - label: "DfE".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dfE".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :diameter, - equivalentProperty: "http://www.wikidata.org/entity/P2386".freeze, - label: "diameter (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:diameter".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :differentialDiagnosis, - domain: "dbo:Disease".freeze, - label: "differential diagnosis".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:differentialDiagnosis".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :digitalChannel, - domain: "dbo:Broadcaster".freeze, - label: "digital channel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:digitalChannel".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :digitalSubChannel, - domain: "dbo:Broadcaster".freeze, - label: "digital sub channel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:digitalSubChannel".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :diocese, - comment: %(A religious administrative body above the parish level).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P708".freeze, - label: "diocese".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:diocese".freeze, - range: "dbo:Diocese".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :diploma, - domain: "dbo:Person".freeze, - label: "diploma".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:diploma".freeze, - range: "dbo:Diploma".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :director, - comment: %(A film director is a person who directs the making of a film.).freeze, - domain: "dbo:Film".freeze, - equivalentProperty: ["http://www.wikidata.org/entity/P57".freeze, "schema:director".freeze], - label: "film director".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:director".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :disappearanceDate, - domain: "dbo:PopulatedPlace".freeze, - label: "date disappearance of a populated place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:disappearanceDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :disbanded, - domain: "dbo:MilitaryUnit".freeze, - label: "disbanded".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:disbanded".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :discharge, - domain: "dbo:Stream".freeze, - label: "discharge (m³/s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:discharge".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dischargeAverage, - domain: "dbo:MeanOfTransportation".freeze, - label: "discharge average (m³/s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dischargeAverage".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :disciple, - comment: %(A person who learns from another, especially one who then teaches others..).freeze, - domain: "dbo:Artist".freeze, - label: "disciple".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:disciple".freeze, - range: "dbo:Artist".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :discipline, - domain: "dbo:Agent".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P101".freeze, - label: "discipline".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:discipline".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDescribedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :discontinued, - domain: "dbo:Beverage".freeze, - label: "discontinued".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:discontinued".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :discovered, - domain: "dbo:CelestialBody".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P575".freeze, - label: "discovery date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:discovered".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :discoverer, - equivalentProperty: "http://www.wikidata.org/entity/P61".freeze, - label: "discoverer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:discoverer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :discovery, - domain: "dbo:Island".freeze, - label: "date when the island has been discovered".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:discovery".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :disease, - comment: %(Points to a disease pertaining to the subject at hand.).freeze, - label: "disease".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:disease".freeze, - range: "dbo:Disease".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :diseasesDB, - domain: "dbo:Disease".freeze, - label: "DiseasesDB".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:diseasesDB".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :diseasesDb, - domain: "dbo:Disease".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P557".freeze, - label: "diseasesDb".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:diseasesDb".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :displacement, - domain: "dbo:AutomobileEngine".freeze, - label: "displacement (μ³)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:displacement".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :dissolutionDate, - domain: "dbo:Organisation,_PopulatedPlace".freeze, - label: "dissolution date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dissolutionDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dissolutionYear, - domain: "dbo:Organisation,_PopulatedPlace".freeze, - label: "dissolution year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dissolutionYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dissolved, - domain: "dbo:SoccerClub".freeze, - label: "dissolved".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dissolved".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dist_ly, - domain: "dbo:Openswarm".freeze, - label: "dist_ly".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dist_ly".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dist_pc, - domain: "dbo:Openswarm".freeze, - label: "dist_pc".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dist_pc".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :distance, - label: "distance (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distance".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :distanceLaps, - domain: "dbo:GrandPrix".freeze, - label: "distance laps".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distanceLaps".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :distanceToBelfast, - domain: "dbo:Settlement".freeze, - label: "distance to Belfast (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distanceToBelfast".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :distanceToCapital, - domain: "dbo:Settlement".freeze, - label: "distance to capital (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distanceToCapital".freeze, - range: "xsd:double".freeze, - subPropertyOf: "dbo:Distance".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :distanceToCardiff, - domain: "dbo:Settlement".freeze, - label: "distance to Cardiff (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distanceToCardiff".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :distanceToCharingCross, - domain: "dbo:Settlement".freeze, - label: "distance to Charing Cross (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distanceToCharingCross".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :distanceToDouglas, - domain: "dbo:Settlement".freeze, - label: "distance to Douglas (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distanceToDouglas".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :distanceToDublin, - domain: "dbo:Settlement".freeze, - label: "distance to Dublin (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distanceToDublin".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :distanceToEdinburgh, - domain: "dbo:Settlement".freeze, - label: "distance to Edinburgh (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distanceToEdinburgh".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :distanceToLondon, - domain: "dbo:Settlement".freeze, - label: "distance to London (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distanceToLondon".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :distanceToNearestCity, - domain: "dbo:Settlement".freeze, - label: "distance to nearest city (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distanceToNearestCity".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :distanceTraveled, - domain: "dbo:SpaceMission".freeze, - label: "distance traveled (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distanceTraveled".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :distributingCompany, - domain: "dbo:RecordLabel".freeze, - label: "distributing company".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distributingCompany".freeze, - range: "dbo:Company".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :distributingLabel, - domain: "dbo:RecordLabel".freeze, - label: "distributing label".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distributingLabel".freeze, - range: "dbo:RecordLabel".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :distributor, - equivalentProperty: "http://www.wikidata.org/entity/P750".freeze, - label: "distributor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:distributor".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :district, - domain: "dbo:Place".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P131".freeze, - label: "district".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:district".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :division, - label: "division".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:division".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :dockedTime, - domain: "dbo:Spacecraft".freeze, - label: "docked time (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dockedTime".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :doctoralAdvisor, - domain: "dbo:Scientist".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P184".freeze, - label: "doctoral advisor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:doctoralAdvisor".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :doctoralStudent, - domain: "dbo:Scientist".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P185".freeze, - label: "doctoral student".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:doctoralStudent".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :documentDesignation, - label: "String designation of the WrittenWork describing the resource".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:documentDesignation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :documentNumber, - comment: %(Identification a document within a particular registry).freeze, - domain: "dbo:Document".freeze, - label: "document number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:documentNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :domain, - domain: "dbo:Species".freeze, - label: "domain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:domain".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#specializes".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :dorlandsId, - domain: "dbo:AnatomicalStructure".freeze, - label: "DorlandsID".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dorlandsId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dorlandsPrefix, - domain: "dbo:AnatomicalStructure".freeze, - label: "Dorlands prefix".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dorlandsPrefix".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dorlandsSuffix, - domain: "dbo:AnatomicalStructure".freeze, - label: "Dorlands suffix".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dorlandsSuffix".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :draft, - label: "draft".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:draft".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :draftLeague, - domain: "dbo:Athlete".freeze, - label: "draft league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:draftLeague".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :draftPick, - domain: "dbo:GridironFootballPlayer".freeze, - label: "draft pick".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:draftPick".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :draftPosition, - domain: "dbo:Athlete".freeze, - label: "draft position".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:draftPosition".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :draftRound, - domain: "dbo:GridironFootballPlayer".freeze, - label: "draft round".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:draftRound".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :draftTeam, - domain: "dbo:Athlete".freeze, - label: "draft team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:draftTeam".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :draftYear, - label: "draft year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:draftYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :drainsFrom, - domain: "dbo:AnatomicalStructure".freeze, - label: "drains from".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:drainsFrom".freeze, - range: "dbo:AnatomicalStructure".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :drainsTo, - domain: "dbo:AnatomicalStructure".freeze, - label: "drains to".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:drainsTo".freeze, - range: "dbo:AnatomicalStructure".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :drama, - domain: "dbo:FictionalCharacter".freeze, - label: "drama".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:drama".freeze, - range: "dbo:Drama".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :dressCode, - comment: %(The recommended dress code for an establishment or event.).freeze, - domain: "dbo:Restaurant".freeze, - label: "dress code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dressCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :drugbank, - label: "DrugBank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:drugbank".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :"drugs.com", - comment: %(external link to drug articles in the drugs.com website).freeze, - domain: "dbo:Drug".freeze, - label: "drugs.com".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:drugs.com".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :dryCargo, - domain: "dbo:Spacecraft".freeze, - label: "dry cargo (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dryCargo".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dubber, - comment: %(the person who dubs another person e.g. an actor or a fictional character in movies).freeze, - domain: "dbo:Person".freeze, - label: "dubber".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dubber".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :duration, - comment: %(The duration of the item \(movie, audio recording, event, etc.\) in ISO 8601 date format).freeze, - equivalentProperty: "schema:duration".freeze, - label: "duration (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:duration".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dutchArtworkCode, - domain: "dbo:Artwork".freeze, - label: "Dutch artwork code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dutchArtworkCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dutchCOROPCode, - domain: "dbo:Region".freeze, - label: "Dutch COROP code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dutchCOROPCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dutchMIPCode, - comment: %(The Dutch MIP project was meant to take stock of all kinds of monuments).freeze, - domain: "dbo:ArchitecturalStructure,_Monument".freeze, - label: "monument code for the Monuments Inventory Project".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dutchMIPCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:Code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dutchNAIdentifier, - domain: "dbo:MemberResistanceMovement".freeze, - label: "Identifier for Duch National Archive".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dutchNAIdentifier".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dutchPPNCode, - comment: %(Dutch PPN code is a library cataloguing code for collection items \(books, journals and the like\).).freeze, - domain: "dbo:WrittenWork".freeze, - label: "Dutch PPN code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dutchPPNCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dutchRKDCode, - domain: "dbo:Artist".freeze, - label: "Dutch RKD code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dutchRKDCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dutchWinkelID, - comment: %(Dutch Winkel ID is a code for an underground publication, as attributed by Lydia Winkel's work on the underground WW II press in the Netherlands.).freeze, - domain: "dbo:UndergroundJournal".freeze, - label: "Dutch PPN code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dutchWinkelID".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :dynasty, - label: "dynasty".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:dynasty".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :eMedicineSubject, - domain: "dbo:Disease".freeze, - label: "eMedicine subject".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eMedicineSubject".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :eMedicineTopic, - comment: %(Different from eMedicineSubject, which see).freeze, - domain: "dbo:Disease".freeze, - label: "eMedicine topic".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eMedicineTopic".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :eTeatrId, - domain: "dbo:Film".freeze, - label: "e-teatr.pl id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eTeatrId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :eastPlace, - comment: %(indicates another place situated east.).freeze, - domain: "dbo:Place".freeze, - label: "east place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eastPlace".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "dbo:closeTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :ecNumber, - domain: "dbo:Biomolecule".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P591".freeze, - label: "EC number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ecNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :editing, - domain: "dbo:Film".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1040".freeze, - label: "editing".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:editing".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :editor, - equivalentProperty: "http://www.wikidata.org/entity/P98".freeze, - label: "editor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:editor".freeze, - range: "dbo:Agent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :editorTitle, - domain: "dbo:Magazine".freeze, - label: "editor title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:editorTitle".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :education, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P69".freeze, - label: "education".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:education".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :educationPlace, - domain: "dbo:Person".freeze, - label: "education place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:educationPlace".freeze, - range: "dbo:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :educationSystem, - domain: "dbo:EducationalInstitution".freeze, - label: "education system".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:educationSystem".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :effectiveRadiatedPower, - domain: "dbo:Broadcaster".freeze, - label: "effectiveRadiatedPower (W)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:effectiveRadiatedPower".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :egafdId, - domain: "dbo:Film".freeze, - label: "egafd id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:egafdId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :einecsNumber, - equivalentProperty: "http://www.wikidata.org/entity/P232".freeze, - label: "EINECS number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:einecsNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ekatteCode, - comment: %(Indexing code used by the Bulgarian National Statistical Institute to identify populated places).freeze, - domain: "dbo:PopulatedPlace".freeze, - label: "EKATTE code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ekatteCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:codeSettlement".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :electionDate, - domain: "dbo:Person".freeze, - label: "election date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:electionDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :electionDateLeader, - comment: %(The date that leader was elected.).freeze, - domain: "dbo:Legislature".freeze, - label: "election date leader".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:electionDateLeader".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :electionMajority, - comment: %(number of votes the office holder attained).freeze, - label: "election majority".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:electionMajority".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :elementAbove, - comment: %(element placed above current element in D.I.Mendeleev's table).freeze, - label: "element above".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:elementAbove".freeze, - range: "dbo:ChemicalSubstance".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :elementBlock, - comment: %(A block of the periodic table of elements is a set of adjacent groups.).freeze, - domain: "dbo:ChemicalElement".freeze, - label: "element block".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:elementBlock".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :elementGroup, - comment: %(In chemistry, a group \(also known as a family\) is a column of elements in the periodic table of the chemical elements.).freeze, - domain: "dbo:ChemicalElement".freeze, - label: "element group".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:elementGroup".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :elementPeriod, - comment: %(In the periodic table of the elements, elements are arranged in a series of rows \(or periods\) so that those with similar properties appear in a column.).freeze, - domain: "dbo:ChemicalElement".freeze, - label: "element period".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:elementPeriod".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :elevation, - comment: %(average elevation above the sea level).freeze, - domain: "dbo:Place".freeze, - label: "elevation (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:elevation".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :elevationQuote, - domain: "dbo:Place".freeze, - label: "elevation quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:elevationQuote".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :elevatorCount, - domain: "dbo:Building".freeze, - label: "elevator count".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:elevatorCount".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :elo, - domain: "dbo:ChessPlayer".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1087".freeze, - label: "ELO rating".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:elo".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :eloRecord, - domain: "dbo:ChessPlayer".freeze, - label: "maximum ELO rating".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eloRecord".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :emblem, - domain: "dbo:PopulatedPlace".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P158".freeze, - label: "emblem".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:emblem".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :emmyAward, - domain: "dbo:Artist".freeze, - label: "Emmy Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:emmyAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :employer, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P108".freeze, - label: "employer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:employer".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :employersCelebration, - domain: "dbo:Settlement".freeze, - label: "employer's celebration".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:employersCelebration".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :end, - domain: "dbo:TimePeriod".freeze, - label: "end".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:end".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :endCareer, - domain: "dbo:Person".freeze, - label: "end career".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:endCareer".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :endDate, - comment: %(The end date of the event.).freeze, - domain: "dbo:Event".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P582".freeze, - label: "end date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:endDate".freeze, - range: "xsd:date".freeze, - subPropertyOf: "schema:endDate".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :endDateTime, - comment: %(The end date and time of the event.).freeze, - domain: "dbo:Event".freeze, - label: "end date and time".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:endDateTime".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :endOccupation, - label: "end occupation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:endOccupation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :endPoint, - domain: "dbo:Place".freeze, - label: "end point".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:endPoint".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :endReign, - domain: "dbo:Person".freeze, - label: "end reign".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:endReign".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :endYear, - label: "end year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:endYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :endYearOfInsertion, - domain: "dbo:AutomobileEngine".freeze, - label: "end year of insertion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:endYearOfInsertion".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :endYearOfSales, - domain: "dbo:Sales".freeze, - label: "end year of sales".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:endYearOfSales".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :endangeredSince, - domain: "dbo:Place".freeze, - label: "endangered since".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:endangeredSince".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :endingTheme, - domain: "dbo:TelevisionShow".freeze, - label: "ending theme".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:endingTheme".freeze, - range: "dbo:Work".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :endowment, - domain: "dbo:Organisation".freeze, - label: "endowment ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:endowment".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :enemy, - domain: "dbo:FictionalCharacter".freeze, - label: "enemy".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:enemy".freeze, - range: "dbo:Species".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :engine, - domain: "dbo:Automobile".freeze, - label: "engine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:engine".freeze, - range: "dbo:AutomobileEngine".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasComponent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :enginePower, - comment: %(Power to be expressed in Watts \(kiloWatt, megaWatt\)).freeze, - domain: "dbo:MeanOfTransportation".freeze, - label: "engine power".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:enginePower".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :engineType, - domain: "dbo:MeanOfTransportation".freeze, - label: "engine type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:engineType".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :engineer, - label: "engineer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:engineer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :ensembl, - domain: "dbo:Biomolecule".freeze, - label: "ensemble".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ensembl".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :enshrinedDeity, - domain: "dbo:Shrine".freeze, - label: "enshrined deity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:enshrinedDeity".freeze, - range: "dbo:Deity".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :entourage, - domain: "dbo:FictionalCharacter".freeze, - label: "entourage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:entourage".freeze, - range: "dbo:Species".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :entrezgene, - domain: "dbo:Biomolecule".freeze, - label: "EntrezGene".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:entrezgene".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :eparchy, - comment: %(Compare with bishopric).freeze, - domain: "dbo:ReligiousBuilding".freeze, - label: "eparchy".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eparchy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :episode, - domain: "dbo:FictionalCharacter".freeze, - label: "episode".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:episode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :episodeNumber, - comment: %(The episode number of the TelevisionEpisode.).freeze, - domain: "dbo:TelevisionEpisode".freeze, - equivalentProperty: "schema:episodeNumber".freeze, - label: "episode number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:episodeNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :epoch, - comment: %(moment in time used as a referrence point for some time-vaying astronomical quantity).freeze, - domain: "dbo:Planet".freeze, - label: "epoch".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:epoch".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :eptFinalTable, - domain: "dbo:PokerPlayer".freeze, - label: "ept final table".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eptFinalTable".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :eptItm, - domain: "dbo:PokerPlayer".freeze, - label: "ept itm".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eptItm".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :eptTitle, - domain: "dbo:PokerPlayer".freeze, - label: "ept title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eptTitle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :equipment, - domain: "dbo:Activity".freeze, - label: "equipment".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:equipment".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :equity, - domain: "dbo:Company".freeze, - label: "equity ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:equity".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :era, - label: "era".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:era".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDescribedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :eruption, - domain: "dbo:Island".freeze, - label: "eruption".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eruption".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :eruptionYear, - domain: "dbo:Volcano".freeze, - label: "eruption date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eruptionYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :escalafon, - domain: "dbo:Person".freeze, - label: "escalafon".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:escalafon".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :escapeVelocity, - domain: "dbo:Planet".freeze, - label: "escape velocity (kmh)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:escapeVelocity".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :espnId, - domain: "dbo:Athlete".freeze, - label: "ESPN id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:espnId".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :established, - domain: "dbo:ChristianDoctrine".freeze, - label: "Established".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:established".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :establishment, - domain: "dbo:ChristianDoctrine".freeze, - label: "Establishment".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:establishment".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ethnicGroup, - domain: "dbo:PopulatedPlace".freeze, - label: "ethnic group".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ethnicGroup".freeze, - range: "dbo:EthnicGroup".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :ethnicGroupsInYear, - label: "ethnic groups in year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ethnicGroupsInYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ethnicity, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P172".freeze, - label: "ethnicity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ethnicity".freeze, - range: "dbo:EthnicGroup".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :eurobabeIndexId, - domain: "dbo:Film".freeze, - label: "eurobabe index id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eurobabeIndexId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :europeanAffiliation, - domain: "dbo:PoliticalParty".freeze, - label: "european affiliation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:europeanAffiliation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :europeanChampionship, - domain: "dbo:Athlete".freeze, - label: "european championship".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:europeanChampionship".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :europeanParliamentGroup, - domain: "dbo:PoliticalParty".freeze, - label: "european parliament group".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:europeanParliamentGroup".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :europeanUnionEntranceDate, - domain: "dbo:Country".freeze, - label: "european union entrance date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:europeanUnionEntranceDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :event, - label: "event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:event".freeze, - range: "dbo:Event".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :eventDate, - domain: "dbo:Place".freeze, - label: "event date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eventDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :eventDescription, - domain: "dbo:HistoricPlace".freeze, - label: "event description".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eventDescription".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :executiveHeadteacher, - domain: "dbo:School".freeze, - label: "executive headteacher".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:executiveHeadteacher".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :executiveProducer, - label: "executive producer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:executiveProducer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :exhibition, - comment: %(Notes about an exhibition the object has been to).freeze, - label: "exhibition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:exhibition".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :existence, - label: "existence".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:existence".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :expedition, - domain: "dbo:Person".freeze, - label: "expedition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:expedition".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :explorer, - domain: "dbo:Galaxy".freeze, - label: "explorer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:explorer".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :externalOrnament, - domain: "dbo:Person".freeze, - label: "external ornament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:externalOrnament".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :extinctionDate, - comment: %(!!! Do NOT use this property for non Species related dates!!! - Date when an Organization \(eg PoliticalParty, Company\) or Species ceased to exist).freeze, - label: "extinction date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:extinctionDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :extinctionYear, - comment: %(!!! Do NOT use this property for non Species related dates!!! - Year this species went extinct.).freeze, - domain: "dbo:Species".freeze, - label: "extinction year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:extinctionYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :eyeColor, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1340".freeze, - label: "eye color".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eyeColor".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :eyeColour, - domain: "dbo:Person".freeze, - label: "eye colour".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eyeColour".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :eyes, - domain: "dbo:FictionalCharacter".freeze, - label: "eyes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:eyes".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :faaLocationIdentifier, - domain: "dbo:Airport".freeze, - label: "FAA Location Identifier".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:faaLocationIdentifier".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :facilityId, - domain: "dbo:RadioStation".freeze, - label: "facility id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:facilityId".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :facultySize, - comment: %(number of faculty members).freeze, - domain: "dbo:EducationalInstitution".freeze, - label: "faculty size".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:facultySize".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :failedLaunches, - label: "failed launches".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:failedLaunches".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :family, - domain: "dbo:Species".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P71".freeze, - label: "family".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:family".freeze, - range: "dbo:Species".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#specializes".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :familyMember, - domain: "dbo:Family".freeze, - label: "family member".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:familyMember".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :fansgroup, - domain: "dbo:SoccerClub".freeze, - label: "fansgroup".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fansgroup".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fareZone, - comment: %(The fare zone in which station is located.).freeze, - domain: "dbo:Station".freeze, - label: "fare zone".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fareZone".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fastestDriver, - domain: "dbo:GrandPrix".freeze, - label: "fastest driver".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fastestDriver".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :fastestDriverCountry, - domain: "dbo:GrandPrix".freeze, - label: "fastest driver country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fastestDriverCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :fastestDriverTeam, - domain: "dbo:GrandPrix".freeze, - label: "fastest driver team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fastestDriverTeam".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :fastestLap, - domain: "dbo:FormulaOneRacer".freeze, - label: "fastest lap".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fastestLap".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fat, - comment: %(Amount of fat per servingSize of a Food).freeze, - domain: "dbo:Food".freeze, - label: "fat (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fat".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fate, - domain: "dbo:Company".freeze, - label: "fate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fate".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :father, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P22".freeze, - label: "father".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:father".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :fauna, - domain: "dbo:Place".freeze, - label: "fauna".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fauna".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fc, - domain: "dbo:Cricketer".freeze, - label: "FC".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fc".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fcRuns, - domain: "dbo:Cricketer".freeze, - label: "FC runs".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fcRuns".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fdaUniiCode, - comment: %(FDA Unique Ingredient Identifier \(UNII\) code for a DBpedia Drug).freeze, - label: "FDA UNII code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fdaUniiCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :feastDay, - comment: %(A day of celebration associated with the entity. Applies to Saint, School etc).freeze, - label: "feast day, holiday".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:feastDay".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :feat, - domain: "dbo:Person".freeze, - label: "feat".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:feat".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :feature, - domain: "dbo:FictionalCharacter".freeze, - label: "feature".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:feature".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :features, - domain: "dbo:ArchitecturalStructure".freeze, - label: "features".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:features".freeze, - range: "dbo:Work".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :fedCup, - domain: "dbo:Athlete".freeze, - label: "fed cup".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fedCup".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :federalState, - domain: "dbo:Settlement".freeze, - label: "federal state".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:federalState".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :federation, - domain: "dbo:Person".freeze, - label: "federation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:federation".freeze, - range: "dbo:Organisation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :fees, - domain: "dbo:School".freeze, - label: "fees ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fees".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fibahof, - domain: "dbo:Athlete".freeze, - label: "fibahof".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fibahof".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :field, - domain: "dbo:Artist".freeze, - label: "field".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:field".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDescribedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :fight, - domain: "dbo:Boxer".freeze, - label: "fight".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fight".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fighter, - label: "fighter".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fighter".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fileExtension, - domain: "dbo:File".freeze, - label: "The extension of this file".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fileExtension".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fileSize, - comment: %(size of a file or software).freeze, - domain: "dbo:Work".freeze, - label: "size (B)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fileSize".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fileURL, - domain: "dbo:File".freeze, - label: "The URL at which this file can be downloaded".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fileURL".freeze, - range: "dbo:File".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :filename, - domain: "dbo:Work".freeze, - label: "filename".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:filename".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fillingStation, - domain: "dbo:RestArea".freeze, - label: "filling station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fillingStation".freeze, - range: "dbo:FillingStation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :film, - domain: "dbo:FilmFestival".freeze, - label: "film".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:film".freeze, - range: "dbo:Film".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :filmAudioType, - comment: %(specifies the audio type of the film i.e. 'sound' or 'silent').freeze, - domain: "dbo:Film".freeze, - label: "film audio type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:filmAudioType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :filmColourType, - comment: %(specifies the colour type of the film i.e. 'colour' or 'b/w').freeze, - domain: "dbo:Film".freeze, - label: "film colour type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:filmColourType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :filmFareAward, - domain: "dbo:Artist".freeze, - label: "Film Fare Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:filmFareAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :filmNumber, - domain: "dbo:Person".freeze, - label: "film number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:filmNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :filmPolskiId, - label: "FilmPolski.pl id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:filmPolskiId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :filmRuntime, - domain: "dbo:Film".freeze, - label: "film runtime (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:filmRuntime".freeze, - range: "xsd:double".freeze, - subPropertyOf: "dbo:runtime".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :filmVersion, - domain: "dbo:WrittenWork".freeze, - label: "film version".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:filmVersion".freeze, - range: "dbo:Film".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :finalFlight, - comment: %(date of final flight).freeze, - domain: "dbo:Rocket".freeze, - label: "final flight".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:finalFlight".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :finalLost, - domain: "dbo:TennisPlayer".freeze, - label: "final lost".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:finalLost".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :finalLostDouble, - domain: "dbo:TennisPlayer".freeze, - label: "final lost double".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:finalLostDouble".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :finalLostSingle, - domain: "dbo:TennisPlayer".freeze, - label: "final lost single".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:finalLostSingle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :finalLostTeam, - domain: "dbo:Athlete".freeze, - label: "final lost team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:finalLostTeam".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :finalPublicationDate, - comment: %(Date of the final publication.).freeze, - domain: "dbo:PeriodicalLiterature".freeze, - label: "final publication date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:finalPublicationDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :finalPublicationYear, - comment: %(Year of the final publication.).freeze, - domain: "dbo:PeriodicalLiterature".freeze, - label: "final publication year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:finalPublicationYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fipsCode, - domain: "dbo:PopulatedPlace".freeze, - label: "fips code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fipsCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstAirDate, - comment: %(The date on which regular broadcasts began.).freeze, - domain: "dbo:Broadcaster".freeze, - label: "first air date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstAirDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstAppearance, - domain: "dbo:FictionalCharacter".freeze, - label: "first appearance".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstAppearance".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstAscent, - domain: "dbo:Mountain,Volcano".freeze, - label: "first ascent".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstAscent".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstAscentPerson, - domain: "dbo:Mountain".freeze, - label: "person that first ascented a mountain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstAscentPerson".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :firstAscentYear, - domain: "dbo:Mountain".freeze, - label: "year of first ascent".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstAscentYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstBroadcast, - domain: "dbo:Film".freeze, - label: "first broadcast".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstBroadcast".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstDriver, - domain: "dbo:GrandPrix".freeze, - label: "first driver".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstDriver".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :firstDriverCountry, - domain: "dbo:GrandPrix".freeze, - label: "first driver country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstDriverCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :firstDriverTeam, - domain: "dbo:GrandPrix".freeze, - label: "winning team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstDriverTeam".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :firstFlight, - domain: "dbo:SpaceShuttle".freeze, - label: "first flight".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstFlight".freeze, - range: "dbo:SpaceMission".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :firstFlightEndDate, - domain: "dbo:SpaceShuttle".freeze, - label: "first flight end date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstFlightEndDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstFlightStartDate, - domain: "dbo:SpaceShuttle".freeze, - label: "first flight start date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstFlightStartDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstGame, - domain: "dbo:SoccerClub".freeze, - label: "first game".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstGame".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstLaunch, - domain: "dbo:YearInSpaceflight".freeze, - label: "first launch".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstLaunch".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstLaunchDate, - domain: "dbo:LaunchPad".freeze, - label: "first launch date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstLaunchDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstLaunchRocket, - domain: "dbo:LaunchPad".freeze, - label: "first launch rocket".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstLaunchRocket".freeze, - range: "dbo:Rocket".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :firstLeader, - label: "firstLeader".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstLeader".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :firstMention, - domain: "dbo:PopulatedPlace".freeze, - label: "first mention".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstMention".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstOlympicEvent, - domain: "dbo:Sport".freeze, - label: "first olympic event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstOlympicEvent".freeze, - range: "dbo:OlympicEvent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :firstOwner, - label: "first owner".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstOwner".freeze, - range: "dbo:Agent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :firstPlace, - label: "first place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstPlace".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstPopularVote, - equivalentProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - label: "firstPopularVote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstPopularVote".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :firstProMatch, - domain: "dbo:Athlete".freeze, - label: "first pro match".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstProMatch".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstPublicationDate, - comment: %(Date of the first publication.).freeze, - domain: "dbo:WrittenWork".freeze, - label: "first publication date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstPublicationDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstPublicationYear, - comment: %(Year of the first publication.).freeze, - domain: "dbo:PeriodicalLiterature".freeze, - label: "first publication year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstPublicationYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :firstPublisher, - domain: "dbo:WrittenWork".freeze, - label: "first publisher".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstPublisher".freeze, - range: "dbo:Agent".freeze, - subPropertyOf: "dbo:publisher".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :firstRace, - domain: "dbo:FormulaOneRacer".freeze, - label: "first race".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstRace".freeze, - range: "dbo:GrandPrix".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :firstWin, - domain: "dbo:FormulaOneRacer".freeze, - label: "first win".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstWin".freeze, - range: "dbo:GrandPrix".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :firstWinner, - domain: "dbo:Race".freeze, - label: "first winner".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:firstWinner".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :flag, - comment: %(Wikimedia Commons file name representing the subject's flag).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P41".freeze, - label: "flag (image)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:flag".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :flagBearer, - domain: "dbo:OlympicResult".freeze, - label: "flag bearer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:flagBearer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :flagBorder, - label: "flag border".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:flagBorder".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :flagCaption, - domain: "dbo:Flag".freeze, - label: "flag caption".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:flagCaption".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :flagLink, - label: "flag Link".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:flagLink".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :flagSize, - domain: "dbo:Flag".freeze, - label: "flagSize".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:flagSize".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :flashPoint, - comment: %(lowest temperature at which a substance can vaporize and start burning).freeze, - domain: "dbo:ChemicalSubstance".freeze, - label: "flash point".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:flashPoint".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :floodingDate, - label: "flooding date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:floodingDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :floorArea, - domain: "dbo:Building".freeze, - label: "floor area (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:floorArea".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :floorCount, - domain: "dbo:Building".freeze, - label: "floor count".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:floorCount".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :flora, - domain: "dbo:Place".freeze, - label: "flora".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:flora".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :flower, - domain: "dbo:Place".freeze, - label: "flower".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:flower".freeze, - range: "dbo:Species".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :flyingHours, - domain: "dbo:MilitaryUnit".freeze, - label: "flying hours (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:flyingHours".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :foalDate, - domain: "dbo:Animal".freeze, - label: "foal date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:foalDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :focus, - comment: %(Points out the subject or thing someone or something is focused on.).freeze, - label: "focus".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:focus".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :followedBy, - equivalentProperty: "http://www.wikidata.org/entity/P156".freeze, - label: "followed by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:followedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :followingEvent, - domain: "dbo:Event".freeze, - label: "following event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:followingEvent".freeze, - range: "dbo:Event".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#precedes".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :follows, - equivalentProperty: "http://www.wikidata.org/entity/P155".freeze, - label: "follows".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:follows".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :foot, - domain: "dbo:Person".freeze, - label: "foot".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:foot".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :footedness, - comment: %(a preference to put one's left or right foot forward in surfing, wakeboarding, skateboarding, wakeskating, snowboarding and mountainboarding. The term is sometimes applied to the foot a footballer uses to kick.).freeze, - domain: "dbo:Sport".freeze, - label: "Footedness".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:footedness".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :forces, - label: "forces".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:forces".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :foresterDistrict, - domain: "dbo:Place".freeze, - label: "foresterDistrict".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:foresterDistrict".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :format, - comment: %(Format of the resource \(as object\). Use dct:format for literal, format for object).freeze, - label: "format (object)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:format".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :formationDate, - domain: "dbo:Organisation".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P571".freeze, - label: "formation date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:formationDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :formationYear, - domain: "dbo:Organisation".freeze, - label: "formation year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:formationYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :formerBandMember, - comment: %(A former member of the band.).freeze, - domain: "dbo:Band".freeze, - label: "former band member".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:formerBandMember".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :formerBroadcastNetwork, - comment: %(A former parent broadcast network to which the broadcaster once belonged.).freeze, - domain: "dbo:Broadcaster".freeze, - label: "former broadcast network".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:formerBroadcastNetwork".freeze, - range: "dbo:BroadcastNetwork".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :formerCallsign, - domain: "dbo:Broadcaster".freeze, - label: "former call sign".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:formerCallsign".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :formerChannel, - domain: "dbo:Broadcaster".freeze, - label: "former channel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:formerChannel".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :formerChoreographer, - domain: "dbo:FigureSkater".freeze, - label: "former choreographer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:formerChoreographer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :formerCoach, - domain: "dbo:FigureSkater".freeze, - label: "former coach".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:formerCoach".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :formerHighschool, - domain: "dbo:NationalCollegiateAthleticAssociationAthlete".freeze, - label: "former highschool".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:formerHighschool".freeze, - range: "dbo:EducationalInstitution".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :formerName, - label: "former name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:formerName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :formerPartner, - domain: "dbo:FigureSkater".freeze, - label: "former partner".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:formerPartner".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :formerTeam, - domain: "dbo:Athlete".freeze, - label: "former team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:formerTeam".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :formula, - domain: "dbo:ChemicalSubstance".freeze, - label: "formula".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:formula".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fossil, - domain: "dbo:Species".freeze, - label: "fossil".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fossil".freeze, - range: "dbo:Species".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :foundation, - domain: "dbo:PopulatedPlace".freeze, - label: "foundation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:foundation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :foundationPlace, - domain: "dbo:Organisation".freeze, - label: "foundation place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:foundationPlace".freeze, - range: "dbo:City".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :foundedBy, - comment: %(Identifies the founder of the described entity. This can be a person or a organisation for instance.).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P112".freeze, - label: "founded by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:foundedBy".freeze, - range: "dbo:Agent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :founder, - comment: %(Ein Gründer oder Gründungsmitglied einer Organisation, Religion oder eines Ortes.).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P112".freeze, - label: "founder".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:founder".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :foundingDate, - equivalentProperty: "http://www.wikidata.org/entity/P571".freeze, - label: "founding date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:foundingDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :foundingYear, - label: "founding year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:foundingYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fourthCommander, - domain: "dbo:MilitaryUnit".freeze, - label: "fourth commander".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fourthCommander".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :frazioni, - domain: "dbo:Settlement".freeze, - label: "frazioni".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:frazioni".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :free, - domain: "dbo:FictionalCharacter".freeze, - label: "free".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:free".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :freeDanseScore, - domain: "dbo:Person".freeze, - label: "free danse score".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:freeDanseScore".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :freeFlightTime, - domain: "dbo:Spacecraft".freeze, - label: "free flight time (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:freeFlightTime".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :freeLabel, - domain: "dbo:FictionalCharacter".freeze, - label: "freeLabel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:freeLabel".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :freeProgCompetition, - domain: "dbo:Person".freeze, - label: "free prog competition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:freeProgCompetition".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :freeProgScore, - domain: "dbo:Person".freeze, - label: "free prog score".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:freeProgScore".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :freeScoreCompetition, - domain: "dbo:Person".freeze, - label: "free score competition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:freeScoreCompetition".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :frequency, - label: "frequency (Hz)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:frequency".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :frequencyOfPublication, - comment: %(The frequency of periodical publication \(eg. Weekly, Bimonthly\).).freeze, - domain: "dbo:PeriodicalLiterature".freeze, - label: "frequency of publication".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:frequencyOfPublication".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :frequentlyUpdated, - domain: "dbo:Software".freeze, - label: "frequently updated".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:frequentlyUpdated".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :friend, - domain: "dbo:Person".freeze, - label: "friend".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:friend".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :frontierLength, - domain: "dbo:Place".freeze, - label: "length of a frontier".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:frontierLength".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :frozen, - domain: "dbo:BodyOfWater".freeze, - label: "frozen".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:frozen".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fuel, - label: "fuel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fuel".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :fuelCapacity, - domain: "dbo:Automobile".freeze, - label: "fuel capacity (μ³)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fuelCapacity".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :fuelConsumption, - domain: "dbo:AutomobileEngine".freeze, - label: "fuel consumption".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fuelConsumption".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :fuelSystem, - domain: "dbo:AutomobileEngine".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1211".freeze, - label: "fuel system".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fuelSystem".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasComponent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :fuelType, - label: "fuel type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fuelType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :fuelTypeName, - domain: "dbo:PowerStation".freeze, - label: "fuel type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fuelTypeName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fullCompetition, - domain: "dbo:Person".freeze, - label: "full competition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fullCompetition".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fullScore, - domain: "dbo:Person".freeze, - label: "full score".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fullScore".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :functionEndDate, - domain: "dbo:PersonFunction".freeze, - label: "function end date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:functionEndDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :functionEndYear, - domain: "dbo:PersonFunction".freeze, - label: "function end year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:functionEndYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :functionStartDate, - domain: "dbo:PersonFunction".freeze, - label: "function start date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:functionStartDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :functionStartYear, - domain: "dbo:PersonFunction".freeze, - label: "function start year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:functionStartYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :fundedBy, - comment: %(A organisation financing the research project.).freeze, - domain: "dbo:ResearchProject".freeze, - label: "funded by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:fundedBy".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :galicianSpeakersDate, - comment: %(The last inquiry date about linguistics uses.).freeze, - domain: "dbo:Language".freeze, - label: "galicianSpeakersDate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:galicianSpeakersDate".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :galicianSpeakersPercentage, - comment: %(Percentage of Galician speakers.).freeze, - domain: "dbo:Language".freeze, - label: "galicianSpeakersPercentage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:galicianSpeakersPercentage".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :galleryItem, - comment: %(A file contained in a gallery).freeze, - domain: "dbo:Document".freeze, - label: "gallery item".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:galleryItem".freeze, - range: "dbo:File".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :gameArtist, - comment: %(A game artist is an artist who creates art for one or more types of games. Game artists are responsible for all of the aspects of game development that call for visual art.).freeze, - domain: "dbo:VideoGame".freeze, - label: "game artist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gameArtist".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :gameEngine, - domain: "dbo:VideoGame".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P408".freeze, - label: "Game Engine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gameEngine".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :gameModus, - label: "Modus the game can be played in".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gameModus".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :games, - domain: "dbo:OlympicResult".freeze, - label: "games".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:games".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :garrison, - domain: "dbo:MilitaryUnit".freeze, - label: "garrison".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:garrison".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :gasChambers, - comment: %(Number or description of gas chambers of a ConcentrationCamp).freeze, - domain: "dbo:ConcentrationCamp".freeze, - label: "gas chambers".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gasChambers".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :gaudiAward, - comment: %(Awards of the Catalan Academy of Cinema).freeze, - domain: "dbo:Artist".freeze, - label: "Gaudí Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gaudiAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :gdpPerCapita, - comment: %(The nominal gross domestic product of a country per capita.).freeze, - domain: "dbo:PopulatedPlace".freeze, - label: "gross domestic product (GDP) per capita".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gdpPerCapita".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :geminiAward, - domain: "dbo:Actor".freeze, - label: "Gemini Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:geminiAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :gender, - label: "gender".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gender".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :geneLocation, - domain: "dbo:Gene".freeze, - label: "Gene Location".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:geneLocation".freeze, - range: "dbo:GeneLocation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :geneLocationEnd, - comment: %(the end of the gene).freeze, - domain: "dbo:GeneLocation".freeze, - label: "gene location end".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:geneLocationEnd".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :geneLocationStart, - comment: %(the start of the gene coordinates).freeze, - domain: "dbo:GeneLocation".freeze, - label: "gene location start".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:geneLocationStart".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :geneReviewsId, - domain: "dbo:Disease".freeze, - label: "geneReviewsId".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:geneReviewsId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :geneReviewsName, - domain: "dbo:Disease".freeze, - label: "geneReviewsName".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:geneReviewsName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :generalCouncil, - domain: "dbo:Agent".freeze, - label: "general council".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:generalCouncil".freeze, - range: "dbo:TermOfOffice".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :generalManager, - domain: "dbo:SportsTeam".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P505".freeze, - label: "general manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:generalManager".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :generationUnits, - domain: "dbo:PowerStation".freeze, - label: "generation units".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:generationUnits".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :genomeDB, - comment: %(the edition of the database used \(i.e. hg19\)).freeze, - domain: "dbo:GeneLocation".freeze, - label: "Genome DB".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:genomeDB".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :genre, - comment: %(The genre of the thing \(music group, film, etc.\)).freeze, - equivalentProperty: ["http://www.wikidata.org/entity/P136".freeze, "schema:genre".freeze], - label: "genre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:genre".freeze, - range: "dbo:Genre".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :genus, - comment: %(A rank in the classification of organisms, below family and above species; a taxon at that rank).freeze, - domain: "dbo:Species".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P74".freeze, - label: "genus".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:genus".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#specializes".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :geolocDepartment, - domain: "dbo:Settlement".freeze, - label: "geolocDepartment".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:geolocDepartment".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :geolocDual, - domain: "dbo:Place".freeze, - label: "geolocdual".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:geolocDual".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :geologicPeriod, - domain: "dbo:Place".freeze, - label: "geologic period".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:geologicPeriod".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :geology, - label: "geology".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:geology".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :giniCoefficient, - comment: %(is a measure of the inequality of a distribution. It is commonly used as a measure of inequality of income or wealth.).freeze, - domain: "dbo:PopulatedPlace".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1125".freeze, - label: "gini coefficient".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:giniCoefficient".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :giniCoefficientAsOf, - domain: "dbo:PopulatedPlace".freeze, - label: "gini coefficient as of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:giniCoefficientAsOf".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :giniCoefficientCategory, - domain: "dbo:PopulatedPlace".freeze, - label: "gini coefficient category".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:giniCoefficientCategory".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :giniCoefficientRanking, - domain: "dbo:PopulatedPlace".freeze, - label: "gini coefficient ranking".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:giniCoefficientRanking".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :glycemicIndex, - comment: %(Indicates a Food's effect on a person's blood glucose \(blood sugar\) level. Typically ranges between 50 and 100, where 100 represents the standard, an equivalent amount of pure glucose).freeze, - domain: "dbo:Food".freeze, - label: "glycemic index".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:glycemicIndex".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :gnisCode, - domain: "dbo:PopulatedPlace".freeze, - label: "gnis code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gnisCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :gnl, - domain: "dbo:PopulatedPlace".freeze, - label: "gnl".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gnl".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :goalsInLeague, - domain: "dbo:SoccerPlayer".freeze, - label: "goals in league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:goalsInLeague".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :goalsInNationalTeam, - domain: "dbo:SoccerPlayer".freeze, - label: "goals in national team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:goalsInNationalTeam".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :goldMedalDouble, - domain: "dbo:TennisPlayer".freeze, - label: "gold medal double".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:goldMedalDouble".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :goldMedalMixed, - domain: "dbo:TennisPlayer".freeze, - label: "gold medal mixed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:goldMedalMixed".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :goldMedalSingle, - domain: "dbo:TennisPlayer".freeze, - label: "gold medal single".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:goldMedalSingle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :goldMedalist, - domain: "dbo:SportsEvent".freeze, - label: "gold medalist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:goldMedalist".freeze, - range: "dbo:Person".freeze, - subPropertyOf: ["dbo:Medalist".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :goldenCalfAward, - domain: "dbo:Actor".freeze, - label: "Golden Calf Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:goldenCalfAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :goldenGlobeAward, - domain: "dbo:Artist".freeze, - label: "Golden Globe Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:goldenGlobeAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :goldenRaspberryAward, - domain: "dbo:Actor".freeze, - label: "Golden Raspberry Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:goldenRaspberryAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :governingBody, - comment: %(Body that owns/operates the Place.).freeze, - domain: "dbo:Place".freeze, - label: "governing body".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:governingBody".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :government, - domain: "dbo:Island".freeze, - label: "government".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:government".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :governmentCountry, - domain: "dbo:Island".freeze, - label: "government country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:governmentCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :governmentElevation, - domain: "dbo:Island".freeze, - label: "government elevation (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:governmentElevation".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :governmentMountain, - domain: "dbo:Island".freeze, - label: "government mountain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:governmentMountain".freeze, - range: "dbo:Mountain".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :governmentPlace, - domain: "dbo:Island".freeze, - label: "government place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:governmentPlace".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :governmentPosition, - domain: "dbo:Island".freeze, - label: "government position".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:governmentPosition".freeze, - range: "geo:SpatialThing".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :governmentRegion, - domain: "dbo:Island".freeze, - label: "government region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:governmentRegion".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :governmentType, - comment: %(broadly, the type of structure of its government).freeze, - label: "government type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:governmentType".freeze, - range: "dbo:GovernmentType".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :governor, - label: "governor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:governor".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :governorGeneral, - label: "governor general".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:governorGeneral".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :governorate, - domain: "dbo:PopulatedPlace".freeze, - label: "governorate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:governorate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :goyaAward, - domain: "dbo:Artist".freeze, - label: "Goya Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:goyaAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :gradName, - domain: "dbo:Disease".freeze, - label: "GARDName".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gradName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :gradNum, - domain: "dbo:Disease".freeze, - label: "GARDNum".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gradNum".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :grades, - domain: "dbo:School".freeze, - label: "grades".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:grades".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :grammyAward, - domain: "dbo:Artist".freeze, - label: "Grammy Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:grammyAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :grandsire, - domain: "dbo:Animal".freeze, - label: "grandsire".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:grandsire".freeze, - range: "dbo:Animal".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :grave, - domain: "dbo:Person".freeze, - label: "grave".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:grave".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :grayPage, - comment: %(Refers to the famous 1918 edition of Gray's Anatomy.).freeze, - domain: "dbo:AnatomicalStructure".freeze, - label: "Gray page".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:grayPage".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :graySubject, - comment: %(Refers to the famous 1918 edition of Gray's Anatomy.).freeze, - domain: "dbo:AnatomicalStructure".freeze, - label: "Gray subject".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:graySubject".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :greekName, - label: "name in ancient Greek".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:greekName".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:Name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :greenLongDistancePisteNumber, - domain: "dbo:Place".freeze, - label: "green long distance piste number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:greenLongDistancePisteNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :greenSkiPisteNumber, - domain: "dbo:Place".freeze, - label: "green ski piste number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:greenSkiPisteNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :gridReference, - domain: "dbo:Place".freeze, - label: "grid reference".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gridReference".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :grindingCapability, - comment: %(grinding capability for Mills).freeze, - domain: "dbo:Mill".freeze, - label: "grinding capability".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:grindingCapability".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :gross, - domain: "dbo:Film".freeze, - label: "gross ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gross".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :grossDomesticProduct, - comment: %(The nominal gross domestic product of a country \(not per capita\).).freeze, - domain: "dbo:PopulatedPlace".freeze, - label: "gross domestic product (GDP)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:grossDomesticProduct".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :grossDomesticProductAsOf, - domain: "dbo:PopulatedPlace".freeze, - label: "gross domestic product as of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:grossDomesticProductAsOf".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :grossDomesticProductNominalPerCapita, - domain: "dbo:PopulatedPlace".freeze, - label: "gross domestic product nominal per capita".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:grossDomesticProductNominalPerCapita".freeze, - range: "dbo:GrossDomesticProductPerCapita".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :grossDomesticProductPerPeople, - domain: "dbo:Place".freeze, - label: "gross domestic product per people".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:grossDomesticProductPerPeople".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :grossDomesticProductPurchasingPowerParityPerCapita, - domain: "dbo:PopulatedPlace".freeze, - label: "gross domestic product purchasing power parity per capita".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:grossDomesticProductPurchasingPowerParityPerCapita".freeze, - range: "dbo:GrossDomesticProductPerCapita".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :grossDomesticProductRank, - domain: "dbo:Place".freeze, - label: "gross domestic product rank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:grossDomesticProductRank".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ground, - domain: "dbo:SoccerClub".freeze, - label: "ground".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ground".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :groundsForLiquidation, - domain: "dbo:Company".freeze, - label: "grounds for termination of activities".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:groundsForLiquidation".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :groupCommemorated, - comment: %(Designates the category of people commemorated by a monument).freeze, - domain: "dbo:Monument".freeze, - label: "group commemorated".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:groupCommemorated".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :growingGrape, - domain: "dbo:WineRegion".freeze, - label: "growing grape".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:growingGrape".freeze, - range: "dbo:Grape".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :guest, - domain: "dbo:TelevisionEpisode".freeze, - label: "guest".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:guest".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :gun, - domain: "dbo:Aircraft".freeze, - label: "aircraft gun".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gun".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :gymApparatus, - domain: "dbo:Person".freeze, - label: "gym apparatus".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:gymApparatus".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hairColor, - domain: "dbo:Person".freeze, - label: "hair color".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hairColor".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :hairColour, - domain: "dbo:Person".freeze, - label: "hair colour".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hairColour".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :hairs, - domain: "dbo:FictionalCharacter".freeze, - label: "hairs".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hairs".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :hallOfFame, - domain: "dbo:IceHockeyPlayer".freeze, - label: "hall of fame".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hallOfFame".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :hand, - domain: "dbo:Person".freeze, - label: "hand".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hand".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :handedness, - comment: %(an attribute of humans defined by their unequal distribution of fine motor skill between the left and right hands.).freeze, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P552".freeze, - label: "handedness".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:handedness".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasQuality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :handisport, - domain: "dbo:Person".freeze, - label: "handisport".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:handisport".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :hasAbsorbedMunicipality, - domain: "dbo:Municipality".freeze, - label: "the previous municipality from which this one has been created or enlarged".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hasAbsorbedMunicipality".freeze, - range: "dbo:FormerMunicipality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hasAnnotation, - domain: "dbo:Document".freeze, - label: "Indicates an annotation associated with this document".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hasAnnotation".freeze, - range: "dbo:Annotation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hasChannel, - label: "has channel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hasChannel".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hasInput, - label: "has input".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hasInput".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hasInsidePlace, - comment: %(indicates another place situated inside.).freeze, - domain: "dbo:Place".freeze, - label: "has inside place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hasInsidePlace".freeze, - range: "dbo:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hasJunctionWith, - domain: "dbo:Canal".freeze, - label: "has junction with".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hasJunctionWith".freeze, - range: "dbo:Canal".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hasKMLData, - domain: "dbo:File".freeze, - label: "Has KML data associated with it (usually because of KML overlays)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hasKMLData".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :hasNaturalBust, - domain: "dbo:Person".freeze, - label: "has natural bust".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hasNaturalBust".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :hasOutsidePlace, - comment: %(indicates another place situated around outside.).freeze, - domain: "dbo:Place".freeze, - label: "has outside place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hasOutsidePlace".freeze, - range: "dbo:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hasSurfaceForm, - comment: %(Reserved for DBpedia.).freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hasSurfaceForm".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :hasVariant, - comment: %(variant or variation, for example all variations of a color).freeze, - label: "variant or variation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hasVariant".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSpecializedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :head, - domain: "dbo:EducationalInstitution".freeze, - label: "head".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:head".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :headAlloy, - domain: "dbo:AutomobileEngine".freeze, - label: "head alloy".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:headAlloy".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasConstituent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :headChef, - domain: "dbo:Restaurant".freeze, - label: "head chef".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:headChef".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :headLabel, - domain: "dbo:School".freeze, - label: "head label".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:headLabel".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :headOfFamily, - domain: "dbo:Family".freeze, - label: "family head".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:headOfFamily".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :headquarter, - domain: "dbo:Organisation".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P159".freeze, - label: "headquarter".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:headquarter".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :headteacher, - domain: "dbo:School".freeze, - label: "head teacher".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:headteacher".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :height, - equivalentProperty: "http://www.wikidata.org/entity/P2048".freeze, - label: "height (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:height".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :heightAboveAverageTerrain, - domain: "dbo:Broadcaster".freeze, - label: "height above average terrain (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:heightAboveAverageTerrain".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :heightAgainst, - domain: "dbo:Athlete".freeze, - label: "height against".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:heightAgainst".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :heightAttack, - domain: "dbo:Athlete".freeze, - label: "height attack".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:heightAttack".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :heir, - domain: "dbo:Monarch".freeze, - label: "heir".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:heir".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :heisman, - domain: "dbo:Athlete".freeze, - label: "heisman".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:heisman".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :heritageRegister, - comment: %(registered in a heritage register : inventory of cultural properties, natural and man-made, tangible and intangible, movable and immovable, that are deemed to be of sufficient heritage value to be separately identified and recorded.).freeze, - domain: "dbo:Place".freeze, - label: "heritage register".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:heritageRegister".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hgncid, - domain: "dbo:Biomolecule".freeze, - label: "HGNCid".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hgncid".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :highest, - comment: %(The highest mountain of a mountain range.).freeze, - domain: "dbo:MountainRange".freeze, - label: "highest".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highest".freeze, - range: "dbo:Mountain".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :highestAltitude, - domain: "dbo:Place".freeze, - label: "highest altitude".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highestAltitude".freeze, - range: "dbo:Altitude".freeze, - subPropertyOf: "dbo:altitude".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :highestBreak, - domain: "dbo:SnookerPlayer".freeze, - label: "highest break".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highestBreak".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :highestBuildingInYear, - domain: "dbo:Skyscraper".freeze, - label: "highest building in year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highestBuildingInYear".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :highestMountain, - label: "highest mountain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highestMountain".freeze, - range: "dbo:Mountain".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :highestPlace, - label: "highest place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highestPlace".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :highestPoint, - domain: "dbo:Settlement".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P610".freeze, - label: "highest point".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highestPoint".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :highestPointIsland, - domain: "dbo:Island".freeze, - label: "highest point of the island".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highestPointIsland".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :highestPosition, - label: "highest position".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highestPosition".freeze, - range: "geo:SpatialThing".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :highestRank, - domain: "dbo:SnookerPlayer".freeze, - label: "highest rank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highestRank".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :highestRegion, - domain: "dbo:Island".freeze, - label: "highest region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highestRegion".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :highestState, - domain: "dbo:Island".freeze, - label: "highest state".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highestState".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :highschool, - label: "highschool".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highschool".freeze, - range: "dbo:School".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :highwaySystem, - comment: %(the highway system that a route is part of).freeze, - domain: "dbo:Road".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P16".freeze, - label: "highway system".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:highwaySystem".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hipSize, - domain: "dbo:Person".freeze, - label: "hip size (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hipSize".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :historicalMap, - domain: "dbo:Place".freeze, - label: "historical map".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:historicalMap".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :historicalName, - domain: "dbo:Place".freeze, - label: "historical name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:historicalName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :historicalRegion, - domain: "dbo:PopulatedPlace".freeze, - label: "historical region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:historicalRegion".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :hof, - domain: "dbo:Athlete".freeze, - label: "hof".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hof".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :homage, - domain: "dbo:Person".freeze, - label: "homage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:homage".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :homeArena, - label: "home arena".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:homeArena".freeze, - range: "dbo:Arena".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :homeColourHexCode, - comment: %(A colour represented by its hex code \(e.g.: #FF0000 or #40E0D0\).).freeze, - label: "colour hex code of home jersey or its parts".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:homeColourHexCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:colourHexCode".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :homeStadium, - label: "home stadium".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:homeStadium".freeze, - range: "dbo:Stadium".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :homeport, - domain: "dbo:Ship".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P504".freeze, - label: "homeport".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:homeport".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hometown, - domain: "dbo:Agent".freeze, - label: "home town".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hometown".freeze, - range: "dbo:Settlement".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :honours, - comment: %(Honours bestowed upon a Person, Organization, RaceHorse, etc).freeze, - label: "honours".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:honours".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hopmanCup, - domain: "dbo:Athlete".freeze, - label: "hopman cup".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hopmanCup".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :horseRidingDiscipline, - domain: "dbo:Athlete".freeze, - label: "horse riding discipline".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:horseRidingDiscipline".freeze, - range: "dbo:Sport".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :house, - domain: "dbo:Legislature".freeze, - label: "house".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:house".freeze, - range: "dbo:Legislature".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hraState, - domain: "dbo:PopulatedPlace".freeze, - label: "hra state".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hraState".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :hsvCoordinateHue, - domain: "dbo:Colour".freeze, - label: "hue coordinate in the HSV colour space".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hsvCoordinateHue".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :hsvCoordinateSaturation, - domain: "dbo:Colour".freeze, - label: "saturation coordinate in the HSV colour space".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hsvCoordinateSaturation".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :hsvCoordinateValue, - domain: "dbo:Colour".freeze, - label: "value coordinate in the HSV colour space".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hsvCoordinateValue".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :hubAirport, - domain: "dbo:Airline".freeze, - label: "hub airport".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hubAirport".freeze, - range: "dbo:Airport".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :humanDevelopmentIndex, - comment: %(a composite statistic used to rank countries by level of "human development").freeze, - domain: "dbo:PopulatedPlace".freeze, - label: "Human Development Index (HDI)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:humanDevelopmentIndex".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :humanDevelopmentIndexAsOf, - domain: "dbo:PopulatedPlace".freeze, - label: "human development index as of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:humanDevelopmentIndexAsOf".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :humanDevelopmentIndexRank, - domain: "dbo:Place".freeze, - label: "human development index rank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:humanDevelopmentIndexRank".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :humanDevelopmentIndexRankingCategory, - domain: "dbo:PopulatedPlace".freeze, - label: "human development index (HDI) category".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:humanDevelopmentIndexRankingCategory".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :hybrid, - comment: %(Plants from which another plant \(or cultivar\) has been developed from).freeze, - domain: "dbo:Plant".freeze, - label: "hybrid".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:hybrid".freeze, - range: "dbo:Plant".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSpecializedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :iafdId, - domain: "dbo:Film".freeze, - label: "iafd id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:iafdId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :iataAirlineCode, - comment: %(IATA designation for airline companies).freeze, - domain: "dbo:Airline".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P229".freeze, - label: "IATA code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:iataAirlineCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :iataLocationIdentifier, - domain: "dbo:Infrastructure".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P238".freeze, - label: "IATA Location Identifier".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:iataLocationIdentifier".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ibdbId, - comment: %(The Internet Broadway Database ID \(IBDB ID\) from ibdb.com.).freeze, - domain: "dbo:Play".freeze, - label: "IBDB ID".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ibdbId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :icaoAirlineCode, - comment: %(ICAO designation for airline companies).freeze, - domain: "dbo:Airline".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P230".freeze, - label: "ICAO code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:icaoAirlineCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :icaoLocationIdentifier, - domain: "dbo:Airport".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P239".freeze, - label: "ICAO Location Identifier".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:icaoLocationIdentifier".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :icd1, - domain: "dbo:Disease".freeze, - label: "ICD1".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:icd1".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :icd10, - domain: "dbo:Disease".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P494".freeze, - label: "ICD10".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:icd10".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :icd9, - domain: "dbo:Disease".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P493".freeze, - label: "ICD9".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:icd9".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :icdo, - domain: "dbo:Disease".freeze, - label: "ICDO".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:icdo".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :iconographicAttributes, - comment: %(Standard iconographic elements used when depicting a Saint: pontifical, episcopal, insignia, martyrdom instruments).freeze, - domain: "dbo:Saint".freeze, - label: "iconographic attributes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:iconographicAttributes".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :id, - domain: "dbo:WorldHeritageSite".freeze, - label: "id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:id".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :idAllocine, - comment: %(ID of a film on Allocine).freeze, - domain: "dbo:Film".freeze, - label: "Allocine ID".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:idAllocine".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :idNumber, - domain: "dbo:Person".freeze, - label: "id number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:idNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :identificationSymbol, - domain: "dbo:MilitaryUnit".freeze, - label: "identification symbol".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:identificationSymbol".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ideology, - domain: "dbo:Agent".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1142".freeze, - label: "ideology".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ideology".freeze, - range: "dbo:Ideology".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#conceptualizes".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :iftaAward, - domain: "dbo:Actor".freeze, - label: "IFTA Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:iftaAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :iihfHof, - domain: "dbo:Person".freeze, - label: "lihf hof".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:iihfHof".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :illiteracy, - domain: "dbo:PopulatedPlace".freeze, - label: "illiteracy".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:illiteracy".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :illustrator, - comment: %(Illustrator \(where used throughout and a major feature\)).freeze, - domain: "dbo:WrittenWork".freeze, - equivalentProperty: ["http://www.wikidata.org/entity/P110".freeze, "schema:illustrator".freeze], - label: "illustrator".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:illustrator".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :imageSize, - comment: %(the image size expressed in pixels).freeze, - label: "image size (px)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:imageSize".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :imdbId, - comment: %(International Movie Database ID. Applies to Films, Actors, etc).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P345".freeze, - label: "IMDB id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:imdbId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :impactFactor, - comment: %(The impact factor, often abbreviated IF, is a measure reflecting the average number of citations to articles published in science and social science journals.).freeze, - domain: "dbo:AcademicJournal".freeze, - label: "impact factor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:impactFactor".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :impactFactorAsOf, - comment: %(Census year of the imapct factor.).freeze, - domain: "dbo:AcademicJournal".freeze, - label: "impact factor as of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:impactFactorAsOf".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :importantStation, - comment: %(Destinations, depots, junctions, major stops, hubs...).freeze, - domain: "dbo:PublicTransitSystem".freeze, - label: "important station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:importantStation".freeze, - range: "dbo:Station".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :imposedDanseCompetition, - domain: "dbo:Person".freeze, - label: "imposed danse competition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:imposedDanseCompetition".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :imposedDanseScore, - domain: "dbo:Person".freeze, - label: "imposed danse score".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:imposedDanseScore".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :inCemetery, - domain: "dbo:GraveMonument".freeze, - label: "in cemetery".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:inCemetery".freeze, - range: "dbo:Cemetery".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :inchi, - domain: "dbo:ChemicalCompound".freeze, - label: "The IUPAC International Chemical Identifier".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:inchi".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :inclination, - domain: "dbo:Spacecraft".freeze, - label: "inclination".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:inclination".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :income, - domain: "dbo:PopulatedPlace".freeze, - label: "income".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:income".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :incumbent, - label: "incumbent".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:incumbent".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :individualisedGnd, - comment: %(GND \(Gemeinsame Normdatei\) is an international authority file for the organisation of personal names, subject headings and corporate bodies from catalogues. It is used mainly for documentation in libraries and archives. The GND is managed by the German National Library in cooperation with various library networks. The GND falls under the Creative Commons Zero\(CC0\) license.).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P227".freeze, - label: "individualised GND number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:individualisedGnd".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :individualisedPnd, - comment: %(PND \(Personennamendatei\) data about a person. PND is published by the German National Library. For each person there is a record with her/his name, birth and occupation connected with a unique identifier, the PND number.).freeze, - domain: "dbo:Person".freeze, - label: "individualised PND number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:individualisedPnd".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :industry, - domain: "dbo:Company".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P452".freeze, - label: "industry".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:industry".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :infantMortality, - domain: "dbo:PopulatedPlace".freeze, - label: "infant mortality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:infantMortality".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :inflow, - domain: "dbo:BodyOfWater".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P200".freeze, - label: "inflow".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:inflow".freeze, - range: "dbo:BodyOfWater".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :influenced, - comment: %(The subject influenced the object. inverseOf influencedBy. Subject and object can be Persons or Works \(eg ProgrammingLanguage\)).freeze, - label: "influenced".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:influenced".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :influencedBy, - comment: %(The subject was influenced by the object. inverseOf influenced. Subject and object can be Persons or Works \(eg ProgrammingLanguage\)).freeze, - label: "influenced by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:influencedBy".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :information, - domain: "dbo:Place".freeze, - label: "information".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:information".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :informationName, - domain: "dbo:Place".freeze, - label: "information name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:informationName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ingredient, - comment: %(Main ingredient used to prepare a specific Food or Beverage. For strings use ingredientName, for objects use ingredient.).freeze, - domain: "dbo:Food".freeze, - label: "ingredient".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ingredient".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :ingredientName, - comment: %(Main ingredient used to prepare a specific Food or Beverage. For strings use ingredientName, for objects use ingredient.).freeze, - domain: "dbo:Food".freeze, - label: "ingredient name (literal)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ingredientName".freeze, - range: "xsd:string".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :initiallyUsedFor, - comment: %(Initial use of the architectural structure.).freeze, - domain: "dbo:ArchitecturalStructure".freeze, - label: "initally used for".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:initiallyUsedFor".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :inn, - comment: %(International Nonproprietary Name given to a pharmaceutical substance).freeze, - domain: "dbo:ChemicalCompound".freeze, - label: "INN".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:inn".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :innervates, - domain: "dbo:Nerve".freeze, - label: "innervates".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:innervates".freeze, - range: "dbo:AnatomicalStructure".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :inscription, - comment: %(Text of an inscription on the object).freeze, - label: "inscription".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:inscription".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :inseeCode, - comment: %(numerical indexing code used by the French National Institute for Statistics and Economic Studies \(INSEE\) to identify various entities).freeze, - domain: "dbo:Settlement".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P374".freeze, - label: "INSEE code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:inseeCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:codeSettlement".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :installedCapacity, - domain: "dbo:PowerStation".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P2109".freeze, - label: "installed capacity (W)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:installedCapacity".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :institution, - label: "institution".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:institution".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :instrument, - domain: "dbo:Artist".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1303".freeze, - label: "instrument".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:instrument".freeze, - range: "dbo:Instrument".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :intercommunality, - label: "intercommunality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:intercommunality".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :interest, - domain: "dbo:SiteOfSpecialScientificInterest".freeze, - label: "interest".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:interest".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :internationalAffiliation, - domain: "dbo:PoliticalParty".freeze, - label: "international affiliation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:internationalAffiliation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :internationalPhonePrefix, - domain: "dbo:PopulatedPlace".freeze, - label: "international phone prefix".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:internationalPhonePrefix".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :internationalPhonePrefixLabel, - domain: "dbo:PopulatedPlace".freeze, - label: "international phone prefix label".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:internationalPhonePrefixLabel".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :internationally, - domain: "dbo:Company".freeze, - label: "internationally".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:internationally".freeze, - range: "xsd:boolean".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :introduced, - label: "introduced".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:introduced".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :introductionDate, - domain: "dbo:MeanOfTransportation".freeze, - label: "introduction date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:introductionDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :iobdbId, - comment: %(Lortel Archives Internet Off-Broadway database "show id" from lortel.org.).freeze, - domain: "dbo:Play".freeze, - label: "IOBDB ID".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:iobdbId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :isCityState, - domain: "dbo:Settlement".freeze, - label: "is a city state".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isCityState".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :isHandicappedAccessible, - comment: %(True if the station is handicapped accessible.).freeze, - domain: "dbo:Station".freeze, - label: "is handicapped accessible".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isHandicappedAccessible".freeze, - range: "xsd:boolean".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :isPartOf, - equivalentProperty: "http://www.wikidata.org/entity/P361".freeze, - label: "is part of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isPartOf".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :isPartOfAnatomicalStructure, - domain: "dbo:Brain".freeze, - label: "is part of anatomical structure".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isPartOfAnatomicalStructure".freeze, - range: "dbo:AnatomicalStructure".freeze, - subPropertyOf: ["dbo:isPartOf".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :isPartOfMilitaryConflict, - domain: "dbo:MilitaryConflict".freeze, - label: "is part of military conflict".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isPartOfMilitaryConflict".freeze, - range: "dbo:MilitaryConflict".freeze, - subPropertyOf: ["dbo:isPartOf".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :isPartOfName, - comment: %(Name of another thing that this thing is part of. Use for infobox "part of" properties given as text; for objects use isPartOf).freeze, - label: "is part of (literal)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isPartOfName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :isPartOfWineRegion, - domain: "dbo:WineRegion".freeze, - label: "is part of wine region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isPartOfWineRegion".freeze, - range: "dbo:WineRegion".freeze, - subPropertyOf: ["dbo:isPartOf".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :isPeerReviewed, - comment: %(In academia peer review is often used to determine an academic papers suitability for publication.).freeze, - domain: "dbo:AcademicJournal".freeze, - label: "is peer reviewed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isPeerReviewed".freeze, - range: "xsd:boolean".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :isRouteStop, - comment: %(indicate a place is a stop on a road.).freeze, - domain: "dbo:Place".freeze, - label: "is route stop".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isRouteStop".freeze, - range: "dbo:RouteStop".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :isbn, - comment: %(The International Standard Book Number \(ISBN\) is a unique numeric commercial book identifier based upon the 9-digit Standard Book Numbering \(SBN\) code.).freeze, - domain: "dbo:WrittenWork".freeze, - equivalentProperty: ["http://www.wikidata.org/entity/P212".freeze, "http://www.wikidata.org/entity/P957".freeze, "schema:isbn".freeze], - label: "ISBN".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isbn".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :isil, - domain: "dbo:Library".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P791".freeze, - label: "International Standard Identifier for Libraries and Related Organizations (ISIL)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isil".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :island, - domain: "dbo:BodyOfWater".freeze, - label: "island".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:island".freeze, - range: "dbo:Island".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :isniId, - comment: %(ISNI is a method for uniquely identifying the public identities of contributors to media content such as books, TV programmes, and newspaper articles.).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P213".freeze, - label: "ISNI Id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isniId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :iso31661Code, - comment: %(defines codes for the names of countries, dependent territories, and special areas of geographical interest).freeze, - domain: "dbo:Place".freeze, - equivalentProperty: ["http://www.wikidata.org/entity/P297".freeze, "http://www.wikidata.org/entity/P298".freeze, "http://www.wikidata.org/entity/P299".freeze], - label: "ISO 3166-1 code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:iso31661Code".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :iso6391Code, - domain: "dbo:Language".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P218".freeze, - label: "ISO 639-1 code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:iso6391Code".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:LanguageCode".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :iso6392Code, - domain: "dbo:Language".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P219".freeze, - label: "ISO 639-2 code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:iso6392Code".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:LanguageCode".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :iso6393Code, - domain: "dbo:Language".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P220".freeze, - label: "ISO 639-3 code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:iso6393Code".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:LanguageCode".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :isoCode, - domain: "dbo:Place".freeze, - label: "iso code of a place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isoCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :isoCodeRegion, - domain: "dbo:Settlement".freeze, - label: "ISO region code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:isoCodeRegion".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :issDockings, - domain: "dbo:SpaceShuttle".freeze, - label: "iss dockings".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:issDockings".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :issn, - comment: %(International Standard Serial Number \(ISSN\)).freeze, - domain: "dbo:PeriodicalLiterature".freeze, - label: "issn".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:issn".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ist, - domain: "dbo:PopulatedPlace".freeze, - label: "ist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ist".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :istat, - comment: %(Indexing code used for Italian municipalities).freeze, - domain: "dbo:PopulatedPlace".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P635".freeze, - label: "code istat".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:istat".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ithfDate, - domain: "dbo:Athlete".freeze, - label: "ithf date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ithfDate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :iucnCategory, - domain: "dbo:ProtectedArea".freeze, - label: "iucn category".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:iucnCategory".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :iupacName, - domain: "dbo:Drug".freeze, - label: "IUPAC name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:iupacName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :jockey, - domain: "dbo:Horse".freeze, - label: "jockey".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:jockey".freeze, - range: "dbo:Jockey".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :jointCommunity, - domain: "dbo:Settlement".freeze, - label: "joint community".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:jointCommunity".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :jstor, - comment: %(JSTOR number \(short for Journal Storage\) is a United States-based online system number for archiving academic journals.).freeze, - domain: "dbo:AcademicJournal".freeze, - label: "JSTOR".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:jstor".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :judge, - comment: %(leading judge).freeze, - domain: "dbo:LegalCase".freeze, - label: "judge".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:judge".freeze, - range: "dbo:Judge".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :juniorSeason, - domain: "dbo:Agent".freeze, - label: "junior season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:juniorSeason".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :juniorTeam, - domain: "dbo:Athlete".freeze, - label: "junior team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:juniorTeam".freeze, - range: "dbo:SportsTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :juniorYearsEndYear, - domain: "dbo:Person".freeze, - label: "junior years end year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:juniorYearsEndYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :juniorYearsStartYear, - domain: "dbo:Person".freeze, - label: "junior years start year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:juniorYearsStartYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :jureLanguage, - label: "jure language".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:jureLanguage".freeze, - range: "dbo:Language".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :jurisdiction, - comment: %(Jurisdiction is the practical authority granted to a formally constituted legal body or to a political leader to deal with and make pronouncements on legal matters and, by implication, to administer justice within a defined area of responsibility.).freeze, - label: "jurisdiction".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:jurisdiction".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :jutsu, - domain: "dbo:Person".freeze, - label: "jutsu".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:jutsu".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :kegg, - comment: %(Bioinformatics resource for deciphering the genome.).freeze, - domain: "dbo:ChemicalSubstance".freeze, - label: "KEGG".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:kegg".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :keyPerson, - label: "key person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:keyPerson".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :khlDraft, - domain: "dbo:IceHockeyPlayer".freeze, - label: "khl draft year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:khlDraft".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :khlDraftTeam, - domain: "dbo:IceHockeyPlayer".freeze, - label: "khl draft team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:khlDraftTeam".freeze, - range: "dbo:HockeyTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :khlDraftYear, - domain: "dbo:IceHockeyPlayer".freeze, - label: "khl draft year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:khlDraftYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :killedBy, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P157".freeze, - label: "killed by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:killedBy".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :kinOfLanguage, - label: "kindOfLanguage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:kinOfLanguage".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :kindOfCoordinate, - domain: "dbo:Place".freeze, - label: "kind of coordinate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:kindOfCoordinate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :kindOfCriminal, - domain: "dbo:Criminal".freeze, - label: "kind of criminal".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:kindOfCriminal".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :kindOfCriminalAction, - domain: "dbo:Criminal".freeze, - label: "kind of criminal action".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:kindOfCriminalAction".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :kindOfRock, - domain: "dbo:Place".freeze, - label: "kind of rock".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:kindOfRock".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :kingdom, - comment: %(In biology, kingdom \(Latin: regnum, pl. regna\) is a taxonomic rank, which is either the highest rank or in the more recent three-domain system, the rank below domain.).freeze, - domain: "dbo:Species".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P75".freeze, - label: "kingdom".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:kingdom".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#specializes".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :knownFor, - comment: %(Work, historic event, etc that the subject is known for. Applies to Person, Organization, ConcentrationCamp, etc).freeze, - label: "known for".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:knownFor".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDescribedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :ko, - domain: "dbo:Boxer".freeze, - label: "ko".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ko".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lahHof, - domain: "dbo:Person".freeze, - label: "lah hof".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lahHof".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lake, - domain: "dbo:Place".freeze, - label: "vastest lake".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lake".freeze, - range: "dbo:BodyOfWater".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#nearTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :land, - domain: "dbo:Place".freeze, - label: "land".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:land".freeze, - range: "dbo:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :landArea, - domain: "dbo:Place".freeze, - equivalentProperty: "dbo:area".freeze, - label: "area of a land (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:landArea".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :landPercentage, - domain: "dbo:Place".freeze, - label: "land percentage of a place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:landPercentage".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :landRegistryCode, - domain: "dbo:Settlement".freeze, - label: "land registry code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:landRegistryCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :landeshauptmann, - domain: "dbo:AdministrativeRegion".freeze, - label: "landeshauptmann".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:landeshauptmann".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :landingDate, - domain: "dbo:SpaceMission".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P620".freeze, - label: "landing date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:landingDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :landingSite, - domain: "dbo:SpaceMission".freeze, - label: "landing site".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:landingSite".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :landingVehicle, - domain: "dbo:SpaceMission".freeze, - label: "landing vehicle".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:landingVehicle".freeze, - range: "dbo:SpaceMission".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :landskap, - domain: "dbo:NorwaySettlement".freeze, - label: "norwegian landskap".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:landskap".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :landtag, - domain: "dbo:AdministrativeRegion".freeze, - label: "austrian land tag".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:landtag".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :landtagMandate, - domain: "dbo:AdministrativeRegion".freeze, - label: "austrian land tag mandate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:landtagMandate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :language, - comment: %(Use dc:language for literal, language for object).freeze, - equivalentProperty: "schema:inLanguage".freeze, - label: "language".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:language".freeze, - range: "dbo:Language".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :languageCode, - domain: "dbo:Language".freeze, - label: "language code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:languageCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :languageFamily, - domain: "dbo:Language".freeze, - label: "family".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:languageFamily".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#specializes".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :languageRegulator, - label: "language regulator or academy".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:languageRegulator".freeze, - range: "dbo:Language".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :largestCity, - domain: "dbo:PopulatedPlace".freeze, - label: "largest city".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:largestCity".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :largestMetro, - domain: "dbo:Settlement".freeze, - label: "largest metro".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:largestMetro".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :largestSettlement, - domain: "dbo:PopulatedPlace".freeze, - label: "largest settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:largestSettlement".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :largestWin, - domain: "dbo:SoccerClub".freeze, - label: "largest win".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:largestWin".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lastAirDate, - comment: %(The date on which the broadcaster made its last broadcast.).freeze, - domain: "dbo:Broadcaster".freeze, - label: "last air date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastAirDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lastAppearance, - domain: "dbo:FictionalCharacter".freeze, - label: "last appearance".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastAppearance".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lastElectionDate, - comment: %(The last election date for the house.).freeze, - domain: "dbo:Legislature".freeze, - label: "last election date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastElectionDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lastFamilyMember, - domain: "dbo:Family".freeze, - label: "last family member".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastFamilyMember".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lastFlight, - domain: "dbo:SpaceShuttle".freeze, - label: "last flight".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastFlight".freeze, - range: "dbo:SpaceMission".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lastFlightEndDate, - domain: "dbo:SpaceShuttle".freeze, - label: "last flight end date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastFlightEndDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lastFlightStartDate, - domain: "dbo:SpaceShuttle".freeze, - label: "last flight start date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastFlightStartDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lastLaunch, - domain: "dbo:YearInSpaceflight".freeze, - label: "last launch".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastLaunch".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lastLaunchDate, - domain: "dbo:LaunchPad".freeze, - label: "last launch date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastLaunchDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lastLaunchRocket, - domain: "dbo:LaunchPad".freeze, - label: "last launch rocket".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastLaunchRocket".freeze, - range: "dbo:Rocket".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lastPosition, - domain: "dbo:FormulaOneRacer".freeze, - label: "last position".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastPosition".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lastProMatch, - domain: "dbo:Athlete".freeze, - label: "last pro match".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastProMatch".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lastPublicationDate, - comment: %(Date of the last publication.).freeze, - domain: "dbo:WrittenWork".freeze, - label: "last publication date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastPublicationDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lastRace, - domain: "dbo:FormulaOneRacer".freeze, - label: "last race".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastRace".freeze, - range: "dbo:GrandPrix".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lastSeason, - domain: "dbo:FormulaOneRacer".freeze, - label: "last season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastSeason".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lastWin, - domain: "dbo:FormulaOneRacer".freeze, - label: "last win".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lastWin".freeze, - range: "dbo:GrandPrix".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :laterality, - domain: "dbo:Athlete".freeze, - label: "laterality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:laterality".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :latestElection, - domain: "dbo:PopulatedPlace".freeze, - label: "date of latest election".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:latestElection".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :latestPreviewDate, - domain: "dbo:Software".freeze, - label: "latest preview date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:latestPreviewDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :latestPreviewVersion, - domain: "dbo:Software".freeze, - label: "latest preview version".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:latestPreviewVersion".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :latestReleaseDate, - domain: "dbo:Software".freeze, - label: "latest release date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:latestReleaseDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :latestReleaseVersion, - domain: "dbo:Software".freeze, - label: "latest release version".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:latestReleaseVersion".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :latinName, - label: "name in latin".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:latinName".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:Name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :launch, - domain: "dbo:Spacecraft".freeze, - label: "launch".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:launch".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :launchDate, - domain: "dbo:SpaceMission".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P619".freeze, - label: "launch date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:launchDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :launchPad, - domain: "dbo:SpaceMission".freeze, - label: "launch pad".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:launchPad".freeze, - range: "dbo:LaunchPad".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :launchSite, - domain: "dbo:SpaceMission".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P448".freeze, - label: "launch site".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:launchSite".freeze, - range: "dbo:Building".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :launchVehicle, - domain: "dbo:SpaceMission".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P375".freeze, - label: "launch vehicle".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:launchVehicle".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :launches, - domain: "dbo:LaunchPad".freeze, - label: "launches".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:launches".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :laurenceOlivierAward, - domain: "dbo:Actor".freeze, - label: "Laurence Olivier Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:laurenceOlivierAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lawCountry, - domain: "dbo:Place".freeze, - label: "law country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lawCountry".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :layingDown, - domain: "dbo:Ship".freeze, - label: "laying down".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:layingDown".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :layout, - domain: "dbo:Automobile".freeze, - label: "layout".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:layout".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasQuality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lcc, - comment: %(The Library of Congress Classification \(LCC\) is a system of library classification developed by the Library of Congress.).freeze, - domain: "dbo:WrittenWork".freeze, - label: "LCC".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lcc".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lccn, - comment: %(The Library of Congress Control Number or LCCN is a serially based system of numbering cataloging records in the Library of Congress in the United States. It has nothing to do with the contents of any book, and should not be confused with Library of Congress Classification.).freeze, - domain: "dbo:WrittenWork".freeze, - label: "LCCN".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lccn".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lccnId, - comment: %(Library of Congress Control Number).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P244".freeze, - label: "LCCN Id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lccnId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lchfDraft, - domain: "dbo:IceHockeyPlayer".freeze, - label: "lchf draft year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lchfDraft".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lchfDraftTeam, - domain: "dbo:IceHockeyPlayer".freeze, - label: "lchf draft team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lchfDraftTeam".freeze, - range: "dbo:HockeyTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lchfDraftYear, - domain: "dbo:IceHockeyPlayer".freeze, - label: "lchf draft year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lchfDraftYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :leadTeam, - domain: "dbo:Athlete,_CareerStation".freeze, - label: "lead team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:leadTeam".freeze, - range: "dbo:SportsTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :leadYear, - domain: "dbo:Athlete,_CareerStation".freeze, - label: "lead year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:leadYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :leader, - label: "leader".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:leader".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :leaderFunction, - domain: "dbo:Organisation".freeze, - label: "leaderFunction".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:leaderFunction".freeze, - range: "dbo:PersonFunction".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :leaderName, - domain: "dbo:PopulatedPlace".freeze, - label: "leader name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:leaderName".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :leaderParty, - domain: "dbo:PopulatedPlace".freeze, - label: "leader party".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:leaderParty".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :leaderTitle, - domain: "dbo:PopulatedPlace".freeze, - label: "leader title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:leaderTitle".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :leadership, - domain: "dbo:Person".freeze, - label: "leadership".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:leadership".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :league, - equivalentProperty: "http://www.wikidata.org/entity/P118".freeze, - label: "league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:league".freeze, - range: "dbo:SportsLeague".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :leagueManager, - domain: "dbo:Person".freeze, - label: "league manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:leagueManager".freeze, - range: "dbo:SportsLeague".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :leftChild, - domain: "dbo:Island".freeze, - label: "left child".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:leftChild".freeze, - range: "dbo:Island".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#nearTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :leftTributary, - domain: "dbo:River".freeze, - label: "left tributary".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:leftTributary".freeze, - range: "dbo:River".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :legalArrondissement, - domain: "dbo:BelgiumSettlement".freeze, - label: "legal arrondissement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:legalArrondissement".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :legalArticle, - comment: %(article in code book or statute book referred to in this legal case).freeze, - domain: "dbo:LegalCase".freeze, - label: "legal article".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:legalArticle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :legalForm, - comment: %(There are many types of business entity defined in the legal systems of various countries. These include corporations, cooperatives, partnerships, sole traders, limited liability company and other specialized types of organization.).freeze, - domain: "dbo:Organisation".freeze, - label: "legal form".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:legalForm".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :legislativePeriodName, - comment: %(The term of the on-going session \(e.g.: "40th Canadian Parliament"\).).freeze, - domain: "dbo:Legislature".freeze, - label: "legislative period name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:legislativePeriodName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :legislature, - domain: "dbo:PopulatedPlace".freeze, - label: "legislature".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:legislature".freeze, - range: "dbo:Legislature".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :length, - equivalentProperty: "http://www.wikidata.org/entity/P2043".freeze, - label: "length (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:length".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :lengthQuote, - domain: "dbo:Place".freeze, - label: "length quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lengthQuote".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lengthReference, - domain: "dbo:RouteOfTransportation".freeze, - label: "length reference".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lengthReference".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lethalOnChickens, - domain: "dbo:ChemicalSubstance".freeze, - label: "lethal when given to chickens".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lethalOnChickens".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lethalOnMice, - domain: "dbo:ChemicalSubstance".freeze, - label: "lethal when given to mice".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lethalOnMice".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lethalOnRabbits, - domain: "dbo:ChemicalSubstance".freeze, - label: "lethal when given to rabbits".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lethalOnRabbits".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lethalOnRats, - domain: "dbo:ChemicalSubstance".freeze, - label: "lethal when given to rats".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lethalOnRats".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :liberationDate, - domain: "dbo:ConcentrationCamp".freeze, - label: "date of liberation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:liberationDate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :libretto, - domain: "dbo:Opera".freeze, - label: "libretto".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:libretto".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :licenceLetter, - domain: "dbo:GermanSettlement".freeze, - label: "licence letter of a german settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:licenceLetter".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :licenceNumber, - domain: "dbo:PopulatedPlace".freeze, - label: "licence number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:licenceNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :licenceNumberLabel, - domain: "dbo:PopulatedPlace".freeze, - label: "licence number label".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:licenceNumberLabel".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :license, - domain: "dbo:Work".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P275".freeze, - label: "license".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:license".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDescribedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :licensee, - comment: %(Identify which company or entity holds the licence \(mostly string are used in Wikipedia, therefore range is xsd:sting\).).freeze, - label: "licensee".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:licensee".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lieutenancy, - domain: "dbo:PopulatedPlace".freeze, - label: "lieutenancy".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lieutenancy".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lieutenancyArea, - domain: "dbo:PopulatedPlace".freeze, - label: "Lieutenancy area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lieutenancyArea".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lieutenant, - label: "lieutenant".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lieutenant".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lifeExpectancy, - domain: "dbo:PopulatedPlace".freeze, - label: "life expectancy".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lifeExpectancy".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :limit, - domain: "dbo:Place".freeze, - label: "limit".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:limit".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lineLength, - comment: %(Length of the line. Wikipedians usually do not differentiate between track length and line lenght.).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "line length (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lineLength".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :linguisticsTradition, - domain: "dbo:Person".freeze, - label: "linguistics tradition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:linguisticsTradition".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :linkedSpace, - domain: "dbo:Place".freeze, - label: "linked space".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:linkedSpace".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :linkedTo, - domain: "dbo:SkiResort".freeze, - label: "linked to".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:linkedTo".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :listItemOf, - label: "list item".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:listItemOf".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :literaryGenre, - comment: %(A literary genre is a category of literary composition. Genres may be determined by literary technique, tone, content, or even \(as in the case of fiction\) length.).freeze, - domain: "dbo:WrittenWork".freeze, - label: "literary genre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:literaryGenre".freeze, - subPropertyOf: ["dbo:genre".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :littlePoolRecord, - domain: "dbo:Person".freeze, - label: "little pool record".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:littlePoolRecord".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :livingPlace, - domain: "dbo:Person".freeze, - label: "livingPlace".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:livingPlace".freeze, - range: "dbo:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :loadLimit, - comment: %(Load limit of the bridge.).freeze, - domain: "dbo:Bridge".freeze, - label: "load limit (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:loadLimit".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :localAuthority, - label: "local authority".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:localAuthority".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :localPhonePrefix, - domain: "dbo:PopulatedPlace".freeze, - label: "local phone prefix".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:localPhonePrefix".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :locality, - domain: "dbo:Settlement".freeze, - label: "locality of a switzerland settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:locality".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :localization, - domain: "dbo:Island".freeze, - label: "localization of the island".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:localization".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :localizationThumbnail, - domain: "dbo:PopulatedPlace".freeze, - label: "thumbnail localization".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:localizationThumbnail".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isExpressedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :localizationThumbnailCaption, - domain: "dbo:PopulatedPlace".freeze, - label: "legend thumbnail localization".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:localizationThumbnailCaption".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :locatedInArea, - domain: "dbo:Place".freeze, - equivalentProperty: ["http://www.wikidata.org/entity/P131".freeze, "schema:containedIn".freeze], - label: "located in area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:locatedInArea".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :location, - comment: %(The location of the thing.).freeze, - label: "location".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:location".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :locationCity, - comment: %(City the thing is located.).freeze, - domain: "dbo:Organisation".freeze, - label: "location city".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:locationCity".freeze, - range: "dbo:City".freeze, - subPropertyOf: ["dbo:location".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :locationCountry, - comment: %(Country the thing is located.).freeze, - label: "państwo".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:locationCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: ["dbo:location".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :locationIdentifier, - domain: "dbo:Airport".freeze, - label: "Location Identifier".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:locationIdentifier".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :locationName, - comment: %(Location of the thing as string. Use "location" if the location is a resource).freeze, - label: "locationName".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:locationName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :locomotive, - domain: "dbo:Train".freeze, - label: "locomotive".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:locomotive".freeze, - range: "dbo:Locomotive".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :locusSupplementaryData, - domain: "dbo:Protein".freeze, - label: "locus supplementary data".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:locusSupplementaryData".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :logo, - label: "logo".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:logo".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :longDistancePisteKilometre, - domain: "dbo:Place".freeze, - label: "long distance piste kilometre (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:longDistancePisteKilometre".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :longDistancePisteNumber, - domain: "dbo:Place".freeze, - label: "long distance piste number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:longDistancePisteNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :longName, - label: "longName".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:longName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :longtype, - comment: %(can be used to include more informations e.g. the name of the artist that a tribute album is in honor of).freeze, - domain: "dbo:Album".freeze, - label: "longtype".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:longtype".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lounge, - domain: "dbo:Airline".freeze, - label: "lounge".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lounge".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lowerAge, - domain: "dbo:School".freeze, - label: "lower age".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lowerAge".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lowerEarthOrbitPayload, - comment: %(Payload mass in a typical Low Earth orbit).freeze, - domain: "dbo:Rocket".freeze, - label: "lower earth orbit payload (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lowerEarthOrbitPayload".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lowest, - domain: "dbo:Place".freeze, - label: "lowest".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lowest".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lowestAltitude, - domain: "dbo:Place".freeze, - label: "lowest altitude".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lowestAltitude".freeze, - range: "dbo:Altitude".freeze, - subPropertyOf: "dbo:altitude".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lowestMountain, - domain: "dbo:Place".freeze, - label: "lowest mountain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lowestMountain".freeze, - range: "dbo:Mountain".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lowestPlace, - domain: "dbo:Place".freeze, - label: "lowest place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lowestPlace".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lowestPoint, - domain: "dbo:Settlement".freeze, - label: "lowest point".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lowestPoint".freeze, - range: "dbo:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lowestPosition, - domain: "dbo:Place".freeze, - label: "lowest position".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lowestPosition".freeze, - range: "geo:SpatialThing".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lowestRegion, - domain: "dbo:Island".freeze, - label: "lowest region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lowestRegion".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lowestState, - domain: "dbo:Island".freeze, - label: "lowest state".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lowestState".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lunarEvaTime, - domain: "dbo:SpaceMission".freeze, - label: "lunar EVA time (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lunarEvaTime".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lunarLandingSite, - domain: "dbo:SpaceMission".freeze, - label: "lunar landing site".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lunarLandingSite".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lunarModule, - domain: "dbo:SpaceMission".freeze, - label: "lunar module".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lunarModule".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lunarOrbitTime, - domain: "dbo:SpaceMission".freeze, - label: "lunar orbit time (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lunarOrbitTime".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lunarRover, - domain: "dbo:SpaceMission".freeze, - label: "lunar rover".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lunarRover".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lunarSampleMass, - domain: "dbo:SpaceMission".freeze, - label: "lunar sample mass (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lunarSampleMass".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lunarSurfaceTime, - domain: "dbo:SpaceMission".freeze, - label: "lunar surface time (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lunarSurfaceTime".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :lymph, - domain: "dbo:AnatomicalStructure".freeze, - label: "lymph".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lymph".freeze, - range: "dbo:Lymph".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :lyrics, - comment: %(Creator of the text of a MusicalWork, eg Musical, Opera or Song).freeze, - domain: "dbo:MusicalWork".freeze, - label: "lyrics".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:lyrics".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :magazine, - domain: "dbo:WrittenWork".freeze, - label: "magazine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:magazine".freeze, - range: "dbo:Magazine".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :maidenFlight, - comment: %(date of maiden flight).freeze, - domain: "dbo:Rocket".freeze, - label: "maiden flight".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maidenFlight".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maidenFlightRocket, - domain: "dbo:YearInSpaceflight".freeze, - label: "maiden flight rocket".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maidenFlightRocket".freeze, - range: "dbo:Rocket".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :maidenVoyage, - domain: "dbo:Ship".freeze, - label: "maiden voyage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maidenVoyage".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mainBuilding, - domain: "dbo:Shrine".freeze, - label: "main building".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mainBuilding".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mainCharacter, - domain: "dbo:Work".freeze, - label: "main character".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mainCharacter".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mainDomain, - domain: "dbo:Person".freeze, - label: "main domain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mainDomain".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mainFamilyBranch, - domain: "dbo:NobleFamily".freeze, - label: "main branch".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mainFamilyBranch".freeze, - range: "dbo:Family".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mainInterest, - label: "main interest".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mainInterest".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#conceptualizes".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mainIsland, - domain: "dbo:Place".freeze, - label: "main island".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mainIsland".freeze, - range: "dbo:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mainIslands, - domain: "dbo:Island".freeze, - label: "main islands".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mainIslands".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mainOrgan, - domain: "dbo:Organisation".freeze, - label: "main organ".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mainOrgan".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mainspan, - domain: "dbo:Bridge".freeze, - label: "mainspan (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mainspan".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maintainedBy, - domain: "dbo:ArchitecturalStructure".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P126".freeze, - label: "maintained by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maintainedBy".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :majorIsland, - domain: "dbo:Island".freeze, - label: "major island".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:majorIsland".freeze, - range: "dbo:Island".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :majorShrine, - domain: "dbo:Saint".freeze, - label: "major shrine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:majorShrine".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :majorityFloorLeader, - comment: %(number of office holder).freeze, - label: "majority floor leader".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:majorityFloorLeader".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :majorityLeader, - comment: %(number of office holder).freeze, - label: "majority leader".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:majorityLeader".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :makeupArtist, - comment: %(the person who is responsible for the actors makeup).freeze, - domain: "dbo:Film".freeze, - label: "makeup artist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:makeupArtist".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :management, - label: "management".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:management".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :managementCountry, - domain: "dbo:Island".freeze, - label: "management country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:managementCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :managementElevation, - label: "management elevation (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:managementElevation".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :managementMountain, - label: "management mountain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:managementMountain".freeze, - range: "dbo:Mountain".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :managementPlace, - label: "management place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:managementPlace".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :managementPosition, - label: "management position".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:managementPosition".freeze, - range: "geo:SpatialThing".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasSetting".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :managementRegion, - domain: "dbo:Island".freeze, - label: "management region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:managementRegion".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :manager, - domain: "dbo:SportsTeam".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P286".freeze, - label: "manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:manager".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :managerClub, - domain: "dbo:Athlete".freeze, - label: "manager club".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:managerClub".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :managerSeason, - domain: "dbo:Agent".freeze, - label: "manager season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:managerSeason".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :managerTitle, - domain: "dbo:SoccerClub".freeze, - label: "manager title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:managerTitle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :managerYears, - domain: "dbo:SoccerPlayer".freeze, - label: "manager years".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:managerYears".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :managerYearsEndYear, - label: "manager years end year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:managerYearsEndYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :managerYearsStartYear, - label: "manager years start year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:managerYearsStartYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :managingEditor, - domain: "dbo:Newspaper".freeze, - label: "managing editor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:managingEditor".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mandate, - label: "political mandate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mandate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :manufactory, - label: "manufactory".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:manufactory".freeze, - range: "dbo:Factory".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :manufacturer, - equivalentProperty: "http://www.wikidata.org/entity/P176".freeze, - label: "manufacturer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:manufacturer".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :map, - comment: %(A map of the place.).freeze, - domain: "dbo:Place".freeze, - equivalentProperty: "schema:maps".freeze, - label: "map".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:map".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mapCaption, - domain: "dbo:Place".freeze, - label: "map caption".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mapCaption".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mapDescription, - domain: "dbo:Place".freeze, - label: "map description".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mapDescription".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :march, - domain: "dbo:MilitaryUnit".freeze, - label: "march".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:march".freeze, - range: "dbo:MusicalWork".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :marketCapitalisation, - domain: "dbo:Company".freeze, - label: "market capitalisation ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:marketCapitalisation".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :mascot, - comment: %(something, especially a person or animal, used to symbolize a sports team, company, organization or other group.).freeze, - label: "mascot".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mascot".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mass, - label: "mass (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mass".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :massif, - domain: "dbo:SkiResort".freeze, - label: "massif".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:massif".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mastersWins, - domain: "dbo:Person".freeze, - label: "masters wins".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mastersWins".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :matchPoint, - domain: "dbo:Person".freeze, - label: "match point".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:matchPoint".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :material, - label: "material".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:material".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :max, - label: "max".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:max".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maxAbsoluteMagnitude, - domain: "dbo:CelestialBody".freeze, - label: "maximum absolute magnitude".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maxAbsoluteMagnitude".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maxApparentMagnitude, - domain: "dbo:CelestialBody".freeze, - label: "maximum apparent magnitude".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maxApparentMagnitude".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maxTime, - comment: %(Maximum preparation time of a recipe / Food).freeze, - domain: "dbo:Food".freeze, - label: "maximum preparation time (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maxTime".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maximumArea, - domain: "dbo:Place".freeze, - label: "maximum area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maximumArea".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maximumAreaQuote, - domain: "dbo:Place".freeze, - label: "maximum area quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maximumAreaQuote".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maximumBoatBeam, - domain: "dbo:Canal".freeze, - label: "maximum boat beam (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maximumBoatBeam".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maximumBoatLength, - domain: "dbo:Canal".freeze, - label: "maximum boat length (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maximumBoatLength".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maximumDepth, - comment: %(Source of the value can be declare by .).freeze, - domain: "dbo:Place".freeze, - label: "maximum depth (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maximumDepth".freeze, - range: "xsd:double".freeze, - subPropertyOf: "dbo:depth".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maximumDepthQuote, - comment: %(Source of the value.).freeze, - domain: "dbo:Place".freeze, - label: "maximum depth quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maximumDepthQuote".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maximumDischarge, - label: "maximum discharge (m³/s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maximumDischarge".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maximumElevation, - comment: %(maximum elevation above the sea level).freeze, - domain: "dbo:Place".freeze, - label: "maximum elevation (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maximumElevation".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maximumInclination, - domain: "dbo:LaunchPad".freeze, - label: "maximum inclination".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maximumInclination".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :maximumTemperature, - domain: "dbo:Planet".freeze, - label: "maximum temperature (K)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:maximumTemperature".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mayor, - label: "mayor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mayor".freeze, - range: "dbo:Mayor".freeze, - subPropertyOf: "dbo:Leader".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mayorArticle, - domain: "dbo:Place".freeze, - label: "mayor article".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mayorArticle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mayorCouncillor, - label: "mayor councillor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mayorCouncillor".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mayorFunction, - domain: "dbo:SwitzerlandSettlement".freeze, - label: "mayor function of a switzerland settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mayorFunction".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mayorMandate, - domain: "dbo:Mayor".freeze, - label: "mayorMandate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mayorMandate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mayorTitle, - domain: "dbo:HungarySettlement".freeze, - label: "mayor title of a hungarian settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mayorTitle".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mbaId, - comment: %(MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.).freeze, - label: "MBA Id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mbaId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :meanRadius, - domain: "dbo:Planet".freeze, - label: "mean radius (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:meanRadius".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :meanTemperature, - domain: "dbo:Planet".freeze, - label: "mean temperature (K)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:meanTemperature".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :meaning, - label: "meaning".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:meaning".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :measurements, - domain: "dbo:Person".freeze, - label: "measurements".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:measurements".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :medalist, - domain: "dbo:SportsEvent".freeze, - label: "medalist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:medalist".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :media, - domain: "dbo:Person".freeze, - label: "media".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:media".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mediaItem, - comment: %(A media file \(such as audio, video or images\) associated with the subject).freeze, - label: "media item".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mediaItem".freeze, - range: "dbo:File".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mediaType, - comment: %(Print / On-line \(then binding types etc. if relevant\)).freeze, - domain: "dbo:WrittenWork".freeze, - label: "media type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mediaType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :medicalCause, - domain: "dbo:Disease".freeze, - label: "medical cause".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:medicalCause".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :medicalDiagnosis, - domain: "dbo:Disease".freeze, - label: "medical diagnosis".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:medicalDiagnosis".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :medicalSpecialty, - domain: "dbo:Disease".freeze, - label: "medical specialty".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:medicalSpecialty".freeze, - range: "dbo:MedicalSpecialty".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :medication, - domain: "dbo:Disease".freeze, - label: "medication".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:medication".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :medlinePlus, - label: "MedlinePlus".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:medlinePlus".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :meetingBuilding, - domain: "dbo:Legislature".freeze, - label: "meeting building".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:meetingBuilding".freeze, - range: "dbo:Building".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :meetingCity, - domain: "dbo:Legislature".freeze, - label: "meeting city".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:meetingCity".freeze, - range: "dbo:Settlement".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :meetingRoad, - comment: %(A road that crosses another road at the junction.).freeze, - domain: "dbo:RoadJunction".freeze, - label: "meeting road".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:meetingRoad".freeze, - range: "dbo:Road".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :meltingPoint, - label: "melting point (K)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:meltingPoint".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :member, - domain: "dbo:Person".freeze, - label: "member".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:member".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :memberOfParliament, - label: "Member of Parliament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:memberOfParliament".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :membership, - domain: "dbo:Organisation".freeze, - label: "membership".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:membership".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :membershipAsOf, - domain: "dbo:Organisation,_Parish".freeze, - label: "date membership established".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:membershipAsOf".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mentor, - comment: %(A wise and trusted counselor or teacher).freeze, - domain: "dbo:Artist".freeze, - label: "mentor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mentor".freeze, - range: "dbo:Artist".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mergedSettlement, - domain: "dbo:Settlement".freeze, - label: "merged settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mergedSettlement".freeze, - range: "dbo:Settlement".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mergedWith, - domain: "dbo:Organisation".freeze, - label: "merged with".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mergedWith".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mergerDate, - domain: "dbo:Place".freeze, - label: "merger date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mergerDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :meshId, - domain: "dbo:Disease".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P486".freeze, - label: "MeSH ID".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:meshId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :meshName, - domain: "dbo:AnatomicalStructure".freeze, - label: "MeSH name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:meshName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :meshNumber, - domain: "dbo:AnatomicalStructure".freeze, - label: "MeSH number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:meshNumber".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :messierName, - comment: %(Name for Messier objects).freeze, - domain: "dbo:CelestialBody".freeze, - label: "Messier name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:messierName".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :metropolitanBorough, - domain: "dbo:PopulatedPlace".freeze, - label: "metropolitan borough".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:metropolitanBorough".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mgiid, - comment: %(Mouse Genomic Informatics ID).freeze, - domain: "dbo:Biomolecule".freeze, - label: "mgiid".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mgiid".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :militaryBranch, - comment: %(The service branch \(Army, Navy, etc.\) a person is part of.).freeze, - domain: "dbo:MilitaryPerson".freeze, - label: "military branch".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:militaryBranch".freeze, - range: "dbo:MilitaryUnit".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :militaryCommand, - comment: %(For persons who are notable as commanding officers, the units they commanded. Dates should be given if multiple notable commands were held.).freeze, - domain: "dbo:MilitaryPerson".freeze, - label: "military command".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:militaryCommand".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :militaryFunction, - domain: "dbo:MilitaryPerson".freeze, - label: "military function".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:militaryFunction".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :militaryGovernment, - label: "military government".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:militaryGovernment".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :militaryRank, - comment: %(The highest rank achieved by a person.).freeze, - domain: "dbo:MilitaryPerson".freeze, - label: "military rank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:militaryRank".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :militaryService, - domain: "dbo:Person".freeze, - label: "military service".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:militaryService".freeze, - range: "dbo:MilitaryService".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :militaryUnit, - comment: %(For persons who are not notable as commanding officers, the unit \(company, battalion, regiment, etc.\) in which they served.).freeze, - domain: "dbo:MilitaryPerson".freeze, - label: "military unit".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:militaryUnit".freeze, - range: "dbo:MilitaryUnit".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :militaryUnitSize, - comment: %(the size of the military unit).freeze, - label: "military unit size".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:militaryUnitSize".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :millSpan, - domain: "dbo:Mill".freeze, - label: "mill span (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:millSpan".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :millType, - domain: "dbo:Mill".freeze, - label: "mill type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:millType".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :millsCodeBE, - comment: %(mills code from the Belgian database on mills).freeze, - domain: "dbo:Mill".freeze, - label: "mill code BE".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:millsCodeBE".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :millsCodeDutch, - domain: "dbo:Mill".freeze, - label: "mill code NL".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:millsCodeDutch".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :millsCodeNL, - comment: %(mills code from the central Dutch database on mills).freeze, - domain: "dbo:Mill".freeze, - label: "mill code NL".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:millsCodeNL".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :millsCodeNLVerdwenen, - domain: "dbo:Mill".freeze, - label: "mill dissapeared code NL".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:millsCodeNLVerdwenen".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :millsCodeNLWindmotoren, - domain: "dbo:Mill".freeze, - label: "millsCodeNLWindmotoren".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:millsCodeNLWindmotoren".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :min, - label: "min".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:min".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :minTime, - comment: %(Minimum preparation time of a recipe / Food).freeze, - domain: "dbo:Food".freeze, - label: "minimum preparation time (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:minTime".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :minimumArea, - domain: "dbo:Place".freeze, - label: "minimum area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:minimumArea".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :minimumAreaQuote, - domain: "dbo:Place".freeze, - label: "minimum area quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:minimumAreaQuote".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :minimumDischarge, - label: "minimum discharge (m³/s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:minimumDischarge".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :minimumElevation, - comment: %(minimum elevation above the sea level).freeze, - domain: "dbo:Place".freeze, - label: "minimum elevation (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:minimumElevation".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :minimumInclination, - domain: "dbo:LaunchPad".freeze, - label: "minimum inclination".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:minimumInclination".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :minimumTemperature, - domain: "dbo:Planet".freeze, - label: "minimum temperature (K)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:minimumTemperature".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :minister, - label: "minister".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:minister".freeze, - range: "dbo:Politician".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :minority, - domain: "dbo:Settlement".freeze, - label: "minority".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:minority".freeze, - range: "dbo:Group".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :minorityFloorLeader, - comment: %(number of office holder).freeze, - label: "minority floor leader".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:minorityFloorLeader".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :minorityLeader, - comment: %(number of office holder).freeze, - label: "minority leader".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:minorityLeader".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mirDockings, - domain: "dbo:SpaceShuttle".freeze, - label: "mir dockings".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mirDockings".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mission, - label: "mission".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mission".freeze, - range: "dbo:SpaceMission".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :missionDuration, - domain: "dbo:SpaceMission".freeze, - label: "mission duration (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:missionDuration".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :missions, - domain: "dbo:SpaceShuttle".freeze, - label: "missions".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:missions".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :model, - domain: "dbo:Sales".freeze, - label: "model".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:model".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :modelEndDate, - domain: "dbo:MeanOfTransportation".freeze, - label: "model end date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:modelEndDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :modelEndYear, - domain: "dbo:MeanOfTransportation".freeze, - label: "model end year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:modelEndYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :modelLineVehicle, - domain: "dbo:MeanOfTransportation".freeze, - label: "type series".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:modelLineVehicle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :modelStartDate, - domain: "dbo:MeanOfTransportation".freeze, - label: "model start date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:modelStartDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :modelStartYear, - domain: "dbo:MeanOfTransportation".freeze, - label: "model start year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:modelStartYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :molarMass, - domain: "dbo:ChemicalSubstance".freeze, - label: "molar mass".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:molarMass".freeze, - range: "xsd:double".freeze, - subPropertyOf: "dbo:mass".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :molecularWeight, - domain: "dbo:ChemicalSubstance".freeze, - label: "molecular weight".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:molecularWeight".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :monarch, - label: "monarch".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:monarch".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :month, - label: "month".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:month".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mood, - domain: "dbo:Person".freeze, - label: "mood".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mood".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mostDownPoint, - domain: "dbo:NorwaySettlement".freeze, - label: "most down point of a norwegian settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mostDownPoint".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mostSuccessfulPlayer, - comment: %(the best player in a certain sport competition. E.g, in a football competition, the player that scored more goals.).freeze, - domain: "dbo:SportsEvent".freeze, - label: "most successful player".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mostSuccessfulPlayer".freeze, - range: "dbo:Athlete".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mostWins, - domain: "dbo:Race".freeze, - label: "most wins".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mostWins".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mother, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P25".freeze, - label: "mother".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mother".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :motive, - domain: "dbo:Criminal".freeze, - label: "motive".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:motive".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :motto, - label: "motto".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:motto".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mount, - domain: "dbo:Person".freeze, - label: "mount".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mount".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mountainRange, - domain: "dbo:Mountain".freeze, - label: "mountain range".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mountainRange".freeze, - range: "dbo:MountainRange".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mouthCountry, - domain: "dbo:River".freeze, - label: "mouth country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mouthCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mouthDistrict, - domain: "dbo:River".freeze, - label: "mouth district".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mouthDistrict".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mouthElevation, - label: "mouth elevation (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mouthElevation".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mouthMountain, - domain: "dbo:River".freeze, - label: "mouth mountain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mouthMountain".freeze, - range: "dbo:Mountain".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mouthPlace, - domain: "dbo:River".freeze, - label: "mouth place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mouthPlace".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mouthPosition, - domain: "dbo:River".freeze, - label: "mouth position".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mouthPosition".freeze, - range: "geo:SpatialThing".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mouthRegion, - domain: "dbo:River".freeze, - label: "mouth region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mouthRegion".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mouthState, - domain: "dbo:River".freeze, - label: "mouth state".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mouthState".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :movement, - comment: %(artistic movement or school with which artist is associated).freeze, - domain: "dbo:Artist".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P135".freeze, - label: "movement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:movement".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :movie, - domain: "dbo:Person".freeze, - label: "movie".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:movie".freeze, - range: "dbo:Film".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :mukhtar, - domain: "dbo:LebanonSettlement".freeze, - label: "mukthar of a lebanon settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mukhtar".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :municipality, - label: "municipality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:municipality".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :municipalityAbsorbedBy, - domain: "dbo:FormerMunicipality".freeze, - label: "absorbed by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:municipalityAbsorbedBy".freeze, - range: "dbo:Municipality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :municipalityCode, - domain: "dbo:Place".freeze, - label: "municipality code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:municipalityCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :municipalityRenamedTo, - domain: "dbo:Municipality".freeze, - label: "a municipality's new name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:municipalityRenamedTo".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :municipalityType, - domain: "dbo:Municipality".freeze, - label: "type of municipality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:municipalityType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :museum, - domain: "dbo:Artwork".freeze, - label: "museum".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:museum".freeze, - range: "dbo:Museum".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :museumType, - comment: %(This property has been added because 'buildingType' is much more about the place, whereas 'museumType' is about the way the place is being \(or:was\) used).freeze, - domain: "dbo:Museum".freeze, - label: "museumType".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:museumType".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :musicBand, - domain: "dbo:MusicalArtist".freeze, - label: "Music Band".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:musicBand".freeze, - range: "dbo:Band".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :musicBy, - domain: "dbo:Musical".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P86".freeze, - label: "music by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:musicBy".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :musicComposer, - domain: "dbo:Work".freeze, - equivalentProperty: "schema:musicBy".freeze, - label: "music composer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:musicComposer".freeze, - range: "dbo:MusicalArtist".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :musicFormat, - comment: %(The format of the album: EP, Single etc.).freeze, - domain: "dbo:Album".freeze, - label: "musicFormat".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:musicFormat".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :musicFusionGenre, - domain: "dbo:MusicGenre".freeze, - label: "music fusion genre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:musicFusionGenre".freeze, - range: "dbo:MusicGenre".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#overlaps".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :musicSubgenre, - domain: "dbo:MusicGenre".freeze, - label: "music subgenre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:musicSubgenre".freeze, - range: "dbo:MusicGenre".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSpecializedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :musicType, - comment: %(Type is too general. We should be able to distinguish types of music from types of architecture).freeze, - domain: "dbo:MusicalWork".freeze, - label: "musicType".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:musicType".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :musicalArtist, - domain: "dbo:Single".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P175".freeze, - label: "musical artist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:musicalArtist".freeze, - range: "dbo:MusicalArtist".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :musicalBand, - domain: "dbo:Single".freeze, - label: "musical band".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:musicalBand".freeze, - range: "dbo:Band".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :musicalKey, - domain: "dbo:MusicalWork".freeze, - label: "musical key".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:musicalKey".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :musicians, - domain: "dbo:Instrument".freeze, - label: "musicians".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:musicians".freeze, - range: "dbo:MusicalArtist".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :muteCharacterInPlay, - comment: %(Name of a mute character in play.).freeze, - domain: "dbo:Play".freeze, - label: "mute character in play".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:muteCharacterInPlay".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:characterInPlay".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mvp, - domain: "dbo:Athlete".freeze, - label: "mvp".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mvp".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :mythology, - domain: "dbo:MythologicalFigure".freeze, - label: "mythology".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:mythology".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :naacpImageAward, - domain: "dbo:Actor".freeze, - label: "NAACP Image Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:naacpImageAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :name, - label: "name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:name".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nameAsOf, - label: "so named since".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nameAsOf".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nameDay, - domain: "dbo:GivenName".freeze, - label: "name day".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nameDay".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nameInCantoneseChinese, - label: "name in Yue Chinese".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nameInCantoneseChinese".freeze, - range: "rdf:langString".freeze, - subPropertyOf: "dbo:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nameInHangulKorean, - label: "name in Hangul-written Korean".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nameInHangulKorean".freeze, - range: "rdf:langString".freeze, - subPropertyOf: "dbo:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nameInHanjaKorean, - label: "name in Hanja-written (traditional) Korean".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nameInHanjaKorean".freeze, - range: "rdf:langString".freeze, - subPropertyOf: "dbo:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nameInJapanese, - label: "name in Japanese".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nameInJapanese".freeze, - range: "rdf:langString".freeze, - subPropertyOf: "dbo:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nameInMindongyuChinese, - label: "name in Mindongyu Chinese".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nameInMindongyuChinese".freeze, - range: "rdf:langString".freeze, - subPropertyOf: "dbo:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nameInMinnanyuChinese, - label: "name in Minnanyu Chinese".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nameInMinnanyuChinese".freeze, - range: "rdf:langString".freeze, - subPropertyOf: "dbo:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nameInPinyinChinese, - label: "name in Pinyin Chinese".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nameInPinyinChinese".freeze, - range: "rdf:langString".freeze, - subPropertyOf: "dbo:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nameInSimplifiedChinese, - label: "name in Simplified Chinese".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nameInSimplifiedChinese".freeze, - range: "rdf:langString".freeze, - subPropertyOf: "dbo:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nameInTraditionalChinese, - label: "name in Traditional Chinese".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nameInTraditionalChinese".freeze, - range: "rdf:langString".freeze, - subPropertyOf: "dbo:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nameInWadeGilesChinese, - label: "name in the Wade-Giles transscription of Chinese".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nameInWadeGilesChinese".freeze, - range: "rdf:langString".freeze, - subPropertyOf: "dbo:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :namedAfter, - equivalentProperty: "http://www.wikidata.org/entity/P138".freeze, - label: "named after".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:namedAfter".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :namedByLanguage, - domain: "dbo:Place".freeze, - label: "named by language".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:namedByLanguage".freeze, - range: "dbo:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :names, - domain: "dbo:Openswarm".freeze, - label: "names".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:names".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :narrator, - domain: "dbo:Work".freeze, - label: "narrator".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:narrator".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nation, - domain: "dbo:PopulatedPlace".freeze, - label: "nation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nationalAffiliation, - domain: "dbo:PoliticalParty".freeze, - label: "national affiliation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalAffiliation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nationalChampionship, - domain: "dbo:Athlete".freeze, - label: "national championship".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalChampionship".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nationalFilmAward, - domain: "dbo:Actor".freeze, - label: "National Film Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalFilmAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nationalOlympicCommittee, - domain: "dbo:OlympicResult".freeze, - label: "National Olympic Committee".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalOlympicCommittee".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nationalRanking, - domain: "dbo:EducationalInstitution".freeze, - label: "national ranking".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalRanking".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nationalSelection, - domain: "dbo:Agent".freeze, - label: "national selection".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalSelection".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nationalTeam, - domain: "dbo:Athlete".freeze, - label: "national team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalTeam".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nationalTeamMatchPoint, - domain: "dbo:Person".freeze, - label: "national team match point".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalTeamMatchPoint".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nationalTeamYear, - domain: "dbo:Person".freeze, - label: "national team year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalTeamYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nationalTopographicSystemMapNumber, - domain: "dbo:Place".freeze, - label: "National Topographic System map number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalTopographicSystemMapNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nationalTournament, - domain: "dbo:Person".freeze, - label: "National tournament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalTournament".freeze, - range: "dbo:Tournament".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nationalTournamentBronze, - domain: "dbo:Person".freeze, - label: "national tournament bronze".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalTournamentBronze".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nationalTournamentGold, - domain: "dbo:Person".freeze, - label: "national tournament gold".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalTournamentGold".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nationalTournamentSilver, - domain: "dbo:Person".freeze, - label: "national tournament silver".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalTournamentSilver".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nationalYears, - domain: "dbo:SoccerPlayer".freeze, - label: "national years".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationalYears".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nationality, - domain: "dbo:Person".freeze, - equivalentProperty: "schema:nationality".freeze, - label: "nationality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nationality".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :ncaaSeason, - domain: "dbo:Athlete".freeze, - label: "ncaa season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ncaaSeason".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ncaaTeam, - domain: "dbo:Athlete".freeze, - label: "ncaa team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ncaaTeam".freeze, - range: "dbo:SportsTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :ncbhof, - domain: "dbo:Athlete".freeze, - label: "ncbhof".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ncbhof".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nciId, - domain: "dbo:Disease".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1395".freeze, - label: "NCI".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nciId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ndlId, - comment: %(National Diet Library of Japan identificator. http://id.ndl.go.jp/auth/ndlna/$1).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P349".freeze, - label: "NDL id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ndlId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nearestCity, - domain: "dbo:Place".freeze, - label: "nearest city".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nearestCity".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#nearTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :neighboringMunicipality, - domain: "dbo:PopulatedPlace".freeze, - label: "neighboring municipality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:neighboringMunicipality".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#nearTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :neighbourConstellations, - domain: "dbo:Constellation".freeze, - label: "neighbour constellations".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:neighbourConstellations".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :neighbourRegion, - domain: "dbo:Place".freeze, - label: "neighbour region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:neighbourRegion".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :neighbourhood, - domain: "dbo:HungarySettlement".freeze, - label: "neighbourhood of a hungarian settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:neighbourhood".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nerve, - domain: "dbo:AnatomicalStructure".freeze, - label: "nerve".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nerve".freeze, - range: "dbo:Nerve".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :netIncome, - domain: "dbo:Company".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P2295".freeze, - label: "net income ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:netIncome".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :network, - domain: "dbo:Broadcaster".freeze, - label: "network".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:network".freeze, - range: "dbo:Broadcaster".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :networth, - domain: "dbo:Person".freeze, - label: "networth ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:networth".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :newspaper, - label: "newspaper".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:newspaper".freeze, - range: "dbo:PeriodicalLiterature".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nextEntity, - domain: "dbo:Place".freeze, - label: "next entity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nextEntity".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nextEvent, - domain: "dbo:Event".freeze, - label: "next event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nextEvent".freeze, - range: "dbo:Event".freeze, - subPropertyOf: ["dbo:followedBy".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#precedes".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nextMission, - domain: "dbo:SpaceMission".freeze, - label: "next mission".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nextMission".freeze, - range: "dbo:SpaceMission".freeze, - subPropertyOf: ["dbo:followedBy".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#precedes".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nflCode, - domain: "dbo:Athlete".freeze, - label: "nfl code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nflCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nflSeason, - domain: "dbo:Athlete".freeze, - label: "nfl season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nflSeason".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nflTeam, - domain: "dbo:Athlete".freeze, - label: "nfl team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nflTeam".freeze, - range: "dbo:SportsTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :ngcName, - comment: %(Name for NGC objects).freeze, - domain: "dbo:CelestialBody".freeze, - label: "NGC name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ngcName".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:name".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nisCode, - comment: %(Indexing code used by the Belgium National Statistical Institute to identify populated places.).freeze, - domain: "dbo:PopulatedPlace".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1567".freeze, - label: "NIS code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nisCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nlaId, - comment: %(NLA Trove’s People and Organisation view allows the discovery of biographical and other contextual information about people and organisations. Search also available via VIAF.).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P409".freeze, - label: "NLA Id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nlaId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nndbId, - domain: "dbo:Person".freeze, - label: "NNDB id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nndbId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :noContest, - domain: "dbo:Boxer".freeze, - label: "no contest".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:noContest".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nobelLaureates, - domain: "dbo:School".freeze, - label: "nobel laureates".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nobelLaureates".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nominee, - label: "nominee".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nominee".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nonFictionSubject, - comment: %(The subject of a non-fiction book \(e.g.: History, Biography, Cookbook, Climate change, ...\).).freeze, - domain: "dbo:WrittenWork".freeze, - label: "non-fiction subject".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nonFictionSubject".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isAbout".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nonProfessionalCareer, - domain: "dbo:Person".freeze, - label: "non professional career".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nonProfessionalCareer".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nord, - domain: "dbo:Disease".freeze, - label: "NORD".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nord".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :northEastPlace, - comment: %(indicates another place situated north-east.).freeze, - domain: "dbo:Place".freeze, - label: "north-east place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:northEastPlace".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "dbo:closeTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :northPlace, - comment: %(indicates another place situated north.).freeze, - domain: "dbo:Place".freeze, - label: "north place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:northPlace".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "dbo:closeTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :northWestPlace, - comment: %(indicates another place situated north-west.).freeze, - domain: "dbo:Place".freeze, - label: "north-west place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:northWestPlace".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "dbo:closeTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :notSolubleIn, - domain: "dbo:ChemicalSubstance".freeze, - label: "not soluble in".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:notSolubleIn".freeze, - range: "dbo:ChemicalSubstance".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :notableCommander, - domain: "dbo:MilitaryUnit".freeze, - label: "notable commander".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:notableCommander".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :notableFeatures, - domain: "dbo:Galaxy".freeze, - label: "notable features".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:notableFeatures".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :notableIdea, - domain: "dbo:Person".freeze, - label: "notableIdea".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:notableIdea".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :notableStudent, - domain: "dbo:Scientist".freeze, - label: "notable student".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:notableStudent".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :notableWine, - domain: "dbo:Grape".freeze, - label: "notable wine".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:notableWine".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :notableWork, - comment: %(Notable work created by the subject \(eg Writer, Artist, Engineer\) or about the subject \(eg ConcentrationCamp\)).freeze, - label: "notable work".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:notableWork".freeze, - range: "dbo:Work".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :note, - domain: "dbo:AutomobileEngine".freeze, - label: "note".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:note".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :noteOnPlaceOfBurial, - domain: "dbo:MilitaryPerson".freeze, - label: "note on place of burial".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:noteOnPlaceOfBurial".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :noteOnRestingPlace, - domain: "dbo:Person".freeze, - label: "note on resting place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:noteOnRestingPlace".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :notes, - comment: %(additional notes that better describe the entity.).freeze, - label: "notes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:notes".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :notifyDate, - domain: "dbo:SiteOfSpecialScientificInterest".freeze, - label: "notify date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:notifyDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :novel, - domain: "dbo:FictionalCharacter".freeze, - label: "novel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:novel".freeze, - range: "dbo:Novel".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nrhpReferenceNumber, - domain: "dbo:HistoricPlace".freeze, - label: "NRHP Reference Number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nrhpReferenceNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nrhpType, - comment: %(Type of historic place as defined by the US National Park Service. For instance National Historic Landmark, National Monument or National Battlefield.).freeze, - domain: "dbo:HistoricPlace".freeze, - label: "NRHP type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nrhpType".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :nssdcId, - domain: "dbo:SpaceStation".freeze, - label: "NSSDC ID".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nssdcId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :number, - comment: %(Jersey number of an Athlete \(sports player, eg "99"\) or sequential number of an Album \(eg "Third studio album"\)).freeze, - domain: "dbo:Athlete".freeze, - label: "number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:number".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberBuilt, - domain: "dbo:Aircraft".freeze, - label: "number built".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberBuilt".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfAcademicStaff, - domain: "dbo:EducationalInstitution".freeze, - label: "number of academic staff".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfAcademicStaff".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfAlbums, - comment: %(the total number of albums released by the musical artist).freeze, - domain: "dbo:MusicalArtist".freeze, - label: "number of albums".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfAlbums".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfArrondissement, - domain: "dbo:Department".freeze, - label: "number of arrondissement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfArrondissement".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfBombs, - domain: "dbo:MilitaryAircraft".freeze, - label: "number of bombs".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfBombs".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfBronzeMedalsWon, - domain: "dbo:SportCompetitionResult".freeze, - label: "number of bronze medals won".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfBronzeMedalsWon".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfCanton, - domain: "dbo:Department".freeze, - label: "number of canton".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfCanton".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfCantons, - domain: "dbo:PopulatedPlace".freeze, - label: "Number Of Cantons".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfCantons".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfCapitalDeputies, - domain: "dbo:PopulatedPlace".freeze, - label: "Number Of Capital Deputies".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfCapitalDeputies".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfCity, - domain: "dbo:Continent".freeze, - label: "number of contries inside en continent".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfCity".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfClasses, - comment: %(number of defined Classes).freeze, - label: "numberOfClasses".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfClasses".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfClassesWithResource, - comment: %(number of class in DBpedia with atleast single resource \(class entity\)).freeze, - label: "numberOfClassesWithResource".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfClassesWithResource".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfClassrooms, - domain: "dbo:School".freeze, - label: "number of classrooms".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfClassrooms".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasRegion".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :numberOfClubs, - domain: "dbo:Activity".freeze, - label: "number of clubs".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfClubs".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfCollectionItems, - comment: %(Indication as to the size of the collection of this library).freeze, - domain: "dbo:Library".freeze, - label: "number of items in collection".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfCollectionItems".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfCompetitors, - domain: "dbo:OlympicResult".freeze, - label: "number of competitors".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfCompetitors".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfCounties, - domain: "dbo:PopulatedPlace".freeze, - label: "number of counties".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfCounties".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfCountries, - domain: "dbo:AdministrativeRegion".freeze, - label: "number of countries".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfCountries".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfCrew, - domain: "dbo:MeanOfTransportation".freeze, - label: "number of crew".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfCrew".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfDeaths, - domain: "dbo:ConcentrationCamp".freeze, - label: "number of deaths".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfDeaths".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfDependency, - domain: "dbo:Continent".freeze, - label: "number of dependency".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfDependency".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfDisambiguates, - comment: %(number of disambiguation pages in DBpedia).freeze, - label: "numberOfDisambiguates".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfDisambiguates".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfDistrict, - domain: "dbo:Department".freeze, - label: "number of district".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfDistrict".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfDistricts, - domain: "dbo:Regency".freeze, - label: "number of districts".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfDistricts".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfDoctoralStudents, - domain: "dbo:University".freeze, - label: "number of doctoral students".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfDoctoralStudents".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfDoors, - domain: "dbo:Automobile".freeze, - label: "number of doors".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfDoors".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfEmployees, - domain: "dbo:Organisation".freeze, - label: "number of employees".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfEmployees".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfEntrances, - domain: "dbo:Cave".freeze, - label: "number of entrances".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfEntrances".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfEpisodes, - domain: "dbo:TelevisionShow".freeze, - equivalentProperty: "schema:numberOfEpisodes".freeze, - label: "number of episodes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfEpisodes".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfFederalDeputies, - domain: "dbo:PopulatedPlace".freeze, - label: "Number Of Federal Deputies".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfFederalDeputies".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfFilms, - domain: "dbo:AdultActor".freeze, - label: "number of films".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfFilms".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfGoals, - domain: "dbo:CareerStation".freeze, - label: "number of goals scored".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfGoals".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfGoldMedalsWon, - domain: "dbo:SportCompetitionResult".freeze, - label: "number of gold medals won".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfGoldMedalsWon".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfGraduateStudents, - domain: "dbo:EducationalInstitution".freeze, - label: "number of graduate students".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfGraduateStudents".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfGraves, - domain: "dbo:Cemetery".freeze, - label: "number of graves".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfGraves".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfHoles, - domain: "dbo:GolfCourse".freeze, - label: "number of holes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfHoles".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfHouses, - comment: %(Count of the houses in the Protected Area).freeze, - domain: "dbo:ProtectedArea".freeze, - label: "number of houses present)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfHouses".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfIndegree, - label: "number of all indegrees in dbpedia (same ourdegrees are counting repeatedly)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfIndegree".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfIntercommunality, - domain: "dbo:Department".freeze, - label: "number of intercommunality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfIntercommunality".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfIsland, - domain: "dbo:Place".freeze, - label: "number of islands".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfIsland".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfIslands, - domain: "dbo:Island".freeze, - label: "number of islands".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfIslands".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfLanes, - domain: "dbo:RouteOfTransportation".freeze, - label: "number of lanes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfLanes".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfLaps, - domain: "dbo:FormulaOneRacing".freeze, - label: "number of laps".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfLaps".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfLaunches, - domain: "dbo:MeanOfTransportation".freeze, - label: "number of launches".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfLaunches".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfLawyers, - comment: %(Number of lawyers or attorneys in the company.).freeze, - domain: "dbo:LawFirm".freeze, - label: "number of lawyers".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfLawyers".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfLifts, - comment: %(Number of lifts.).freeze, - domain: "dbo:SkiArea".freeze, - label: "number of lifts".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfLifts".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfLines, - comment: %(Number of lines in the transit system.).freeze, - domain: "dbo:PublicTransitSystem".freeze, - label: "number of lines".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfLines".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfLiveAlbums, - comment: %(the number of live albums released by the musical artist).freeze, - domain: "dbo:MusicalArtist".freeze, - label: "number of live albums".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfLiveAlbums".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfLocations, - domain: "dbo:Organisation".freeze, - label: "number of locations".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfLocations".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfMatches, - domain: "dbo:CareerStation".freeze, - label: "number of matches or caps".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfMatches".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfMembers, - domain: "dbo:Legislature".freeze, - label: "number of members".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfMembers".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfMembersAsOf, - domain: "dbo:PoliticalParty".freeze, - label: "number of members as of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfMembersAsOf".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfMinistries, - domain: "dbo:Country".freeze, - label: "number of ministries".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfMinistries".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfMunicipalities, - domain: "dbo:PopulatedPlace".freeze, - label: "Number Of Municipalities".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfMunicipalities".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfMusicalArtistEntities, - domain: "dbo:Country".freeze, - label: "number of MuscialArtist class (entities) in DBpedia".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfMusicalArtistEntities".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfMusicalArtistInstrument, - domain: "dbo:Instrument".freeze, - label: "number of all MuscialArtist playing the instrument".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfMusicalArtistInstrument".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfMusicalArtistStyle, - domain: "dbo:MusicGenre".freeze, - label: "number of all MuscialArtist playing the style".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfMusicalArtistStyle".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfNeighbourhood, - domain: "dbo:GermanSettlement".freeze, - label: "number of neighbourhood".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfNeighbourhood".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfNewlyIntroducedSports, - domain: "dbo:Olympics".freeze, - label: "number of newly introduced sports".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfNewlyIntroducedSports".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfOffices, - comment: %(Number of the company's offices.).freeze, - domain: "dbo:LawFirm".freeze, - label: "number of offices".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfOffices".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfOfficials, - domain: "dbo:OlympicResult".freeze, - label: "number of officials".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfOfficials".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfOrbits, - domain: "dbo:SpaceMission".freeze, - label: "number of orbits".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfOrbits".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfOutdegree, - comment: %(number of all outdegrees in DBpedia \(same ourdegrees are counting repeatedly\). This number is equal to number of all links \(every link is OutDegree link\)).freeze, - label: "numberOfOutdegree".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfOutdegree".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPads, - domain: "dbo:LaunchPad".freeze, - label: "number of pads".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPads".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPages, - comment: %(The books number of pages.).freeze, - domain: "dbo:WrittenWork".freeze, - equivalentProperty: "schema:numberOfPages".freeze, - label: "number of pages".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPages".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfParkingSpaces, - domain: "dbo:Hotel".freeze, - label: "number of parking spaces".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfParkingSpaces".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfParticipatingAthletes, - domain: "dbo:Olympics".freeze, - label: "number of participating athletes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfParticipatingAthletes".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfParticipatingFemaleAthletes, - domain: "dbo:Olympics".freeze, - label: "number of participating female athletes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfParticipatingFemaleAthletes".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfParticipatingMaleAthletes, - domain: "dbo:Olympics".freeze, - label: "number of participating male athletes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfParticipatingMaleAthletes".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfParticipatingNations, - domain: "dbo:Olympics".freeze, - label: "number of participating nations".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfParticipatingNations".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPassengers, - domain: "dbo:Ship".freeze, - label: "number of passengers".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPassengers".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPeopleAttending, - domain: "dbo:Event".freeze, - label: "number of people attending".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPeopleAttending".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPeopleLicensed, - comment: %(nombre de personnes ayant une license pour pratiquer cette activité).freeze, - domain: "dbo:Activity".freeze, - label: "number of licensed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPeopleLicensed".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPersonBornInPlace, - domain: "dbo:Place".freeze, - label: "number of entities of Person class born in the place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPersonBornInPlace".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPersonEntities, - domain: "dbo:Country".freeze, - label: "number of Person class (entities) in DBpedia".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPersonEntities".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPersonFromUniversity, - domain: "dbo:University".freeze, - label: "number of entities of Person class who graduated from the university".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPersonFromUniversity".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPersonInOccupation, - domain: "dbo:PersonFunction".freeze, - label: "number of person in one occupation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPersonInOccupation".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPiersInWater, - comment: %(Number of piers standing in a river or other water in normal conditions.).freeze, - domain: "dbo:Bridge".freeze, - label: "number of piers in water".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPiersInWater".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPixels, - label: "number of pixels (millions)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPixels".freeze, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "dbo:number".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPlatformLevels, - comment: %(Number of levels of platforms at the station.).freeze, - domain: "dbo:Station".freeze, - label: "number of platform levels".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPlatformLevels".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPlayers, - domain: "dbo:Activity".freeze, - label: "number of players".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPlayers".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPostgraduateStudents, - domain: "dbo:University".freeze, - label: "number of postgraduate students".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPostgraduateStudents".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPredicates, - comment: %(number of predicates in DBpedia \(including properties without rdf:type of rdf:Property\)).freeze, - label: "numberOfPredicates".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPredicates".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfProfessionals, - comment: %(number of people who earns his living from a specified activity.).freeze, - domain: "dbo:Activity".freeze, - label: "number of professionals".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfProfessionals".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfProperties, - comment: %(number of defined properties in DBpedia ontology).freeze, - label: "numberOfProperties".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfProperties".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfPropertiesUsed, - comment: %(number of all properties used as predicate in DBpedia).freeze, - label: "numberOfPropertiesUsed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfPropertiesUsed".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfReactors, - domain: "dbo:NuclearPowerStation".freeze, - label: "number of reactors".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfReactors".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfRedirectedResource, - comment: %(number of redirected resource to another one).freeze, - label: "numberOfRedirectedResource".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfRedirectedResource".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfResource, - comment: %(number of all resource in DBpedia \(including disambiguation pages and rediretcs\)).freeze, - label: "numberOfResource".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfResource".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfResourceOfClass, - label: "number of all resource / entities of a class".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfResourceOfClass".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfResourceOfType, - label: "number of resource / entities for concrete type of subject".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfResourceOfType".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfResourceWithType, - comment: %(number of resource in DBpedia with Class type \(= Class entity\)).freeze, - label: "nmberOfResourceWithType".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfResourceWithType".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfRestaurants, - domain: "dbo:Hotel".freeze, - label: "number of restaurants".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfRestaurants".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfRockets, - domain: "dbo:MilitaryAircraft".freeze, - label: "number of rockets".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfRockets".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfRooms, - domain: "dbo:Building".freeze, - label: "number of rooms".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfRooms".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfRun, - domain: "dbo:Person".freeze, - label: "number of run".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfRun".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSeasons, - domain: "dbo:TelevisionShow".freeze, - label: "number of seasons".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSeasons".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSeats, - domain: "dbo:MeanOfTransportation".freeze, - label: "number of seats".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSeats".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSeatsInParliament, - comment: %(number of seats in House of Commons-like parliaments).freeze, - domain: "dbo:PoliticalParty".freeze, - label: "number of seats in parliament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSeatsInParliament".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSettlement, - domain: "dbo:Department".freeze, - label: "number of settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSettlement".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSettlementsInCountry, - domain: "dbo:Country".freeze, - label: "number of entities of Settlement class in country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSettlementsInCountry".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSilverMedalsWon, - domain: "dbo:SportCompetitionResult".freeze, - label: "number of silver medals won".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSilverMedalsWon".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSoccerPlayerInCountryRepre, - domain: "dbo:SoccerClub".freeze, - label: "number of SoccerPlayers in Country Repre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSoccerPlayerInCountryRepre".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSoccerPlayersBornInPlace, - domain: "dbo:Place".freeze, - label: "number of SoccerPlayers born in Place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSoccerPlayersBornInPlace".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSoccerPlayersInTeam, - domain: "dbo:SoccerClub".freeze, - label: "number of SoccerPlayers in entity of SoccerClub".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSoccerPlayersInTeam".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSpans, - comment: %(Number of spans or arches.).freeze, - domain: "dbo:Bridge".freeze, - label: "number of spans".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSpans".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSpeakers, - domain: "dbo:Language".freeze, - label: "number of speakers".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSpeakers".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSports, - label: "number of sports".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSports".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSportsEvents, - label: "number of sports events".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSportsEvents".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfStaff, - domain: "dbo:Organisation".freeze, - label: "number of staff".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfStaff".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfStars, - domain: "dbo:Constellation".freeze, - label: "number of stars".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfStars".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfStateDeputies, - domain: "dbo:PopulatedPlace".freeze, - label: "Number Of State Deputies".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfStateDeputies".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfStations, - comment: %(Number of stations or stops.).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "number of stations".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfStations".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfStores, - domain: "dbo:ShoppingMall".freeze, - label: "number of sores".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfStores".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfStudents, - domain: "dbo:EducationalInstitution".freeze, - label: "number of students".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfStudents".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfStudioAlbums, - comment: %(the number of studio albums released by the musical artist).freeze, - domain: "dbo:MusicalArtist".freeze, - label: "number of studio albums".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfStudioAlbums".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfSuites, - domain: "dbo:Hotel".freeze, - label: "number of suites".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfSuites".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfTeams, - domain: "dbo:SportsLeague".freeze, - label: "number of teams".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfTeams".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfTracks, - comment: %(Number of tracks of a railway or railway station.).freeze, - domain: "dbo:Infrastructure".freeze, - label: "number of tracks".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfTracks".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfTrails, - comment: %(Number of trails in ski area.).freeze, - domain: "dbo:SkiArea".freeze, - label: "number of trails".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfTrails".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfTriples, - comment: %(number of triples in DBpedia).freeze, - label: "numberOfTriples".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfTriples".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfTurns, - domain: "dbo:RaceTrack".freeze, - label: "number of turns".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfTurns".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfUndergraduateStudents, - domain: "dbo:EducationalInstitution".freeze, - label: "number of undergraduate students".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfUndergraduateStudents".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfUniqeResources, - comment: %(number of unique resource without redirecting).freeze, - label: "numberOfUniqeResources".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfUniqeResources".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfUseOfProperty, - label: "number of use of a property".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfUseOfProperty".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfVehicles, - comment: %(Number of vehicles used in the transit system.).freeze, - domain: "dbo:PublicTransitSystem".freeze, - label: "number of vehicles".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfVehicles".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfVillages, - domain: "dbo:District".freeze, - label: "number of villages".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfVillages".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfVineyards, - domain: "dbo:WineRegion".freeze, - label: "number of vineyards".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfVineyards".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfVisitors, - label: "number of visitors".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfVisitors".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfVisitorsAsOf, - comment: %(The year in which number of visitors occurred.).freeze, - domain: "dbo:HistoricPlace".freeze, - label: "number of visitors as of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfVisitorsAsOf".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfVolumes, - domain: "dbo:WrittenWork".freeze, - label: "number of volumes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfVolumes".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfVolunteers, - domain: "dbo:Organisation".freeze, - label: "number of volunteers".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfVolunteers".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberOfWineries, - domain: "dbo:WineRegion".freeze, - label: "number of wineries".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberOfWineries".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :numberSold, - comment: %(Number of things \(eg vehicles\) sold).freeze, - domain: "dbo:Sales".freeze, - label: "number sold".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:numberSold".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :nutsCode, - comment: %(Nomenclature of Territorial Units for Statistics \(NUTS\) is a geocode standard for referencing the subdivisions of countries for statistical purposes. The standard is developed and regulated by the European Union, and thus only covers the member states of the EU in detail.).freeze, - domain: "dbo:Place".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P605".freeze, - label: "NUTS code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:nutsCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :observatory, - domain: "dbo:Island".freeze, - label: "observatory".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:observatory".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :occupation, - equivalentProperty: "http://www.wikidata.org/entity/P106".freeze, - label: "occupation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:occupation".freeze, - range: "dbo:PersonFunction".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasRole".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :oclc, - comment: %(Online Computer Library Center number).freeze, - domain: "dbo:WrittenWork".freeze, - label: "OCLC".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:oclc".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :odor, - label: "Odor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:odor".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :offeredClasses, - domain: "dbo:EducationalInstitution".freeze, - label: "offered classes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:offeredClasses".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :office, - label: "(political) office".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:office".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :officerInCharge, - domain: "dbo:University".freeze, - label: "officer in charge".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:officerInCharge".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :officialLanguage, - domain: "dbo:PopulatedPlace".freeze, - label: "official language".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:officialLanguage".freeze, - range: "dbo:Language".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :officialName, - domain: "dbo:Settlement".freeze, - label: "official name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:officialName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :officialOpenedBy, - domain: "dbo:Olympics".freeze, - label: "official opened by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:officialOpenedBy".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :officialSchoolColour, - comment: %(The official colour of the EducationalInstitution represented by the colour name \(e.g.: red or green\).).freeze, - domain: "dbo:EducationalInstitution".freeze, - label: "official school colour".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:officialSchoolColour".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:ColourName".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ofsCode, - comment: %(Identifier used by the Swiss Federal Institute for Statistics).freeze, - domain: "dbo:Settlement".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P771".freeze, - label: "ofs code of a settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ofsCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:isoCode".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :oilSystem, - domain: "dbo:AutomobileEngine".freeze, - label: "oil system".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:oilSystem".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasComponent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :okatoCode, - comment: %(Code used to indentify populated places in Russia).freeze, - domain: "dbo:PopulatedPlace".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P721".freeze, - label: "okato code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:okatoCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :oldDistrict, - domain: "dbo:PopulatedPlace".freeze, - label: "old district".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:oldDistrict".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :oldName, - domain: "dbo:PopulatedPlace".freeze, - label: "old name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:oldName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :oldProvince, - domain: "dbo:PopulatedPlace".freeze, - label: "old province".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:oldProvince".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :oldTeamCoached, - domain: "dbo:Athlete".freeze, - label: "old team coached".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:oldTeamCoached".freeze, - range: "dbo:SportsTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :oldcode, - domain: "dbo:OlympicResult".freeze, - label: "oldcode".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:oldcode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :olivierAward, - domain: "dbo:Comedian".freeze, - label: "Olivier Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:olivierAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :olympicGames, - domain: "dbo:Person".freeze, - label: "olympic games".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:olympicGames".freeze, - range: "dbo:Tournament".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :olympicGamesBronze, - domain: "dbo:Person".freeze, - label: "olympic games bronze".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:olympicGamesBronze".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :olympicGamesGold, - domain: "dbo:Person".freeze, - label: "olympic games gold".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:olympicGamesGold".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :olympicGamesSilver, - domain: "dbo:Person".freeze, - label: "olympic games silver".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:olympicGamesSilver".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :olympicGamesWins, - domain: "dbo:Person".freeze, - label: "olympic games wins".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:olympicGamesWins".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :olympicOathSwornBy, - domain: "dbo:Olympics".freeze, - label: "olympic oath sworn by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:olympicOathSwornBy".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :olympicOathSwornByAthlete, - domain: "dbo:Olympics".freeze, - label: "olympic oath sworn by athlete".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:olympicOathSwornByAthlete".freeze, - range: "dbo:Person".freeze, - subPropertyOf: ["dbo:olympicOathSwornBy".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :olympicOathSwornByJudge, - domain: "dbo:Olympics".freeze, - label: "olympic oath sworn by judge".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:olympicOathSwornByJudge".freeze, - range: "dbo:Person".freeze, - subPropertyOf: ["dbo:olympicOathSwornBy".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :omim, - domain: "dbo:Biomolecule".freeze, - label: "OMIM id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:omim".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :onChromosome, - comment: %(the number corresponding to the chromosome on which the gene is located).freeze, - domain: "dbo:GeneLocation".freeze, - label: "on chromosome".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:onChromosome".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ons, - domain: "dbo:Settlement".freeze, - label: "ONS ID (Office national des statistiques) Algeria".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ons".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :openAccessContent, - comment: %(Availability of open access content.).freeze, - domain: "dbo:PeriodicalLiterature".freeze, - label: "open access content".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:openAccessContent".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :openingDate, - label: "opening date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:openingDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :openingFilm, - domain: "dbo:FilmFestival".freeze, - label: "opening film".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:openingFilm".freeze, - range: "dbo:Film".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :openingTheme, - domain: "dbo:TelevisionShow".freeze, - label: "opening theme".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:openingTheme".freeze, - range: "dbo:Work".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :openingYear, - label: "opening year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:openingYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :operatingIncome, - domain: "dbo:Company".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P3362".freeze, - label: "operating income ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:operatingIncome".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :operatingSystem, - domain: "dbo:Software".freeze, - label: "operating system".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:operatingSystem".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :operator, - comment: %(Organisation or City who is the operator of an ArchitecturalStructure, PublicTransitSystem, ConcentrationCamp, etc. Not to confuse with builder, owner or maintainer. -Domain is unrestricted since Organization is Agent but City is Place. Range is unrestricted since anything can be operated.).freeze, - label: "operator".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:operator".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :opponent, - domain: "dbo:Person".freeze, - label: "opponent".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:opponent".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :opponents, - comment: %("opponent in a military conflict, an organisation, country, or group of countries. ").freeze, - domain: "dbo:MilitaryConflict".freeze, - label: "opponents".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:opponents".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :orbitalEccentricity, - domain: "dbo:CelestialBody".freeze, - label: "orbital eccentricity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:orbitalEccentricity".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :orbitalFlights, - domain: "dbo:YearInSpaceflight".freeze, - label: "orbital flights".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:orbitalFlights".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :orbitalInclination, - domain: "dbo:SpaceMission".freeze, - label: "orbital inclination".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:orbitalInclination".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :orbitalPeriod, - domain: "dbo:Planet".freeze, - label: "orbital period (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:orbitalPeriod".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :orbits, - label: "orbits".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:orbits".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :orcidId, - comment: %(Authority data on researchers, academics, etc. The ID range has been defined as a subset of the forthcoming ISNI range.).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P496".freeze, - label: "ORCID Id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:orcidId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :order, - domain: "dbo:Species".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P70".freeze, - label: "order (taxonomy)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:order".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSpecializedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :orderDate, - domain: "dbo:Ship".freeze, - label: "order date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:orderDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :orderInOffice, - label: "order in office".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:orderInOffice".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ordination, - domain: "dbo:Priest".freeze, - label: "Ordination".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ordination".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :organ, - comment: %(Name and/or description of the organ).freeze, - domain: "dbo:ReligiousBuilding".freeze, - label: "organ".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:organ".freeze, - range: "dbo:Organ".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :organSystem, - comment: %(the organ system that a anatomical structure belongs to).freeze, - domain: "dbo:AnatomicalStructure".freeze, - label: "organ system".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:organSystem".freeze, - range: "dbo:AnatomicalStructure".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :organisation, - label: "organisation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:organisation".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :organisationMember, - comment: %(Identify the members of an organisation.).freeze, - domain: "dbo:Organisation".freeze, - label: "organisation member".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:organisationMember".freeze, - range: "dbo:OrganisationMember".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :orientation, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P91".freeze, - label: "orientation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:orientation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :origin, - label: "origin".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:origin".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :originalDanseCompetition, - domain: "dbo:Person".freeze, - label: "original danse competititon".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:originalDanseCompetition".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :originalDanseScore, - domain: "dbo:Person".freeze, - label: "original danse score".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:originalDanseScore".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :originalEndPoint, - domain: "dbo:Canal".freeze, - label: "original end point".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:originalEndPoint".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :originalLanguage, - comment: %(The original language of the work.).freeze, - domain: "dbo:Work".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P364".freeze, - label: "original language".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:originalLanguage".freeze, - range: "dbo:Language".freeze, - subPropertyOf: ["dbo:language".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isExpressedBy".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :originalMaximumBoatBeam, - domain: "dbo:Canal".freeze, - label: "original maximum boat beam (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:originalMaximumBoatBeam".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :originalMaximumBoatLength, - domain: "dbo:Canal".freeze, - label: "original maximum boat length (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:originalMaximumBoatLength".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :originalName, - comment: %(The original name of the entity, e.g. film, settlement, etc.).freeze, - label: "original name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:originalName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :originalStartPoint, - domain: "dbo:Canal".freeze, - label: "original start point".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:originalStartPoint".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :originalTitle, - comment: %(The original title of the work, most of the time in the original language as well).freeze, - domain: "dbo:Work".freeze, - label: "original title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:originalTitle".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :originallyUsedFor, - comment: %(Original use of ArchitecturalStructure or ConcentrationCamp, if it is currently being used as anything other than its original purpose.).freeze, - label: "originally used for".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:originallyUsedFor".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :origo, - domain: "dbo:Muscle".freeze, - label: "origo".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:origo".freeze, - range: "dbo:AnatomicalStructure".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :orogeny, - label: "orogeny".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:orogeny".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :orpha, - domain: "dbo:Disease".freeze, - label: "ORPHA".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:orpha".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :orthologousGene, - domain: "dbo:Gene".freeze, - label: "Orthologous Gene".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:orthologousGene".freeze, - range: "dbo:Gene".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :other, - domain: "dbo:University".freeze, - label: "other".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:other".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :otherActivity, - domain: "dbo:Person".freeze, - label: "other activity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherActivity".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :otherAppearances, - domain: "dbo:OlympicResult".freeze, - label: "other appearances".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherAppearances".freeze, - range: "dbo:OlympicResult".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :otherChannel, - domain: "dbo:Broadcaster".freeze, - label: "other channel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherChannel".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :otherFamilyBranch, - domain: "dbo:NobleFamily".freeze, - label: "other branch".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherFamilyBranch".freeze, - range: "dbo:Family".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :otherFuelType, - domain: "dbo:PowerStation".freeze, - label: "secondary/other fuel type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherFuelType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :otherFunction, - domain: "dbo:Person".freeze, - label: "other function".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherFunction".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :otherInformation, - domain: "dbo:Settlement".freeze, - label: "other information of a settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherInformation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :otherLanguage, - domain: "dbo:Settlement".freeze, - label: "other language of a settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherLanguage".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :otherMedia, - domain: "dbo:Person".freeze, - label: "other media".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherMedia".freeze, - range: "dbo:PeriodicalLiterature".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :otherName, - domain: "dbo:PopulatedPlace".freeze, - label: "other name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :otherOccupation, - domain: "dbo:Person".freeze, - label: "other occupation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherOccupation".freeze, - range: "dbo:PersonFunction".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :otherParty, - domain: "dbo:OfficeHolder".freeze, - label: "other party".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherParty".freeze, - range: "dbo:PoliticalParty".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :otherServingLines, - comment: %(Connecting services that serve the station such as bus, etc.).freeze, - domain: "dbo:Station".freeze, - label: "other serving lines".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherServingLines".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :otherSportsExperience, - domain: "dbo:Athlete".freeze, - label: "otherSportsExperience".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherSportsExperience".freeze, - range: "dbo:Athletics".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :otherWins, - domain: "dbo:SnookerPlayer".freeze, - label: "other wins".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:otherWins".freeze, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "dbo:Wins".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :outflow, - domain: "dbo:BodyOfWater".freeze, - label: "outflow".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:outflow".freeze, - range: "dbo:River".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :output, - domain: "dbo:Place".freeze, - label: "output".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:output".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :outskirts, - domain: "dbo:PopulatedPlace".freeze, - label: "outskirts".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:outskirts".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :overallRecord, - domain: "dbo:CollegeCoach".freeze, - label: "overall record".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:overallRecord".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :oversight, - domain: "dbo:School".freeze, - label: "oversight".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:oversight".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :owner, - comment: %(Used as if meaning: owned by, has as its owner).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P127".freeze, - label: "owner".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:owner".freeze, - range: "dbo:Agent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :owningCompany, - label: "owning company".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:owningCompany".freeze, - range: "dbo:Company".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :owningOrganisation, - label: "owning organisation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:owningOrganisation".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "dbo:owner".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :owns, - comment: %(Used as if meaning: has property rights over).freeze, - domain: "dbo:Agent".freeze, - label: "owns".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:owns".freeze, - range: "dbo:Thing".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :painter, - domain: "dbo:Artwork".freeze, - label: "painter".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:painter".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :parent, - domain: "dbo:Person".freeze, - label: "parent".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:parent".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :parentCompany, - label: "parent company".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:parentCompany".freeze, - range: "dbo:Company".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :parentMountainPeak, - domain: "dbo:Mountain".freeze, - label: "parent mountain peak".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:parentMountainPeak".freeze, - range: "dbo:Mountain".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :parentOrganisation, - domain: "dbo:Organisation".freeze, - equivalentProperty: "schema:branchOf".freeze, - label: "parent organisation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:parentOrganisation".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :parentheses, - domain: "dbo:Species".freeze, - label: "parentheses".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:parentheses".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :parish, - domain: "dbo:PopulatedPlace".freeze, - label: "parish".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:parish".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :parkingInformation, - comment: %(Information on station's parking facilities.).freeze, - domain: "dbo:Station".freeze, - label: "parking information".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:parkingInformation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :parkingLotsCars, - domain: "dbo:RestArea".freeze, - label: "number of parking lots for cars".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:parkingLotsCars".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :parkingLotsTrucks, - domain: "dbo:RestArea".freeze, - label: "number of parking lots for trucks".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:parkingLotsTrucks".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :parliament, - label: "parliament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:parliament".freeze, - range: "dbo:Parliament".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :parliamentType, - domain: "dbo:Place".freeze, - label: "parliament type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:parliamentType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :parliamentaryGroup, - domain: "dbo:Person".freeze, - label: "parliamentary group".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:parliamentaryGroup".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :part, - label: "part".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:part".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :partialFailedLaunches, - comment: %(total number of launches resulting in partial failure).freeze, - label: "partial failed launches".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:partialFailedLaunches".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :participant, - domain: "dbo:Event".freeze, - label: "participant".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:participant".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :participatingIn, - domain: "dbo:MemberResistanceMovement".freeze, - label: "participates/participated in".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:participatingIn".freeze, - range: "dbo:SocietalEvent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :particularSign, - domain: "dbo:Person".freeze, - label: "particular sign".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:particularSign".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :partitionCoefficient, - domain: "dbo:ChemicalSubstance".freeze, - label: "Partition coefficient".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:partitionCoefficient".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :partner, - domain: "dbo:Person".freeze, - label: "partner".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:partner".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :party, - equivalentProperty: "http://www.wikidata.org/entity/P102".freeze, - label: "party".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:party".freeze, - range: "dbo:PoliticalParty".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :partyNumber, - label: "party number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:partyNumber".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :passengersPerDay, - comment: %(Number of passengers per day.).freeze, - domain: "dbo:Infrastructure".freeze, - label: "passengers per day".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:passengersPerDay".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :passengersPerYear, - comment: %(Number of passengers per year.).freeze, - domain: "dbo:Infrastructure".freeze, - label: "passengers per year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:passengersPerYear".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :passengersUsedSystem, - comment: %(System the passengers are using \(from which the passenger statistics are\).).freeze, - domain: "dbo:Station".freeze, - label: "passengers used system".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:passengersUsedSystem".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :pastMember, - label: "past member".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pastMember".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :pastor, - domain: "dbo:HistoricBuilding".freeze, - label: "pastor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pastor".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :patent, - domain: "dbo:Person".freeze, - label: "patent".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:patent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :patron, - domain: "dbo:MilitaryUnit".freeze, - label: "patron".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:patron".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :patronSaint, - label: "patron saint".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:patronSaint".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :pccSecretary, - label: "pcc secretary".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pccSecretary".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :pdb, - comment: %(gene entry for 3D structural data as per the PDB \(Protein Data Bank\) database).freeze, - domain: "dbo:Protein".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P638".freeze, - label: "PDB ID".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pdb".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :peabodyAward, - domain: "dbo:Comedian".freeze, - label: "Peabody Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:peabodyAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :penaltiesTeamA, - domain: "dbo:PenaltyShootOut".freeze, - label: "Penalties Team A".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:penaltiesTeamA".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :penaltiesTeamB, - domain: "dbo:PenaltyShootOut".freeze, - label: "Penalties Team B".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:penaltiesTeamB".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :penaltyScore, - domain: "dbo:PenaltyShootOut".freeze, - label: "penalty score".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:penaltyScore".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :penisLength, - domain: "dbo:Person".freeze, - label: "penis length".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:penisLength".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :peopleName, - comment: %(Name for the people inhabiting a place, eg Ankara->Ankariotes, Bulgaria->Bulgarians).freeze, - domain: "dbo:PopulatedPlace".freeze, - label: "peopleName".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:peopleName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :perCapitaIncome, - domain: "dbo:PopulatedPlace".freeze, - label: "per capita income ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:perCapitaIncome".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :perCapitaIncomeAsOf, - domain: "dbo:PopulatedPlace".freeze, - label: "per capita income as of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:perCapitaIncomeAsOf".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :perCapitaIncomeRank, - domain: "dbo:PopulatedPlace".freeze, - label: "per capital income rank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:perCapitaIncomeRank".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :percentage, - label: "percentage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:percentage".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :percentageAlcohol, - comment: %(percentage of alcohol present in a beverage).freeze, - domain: "dbo:Beverage".freeze, - label: "percentage of alcohol".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:percentageAlcohol".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :percentageFat, - comment: %(how much fat \(as a percentage\) does this food contain. Mostly applies to Cheese).freeze, - domain: "dbo:Food".freeze, - label: "percentage of fat".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:percentageFat".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :percentageLiteracyMen, - domain: "dbo:PopulatedPlace".freeze, - label: "percentage of a place's male population that is literate, degree of analphabetism".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:percentageLiteracyMen".freeze, - range: "xsd:float".freeze, - subPropertyOf: "dbo:percentageLiterate".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :percentageLiteracyWomen, - domain: "dbo:PopulatedPlace".freeze, - label: "percentage of a place's female population that is literate, degree of analphabetism".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:percentageLiteracyWomen".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :percentageLiterate, - domain: "dbo:PopulatedPlace".freeze, - label: "percentage of a place's population that is literate, degree of analphabetism".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:percentageLiterate".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :percentageOfAreaWater, - label: "percentage of area water".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:percentageOfAreaWater".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :performer, - domain: "dbo:FictionalCharacter".freeze, - label: "performer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:performer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :periapsis, - domain: "dbo:CelestialBody".freeze, - label: "periapsis (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:periapsis".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :perifocus, - domain: "dbo:CelestialBody".freeze, - label: "perifocus".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:perifocus".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :perimeter, - domain: "dbo:Place".freeze, - label: "perimeter (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:perimeter".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :period, - label: "event period".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:period".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :perpetrator, - domain: "dbo:Attack".freeze, - label: "perpetrator".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:perpetrator".freeze, - range: "dbo:Agent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :person, - domain: "dbo:PersonFunction".freeze, - label: "person".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:person".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRoleOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :personFunction, - domain: "dbo:Person".freeze, - label: "person function".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:personFunction".freeze, - range: "dbo:PersonFunction".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasRole".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :personName, - domain: "dbo:PersonFunction".freeze, - label: "personName".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:personName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :pgaWins, - domain: "dbo:Person".freeze, - label: "pga wins".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pgaWins".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :philosophicalSchool, - domain: "dbo:Person".freeze, - label: "philosophicalSchool".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:philosophicalSchool".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :phonePrefix, - comment: %(Don't use this, use areaCode).freeze, - domain: "dbo:PopulatedPlace".freeze, - label: "phone prefix".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:phonePrefix".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :phonePrefixLabel, - domain: "dbo:Settlement".freeze, - label: "phone prefix label of a settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:phonePrefixLabel".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :photographer, - domain: "dbo:TelevisionEpisode".freeze, - label: "photographer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:photographer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :phylum, - comment: %(A rank in the classification of organisms, below kingdom and above class; also called a division, especially in describing plants; a taxon at that rank.).freeze, - domain: "dbo:Species".freeze, - label: "phylum".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:phylum".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSpecializedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :picture, - comment: %(A picture of a thing.).freeze, - equivalentProperty: "schema:image".freeze, - label: "picture".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:picture".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#concretelyExpresses".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :pictureDescription, - label: "picture description".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pictureDescription".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :pictureFormat, - domain: "dbo:Broadcaster".freeze, - label: "picture format".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pictureFormat".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasQuality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :picturesCommonsCategory, - comment: %(Wikimedia CommonsCategory for pictures of this resource).freeze, - label: "pictures Commons category".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:picturesCommonsCategory".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :piercing, - domain: "dbo:Person".freeze, - label: "piercing".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:piercing".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :pisciculturalPopulation, - domain: "dbo:Place".freeze, - label: "piscicultural population".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pisciculturalPopulation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :pistonStroke, - domain: "dbo:AutomobileEngine".freeze, - label: "piston stroke (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pistonStroke".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :place, - domain: "dbo:MilitaryConflict".freeze, - label: "place of military conflict".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:place".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :placeOfBurial, - comment: %(The place where the person has been buried.).freeze, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P119".freeze, - label: "place of burial".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:placeOfBurial".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :placeOfWorship, - comment: %(A religious administrative body needs to know which places of worship it).freeze, - domain: "dbo:ClericalAdministrativeRegion".freeze, - label: "place of worship".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:placeOfWorship".freeze, - range: "dbo:ReligiousBuilding".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :plant, - domain: "dbo:Place".freeze, - label: "plant".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:plant".freeze, - range: "dbo:Plant".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :playRole, - label: "play role".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:playRole".freeze, - subPropertyOf: ["dbo:uses".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasRole".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :playerInTeam, - comment: %(A person playing for a sports team. inverseOf team).freeze, - domain: "dbo:SportsTeam".freeze, - label: "player in team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:playerInTeam".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :playerSeason, - domain: "dbo:Agent".freeze, - label: "player season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:playerSeason".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :playerStatus, - domain: "dbo:Person".freeze, - label: "player status".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:playerStatus".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :playingTime, - label: "playing time (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:playingTime".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :plays, - domain: "dbo:TennisPlayer".freeze, - label: "plays".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:plays".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :pluviometry, - domain: "dbo:PopulatedPlace".freeze, - label: "pluviometry".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pluviometry".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :podium, - domain: "dbo:Person".freeze, - label: "podium".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:podium".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :podiums, - domain: "dbo:FormulaOneRacer".freeze, - label: "podiums".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:podiums".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :pole, - label: "pole".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pole".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :poleDriver, - domain: "dbo:GrandPrix".freeze, - label: "pole driver".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:poleDriver".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :poleDriverCountry, - domain: "dbo:GrandPrix".freeze, - label: "pole driver country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:poleDriverCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :poleDriverTeam, - domain: "dbo:GrandPrix".freeze, - label: "pole driver team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:poleDriverTeam".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :polePosition, - domain: "dbo:Person".freeze, - label: "pole position".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:polePosition".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :poles, - domain: "dbo:FormulaOneRacer".freeze, - label: "poles".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:poles".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :policeName, - comment: %(The police detachment serving a UK place, eg Wakefield -> "West Yorkshire Police").freeze, - domain: "dbo:PopulatedPlace".freeze, - label: "police name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:policeName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :polishFilmAward, - domain: "dbo:Artist".freeze, - label: "Polish Film Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:polishFilmAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :politicGovernmentDepartment, - domain: "dbo:PopulatedPlace".freeze, - label: "politic government department".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:politicGovernmentDepartment".freeze, - subPropertyOf: ["dbo:Department".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :politicalFunction, - domain: "dbo:Person".freeze, - label: "political function".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:politicalFunction".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :politicalLeader, - domain: "dbo:Place".freeze, - label: "political leader".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:politicalLeader".freeze, - range: "dbo:PersonFunction".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :politicalMajority, - domain: "dbo:Settlement".freeze, - label: "political majority".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:politicalMajority".freeze, - range: "dbo:PoliticalParty".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :politicalPartyInLegislature, - comment: %(Political party in the legislature \(eg.: European People's Party in the European Parliament\).).freeze, - domain: "dbo:Legislature".freeze, - label: "political party in legislature".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:politicalPartyInLegislature".freeze, - range: "dbo:PoliticalParty".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :politicalPartyOfLeader, - comment: %(The Political party of leader.).freeze, - domain: "dbo:Legislature".freeze, - label: "political party of leader".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:politicalPartyOfLeader".freeze, - range: "dbo:PoliticalParty".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :politicalSeats, - domain: "dbo:Settlement".freeze, - label: "political seats".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:politicalSeats".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :politician, - comment: %(The politician exercising this function.).freeze, - domain: "dbo:PoliticalFunction".freeze, - label: "politician".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:politician".freeze, - range: "dbo:Politician".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :popularVote, - domain: "dbo:Election".freeze, - label: "Number of votes given to candidate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:popularVote".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :population, - domain: "dbo:PopulatedPlace".freeze, - label: "population".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:population".freeze, - range: "dbo:Population".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :populationAsOf, - domain: "dbo:PopulatedPlace".freeze, - label: "population as of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationAsOf".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :populationDensity, - domain: "dbo:PopulatedPlace".freeze, - label: "population density (/sqkm)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationDensity".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :populationMetro, - domain: "dbo:PopulatedPlace".freeze, - label: "population metro".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationMetro".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :populationMetroDensity, - domain: "dbo:PopulatedPlace".freeze, - label: "population metro density (/sqkm)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationMetroDensity".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :populationPctChildren, - domain: "dbo:PopulatedPlace".freeze, - label: "population percentage under 12 years".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationPctChildren".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :populationPctMen, - domain: "dbo:PopulatedPlace".freeze, - label: "population percentage male".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationPctMen".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :populationPctWomen, - domain: "dbo:PopulatedPlace".freeze, - label: "population percentage female".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationPctWomen".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :populationPlace, - comment: %(a place were members of an ethnic group are living).freeze, - domain: "dbo:EthnicGroup".freeze, - label: "population place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationPlace".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :populationQuote, - domain: "dbo:Place".freeze, - label: "population quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationQuote".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :populationRural, - domain: "dbo:PopulatedPlace".freeze, - label: "population rural".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationRural".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :populationRuralDensity, - domain: "dbo:PopulatedPlace".freeze, - label: "population density rural (/sqkm)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationRuralDensity".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :populationTotal, - equivalentProperty: "http://www.wikidata.org/entity/P1082".freeze, - label: "population total".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationTotal".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :populationTotalRanking, - domain: "dbo:PopulatedPlace".freeze, - label: "total population ranking".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationTotalRanking".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :populationTotalReference, - domain: "dbo:Settlement".freeze, - label: "total population reference".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationTotalReference".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :populationUrban, - domain: "dbo:PopulatedPlace".freeze, - label: "population urban".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationUrban".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :populationUrbanDensity, - domain: "dbo:PopulatedPlace".freeze, - label: "population urban density (/sqkm)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationUrbanDensity".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :populationYear, - domain: "dbo:PopulatedPlace".freeze, - label: "population year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:populationYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :portfolio, - label: "portfolio".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:portfolio".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :portrayer, - domain: "dbo:FictionalCharacter".freeze, - label: "portrayer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:portrayer".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :position, - label: "position".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:position".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :postalCode, - comment: %(A postal code \(known in various countries as a post code, postcode, or ZIP code\) is a series of letters and/or digits appended to a postal address for the purpose of sorting mail.).freeze, - label: "postal code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:postalCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :power, - domain: "dbo:FictionalCharacter".freeze, - label: "power".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:power".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :powerOutput, - domain: "dbo:Engine".freeze, - label: "power output (W)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:powerOutput".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :powerType, - domain: "dbo:MeanOfTransportation".freeze, - label: "power type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:powerType".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :precursor, - domain: "dbo:AnatomicalStructure".freeze, - label: "precursor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:precursor".freeze, - range: "dbo:Embryology".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :predecessor, - label: "predecessor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:predecessor".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :prefaceBy, - domain: "dbo:WrittenWork".freeze, - label: "author of preface".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:prefaceBy".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :prefect, - domain: "dbo:Politician".freeze, - label: "prefect".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:prefect".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :prefectMandate, - domain: "dbo:RomaniaSettlement".freeze, - label: "mandate of a prefect of a romanian settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:prefectMandate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :prefecture, - domain: "dbo:Department".freeze, - label: "prefecture".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:prefecture".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :prefix, - label: "prefix".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:prefix".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :premiereDate, - comment: %(Date the play was first performed.).freeze, - domain: "dbo:Play".freeze, - label: "premiere date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:premiereDate".freeze, - range: "xsd:date".freeze, - subPropertyOf: "dbo:releaseDate".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :premierePlace, - comment: %(The theatre and/or city the play was first performed in.).freeze, - domain: "dbo:Play".freeze, - label: "premiere place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:premierePlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :premiereYear, - comment: %(Year the play was first performed.).freeze, - domain: "dbo:Play".freeze, - label: "premiere year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:premiereYear".freeze, - range: "xsd:gYear".freeze, - subPropertyOf: "dbo:releaseYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :presentMunicipality, - domain: "dbo:FormerMunicipality".freeze, - label: "present municipality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:presentMunicipality".freeze, - range: "dbo:Municipality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :presentName, - domain: "dbo:FormerMunicipality".freeze, - label: "a municipality's present name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:presentName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :presenter, - domain: "dbo:TelevisionShow".freeze, - label: "presenter".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:presenter".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :president, - label: "president".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:president".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :presidentGeneralCouncil, - domain: "dbo:TermOfOffice".freeze, - label: "president general council".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:presidentGeneralCouncil".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :presidentGeneralCouncilMandate, - domain: "dbo:Place".freeze, - label: "mandate of the president of the general council".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:presidentGeneralCouncilMandate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :presidentRegionalCouncil, - domain: "dbo:TermOfOffice".freeze, - label: "president regional council".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:presidentRegionalCouncil".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :presidentRegionalCouncilMandate, - domain: "dbo:Place".freeze, - label: "mandate of the president council of the regional council".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:presidentRegionalCouncilMandate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :previousDemographics, - domain: "dbo:PopulatedPlace".freeze, - label: "previous demographics".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:previousDemographics".freeze, - range: "dbo:Demographics".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :previousEditor, - domain: "dbo:Magazine".freeze, - label: "previous editor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:previousEditor".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :previousEntity, - domain: "dbo:Place".freeze, - label: "previous entity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:previousEntity".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :previousEvent, - domain: "dbo:Event".freeze, - label: "previous event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:previousEvent".freeze, - range: "dbo:Event".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#follows".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :previousInfrastructure, - domain: "dbo:Infrastructure".freeze, - label: "previous infrastructure".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:previousInfrastructure".freeze, - range: "dbo:Infrastructure".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :previousMission, - domain: "dbo:SpaceMission".freeze, - label: "previous mission".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:previousMission".freeze, - range: "dbo:SpaceMission".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#follows".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :previousName, - domain: "dbo:PopulatedPlace".freeze, - label: "previous name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:previousName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :previousPopulation, - domain: "dbo:PopulatedPlace".freeze, - label: "previous population".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:previousPopulation".freeze, - range: "dbo:Population".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :previousPopulationTotal, - domain: "dbo:PopulatedPlace".freeze, - label: "previous population total".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:previousPopulationTotal".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :previousWork, - domain: "dbo:Work".freeze, - label: "previous work".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:previousWork".freeze, - range: "dbo:Work".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :price, - comment: %(The price of something, eg a journal. For "total money earned by an Athlete" use gross).freeze, - label: "price ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:price".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :primaryFuelType, - domain: "dbo:PowerStation".freeze, - label: "primary fuel type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:primaryFuelType".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :primate, - domain: "dbo:ChristianDoctrine".freeze, - label: "Primite".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:primate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :primeMinister, - equivalentProperty: "http://www.wikidata.org/entity/P6".freeze, - label: "prime minister".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:primeMinister".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :primogenitor, - domain: "dbo:Family".freeze, - label: "primogenitor, first forebear".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:primogenitor".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :principal, - comment: %(Principal of an educational institution \(school\)).freeze, - domain: "dbo:EducationalInstitution".freeze, - label: "principal".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:principal".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :principalArea, - domain: "dbo:PopulatedPlace".freeze, - label: "principal area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:principalArea".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :principalEngineer, - domain: "dbo:Canal".freeze, - label: "principal engineer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:principalEngineer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :proTeam, - domain: "dbo:Athlete,_CareerStation".freeze, - label: "pro team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:proTeam".freeze, - range: "dbo:SportsTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :probowlPick, - domain: "dbo:Athlete".freeze, - label: "pro bowl pick".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:probowlPick".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :procedure, - comment: %(The name designating a formal collection of steps to be taken to complete the case).freeze, - domain: "dbo:Case".freeze, - label: "procedure".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:procedure".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :producedBy, - domain: "dbo:Film".freeze, - label: "produced by".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:producedBy".freeze, - range: "dbo:Company".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :producer, - comment: %(The producer of the creative work.).freeze, - domain: "dbo:Work".freeze, - equivalentProperty: "schema:producer".freeze, - label: "producer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:producer".freeze, - range: "dbo:Agent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :produces, - label: "produces".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:produces".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :product, - domain: "dbo:Organisation".freeze, - label: "product".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:product".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :productShape, - domain: "dbo:Food".freeze, - label: "product shape".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:productShape".freeze, - range: "xsd:string".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasQuality".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :production, - domain: "dbo:Company".freeze, - label: "production".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:production".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :productionCompany, - comment: %(the company that produced the work e.g. Film, MusicalWork, Software).freeze, - domain: "dbo:Work".freeze, - label: "production company".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:productionCompany".freeze, - range: "dbo:Company".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :productionEndDate, - label: "production end date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:productionEndDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :productionEndYear, - label: "production end year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:productionEndYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :productionStartDate, - label: "production start date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:productionStartDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :productionStartYear, - label: "production start year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:productionStartYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :productionYears, - domain: "dbo:Aircraft".freeze, - label: "production years".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:productionYears".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :profession, - domain: "dbo:Person".freeze, - label: "profession".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:profession".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasRole".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :programCost, - domain: "dbo:Aircraft".freeze, - label: "program cost ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:programCost".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :programmeFormat, - comment: %(The programming format describes the overall content broadcast on a radio or television station.).freeze, - domain: "dbo:Broadcaster".freeze, - label: "programme format".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:programmeFormat".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :programmingLanguage, - domain: "dbo:Software".freeze, - label: "programming language".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:programmingLanguage".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isExpressedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :project, - domain: "dbo:Person".freeze, - label: "project".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:project".freeze, - range: "dbo:Project".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :projectBudgetFunding, - comment: %(The part of the project budget that is funded by the Organistaions given in the "FundedBy" property.).freeze, - domain: "dbo:ResearchProject".freeze, - label: "project budget funding ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:projectBudgetFunding".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :projectBudgetTotal, - comment: %(The total budget of the research project.).freeze, - domain: "dbo:ResearchProject".freeze, - label: "project budget total ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:projectBudgetTotal".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :projectCoordinator, - comment: %(The coordinating organisation of the project.).freeze, - domain: "dbo:ResearchProject".freeze, - label: "project coordinator".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:projectCoordinator".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :projectEndDate, - comment: %(The end date of the project.).freeze, - domain: "dbo:Project".freeze, - label: "project end date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:projectEndDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :projectKeyword, - comment: %(A key word of the project.).freeze, - domain: "dbo:Project".freeze, - label: "project keyword".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:projectKeyword".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :projectObjective, - comment: %(A defined objective of the project.).freeze, - domain: "dbo:Project".freeze, - label: "project objective".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:projectObjective".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :projectParticipant, - comment: %(A participating organisation of the project.).freeze, - domain: "dbo:ResearchProject".freeze, - label: "project participant".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:projectParticipant".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :projectReferenceID, - comment: %(The reference identification of the project.).freeze, - domain: "dbo:ResearchProject".freeze, - label: "project reference ID".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:projectReferenceID".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :projectStartDate, - comment: %(The start date of the project.).freeze, - domain: "dbo:Project".freeze, - label: "project start date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:projectStartDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :projectType, - comment: %(The type of the research project. Mostly used for the funding schemes of the European Union, for instance: Specific Targeted Research Projects \(STREP\), Network of Excellence \(NoE\) or Integrated Project.).freeze, - domain: "dbo:ResearchProject".freeze, - label: "project type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:projectType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :prominence, - label: "prominence (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:prominence".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :promotion, - domain: "dbo:WrestlingEvent".freeze, - label: "promotion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:promotion".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :pronunciation, - label: "pronunciation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pronunciation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :prospectLeague, - domain: "dbo:IceHockeyPlayer".freeze, - label: "prospect league".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:prospectLeague".freeze, - range: "dbo:SportsLeague".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :prospectTeam, - domain: "dbo:IceHockeyPlayer".freeze, - label: "prospect team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:prospectTeam".freeze, - range: "dbo:HockeyTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :protectionStatus, - comment: %(The sort of status that is granted to a protected Building or Monument. This is not about being protected or not, this is about the nature of the protection regime. E.g., in the Netherlands the protection status 'rijksmonument' points to more elaborate protection than other statuses.).freeze, - domain: "dbo:Place".freeze, - label: "monument protection status".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:protectionStatus".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:Status".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :protein, - comment: %(Amount of proteins per servingSize of a Food).freeze, - domain: "dbo:Food".freeze, - label: "protein (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:protein".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :protestantPercentage, - domain: "dbo:PopulatedPlace".freeze, - label: "protestant percentage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:protestantPercentage".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :provCode, - domain: "dbo:Settlement".freeze, - label: "prove code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:provCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :provides, - label: "provides".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:provides".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :province, - domain: "dbo:Place".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P131".freeze, - label: "province".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:province".freeze, - range: "dbo:Province".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :provinceIsoCode, - domain: "dbo:PopulatedPlace".freeze, - label: "iso code of a province".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:provinceIsoCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:isoCode".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :provinceLink, - domain: "dbo:Place".freeze, - label: "province link".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:provinceLink".freeze, - range: "dbo:Province".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :provost, - domain: "dbo:University".freeze, - label: "provost".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:provost".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :pseudonym, - domain: "dbo:Person".freeze, - label: "pseudonym".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pseudonym".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :pubchem, - domain: "dbo:ChemicalSubstance".freeze, - label: "PubChem".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:pubchem".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :publication, - domain: "dbo:Person".freeze, - label: "publication".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:publication".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :publicationDate, - label: "publication date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:publicationDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :publiclyAccessible, - comment: %(describes in what way this site is accessible for public).freeze, - label: "publicly accessible".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:publiclyAccessible".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :publisher, - comment: %(Publisher of a work. For literal \(string\) use dc:publisher; for object \(URL\) use publisher).freeze, - domain: "dbo:Work".freeze, - equivalentProperty: "schema:publisher".freeze, - label: "publisher".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:publisher".freeze, - range: "dbo:Agent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :purchasingPowerParity, - domain: "dbo:PopulatedPlace".freeze, - label: "purchasing power parity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:purchasingPowerParity".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :purchasingPowerParityRank, - domain: "dbo:PopulatedPlace".freeze, - label: "purchasing power parity rank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:purchasingPowerParityRank".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :purchasingPowerParityYear, - domain: "dbo:PopulatedPlace".freeze, - label: "purchasing power parity year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:purchasingPowerParityYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :purpose, - label: "purpose".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:purpose".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :qatarClassic, - domain: "dbo:Athlete".freeze, - label: "qatar classic".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:qatarClassic".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :quebecerTitle, - domain: "dbo:Film".freeze, - label: "quebecer title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:quebecerTitle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :quotation, - comment: %(A quotation is the repetition of one expression as part of another one, particularly when the quoted expression is well-known or explicitly attributed by citation to its original source.).freeze, - label: "quotation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:quotation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :quote, - domain: "dbo:Place".freeze, - label: "quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:quote".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ra, - domain: "dbo:Openswarm".freeze, - label: "ra".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ra".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :race, - label: "race".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:race".freeze, - range: "dbo:Race".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :raceHorse, - label: "race horse".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:raceHorse".freeze, - range: "dbo:Horse".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :raceLength, - domain: "dbo:FormulaOneRacing".freeze, - label: "race length (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:raceLength".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :raceResult, - comment: %(Result of one racer in a sport competition).freeze, - domain: "dbo:Race".freeze, - label: "race result".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:raceResult".freeze, - range: "dbo:SportCompetitionResult".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :raceTrack, - domain: "dbo:SportsEvent".freeze, - label: "race track".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:raceTrack".freeze, - range: "dbo:RaceTrack".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :raceWins, - domain: "dbo:Person".freeze, - label: "race wins".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:raceWins".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :races, - domain: "dbo:FormulaOneRacer".freeze, - label: "races".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:races".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :racketCatching, - domain: "dbo:TennisPlayer".freeze, - label: "racket catching".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:racketCatching".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :radio, - domain: "dbo:Person".freeze, - label: "radio".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:radio".freeze, - range: "dbo:RadioStation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :radioStation, - domain: "dbo:RadioStation".freeze, - label: "radio station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:radioStation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :radius_ly, - domain: "dbo:Globularswarm".freeze, - label: "Radius_ly".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:radius_ly".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :railGauge, - domain: "dbo:RouteOfTransportation".freeze, - label: "rail gauge (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:railGauge".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :railwayLineUsingTunnel, - comment: %(Railway line that is using the tunnel.).freeze, - domain: "dbo:RailwayTunnel".freeze, - label: "railway line using tunnel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:railwayLineUsingTunnel".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :railwayPlatforms, - comment: %(Information on the type of platform\(s\) at the station.).freeze, - domain: "dbo:Station".freeze, - label: "railway platforms".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:railwayPlatforms".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :railwayRollingStock, - domain: "dbo:RouteOfTransportation".freeze, - label: "railway rolling stock".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:railwayRollingStock".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :range, - comment: %(Maximum distance without refueling).freeze, - domain: "dbo:MeanOfTransportation".freeze, - label: "range".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:range".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rank, - comment: %(Rank of something among other things of the same kind, eg Constellations by Area; MusicalAlbums by popularity, etc).freeze, - label: "rank".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rank".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rankAgreement, - domain: "dbo:Place".freeze, - label: "rank of an agreement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rankAgreement".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rankArea, - domain: "dbo:PopulatedPlace".freeze, - label: "rank of an area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rankArea".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rankInFinalMedalCount, - domain: "dbo:OlympicResult".freeze, - label: "rank in final medal count".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rankInFinalMedalCount".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rankPopulation, - domain: "dbo:PopulatedPlace".freeze, - label: "rank of a population".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rankPopulation".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ranking, - domain: "dbo:Organisation".freeze, - label: "ranking".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ranking".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rankingWins, - domain: "dbo:SnookerPlayer".freeze, - label: "ranking wins".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rankingWins".freeze, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "dbo:Wins".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rankingsDoubles, - domain: "dbo:TennisPlayer".freeze, - label: "doubles rankings".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rankingsDoubles".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rankingsSingles, - domain: "dbo:TennisPlayer".freeze, - label: "single rankings".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rankingsSingles".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rating, - label: "rating".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rating".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ratio, - domain: "dbo:School".freeze, - label: "ratio".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ratio".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rebuildDate, - label: "rebuild date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rebuildDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rebuilder, - domain: "dbo:MeanOfTransportation".freeze, - label: "rebuilder".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rebuilder".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :rebuildingDate, - domain: "dbo:ArchitecturalStructure".freeze, - label: "rebuilding date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rebuildingDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rebuildingYear, - domain: "dbo:ArchitecturalStructure".freeze, - label: "rebuilding year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rebuildingYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :recentWinner, - domain: "dbo:Race".freeze, - label: "recent winner".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:recentWinner".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :recommissioningDate, - domain: "dbo:Ship".freeze, - label: "recommissioning date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:recommissioningDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :recordDate, - domain: "dbo:MusicalWork".freeze, - label: "record date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:recordDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :recordLabel, - equivalentProperty: "http://www.wikidata.org/entity/P264".freeze, - label: "record label".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:recordLabel".freeze, - range: "dbo:RecordLabel".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :recordedIn, - domain: "dbo:MusicalWork".freeze, - label: "recorded in".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:recordedIn".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :rector, - domain: "dbo:EducationalInstitution".freeze, - label: "rector".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rector".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :redListIdNL, - comment: %(red list code for treatened species NL \(different from IUCN\)).freeze, - domain: "dbo:Species".freeze, - label: "red list ID NL".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:redListIdNL".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :redLongDistancePisteNumber, - domain: "dbo:Place".freeze, - label: "red long distance piste number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:redLongDistancePisteNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :redSkiPisteNumber, - domain: "dbo:Place".freeze, - label: "red ski piste number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:redSkiPisteNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :redline, - domain: "dbo:AutomobileEngine".freeze, - label: "redline (kmh)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:redline".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :refcul, - domain: "dbo:Place".freeze, - label: "reference for cultural data".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:refcul".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :reference, - comment: %(Structured reference providing info about the subject).freeze, - domain: "dbo:Reference".freeze, - label: "reference".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:reference".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :reffBourgmestre, - domain: "dbo:Settlement".freeze, - label: "referent bourgmestre".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:reffBourgmestre".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :refgen, - domain: "dbo:Place".freeze, - label: "reference for general data".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:refgen".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :refgeo, - domain: "dbo:Place".freeze, - label: "reference for geographic data".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:refgeo".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :refpol, - domain: "dbo:Place".freeze, - label: "reference for politic data".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:refpol".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :refseq, - domain: "dbo:Protein".freeze, - label: "RefSeq".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:refseq".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :refseqmrna, - domain: "dbo:Biomolecule".freeze, - label: "refseq mRNA".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:refseqmrna".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :refseqprotein, - domain: "dbo:Biomolecule".freeze, - label: "refseq protein".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:refseqprotein".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :regency, - domain: "dbo:Place".freeze, - label: "regency".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:regency".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :regentOf, - comment: %(Subject has served as the regent of another monarch).freeze, - domain: "dbo:Monarch".freeze, - label: "regent of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:regentOf".freeze, - range: "dbo:Monarch".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :regime, - domain: "dbo:Spacecraft".freeze, - label: "regime".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:regime".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :region, - comment: %(The regin where the thing is located or is connected to.).freeze, - label: "region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:region".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :regionLink, - domain: "dbo:Place".freeze, - label: "region link".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:regionLink".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :regionServed, - domain: "dbo:Organisation".freeze, - label: "region served".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:regionServed".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :regionType, - domain: "dbo:Place".freeze, - label: "region type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:regionType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :regionalCouncil, - domain: "dbo:Agent".freeze, - label: "regional council".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:regionalCouncil".freeze, - range: "dbo:TermOfOffice".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :regionalLanguage, - domain: "dbo:PopulatedPlace".freeze, - label: "regional language".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:regionalLanguage".freeze, - range: "dbo:Language".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :regionalPrefecture, - domain: "dbo:Place".freeze, - label: "regional prefecture".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:regionalPrefecture".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :registration, - domain: "dbo:Company".freeze, - label: "registration".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:registration".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :registry, - comment: %(A registry recording entires with associated codes.).freeze, - label: "registry".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:registry".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :registryNumber, - comment: %(Identification of the registry a document is in).freeze, - domain: "dbo:Document".freeze, - label: "registry number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:registryNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :reign, - domain: "dbo:Person".freeze, - label: "reign".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:reign".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :reignName, - domain: "dbo:Person".freeze, - label: "reign name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:reignName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :reigningPope, - domain: "dbo:Cleric".freeze, - label: "reigning pope".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:reigningPope".freeze, - range: "dbo:Pope".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :related, - label: "related".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:related".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :relatedFunctions, - comment: %(This property is to accommodate the list field that contains a list of related personFunctions a person holds or has held).freeze, - domain: "dbo:Person".freeze, - label: "related functions".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:relatedFunctions".freeze, - range: "dbo:List".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#unifies".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :relatedMeanOfTransportation, - domain: "dbo:MeanOfTransportation".freeze, - label: "related mean of transportation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:relatedMeanOfTransportation".freeze, - range: "dbo:MeanOfTransportation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :relatedPlaces, - comment: %(This property is to accommodate the list field that contains a list of, e.g., monuments in the same town).freeze, - domain: "dbo:Place".freeze, - label: "related places".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:relatedPlaces".freeze, - range: "dbo:List".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#unifies".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :relation, - domain: "dbo:Person".freeze, - label: "relation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:relation".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :relative, - domain: "dbo:Person".freeze, - equivalentProperty: "schema:relatedTo".freeze, - label: "relative".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:relative".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :relativeAtomicMass, - comment: %(the ratio of the average mass of atoms of an element \(from a single given sample or source\) to 1⁄12 of the mass of an atom of carbon-12).freeze, - domain: "dbo:ChemicalElement".freeze, - label: "atomic weight".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:relativeAtomicMass".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :releaseDate, - comment: %(Release date of a Work or another product \(eg Aircraft or other MeansOfTransportation).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P577".freeze, - label: "release date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:releaseDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :releaseLocation, - comment: %(Usually used with releaseDate, particularly for Films. Often there can be several pairs so our modeling is not precise here...).freeze, - domain: "dbo:Work".freeze, - label: "release location".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:releaseLocation".freeze, - range: "dbo:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :relics, - comment: %(Physical remains or personal effects of a saint or venerated person, preserved in a religious building).freeze, - domain: "dbo:ReligiousBuilding".freeze, - label: "relics".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:relics".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :relief, - domain: "dbo:Place".freeze, - label: "relief".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:relief".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :religion, - equivalentProperty: "http://www.wikidata.org/entity/P140".freeze, - label: "religion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:religion".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#conceptualizes".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :religiousHead, - label: "religious head".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:religiousHead".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :religiousHeadLabel, - domain: "dbo:School".freeze, - label: "religious head label".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:religiousHeadLabel".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :religiousOrder, - domain: "dbo:Monastry".freeze, - label: "religious order".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:religiousOrder".freeze, - range: "dbo:ClericalOrder".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :reopened, - label: "reopened".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:reopened".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :reopeningDate, - comment: %(Date of reopening the architectural structure.).freeze, - domain: "dbo:ArchitecturalStructure".freeze, - label: "reopening date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:reopeningDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :reopeningYear, - comment: %(Year of reopening the architectural structure.).freeze, - domain: "dbo:ArchitecturalStructure".freeze, - label: "reopening year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:reopeningYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :reportingMark, - comment: %(A reporting mark is a two-, three-, or four-letter alphabetic code used to identify owners or lessees of rolling stock and other equipment used on the North American railroad network.).freeze, - domain: "dbo:PublicTransitSystem".freeze, - label: "reporting mark".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:reportingMark".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :representative, - domain: "dbo:Place".freeze, - label: "number of representatives".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:representative".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :requirement, - label: "requirement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:requirement".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :reservations, - comment: %(Are reservations required for the establishment or event?).freeze, - domain: "dbo:Restaurant".freeze, - label: "reservations".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:reservations".freeze, - range: "xsd:boolean".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :residence, - comment: %(Place of residence of a person.).freeze, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P263".freeze, - label: "residence".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:residence".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :resolution, - comment: %(Native Resolution).freeze, - domain: "dbo:Software".freeze, - label: "resolution".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:resolution".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasQuality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :restingDate, - domain: "dbo:Person".freeze, - label: "resting date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:restingDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :restingPlace, - domain: "dbo:Person".freeze, - label: "resting place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:restingPlace".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :restingPlacePosition, - domain: "dbo:Person".freeze, - label: "resting place position".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:restingPlacePosition".freeze, - range: "geo:SpatialThing".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :restoreDate, - label: "restore date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:restoreDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :restriction, - comment: %(The use of a thing is restricted in a way.).freeze, - label: "restriction".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:restriction".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :result, - domain: "dbo:MilitaryConflict".freeze, - label: "result".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:result".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :retentionTime, - domain: "dbo:Place".freeze, - label: "relation time".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:retentionTime".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :retired, - label: "retired".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:retired".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :retiredRocket, - domain: "dbo:YearInSpaceflight".freeze, - label: "retired rocket".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:retiredRocket".freeze, - range: "dbo:Rocket".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :retirementDate, - domain: "dbo:Person".freeze, - label: "retirement date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:retirementDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :revenue, - domain: "dbo:Organisation".freeze, - label: "revenue ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:revenue".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :review, - domain: "dbo:Album".freeze, - label: "review".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:review".freeze, - range: "xsd:anyURI".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rgbCoordinateBlue, - domain: "dbo:Colour".freeze, - label: "bluecoordinate in the RGB space".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rgbCoordinateBlue".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rgbCoordinateGreen, - domain: "dbo:Colour".freeze, - label: "green coordinate in the RGB space".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rgbCoordinateGreen".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rgbCoordinateRed, - domain: "dbo:Colour".freeze, - label: "red coordinate in the RGB space".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rgbCoordinateRed".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ridId, - comment: %(An identifying system for scientific authors. The system was introduced in January 2008 by Thomson Reuters. The combined use of the Digital Object Identifier with the ResearcherID allows for a unique association of authors and scientific articles.).freeze, - label: "RID Id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ridId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rightAscension, - domain: "dbo:CelestialBody".freeze, - label: "right ascension".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rightAscension".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rightChild, - domain: "dbo:Island".freeze, - label: "right child".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rightChild".freeze, - range: "dbo:Island".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :rightTributary, - domain: "dbo:River".freeze, - label: "right tributary".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rightTributary".freeze, - range: "dbo:River".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :rivalSchool, - domain: "dbo:School".freeze, - label: "rival".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rivalSchool".freeze, - range: "dbo:School".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :river, - domain: "dbo:Place".freeze, - label: "river".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:river".freeze, - range: "dbo:River".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#nearTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :riverBranch, - domain: "dbo:River".freeze, - label: "branch".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:riverBranch".freeze, - range: "dbo:River".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :riverBranchOf, - domain: "dbo:River".freeze, - label: "branch of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:riverBranchOf".freeze, - range: "dbo:River".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :riverMouth, - domain: "dbo:River".freeze, - label: "river mouth".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:riverMouth".freeze, - range: "dbo:BodyOfWater".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :rkdArtistsId, - comment: %(Rijksbureau voor Kunsthistorische Documentatie \(RKD\) artists database id. -http://rkd.nl/explore/artists/$1).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P650".freeze, - label: "RKDartists id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rkdArtistsId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :road, - domain: "dbo:Infrastructure".freeze, - label: "road".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:road".freeze, - range: "dbo:Road".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :rocket, - domain: "dbo:Spacecraft".freeze, - label: "rocket".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rocket".freeze, - range: "dbo:Rocket".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :rocketFunction, - comment: %(purpose of the rocket).freeze, - domain: "dbo:Rocket".freeze, - label: "rocket function".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rocketFunction".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :rocketStages, - comment: %(number of stages, not including boosters).freeze, - domain: "dbo:Rocket".freeze, - label: "number of rocket stages".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rocketStages".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rolandGarrosDouble, - domain: "dbo:TennisPlayer".freeze, - label: "roland garros double".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rolandGarrosDouble".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rolandGarrosMixed, - domain: "dbo:TennisPlayer".freeze, - label: "roland garros mixed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rolandGarrosMixed".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rolandGarrosSingle, - domain: "dbo:TennisPlayer".freeze, - label: "roland garros single".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rolandGarrosSingle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :role, - label: "role".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:role".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :roleInEvent, - domain: "dbo:Agent".freeze, - label: "A Person's role in an event".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:roleInEvent".freeze, - range: "dbo:Event".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :roofHeight, - domain: "dbo:Skyscraper".freeze, - label: "roof height".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:roofHeight".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :rotationPeriod, - domain: "dbo:Planet".freeze, - label: "rotation period (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:rotationPeriod".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :route, - domain: "dbo:Place".freeze, - label: "route".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:route".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :routeActivity, - comment: %(details of the activity for a road.).freeze, - domain: "dbo:RouteStop".freeze, - label: "route activity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routeActivity".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :routeDirection, - comment: %(The general direction of the route \(eg. North-South\).).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "route direction".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routeDirection".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :routeEnd, - comment: %(End of the route. This is where the route ends and, for U.S. roads, is either at the northern terminus or eastern terminus.).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "route end".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routeEnd".freeze, - range: "dbo:Station".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :routeEndDirection, - comment: %(End of the route. The opposite of OntologyProperty:routeStartDirection.).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "road end direction".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routeEndDirection".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :routeEndLocation, - comment: %(The end location of the route.).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "route end location".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routeEndLocation".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :routeJunction, - comment: %(A junction or cross to another route.).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "route junction".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routeJunction".freeze, - range: "dbo:Station".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :routeLine, - comment: %(line of a stop on a route.).freeze, - domain: "dbo:RouteStop".freeze, - label: "line".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routeLine".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :routeNext, - comment: %(next stop on a route.).freeze, - domain: "dbo:RouteStop".freeze, - label: "route next stop".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routeNext".freeze, - range: "dbo:RouteStop".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :routeNumber, - comment: %(The number of the route.).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "route number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routeNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :routePrevious, - comment: %(previous stop on a route.).freeze, - domain: "dbo:RouteStop".freeze, - label: "route previous stop".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routePrevious".freeze, - range: "dbo:RouteStop".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :routeStart, - comment: %(Start of the route. This is where the route begins and, for U.S. roads, is either at the southern terminus or western terminus.).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "route start".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routeStart".freeze, - range: "dbo:Station".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :routeStartDirection, - comment: %(End of the route. For U.S. roads, this should be either "South" or "West" per the standards set by the U.S. Roads project.).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "road start direction".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routeStartDirection".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :routeStartLocation, - comment: %(The start location of the route.).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "route start location".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routeStartLocation".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :routeTypeAbbreviation, - comment: %(The route type abbreviation \(eg.: I for Interstate, M for Motorway or NJ for New Jersey Route\).).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "route type abbreviation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:routeTypeAbbreviation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :royalAnthem, - label: "royal anthem".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:royalAnthem".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :ruling, - comment: %(Ruling referred to in this legal case).freeze, - domain: "dbo:LegalCase".freeze, - label: "ruling".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ruling".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :runningMate, - label: "running mate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:runningMate".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :runtime, - domain: "dbo:Work".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P2047".freeze, - label: "runtime (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:runtime".freeze, - range: "xsd:double".freeze, - subPropertyOf: "schema:duration".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :runwayDesignation, - domain: "dbo:Airport".freeze, - label: "designation of runway".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:runwayDesignation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :runwayLength, - domain: "dbo:Airport".freeze, - label: "length of runway (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:runwayLength".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :runwaySurface, - domain: "dbo:Airport".freeze, - label: "surface of runway".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:runwaySurface".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :runwayWidth, - domain: "dbo:Airport".freeze, - label: "width of runway (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:runwayWidth".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ruralMunicipality, - domain: "dbo:Road".freeze, - label: "rural municipality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ruralMunicipality".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :saint, - domain: "dbo:PopulatedPlace".freeze, - label: "saint".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:saint".freeze, - range: "dbo:Saint".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :salary, - domain: "dbo:Person".freeze, - label: "salary ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:salary".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sales, - comment: %(This property holds an intermediate node of the type Sales.).freeze, - label: "sales".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sales".freeze, - range: "dbo:Sales".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasSetting".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sameName, - domain: "dbo:Settlement".freeze, - label: "same name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sameName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :satScore, - comment: %(most recent average SAT scores).freeze, - domain: "dbo:School".freeze, - label: "SAT score".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:satScore".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :satcat, - comment: %(satellite catalogue number, omit leading zeroes \(e.g. 25544\)).freeze, - domain: "dbo:SpaceMission".freeze, - label: "SATCAT".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:satcat".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :satellite, - domain: "dbo:Planet".freeze, - label: "satellite".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:satellite".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :satellitesDeployed, - domain: "dbo:SpaceShuttle".freeze, - label: "satellites deployed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:satellitesDeployed".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :scale, - domain: "dbo:Place".freeze, - label: "scale".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:scale".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :scene, - domain: "dbo:Person".freeze, - label: "scene".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:scene".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :school, - comment: %(school a person goes or went to).freeze, - domain: "dbo:Person".freeze, - label: "school".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:school".freeze, - range: "dbo:EducationalInstitution".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :schoolBoard, - domain: "dbo:School".freeze, - label: "school board".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:schoolBoard".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :schoolCode, - domain: "dbo:School".freeze, - label: "school code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:schoolCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :schoolNumber, - domain: "dbo:School".freeze, - label: "school number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:schoolNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :schoolPatron, - domain: "dbo:School".freeze, - label: "school patron".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:schoolPatron".freeze, - range: "dbo:Agent".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :scientificName, - domain: "dbo:Species".freeze, - label: "scientific name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:scientificName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :score, - comment: %(Score or points of something \(eg a SportCompetitionResult\)).freeze, - label: "score".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:score".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :screenActorsGuildAward, - domain: "dbo:Actor".freeze, - label: "Screen Actors Guild Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:screenActorsGuildAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sea, - domain: "dbo:Place".freeze, - label: "sea".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sea".freeze, - range: "dbo:Sea".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#nearTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :season, - domain: "dbo:Agent".freeze, - label: "season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:season".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasSetting".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :seasonManager, - domain: "dbo:Person".freeze, - label: "season manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:seasonManager".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :seasonNumber, - comment: %(The season number to which the TelevisionEpisode belongs.).freeze, - domain: "dbo:TelevisionEpisode".freeze, - label: "season number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:seasonNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :seatNumber, - domain: "dbo:AdministrativeRegion".freeze, - label: "number of seats in the land parlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:seatNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :seatingCapacity, - domain: "dbo:Building".freeze, - label: "seating capacity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:seatingCapacity".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :second, - domain: "dbo:Person".freeze, - label: "second".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:second".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :secondCommander, - domain: "dbo:MilitaryUnit".freeze, - label: "second commander".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:secondCommander".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :secondDriver, - domain: "dbo:GrandPrix".freeze, - label: "second driver".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:secondDriver".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :secondDriverCountry, - domain: "dbo:GrandPrix".freeze, - label: "second driver country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:secondDriverCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :secondLeader, - label: "secondLeader".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:secondLeader".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :secondPlace, - label: "second place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:secondPlace".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :secondPopularVote, - label: "secondPopularVote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:secondPopularVote".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :secondTeam, - domain: "dbo:GrandPrix".freeze, - label: "second team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:secondTeam".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :secretaryGeneral, - domain: "dbo:Organisation".freeze, - label: "secretary".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:secretaryGeneral".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :security, - comment: %(Safety precautions that are used in the building.).freeze, - domain: "dbo:Building".freeze, - label: "security".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:security".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :seiyu, - domain: "dbo:Person".freeze, - label: "seiyu".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:seiyu".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :selection, - comment: %(when \(or in which project\) the person was selected to train as an astronaut).freeze, - domain: "dbo:Astronaut".freeze, - label: "selection".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:selection".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasSetting".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :selectionPoint, - domain: "dbo:Athlete".freeze, - label: "selection point".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:selectionPoint".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :selectionYear, - domain: "dbo:Athlete".freeze, - label: "selection year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:selectionYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :selibrId, - comment: %(Authority data from the National Library of Sweden).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P906".freeze, - label: "SELIBR Id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:selibrId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :senator, - label: "senator".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:senator".freeze, - range: "dbo:Person".freeze, - subPropertyOf: ["dbo:MemberOfParliament".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :senior, - domain: "dbo:PopulatedPlace".freeze, - label: "senior".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:senior".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :seniority, - label: "seniority".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:seniority".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :seniunija, - domain: "dbo:PopulatedPlace".freeze, - label: "seniunija".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:seniunija".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sentence, - domain: "dbo:Person".freeze, - label: "sentence".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sentence".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :series, - label: "series".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:series".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :service, - domain: "dbo:Organisation".freeze, - label: "service".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:service".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :serviceEndDate, - domain: "dbo:MilitaryPerson".freeze, - label: "service end date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:serviceEndDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :serviceEndYear, - domain: "dbo:MilitaryPerson".freeze, - label: "service end year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:serviceEndYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :serviceModule, - domain: "dbo:SpaceMission".freeze, - label: "service module".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:serviceModule".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :serviceNumber, - comment: %(The service number held by the individual during military service.).freeze, - domain: "dbo:MilitaryPerson".freeze, - label: "service number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:serviceNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :serviceStartDate, - domain: "dbo:MilitaryPerson".freeze, - label: "service start date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:serviceStartDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :serviceStartYear, - domain: "dbo:MilitaryPerson".freeze, - label: "service start year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:serviceStartYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :servingRailwayLine, - comment: %(Railway services that serve the station.).freeze, - domain: "dbo:Station".freeze, - label: "serving railway line".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:servingRailwayLine".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :servingSize, - comment: %(Default serving size \(eg "100 g" for the standard 100 g serving size\). approximateCalories apply to this serving size).freeze, - domain: "dbo:Food".freeze, - label: "serving size (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:servingSize".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :servingTemperature, - comment: %(Serving temperature for the food \(e.g.: hot, cold, warm or room temperature\).).freeze, - domain: "dbo:Food".freeze, - label: "serving temperature".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:servingTemperature".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sessionNumber, - label: "session number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sessionNumber".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :setDesigner, - comment: %(the person who is responsible for the film set design).freeze, - domain: "dbo:Film".freeze, - label: "set designer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:setDesigner".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :settingOfPlay, - comment: %(The places and time where the play takes place.).freeze, - domain: "dbo:Play".freeze, - label: "setting of play".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:settingOfPlay".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :settlement, - domain: "dbo:Place".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P131".freeze, - label: "settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:settlement".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :settlementAttached, - domain: "dbo:Settlement".freeze, - label: "settlement attached".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:settlementAttached".freeze, - range: "dbo:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :setupTime, - label: "setup time (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:setupTime".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sex, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P21".freeze, - label: "sex".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sex".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sexualOrientation, - domain: "dbo:Person".freeze, - label: "sexual orientation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sexualOrientation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasQuality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :shape, - domain: "dbo:Intercommunality".freeze, - label: "intercommunality shape".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shape".freeze, - range: "dbo:Community".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasQuality".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :shareDate, - domain: "dbo:Broadcaster".freeze, - label: "share date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shareDate".freeze, - range: "xsd:gYearMonth".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :shareOfAudience, - domain: "dbo:Broadcaster".freeze, - label: "share of audience".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shareOfAudience".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :shareSource, - domain: "dbo:Broadcaster".freeze, - label: "share source".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shareSource".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sharingOutPopulation, - domain: "dbo:PopulatedPlace".freeze, - label: "sharing out population".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sharingOutPopulation".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sharingOutPopulationYear, - domain: "dbo:PopulatedPlace".freeze, - label: "sharing out year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sharingOutPopulationYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sheading, - domain: "dbo:PopulatedPlace".freeze, - label: "sheading".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sheading".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :shipBeam, - comment: %(The beam of a ship is its width at the widest point.).freeze, - domain: "dbo:Ship".freeze, - label: "ship beam (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shipBeam".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :shipCrew, - domain: "dbo:Ship".freeze, - label: "crew".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shipCrew".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :shipDisplacement, - comment: %(A ship's displacement is its mass at any given time.).freeze, - domain: "dbo:Ship".freeze, - label: "displacement (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shipDisplacement".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :shipDraft, - comment: %(The draft \(or draught\) of a ship's hull is the vertical distance between the waterline and the bottom of the hull \(keel\), with the thickness of the hull included; in the case of not being included the draft outline would be obtained.).freeze, - domain: "dbo:Ship".freeze, - label: "ship draft (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shipDraft".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :shipLaunch, - domain: "dbo:Ship".freeze, - label: "ship launched".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shipLaunch".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :shoeNumber, - domain: "dbo:Person".freeze, - label: "shoe number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shoeNumber".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :shoeSize, - domain: "dbo:Person".freeze, - label: "shoe size".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shoeSize".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :shoot, - domain: "dbo:Person".freeze, - label: "shoot".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shoot".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :shoots, - domain: "dbo:IceHockeyPlayer".freeze, - label: "shoots".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shoots".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :shoreLength, - domain: "dbo:BodyOfWater".freeze, - label: "shore length (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shoreLength".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :shortProgCompetition, - domain: "dbo:Person".freeze, - label: "short prog competition".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shortProgCompetition".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :shortProgScore, - domain: "dbo:Person".freeze, - label: "short prog score".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shortProgScore".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :show, - label: "show".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:show".freeze, - range: "dbo:TelevisionShow".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :showJudge, - domain: "dbo:TelevisionShow".freeze, - label: "showJudge".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:showJudge".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :shuttle, - domain: "dbo:SpaceMission".freeze, - label: "shuttle".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:shuttle".freeze, - range: "dbo:SpaceShuttle".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sibling, - domain: "dbo:Person".freeze, - label: "sibling".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sibling".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :signName, - domain: "dbo:HungarySettlement".freeze, - label: "sign name of a hungarian settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:signName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :signature, - domain: "dbo:Person".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P109".freeze, - label: "signature".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:signature".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :significantBuilding, - domain: "dbo:Architect".freeze, - label: "significant building".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:significantBuilding".freeze, - range: "dbo:Building".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :significantDesign, - domain: "dbo:Architect".freeze, - label: "significant design".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:significantDesign".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :significantProject, - comment: %(A siginificant artifact constructed by the person.).freeze, - domain: "dbo:Person".freeze, - label: "significant project".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:significantProject".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :silCode, - domain: "dbo:Language".freeze, - label: "SIL code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:silCode".freeze, - subPropertyOf: ["dbo:LanguageCode".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :silverMedalDouble, - domain: "dbo:TennisPlayer".freeze, - label: "silver medal double".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:silverMedalDouble".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :silverMedalMixed, - domain: "dbo:TennisPlayer".freeze, - label: "silver medal mixed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:silverMedalMixed".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :silverMedalSingle, - domain: "dbo:TennisPlayer".freeze, - label: "silver medal single".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:silverMedalSingle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :silverMedalist, - domain: "dbo:SportsEvent".freeze, - label: "siler medalist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:silverMedalist".freeze, - range: "dbo:Person".freeze, - subPropertyOf: ["dbo:Medalist".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze], - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :simcCode, - comment: %(Should be a datatype property).freeze, - domain: "dbo:PopulatedPlace".freeze, - equivalentProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - label: "SIMC code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:simcCode".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :similar, - label: "similar".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:similar".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sire, - domain: "dbo:Animal".freeze, - label: "sire".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sire".freeze, - range: "dbo:Animal".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :siren, - label: "siren number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:siren".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sisterCollege, - domain: "dbo:College".freeze, - label: "sister college".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sisterCollege".freeze, - range: "dbo:College".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sisterNewspaper, - domain: "dbo:Newspaper".freeze, - label: "sister newspaper".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sisterNewspaper".freeze, - range: "dbo:Newspaper".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sisterStation, - domain: "dbo:Broadcaster".freeze, - label: "sister station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sisterStation".freeze, - range: "dbo:Broadcaster".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sixthFormStudents, - domain: "dbo:School".freeze, - label: "sixth form students".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sixthFormStudents".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sizeBlazon, - label: "size blazon".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sizeBlazon".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sizeLogo, - label: "size logo".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sizeLogo".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sizeMap, - label: "size map".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sizeMap".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sizeThumbnail, - label: "size thumbnail".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sizeThumbnail".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :size_v, - domain: "dbo:Openswarm".freeze, - label: "size_v".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:size_v".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :skiLift, - domain: "dbo:Place".freeze, - label: "ski lift".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:skiLift".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :skiPisteKilometre, - domain: "dbo:Place".freeze, - label: "ski piste kilometre (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:skiPisteKilometre".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :skiPisteNumber, - domain: "dbo:Place".freeze, - label: "ski piste number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:skiPisteNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :skiTow, - domain: "dbo:Place".freeze, - label: "ski tow".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:skiTow".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :skills, - label: "skills".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:skills".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDescribedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :skinColor, - domain: "dbo:Person".freeze, - label: "skin color".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:skinColor".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :slogan, - label: "slogan".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:slogan".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :smiles, - comment: %(The Simplified Molecular-Input Line-Entry System or SMILES is a specification in form of a line notation for describing the structure of chemical molecules using short ASCII strings.).freeze, - domain: "dbo:ChemicalCompound".freeze, - label: "SMILES".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:smiles".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :snowParkNumber, - domain: "dbo:Place".freeze, - label: "snow park number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:snowParkNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :soccerLeaguePromoted, - domain: "dbo:SoccerLeagueSeason".freeze, - label: "promoted".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:soccerLeaguePromoted".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :soccerLeagueRelegated, - domain: "dbo:SoccerLeagueSeason".freeze, - label: "relegated teams".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:soccerLeagueRelegated".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :soccerLeagueSeason, - domain: "dbo:SoccerLeagueSeason".freeze, - label: "season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:soccerLeagueSeason".freeze, - range: "dbo:SoccerLeagueSeason".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :soccerLeagueWinner, - domain: "dbo:SoccerLeagueSeason".freeze, - label: "league champion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:soccerLeagueWinner".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :soccerTournamentClosingSeason, - domain: "dbo:SoccerTournament".freeze, - label: "closing season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:soccerTournamentClosingSeason".freeze, - range: "dbo:SoccerTournament".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :soccerTournamentLastChampion, - domain: "dbo:SoccerTournament".freeze, - label: "last champion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:soccerTournamentLastChampion".freeze, - range: "dbo:SoccerClub".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :soccerTournamentMostSteady, - domain: "dbo:SoccerTournament".freeze, - label: "most steady".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:soccerTournamentMostSteady".freeze, - range: "dbo:SoccerClub".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :soccerTournamentMostSuccesfull, - domain: "dbo:SoccerTournament".freeze, - label: "most successfull".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:soccerTournamentMostSuccesfull".freeze, - range: "dbo:SoccerClub".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :soccerTournamentOpeningSeason, - domain: "dbo:SoccerTournament".freeze, - label: "opening season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:soccerTournamentOpeningSeason".freeze, - range: "dbo:SoccerTournament".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :soccerTournamentThisSeason, - domain: "dbo:SoccerTournament".freeze, - label: "this season".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:soccerTournamentThisSeason".freeze, - range: "dbo:SoccerTournament".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :soccerTournamentTopScorer, - domain: "dbo:SoccerTournament".freeze, - label: "top scorer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:soccerTournamentTopScorer".freeze, - range: "dbo:SoccerPlayer".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :solicitorGeneral, - comment: %(high-ranking solicitor).freeze, - domain: "dbo:LegalCase".freeze, - label: "solicitor general".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:solicitorGeneral".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :solubility, - domain: "dbo:ChemicalSubstance".freeze, - label: "solubility".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:solubility".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :solvent, - domain: "dbo:ChemicalSubstance".freeze, - label: "solvent".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:solvent".freeze, - range: "dbo:ChemicalSubstance".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :solventWithBadSolubility, - domain: "dbo:ChemicalSubstance".freeze, - label: "solvent with bad solubility".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:solventWithBadSolubility".freeze, - range: "dbo:ChemicalSubstance".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :solventWithGoodSolubility, - domain: "dbo:ChemicalSubstance".freeze, - label: "solvent with good solubility".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:solventWithGoodSolubility".freeze, - range: "dbo:ChemicalSubstance".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :solventWithMediocreSolubility, - domain: "dbo:ChemicalSubstance".freeze, - label: "solvent with mediocre solubility".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:solventWithMediocreSolubility".freeze, - range: "dbo:ChemicalSubstance".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :soundRecording, - comment: %(Sound recording somehow related to the subject).freeze, - label: "sound recording".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:soundRecording".freeze, - range: "dbo:Sound".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :source, - label: "source".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:source".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourceConfluence, - domain: "dbo:River".freeze, - label: "source confluence".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceConfluence".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourceConfluenceCountry, - domain: "dbo:River".freeze, - label: "source confluence country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceConfluenceCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourceConfluenceElevation, - label: "source confluence elevation (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceConfluenceElevation".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sourceConfluenceMountain, - domain: "dbo:River".freeze, - label: "source confluence mountain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceConfluenceMountain".freeze, - range: "dbo:Mountain".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#nearTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourceConfluencePlace, - domain: "dbo:River".freeze, - label: "source confluence place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceConfluencePlace".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourceConfluencePosition, - domain: "dbo:River".freeze, - label: "source confluence position".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceConfluencePosition".freeze, - range: "geo:SpatialThing".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourceConfluenceRegion, - domain: "dbo:River".freeze, - label: "source confluence region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceConfluenceRegion".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourceConfluenceState, - domain: "dbo:River".freeze, - label: "source confluence state".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceConfluenceState".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourceCountry, - domain: "dbo:Stream".freeze, - equivalentProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - label: "source country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceCountry".freeze, - range: "dbo:Country".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourceDistrict, - label: "source district".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceDistrict".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourceElevation, - label: "source elevation (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceElevation".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sourceMountain, - label: "source mountain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceMountain".freeze, - range: "dbo:Mountain".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourcePlace, - label: "source place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourcePlace".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourcePosition, - label: "source position".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourcePosition".freeze, - range: "geo:SpatialThing".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourceRegion, - label: "source region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceRegion".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourceState, - label: "source state".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceState".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sourceText, - comment: %(Source of something \(eg an image\) as text. Use dct:source if the source is described using a resource).freeze, - label: "sourceText".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sourceText".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :southEastPlace, - comment: %(indicates another place situated south-east.).freeze, - domain: "dbo:Place".freeze, - label: "south-east place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:southEastPlace".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "dbo:closeTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :southPlace, - comment: %(indicates another place situated south.).freeze, - domain: "dbo:Place".freeze, - label: "south place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:southPlace".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "dbo:closeTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :southWestPlace, - comment: %(indicates another place situated south-west.).freeze, - domain: "dbo:Place".freeze, - label: "south-west place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:southWestPlace".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "dbo:closeTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sovereignCountry, - domain: "dbo:Place".freeze, - label: "sovereign country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sovereignCountry".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :space, - domain: "dbo:Building".freeze, - label: "space".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:space".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :spacecraft, - domain: "dbo:SpaceMission".freeze, - label: "spacecraft".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:spacecraft".freeze, - range: "dbo:Spacecraft".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :spacestation, - comment: %(space station that has been visited during a space mission).freeze, - domain: "dbo:SpaceMission".freeze, - label: "spacestation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:spacestation".freeze, - range: "dbo:SpaceStation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :spacewalkBegin, - domain: "dbo:SpaceMission".freeze, - label: "spacewalk begin".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:spacewalkBegin".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :spacewalkEnd, - domain: "dbo:SpaceMission".freeze, - label: "spacewalk end".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:spacewalkEnd".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :speaker, - comment: %(number of office holder).freeze, - label: "speaker".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:speaker".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :specialEffects, - comment: %(the person who is responsible for the film special effects).freeze, - domain: "dbo:Film".freeze, - label: "special effects".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:specialEffects".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :specialTrial, - domain: "dbo:Person".freeze, - label: "special trial".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:specialTrial".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :specialist, - label: "specialist".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:specialist".freeze, - range: "dbo:PersonFunction".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :speciality, - domain: "dbo:Person".freeze, - label: "speciality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:speciality".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :specialization, - comment: %(Points out the subject or thing someone or something is specialized in \(for\).).freeze, - label: "specialization".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:specialization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :species, - domain: "dbo:Species".freeze, - label: "species".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:species".freeze, - range: "dbo:Species".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#specializes".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :speedLimit, - domain: "dbo:RouteOfTransportation".freeze, - label: "speed limit (kmh)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:speedLimit".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :spike, - domain: "dbo:VolleyballPlayer".freeze, - label: "spike".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:spike".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :splitFromParty, - domain: "dbo:PoliticalParty".freeze, - label: "split from party".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:splitFromParty".freeze, - range: "dbo:PoliticalParty".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :spokenIn, - domain: "dbo:Language".freeze, - label: "spoken in".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:spokenIn".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :spokesperson, - domain: "dbo:PoliticalParty".freeze, - label: "spokesperson".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:spokesperson".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sport, - label: "sport".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sport".freeze, - range: "dbo:Sport".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sportCountry, - comment: %(The country, for which the athlete is participating in championships).freeze, - domain: "dbo:Athlete".freeze, - label: "sport country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sportCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sportDiscipline, - comment: %(the sport discipline the athlete practices, e.g. Diving, or that a board member of a sporting club is focussing at).freeze, - domain: "dbo:Person".freeze, - label: "sport discipline".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sportDiscipline".freeze, - range: "dbo:Sport".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sportGoverningBody, - label: "sport governing body".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sportGoverningBody".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sportSpecialty, - comment: %(the sport specialty the athlete practices, e.g. 'Ring' for a men's artistic gymnastics athlete).freeze, - domain: "dbo:Athlete".freeze, - label: "sport specialty".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sportSpecialty".freeze, - range: "dbo:Sport".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sportsFunction, - domain: "dbo:Person".freeze, - label: "sports function".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sportsFunction".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :spouse, - comment: %(the person they are married to).freeze, - domain: "dbo:Person".freeze, - equivalentProperty: ["http://www.wikidata.org/entity/P26".freeze, "schema:spouse".freeze], - label: "spouse".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:spouse".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :spouseName, - domain: "dbo:Person".freeze, - label: "spouse name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:spouseName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :spurOf, - domain: "dbo:Road".freeze, - label: "spur of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:spurOf".freeze, - range: "dbo:Road".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :spurType, - domain: "dbo:Road".freeze, - label: "spur type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:spurType".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :squadNumber, - comment: %(The number that an athlete wears in a team sport.).freeze, - domain: "dbo:SportsTeamMember".freeze, - label: "squad number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:squadNumber".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :stadium, - label: "Stadium".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:stadium".freeze, - range: "dbo:Stadium".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :staff, - domain: "dbo:Organisation".freeze, - label: "staff".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:staff".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :starRating, - domain: "dbo:Hotel".freeze, - label: "star rating".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:starRating".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :starring, - domain: "dbo:Work".freeze, - equivalentProperty: ["http://www.wikidata.org/entity/P161".freeze, "schema:actors".freeze], - label: "starring".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:starring".freeze, - range: "dbo:Actor".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :start, - domain: "dbo:TimePeriod".freeze, - label: "start".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:start".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :startCareer, - domain: "dbo:Person".freeze, - label: "start career".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:startCareer".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :startDate, - comment: %(The start date of the event.).freeze, - domain: "dbo:Event".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P580".freeze, - label: "start date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:startDate".freeze, - range: "xsd:date".freeze, - subPropertyOf: "schema:startDate".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :startDateTime, - comment: %(The start date and time of the event.).freeze, - domain: "dbo:Event".freeze, - label: "start date and time".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:startDateTime".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :startOccupation, - label: "start occupation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:startOccupation".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :startPoint, - domain: "dbo:Place".freeze, - label: "start point".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:startPoint".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :startReign, - domain: "dbo:Person".freeze, - label: "start reign".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:startReign".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :startWct, - domain: "dbo:Person".freeze, - label: "start xct".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:startWct".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :startWqs, - domain: "dbo:Person".freeze, - label: "start wqs".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:startWqs".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :startYear, - label: "start year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:startYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :startYearOfInsertion, - domain: "dbo:AutomobileEngine".freeze, - label: "start year of insertion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:startYearOfInsertion".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :startYearOfSales, - domain: "dbo:Sales".freeze, - label: "start year of sales".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:startYearOfSales".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :statName, - label: "stat name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:statName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :statValue, - label: "stat value".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:statValue".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :state, - label: "state".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:state".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :stateDelegate, - label: "state delegate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:stateDelegate".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :stateOfOrigin, - domain: "dbo:Person".freeze, - label: "state of origin".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:stateOfOrigin".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :stateOfOriginPoint, - domain: "dbo:Athlete".freeze, - label: "state of origin point".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:stateOfOriginPoint".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :stateOfOriginTeam, - domain: "dbo:Athlete".freeze, - label: "state of origin team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:stateOfOriginTeam".freeze, - range: "dbo:SportsTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :stateOfOriginYear, - domain: "dbo:Athlete".freeze, - label: "state of origin year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:stateOfOriginYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :stationEvaDuration, - domain: "dbo:SpaceMission".freeze, - label: "station EVA duration (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:stationEvaDuration".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :stationStructure, - comment: %(Type of station structure \(underground, at-grade, or elevated\).).freeze, - domain: "dbo:Station".freeze, - label: "station structure".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:stationStructure".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :stationVisitDuration, - domain: "dbo:SpaceMission".freeze, - label: "station visit duration (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:stationVisitDuration".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :statistic, - domain: "dbo:Statistic".freeze, - label: "statistic".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:statistic".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :statisticLabel, - domain: "dbo:BaseballPlayer".freeze, - label: "statistic label".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:statisticLabel".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :statisticValue, - domain: "dbo:BaseballPlayer".freeze, - label: "statistic value".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:statisticValue".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :statisticYear, - domain: "dbo:BaseballPlayer".freeze, - label: "statistic year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:statisticYear".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :status, - label: "status".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:status".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :statusManager, - domain: "dbo:Person".freeze, - label: "status manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:statusManager".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :statusYear, - domain: "dbo:Place".freeze, - label: "status year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:statusYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :stellarClassification, - domain: "dbo:CelestialBody".freeze, - label: "stellar classification".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:stellarClassification".freeze, - range: "skos:OrderedCollection".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :stockExchange, - domain: "dbo:Company".freeze, - label: "Registered at Stock Exchange".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:stockExchange".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :storyEditor, - domain: "dbo:TelevisionShow".freeze, - label: "story editor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:storyEditor".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :strength, - domain: "dbo:MilitaryConflict".freeze, - label: "strength".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:strength".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :structuralSystem, - domain: "dbo:Building".freeze, - label: "structural system".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:structuralSystem".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasConstituent".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :student, - domain: "dbo:Person".freeze, - label: "student".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:student".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :style, - domain: "dbo:Artist".freeze, - label: "style".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:style".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :stylisticOrigin, - domain: "dbo:MusicGenre".freeze, - label: "stylistic origin".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:stylisticOrigin".freeze, - range: "dbo:MusicGenre".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :subClassis, - comment: %(a subdivision within a Species classis).freeze, - domain: "dbo:Species".freeze, - label: "sub-classis".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subClassis".freeze, - subPropertyOf: "dbo:classis".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :subFamily, - domain: "dbo:Species".freeze, - label: "sub-family".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subFamily".freeze, - range: "dbo:Taxon".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :subGenus, - comment: %(A rank in the classification of organisms, below genus ; a taxon at that rank).freeze, - domain: "dbo:Species".freeze, - label: "subgenus".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subGenus".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#specializes".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :subMunicipalityType, - domain: "dbo:SubMunicipality".freeze, - label: "type of municipality".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subMunicipalityType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :subOrder, - domain: "dbo:Species".freeze, - label: "sub-order".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subOrder".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :subPrefecture, - domain: "dbo:Place".freeze, - label: "subprefecture".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subPrefecture".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :subTribus, - domain: "dbo:Species".freeze, - label: "subtribus".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subTribus".freeze, - range: "dbo:Species".freeze, - subPropertyOf: "dbo:Tribus".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :subdivision, - label: "subdivision".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subdivision".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :subdivisionLink, - domain: "dbo:Place".freeze, - label: "subdivision link".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subdivisionLink".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :subdivisionName, - domain: "dbo:Island".freeze, - label: "subdivision name of the island".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subdivisionName".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :subdivisions, - label: "subdivisions".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subdivisions".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :subjectOfPlay, - comment: %(The overall subject matter dealt with by the play.).freeze, - domain: "dbo:Play".freeze, - label: "subject of play".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subjectOfPlay".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :subjectTerm, - comment: %(The subject as a term, possibly a term from a formal classification).freeze, - domain: "dbo:Work".freeze, - label: "subject term".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subjectTerm".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :sublimationPoint, - label: "sublimation point (K)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sublimationPoint".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :suborbitalFlights, - domain: "dbo:YearInSpaceflight".freeze, - label: "suborbital flights".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:suborbitalFlights".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :subprefecture, - domain: "dbo:Department".freeze, - label: "subprefecture".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subprefecture".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :subregion, - domain: "dbo:Place".freeze, - label: "subregion".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subregion".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :subsequentInfrastructure, - domain: "dbo:Infrastructure".freeze, - label: "subsequent infrastructure".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subsequentInfrastructure".freeze, - range: "dbo:Infrastructure".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :subsequentWork, - domain: "dbo:Work".freeze, - label: "subsequent work".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subsequentWork".freeze, - range: "dbo:Work".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :subsidiary, - domain: "dbo:Company".freeze, - label: "subsidiary".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subsidiary".freeze, - range: "dbo:Company".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :subsystem, - domain: "dbo:Place".freeze, - label: "subsystem".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subsystem".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :subsystemLink, - domain: "dbo:Place".freeze, - label: "subsystem link".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subsystemLink".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :subtitle, - label: "subtitle".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:subtitle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :successfulLaunches, - label: "successful launches".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:successfulLaunches".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :successor, - label: "successor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:successor".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :sudocId, - comment: %(Système universitaire de documentation id \(French collaborative library catalog\). -http://www.idref.fr/$1).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P269".freeze, - label: "SUDOC id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:sudocId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :summerAppearances, - domain: "dbo:OlympicResult".freeze, - label: "summer appearances".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:summerAppearances".freeze, - range: "dbo:OlympicResult".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :summerTemperature, - domain: "dbo:Settlement".freeze, - label: "summer temperature (K)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:summerTemperature".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :superFamily, - domain: "dbo:Species".freeze, - label: "super-family".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:superFamily".freeze, - range: "dbo:Taxon".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :superOrder, - domain: "dbo:Species".freeze, - label: "super-order".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:superOrder".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :superTribus, - domain: "dbo:Species".freeze, - label: "supertribus".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:superTribus".freeze, - range: "dbo:Species".freeze, - subPropertyOf: "dbo:Tribus".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :superbowlWin, - domain: "dbo:Athlete".freeze, - label: "superbowl win".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:superbowlWin".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :superintendent, - domain: "dbo:Organisation".freeze, - label: "superintendent".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:superintendent".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :supplementalDraftRound, - domain: "dbo:Athlete".freeze, - label: "supplemental draft round".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:supplementalDraftRound".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :supplementalDraftYear, - domain: "dbo:GridironFootballPlayer".freeze, - label: "supplemental draft year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:supplementalDraftYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :supplies, - domain: "dbo:Artery".freeze, - label: "supplies".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:supplies".freeze, - range: "dbo:AnatomicalStructure".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :supply, - domain: "dbo:Place".freeze, - label: "supply".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:supply".freeze, - range: "dbo:Place".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :suppreddedDate, - comment: %(Date when the Church forbade the veneration of this saint. -\(I hope that's what it means, I don't know why the original author didn't document it\)).freeze, - domain: "dbo:Saint".freeze, - label: "suppredded date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:suppreddedDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :surfaceArea, - domain: "dbo:Planet".freeze, - label: "surface area (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:surfaceArea".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :surfaceFormOccurrenceOffset, - label: "position in which a surface occurs in a text".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:surfaceFormOccurrenceOffset".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :surfaceGravity, - domain: "dbo:Planet".freeze, - label: "surface gravity (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:surfaceGravity".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :surfaceType, - label: "type of surface".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:surfaceType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :swimmingStyle, - domain: "dbo:Swimmer".freeze, - label: "Swimming style".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:swimmingStyle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :symbol, - comment: %(HUGO Gene Symbol).freeze, - domain: "dbo:Biomolecule".freeze, - label: "Symbol".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:symbol".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :symptom, - domain: "dbo:Disease".freeze, - label: "symptoms".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:symptom".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :synonym, - label: "synonym".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:synonym".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :systemOfLaw, - comment: %(A referral to the relevant system of law).freeze, - domain: "dbo:LegalCase".freeze, - label: "system of law".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:systemOfLaw".freeze, - range: "dbo:SystemOfLaw".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :systemRequirements, - label: "minimum system requirements".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:systemRequirements".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :tag, - label: "tag".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tag".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :taoiseach, - comment: %(head of government of Ireland).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P6".freeze, - label: "taoiseach".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:taoiseach".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :targetAirport, - domain: "dbo:Airline".freeze, - label: "target airport".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:targetAirport".freeze, - range: "dbo:Airport".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :targetSpaceStation, - domain: "dbo:Spacecraft".freeze, - label: "target space station station".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:targetSpaceStation".freeze, - range: "dbo:SpaceStation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :taste, - domain: "dbo:Food".freeze, - label: "taste or flavour".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:taste".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :tattoo, - domain: "dbo:Person".freeze, - label: "tattoo".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tattoo".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :taxon, - domain: "dbo:Species".freeze, - label: "has taxon".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:taxon".freeze, - range: "dbo:Taxon".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :teachingStaff, - domain: "dbo:School".freeze, - label: "teaching staff".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:teachingStaff".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :team, - equivalentProperty: "http://www.wikidata.org/entity/P54".freeze, - label: "team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:team".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :teamCoached, - domain: "dbo:Athlete".freeze, - label: "team coached".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:teamCoached".freeze, - range: "dbo:SportsTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :teamManager, - domain: "dbo:Person".freeze, - label: "team manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:teamManager".freeze, - range: "dbo:SportsTeam".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :teamName, - domain: "dbo:School".freeze, - label: "team name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:teamName".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :teamPoint, - domain: "dbo:Athlete".freeze, - label: "team point".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:teamPoint".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :teamSize, - label: "team size".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:teamSize".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :teamTitle, - domain: "dbo:Athlete".freeze, - label: "team title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:teamTitle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :technique, - domain: "dbo:Painting".freeze, - label: "technique".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:technique".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :televisionSeries, - label: "television series".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:televisionSeries".freeze, - range: "dbo:TelevisionShow".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :tempPlace, - domain: "dbo:ChartsPlacements".freeze, - label: "Temporary Placement in the Music Charts".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tempPlace".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :temperature, - label: "temperature (K)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:temperature".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :templateName, - comment: %(DO NOT USE THIS PROPERTY! For internal use only.).freeze, - domain: "dbo:WikimediaTemplate".freeze, - label: "template name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:templateName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :temple, - domain: "dbo:Person".freeze, - label: "temple".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:temple".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :templeYear, - domain: "dbo:Person".freeze, - label: "temple year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:templeYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :tenant, - domain: "dbo:ArchitecturalStructure".freeze, - label: "tenant".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tenant".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :tennisSurfaceType, - comment: %(There are five types of court surface used in professional play. Each surface is different in the speed and height of the bounce of the ball.).freeze, - label: "type of tennis surface".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tennisSurfaceType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :termOfOffice, - domain: "dbo:PopulatedPlace".freeze, - label: "term of office".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:termOfOffice".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :termPeriod, - label: "term period".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:termPeriod".freeze, - range: "dbo:TimePeriod".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasSetting".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :territory, - domain: "dbo:MilitaryConflict,_AdministrativeRegion".freeze, - label: "territory".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:territory".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :terytCode, - comment: %(indexing code used by the Polish National Official Register of the Territorial Division of the Country \(TERYT\) to identify various entities).freeze, - domain: "dbo:PopulatedPlace".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1653".freeze, - label: "TERYT code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:terytCode".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :tessitura, - domain: "dbo:Person".freeze, - label: "tessitura".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tessitura".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :testaverage, - domain: "dbo:School".freeze, - label: "testaverage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:testaverage".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :theology, - domain: "dbo:ChristianDoctrine".freeze, - label: "Theology".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:theology".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :third, - domain: "dbo:Person".freeze, - label: "third".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:third".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :thirdCommander, - domain: "dbo:MilitaryUnit".freeze, - label: "third commander".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:thirdCommander".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :thirdDriver, - domain: "dbo:GrandPrix".freeze, - label: "third driver".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:thirdDriver".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :thirdDriverCountry, - domain: "dbo:GrandPrix".freeze, - label: "third driver country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:thirdDriverCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :thirdPlace, - label: "third place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:thirdPlace".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :thirdTeam, - domain: "dbo:GrandPrix".freeze, - label: "third team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:thirdTeam".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :throwingSide, - domain: "dbo:BaseballPlayer".freeze, - label: "throwing side".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:throwingSide".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :thumbnail, - comment: %(Reserved for DBpedia.).freeze, - label: "thumbnail".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:thumbnail".freeze, - range: "dbo:Image".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isExpressedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :thumbnailCaption, - label: "thumbnail caption".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:thumbnailCaption".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :tie, - domain: "dbo:Boxer".freeze, - label: "tie".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tie".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :time, - label: "time".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:time".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :timeInSpace, - label: "total time person has spent in space (s)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:timeInSpace".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :timeZone, - domain: "dbo:Place".freeze, - label: "time zone".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:timeZone".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :timeshiftChannel, - domain: "dbo:TelevisionStation".freeze, - label: "timeshift channel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:timeshiftChannel".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :title, - label: "title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:title".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :titleDate, - domain: "dbo:Person".freeze, - label: "title date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:titleDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :titleDouble, - domain: "dbo:TennisPlayer".freeze, - label: "title double".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:titleDouble".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :titleLanguage, - domain: "dbo:Film".freeze, - label: "title language".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:titleLanguage".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :titleSingle, - domain: "dbo:TennisPlayer".freeze, - label: "title single".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:titleSingle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :toll, - domain: "dbo:RouteOfTransportation".freeze, - label: "toll ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:toll".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :tonyAward, - domain: "dbo:Artist".freeze, - label: "Tony Award".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tonyAward".freeze, - range: "dbo:Award".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :topFloorHeight, - domain: "dbo:Skyscraper".freeze, - label: "top floor height".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:topFloorHeight".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :topLevelDomain, - domain: "dbo:Country".freeze, - label: "country top level (tld)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:topLevelDomain".freeze, - range: "dbo:TopLevelDomain".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :topSpeed, - label: "top speed (kmh)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:topSpeed".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :topic, - domain: "dbo:PopulatedPlace".freeze, - label: "topic".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:topic".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :torchBearer, - domain: "dbo:Olympics".freeze, - label: "torch bearer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:torchBearer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :torqueOutput, - domain: "dbo:AutomobileEngine".freeze, - label: "torque output (Nm)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:torqueOutput".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :totalCargo, - domain: "dbo:Spacecraft".freeze, - label: "total cargo (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:totalCargo".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :totalDiscs, - comment: %(the total number of discs contained in the album).freeze, - domain: "dbo:Album".freeze, - label: "total discs".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:totalDiscs".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :totalLaunches, - label: "total launches".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:totalLaunches".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :totalMass, - domain: "dbo:Spacecraft".freeze, - label: "total mass (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:totalMass".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :totalPopulation, - domain: "dbo:EthnicGroup".freeze, - label: "total population".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:totalPopulation".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :totalTracks, - comment: %(the total number of tracks contained in the album).freeze, - domain: "dbo:Album".freeze, - label: "total tracks".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:totalTracks".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :totalTravellers, - domain: "dbo:YearInSpaceflight".freeze, - label: "total travellers".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:totalTravellers".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :touristicSite, - domain: "dbo:PopulatedPlace".freeze, - label: "touristic site".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:touristicSite".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :tournamentOfChampions, - domain: "dbo:Athlete".freeze, - label: "tournament of champions".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tournamentOfChampions".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :tournamentRecord, - domain: "dbo:CollegeCoach".freeze, - label: "tournament record".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tournamentRecord".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :towerHeight, - domain: "dbo:Building".freeze, - label: "tower height".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:towerHeight".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :trackLength, - comment: %(Length of the track. Wikipedians usually do not differentiate between track length and line lenght.).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "track length (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:trackLength".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :trackNumber, - domain: "dbo:Song".freeze, - label: "track number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:trackNumber".freeze, - range: "xsd:positiveInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :trackWidth, - comment: %(Width of the track, e.g., the track width differing in Russia from \(Western and Middle\) European track width).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "track width (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:trackWidth".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :tradeMark, - label: "TradeMark".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tradeMark".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :tradingName, - domain: "dbo:Company".freeze, - label: "trading name".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tradingName".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :trainer, - domain: "dbo:Athlete".freeze, - label: "trainer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:trainer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :trainerClub, - domain: "dbo:SoccerPlayer".freeze, - label: "trainer club".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:trainerClub".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :trainerYears, - domain: "dbo:SoccerPlayer".freeze, - label: "trainer years".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:trainerYears".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :training, - domain: "dbo:Artist".freeze, - label: "training".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:training".freeze, - range: "dbo:EducationalInstitution".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :translatedMotto, - label: "translated motto".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:translatedMotto".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :translator, - comment: %(Translator\(s\), if original not in English).freeze, - domain: "dbo:Work".freeze, - label: "translator".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:translator".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :transmission, - domain: "dbo:Automobile".freeze, - label: "transmission".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:transmission".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :treatment, - domain: "dbo:Disease".freeze, - label: "treatment".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:treatment".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :tree, - domain: "dbo:Place".freeze, - label: "tree".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tree".freeze, - range: "dbo:Species".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :tribus, - domain: "dbo:Species".freeze, - label: "tribus".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tribus".freeze, - range: "dbo:Species".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :trustee, - domain: "dbo:Organisation".freeze, - label: "trustee".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:trustee".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :tuition, - domain: "dbo:School".freeze, - label: "tuition ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tuition".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :tvComId, - domain: "dbo:TelevisionShow".freeze, - label: "tv.com id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tvComId".freeze, - range: "xsd:integer".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :tvShow, - domain: "dbo:Person".freeze, - label: "tvShow".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:tvShow".freeze, - range: "dbo:TelevisionShow".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :twinCountry, - domain: "dbo:Country".freeze, - label: "twin country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:twinCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :twinTown, - domain: "dbo:Settlement".freeze, - label: "twin city".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:twinTown".freeze, - range: "dbo:Settlement".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :type, - label: "type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:type".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :typeCoordinate, - comment: %(Scale parameters that can be understood by Geohack, eg "type:", "scale:", "region:" "altitude:". Use "_" for several \(eg "type:landmark_scale:50000"\). See https://fr.wikipedia.org/wiki/Modèle:Infobox_Subdivision_administrative for examples, and https://fr.wikipedia.org/wiki/Modèle:GeoTemplate/Utilisation#La_mention_Type:... for a complete list).freeze, - domain: "dbo:Place".freeze, - label: "type coordinate".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:typeCoordinate".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :typeOfElectrification, - comment: %(Electrification system \(e.g. Third rail, Overhead catenary\).).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "type of electrification".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:typeOfElectrification".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :typeOfGrain, - domain: "dbo:Food".freeze, - label: "type of grain (wheat etc.)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:typeOfGrain".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :typeOfStorage, - domain: "dbo:Food".freeze, - label: "type of storage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:typeOfStorage".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :typeOfYeast, - domain: "dbo:Food".freeze, - label: "type of yeast".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:typeOfYeast".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :uRN, - comment: %(DfE unique reference number of a school in England or Wales).freeze, - domain: "dbo:School".freeze, - label: "unique reference number (URN)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:uRN".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :uciCode, - comment: %(Official UCI code for cycling teams).freeze, - domain: "dbo:CyclingTeam".freeze, - label: "UCI code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:uciCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ulanId, - comment: %(Union List of Artist Names id \(Getty Research Institute\). ULAN has 293,000 names and other information about artists. Names in ULAN may include given names, pseudonyms, variant spellings, names in multiple languages, and names that have changed over time \(e.g., married names\). -http://vocab.getty.edu/ulan/$1).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P245".freeze, - label: "ULAN id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ulanId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :umbrellaTitle, - domain: "dbo:MultiVolumePublication".freeze, - label: "umbrella title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:umbrellaTitle".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :unNumber, - comment: %(four-digit numbers that identify hazardous substances, and articles in the framework of international transport).freeze, - domain: "dbo:ChemicalSubstance".freeze, - label: "UN number".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:unNumber".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :undraftedYear, - domain: "dbo:GridironFootballPlayer".freeze, - label: "undrafted year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:undraftedYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :unesco, - domain: "dbo:Place".freeze, - label: "unesco".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:unesco".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :unicode, - domain: "dbo:Letter".freeze, - label: "unicode".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:unicode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :uniprot, - domain: "dbo:Biomolecule".freeze, - label: "UniProt".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:uniprot".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :unitCost, - domain: "dbo:Aircraft".freeze, - label: "unit cost ($)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:unitCost".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :unitaryAuthority, - domain: "dbo:PopulatedPlace".freeze, - label: "unitary authority".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:unitaryAuthority".freeze, - range: "dbo:PopulatedPlace".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :unitedStatesNationalBridgeId, - domain: "dbo:Bridge".freeze, - label: "United States National Bridge ID".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:unitedStatesNationalBridgeId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :university, - comment: %(university a person goes or went to.).freeze, - label: "university".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:university".freeze, - range: "dbo:EducationalInstitution".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :unknownOutcomes, - comment: %(number of launches with unknown outcomes \(or in progress\)).freeze, - domain: "dbo:Rocket".freeze, - label: "unknown outcomes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:unknownOutcomes".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :unloCode, - comment: %(UN/LOCODE, the United Nations Code for Trade and Transport Locations, is a geographic coding scheme developed and maintained by United Nations Economic Commission for Europe \(UNECE\), a unit of the United Nations. UN/LOCODE assigns codes to locations used in trade and transport with functions such as seaports, rail and road terminals, airports, post offices and border crossing points.).freeze, - domain: "dbo:Place".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P1937".freeze, - label: "UN/LOCODE".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:unloCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :updated, - comment: %(The last update date of a resource).freeze, - label: "updated".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:updated".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :upperAge, - domain: "dbo:School".freeze, - label: "upper age".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:upperAge".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :urbanArea, - domain: "dbo:Settlement".freeze, - label: "urban area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:urbanArea".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :usOpenDouble, - domain: "dbo:TennisPlayer".freeze, - label: "us open double".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:usOpenDouble".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :usOpenMixed, - domain: "dbo:TennisPlayer".freeze, - label: "us open mixed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:usOpenMixed".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :usOpenSingle, - domain: "dbo:TennisPlayer".freeze, - label: "us open single".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:usOpenSingle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :usSales, - comment: %(Number of things \(eg vehicles\) sold in the US).freeze, - domain: "dbo:Sales".freeze, - label: "US sales".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:usSales".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :usedInWar, - comment: %(wars that were typical for the usage of a weapon).freeze, - domain: "dbo:Weapon".freeze, - label: "used in war".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:usedInWar".freeze, - range: "dbo:MilitaryConflict".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :uses, - label: "uses".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:uses".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :usingCountry, - domain: "dbo:Currency".freeze, - label: "using country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:usingCountry".freeze, - range: "dbo:Country".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :usk, - label: "approved rating of the Entertainment Software Self-Regulation Body in Germany".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:usk".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :usopenWins, - domain: "dbo:Person".freeze, - label: "usopen wins".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:usopenWins".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :usurper, - domain: "dbo:Person".freeze, - label: "usurper".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:usurper".freeze, - range: "dbo:Person".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :utcOffset, - domain: "dbo:Place".freeze, - label: "UTC offset".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:utcOffset".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :v_hb, - domain: "dbo:Globularswarm".freeze, - label: "V_hb".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:v_hb".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :value, - label: "value".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:value".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :valvetrain, - domain: "dbo:AutomobileEngine".freeze, - label: "valvetrain".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:valvetrain".freeze, - range: "http://dbpedia.org/datatype/valvetrain".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :vaporPressure, - domain: "dbo:ChemicalSubstance".freeze, - label: "vapor pressure (hPa)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:vaporPressure".freeze, - range: "http://dbpedia.org/datatype/hectopascal".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :variantOf, - comment: %(variant or variation of something, for example the variant of a car).freeze, - label: "variant or variation".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:variantOf".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :varietals, - domain: "dbo:WineRegion".freeze, - label: "varietals".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:varietals".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :vehicle, - comment: %(vehicle that uses a specific automobile platform).freeze, - label: "vehicle".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:vehicle".freeze, - range: "dbo:Automobile".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :vehicleCode, - comment: %(Region related vehicle code on the vehicle plates.).freeze, - domain: "dbo:Place".freeze, - label: "vehicle code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:vehicleCode".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :vehiclesInFleet, - comment: %(Points out means of transport contained in the companies vehicle fleet.).freeze, - domain: "dbo:PublicTransitSystem".freeze, - label: "vehicle types in fleet".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:vehiclesInFleet".freeze, - range: "dbo:MeanOfTransportation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :vehiclesPerDay, - domain: "dbo:RouteOfTransportation".freeze, - label: "vehicles per day".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:vehiclesPerDay".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :vein, - domain: "dbo:AnatomicalStructure".freeze, - label: "vein".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:vein".freeze, - range: "dbo:Vein".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :veneratedIn, - domain: "dbo:Saint".freeze, - label: "venerated in".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:veneratedIn".freeze, - range: "dbo:Organisation".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :version, - domain: "dbo:MeanOfTransportation".freeze, - label: "version".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:version".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :viafId, - comment: %(Virtual International Authority File ID \(operated by Online Computer Library Center, OCLC\). Property range set to Agent because of corporate authors).freeze, - equivalentProperty: "http://www.wikidata.org/entity/P214".freeze, - label: "VIAF Id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:viafId".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:code".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :viceChancellor, - label: "vice chancellor".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:viceChancellor".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :viceLeader, - domain: "dbo:PopulatedPlace".freeze, - label: "vice leader".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:viceLeader".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :viceLeaderParty, - domain: "dbo:PopulatedPlace".freeze, - label: "vice leader party".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:viceLeaderParty".freeze, - range: "dbo:PoliticalParty".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :vicePresident, - label: "vice president".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:vicePresident".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :vicePrimeMinister, - label: "vice prime minister".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:vicePrimeMinister".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :vicePrincipal, - domain: "dbo:School".freeze, - label: "vice principal".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:vicePrincipal".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :vicePrincipalLabel, - domain: "dbo:School".freeze, - label: "vice principal label".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:vicePrincipalLabel".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :victim, - comment: %(Specific \(eg notable\) person, or specific class of people \(eg Romani\) that are victim of a ConcentrationCamp, Criminal, SerialKiller, or some other atrocity).freeze, - label: "victim (resource)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:victim".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :victims, - comment: %(Type, description, or name\(s\) of victims of a ConcentrationCamp, Criminal, SerialKiller, or some other atrocity).freeze, - label: "victims (string)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:victims".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :victory, - domain: "dbo:Person".freeze, - label: "victory".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:victory".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :victoryAsMgr, - domain: "dbo:Person".freeze, - label: "victory as manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:victoryAsMgr".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :victoryPercentageAsMgr, - domain: "dbo:Person".freeze, - label: "victory percentage as manager".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:victoryPercentageAsMgr".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :virtualChannel, - domain: "dbo:Broadcaster".freeze, - label: "virtual channel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:virtualChannel".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :visitorStatisticsAsOf, - comment: %(Year visitor information was gathered.).freeze, - domain: "dbo:ArchitecturalStructure".freeze, - label: "visitor statistics as of".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:visitorStatisticsAsOf".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :visitorsPerDay, - domain: "dbo:ArchitecturalStructure".freeze, - label: "visitors per day".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:visitorsPerDay".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :visitorsPerYear, - domain: "dbo:ArchitecturalStructure".freeze, - label: "visitors per year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:visitorsPerYear".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :visitorsPercentageChange, - comment: %(Percentage increase or decrease.).freeze, - domain: "dbo:ArchitecturalStructure".freeze, - label: "visitor percentage change".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:visitorsPercentageChange".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :visitorsTotal, - domain: "dbo:ArchitecturalStructure".freeze, - label: "visitors total".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:visitorsTotal".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :voice, - comment: %(Voice artist used in a TelevisionShow, Movie, or to sound the voice of a FictionalCharacter).freeze, - label: "voice".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:voice".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :voiceType, - comment: %(voice type of a singer or an actor).freeze, - domain: "dbo:Artist".freeze, - label: "voice type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:voiceType".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :volcanicActivity, - domain: "dbo:Island".freeze, - label: "volcanic activity".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:volcanicActivity".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :volcanicType, - domain: "dbo:Island".freeze, - label: "volcanic type".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:volcanicType".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :volcanoId, - domain: "dbo:Island".freeze, - label: "volcano id".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:volcanoId".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :voltageOfElectrification, - comment: %(Voltage of the electrification system.).freeze, - domain: "dbo:RouteOfTransportation".freeze, - label: "voltage of electrification (V)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:voltageOfElectrification".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :volume, - label: "volume (μ³)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:volume".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :volumeQuote, - domain: "dbo:Place".freeze, - label: "volume quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:volumeQuote".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :volumes, - domain: "dbo:MultiVolumePublication".freeze, - label: "volumes".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:volumes".freeze, - range: "dbo:WrittenWork".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :vonKlitzingConstant, - domain: "dbo:CelestialBody".freeze, - label: "von Klitzing electromagnetic constant (RK)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:vonKlitzingConstant".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :votesAgainst, - domain: "dbo:StatedResolution".freeze, - label: "Votes against the resolution".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:votesAgainst".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :votesFor, - domain: "dbo:StatedResolution".freeze, - label: "Number of votes in favour of the resolution".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:votesFor".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wagon, - domain: "dbo:Train".freeze, - label: "train carriage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wagon".freeze, - range: "dbo:TrainCarriage".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :waistSize, - domain: "dbo:Person".freeze, - label: "waist size (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:waistSize".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :war, - domain: "dbo:MilitaryPerson".freeze, - label: "wars".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:war".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :ward, - domain: "dbo:LiechtensteinSettlement".freeze, - label: "ward of a liechtenstein settlement".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:ward".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :water, - domain: "dbo:Place".freeze, - label: "water".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:water".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :waterArea, - domain: "dbo:Place".freeze, - equivalentProperty: "dbo:area".freeze, - label: "area of water (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:waterArea".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :waterPercentage, - domain: "dbo:Place".freeze, - label: "water percentage of a place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:waterPercentage".freeze, - range: "xsd:float".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :watercourse, - domain: "dbo:PopulatedPlace".freeze, - label: "watercourse".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:watercourse".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :watershed, - domain: "dbo:Stream".freeze, - label: "watershed (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:watershed".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :waterwayThroughTunnel, - comment: %(Waterway that goes through the tunnel.).freeze, - domain: "dbo:WaterwayTunnel".freeze, - label: "waterway through tunnel".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:waterwayThroughTunnel".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wavelength, - domain: "dbo:Colour".freeze, - label: "wavelength (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wavelength".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :weapon, - domain: "dbo:MilitaryConflict_,_Attack".freeze, - label: "weapon".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:weapon".freeze, - range: "dbo:Weapon".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :webcast, - comment: %(The URL to the webcast of the Thing.).freeze, - label: "webcast".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:webcast".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :websiteLabel, - label: "label of a website".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:websiteLabel".freeze, - range: "rdf:langString".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :weddingParentsDate, - domain: "dbo:Person".freeze, - label: "Parents Wedding Date".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:weddingParentsDate".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :weight, - equivalentProperty: "http://www.wikidata.org/entity/P2067".freeze, - label: "weight (g)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:weight".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :westPlace, - comment: %(indicates another place situated west.).freeze, - domain: "dbo:Place".freeze, - label: "west place".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:westPlace".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "dbo:closeTo".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :whaDraft, - domain: "dbo:IceHockeyPlayer".freeze, - label: "wha draft".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:whaDraft".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :whaDraftTeam, - domain: "dbo:IceHockeyPlayer".freeze, - label: "wha draft team".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:whaDraftTeam".freeze, - range: "dbo:HockeyTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :whaDraftYear, - domain: "dbo:IceHockeyPlayer".freeze, - label: "wha draft year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:whaDraftYear".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wheelbase, - domain: "dbo:Automobile".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P3039".freeze, - label: "wheelbase (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wheelbase".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :wholeArea, - domain: "dbo:Place".freeze, - label: "whole area".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wholeArea".freeze, - range: "dbo:Area".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :width, - equivalentProperty: "http://www.wikidata.org/entity/P2049".freeze, - label: "width (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:width".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :widthQuote, - domain: "dbo:Place".freeze, - label: "width quote".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:widthQuote".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wikiPageCharacterSize, - comment: %(Needs to be removed, left at the moment to not break DBpedia Live).freeze, - label: "Character size of wiki page".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageCharacterSize".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wikiPageDisambiguates, - comment: %(Reserved for DBpedia.).freeze, - label: "Wikipage disambiguates".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageDisambiguates".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wikiPageEditLink, - comment: %(Reserved for DBpedia.).freeze, - label: "Link to the Wikipage edit URL".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageEditLink".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wikiPageExternalLink, - comment: %(Reserved for DBpedia.).freeze, - label: "Link from a Wikipage to an external page".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageExternalLink".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wikiPageExtracted, - comment: %(Date a page was extracted '''''').freeze, - label: "extraction datetime".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageExtracted".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wikiPageHistoryLink, - comment: %(Reserved for DBpedia.).freeze, - label: "Link to the Wikipage history URL".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageHistoryLink".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wikiPageID, - comment: %(Reserved for DBpedia.).freeze, - label: "Wikipage page ID".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageID".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wikiPageInDegree, - comment: %(Reserved for DBpedia.).freeze, - label: "Wiki page in degree".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageInDegree".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wikiPageInterLanguageLink, - comment: %(Reserved for DBpedia.).freeze, - label: "Link from a Wikipage to a Wikipage in a different language about the same or a related subject.".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageInterLanguageLink".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wikiPageLength, - comment: %(Reserved for DBpedia.).freeze, - label: "page length (characters) of wiki page".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageLength".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wikiPageModified, - comment: %(Reserved for DBpedia '''''').freeze, - label: "Wikipage modification datetime".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageModified".freeze, - range: "xsd:dateTime".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wikiPageOutDegree, - comment: %(Reserved for DBpedia.).freeze, - label: "Wiki page out degree".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageOutDegree".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wikiPageRedirects, - comment: %(Reserved for DBpedia.).freeze, - label: "Wikipage redirect".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageRedirects".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wikiPageRevisionID, - comment: %(Reserved for DBpedia.).freeze, - label: "Wikipage revision ID".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageRevisionID".freeze, - range: "xsd:integer".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wikiPageRevisionLink, - comment: %(Reserved for DBpedia.).freeze, - label: "Link to the Wikipage revision URL".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageRevisionLink".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wikiPageUsesTemplate, - comment: %(DO NOT USE THIS PROPERTY! For internal use only.).freeze, - label: "wiki page uses template".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageUsesTemplate".freeze, - range: "dbo:WikimediaTemplate".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wikiPageWikiLink, - comment: %(Reserved for DBpedia.).freeze, - label: "Link from a Wikipage to another Wikipage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageWikiLink".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wikiPageWikiLinkText, - comment: %(Reserved for DBpedia.).freeze, - label: "Text used to link from a Wikipage to another Wikipage".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikiPageWikiLinkText".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wikidataSplitIri, - comment: %(is used to denote splitting of a Wikidata IRI to one or more IRIs).freeze, - label: "Wikidata IRI slit".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wikidataSplitIri".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wilaya, - domain: "dbo:Settlement".freeze, - label: "wilaya".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wilaya".freeze, - range: "dbo:Place".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wimbledonDouble, - domain: "dbo:TennisPlayer".freeze, - label: "wimbledon double".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wimbledonDouble".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wimbledonMixed, - domain: "dbo:TennisPlayer".freeze, - label: "wimbledon mixed".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wimbledonMixed".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wimbledonSingle, - domain: "dbo:TennisPlayer".freeze, - label: "wimbledon single".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wimbledonSingle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wineProduced, - domain: "dbo:WineRegion".freeze, - label: "wine produced".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wineProduced".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wineRegion, - domain: "dbo:Grape".freeze, - label: "wine region".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wineRegion".freeze, - range: "dbo:WineRegion".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wineYear, - domain: "dbo:WineRegion".freeze, - label: "wine year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wineYear".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wingArea, - domain: "dbo:Aircraft".freeze, - label: "wing area (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wingArea".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wingspan, - domain: "dbo:Aircraft".freeze, - label: "wingspan (μ)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wingspan".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wins, - label: "wins".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wins".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :winsAtAlpg, - domain: "dbo:GolfPlayer".freeze, - label: "wins at ALPG".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtAlpg".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtAsia, - domain: "dbo:GolfPlayer".freeze, - label: "wins at ASIA".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtAsia".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtAus, - domain: "dbo:GolfPlayer".freeze, - label: "wins at AUS".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtAus".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtChallenges, - domain: "dbo:GolfPlayer".freeze, - label: "wins at challenges".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtChallenges".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtChampionships, - domain: "dbo:GolfPlayer".freeze, - label: "wins at championships".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtChampionships".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtJLPGA, - domain: "dbo:GolfPlayer".freeze, - label: "wins at JLPGA".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtJLPGA".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtJapan, - domain: "dbo:GolfPlayer".freeze, - label: "wins at japan".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtJapan".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtKLPGA, - domain: "dbo:GolfPlayer".freeze, - label: "wins at KLPGA".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtKLPGA".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtLAGT, - domain: "dbo:GolfPlayer".freeze, - label: "wins at LAGT".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtLAGT".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtLET, - domain: "dbo:GolfPlayer".freeze, - label: "wins at LET".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtLET".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtLPGA, - domain: "dbo:GolfPlayer".freeze, - label: "wins at LPGA".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtLPGA".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtMajors, - domain: "dbo:GolfPlayer".freeze, - label: "wins at majors".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtMajors".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtNWIDE, - domain: "dbo:GolfPlayer".freeze, - label: "wins at NWIDE".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtNWIDE".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtOtherTournaments, - domain: "dbo:GolfPlayer".freeze, - label: "wins at other tournaments".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtOtherTournaments".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtPGA, - domain: "dbo:GolfPlayer".freeze, - label: "wins at pga".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtPGA".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtProTournaments, - domain: "dbo:GolfPlayer".freeze, - label: "wins at pro tournaments".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtProTournaments".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtSenEuro, - domain: "dbo:GolfPlayer".freeze, - label: "wins at Senior Euro".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtSenEuro".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsAtSun, - domain: "dbo:GolfPlayer".freeze, - label: "wins at sun".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsAtSun".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winsInEurope, - domain: "dbo:GolfPlayer".freeze, - label: "wins in Europe".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winsInEurope".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winterAppearances, - domain: "dbo:OlympicResult".freeze, - label: "winter appearances".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winterAppearances".freeze, - range: "dbo:OlympicResult".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :winterTemperature, - domain: "dbo:Settlement".freeze, - label: "winter temperature (K)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:winterTemperature".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :woRMS, - comment: %(World Register of Marine Species).freeze, - domain: "dbo:Species".freeze, - label: "WoRMS".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:woRMS".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wordBefore, - domain: "dbo:Country".freeze, - label: "word before the country".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wordBefore".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :work, - domain: "dbo:FictionalCharacter".freeze, - label: "work".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:work".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :workArea, - domain: "dbo:Building".freeze, - label: "work area (m2)".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:workArea".freeze, - range: "xsd:double".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :world, - domain: "dbo:Person".freeze, - label: "world".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:world".freeze, - range: "skos:Concept".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :worldChampionTitleYear, - comment: %(can be one or several years).freeze, - domain: "dbo:Athlete".freeze, - label: "year of world champion title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:worldChampionTitleYear".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :worldOpen, - domain: "dbo:Athlete".freeze, - label: "world open".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:worldOpen".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :worldTeamCup, - domain: "dbo:Athlete".freeze, - label: "world team cup".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:worldTeamCup".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :worldTournament, - domain: "dbo:Person".freeze, - label: "world tournament".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:worldTournament".freeze, - range: "dbo:Tournament".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :worldTournamentBronze, - domain: "dbo:Person".freeze, - label: "world tournament bronze".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:worldTournamentBronze".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :worldTournamentGold, - domain: "dbo:Person".freeze, - label: "world tournament gold".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:worldTournamentGold".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :worldTournamentSilver, - domain: "dbo:Person".freeze, - label: "world tournament silver".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:worldTournamentSilver".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :worstDefeat, - domain: "dbo:SoccerClub".freeze, - label: "worst defeat".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:worstDefeat".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wptFinalTable, - domain: "dbo:PokerPlayer".freeze, - label: "wpt final table".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wptFinalTable".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wptItm, - domain: "dbo:PokerPlayer".freeze, - label: "wpt itm".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wptItm".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wptTitle, - domain: "dbo:PokerPlayer".freeze, - label: "wpt title".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wptTitle".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :writer, - domain: "dbo:Work".freeze, - label: "writer".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:writer".freeze, - range: "dbo:Person".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :wsopItm, - domain: "dbo:PokerPlayer".freeze, - label: "wsop itm".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wsopItm".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wsopWinYear, - domain: "dbo:PokerPlayer".freeze, - label: "wsop win year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wsopWinYear".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :wsopWristband, - domain: "dbo:PokerPlayer".freeze, - label: "wsop wristband".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:wsopWristband".freeze, - range: "xsd:nonNegativeInteger".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :year, - label: "year".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:year".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :yearElevationIntoNobility, - domain: "dbo:NobleFamily".freeze, - label: "year of elevation into the nobility".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:yearElevationIntoNobility".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :yearOfConstruction, - comment: %(The year in which construction of the Place was finished.).freeze, - domain: "dbo:Place".freeze, - label: "year of construction".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:yearOfConstruction".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :yearOfElectrification, - comment: %(Year station was electrified, if not previously at date of opening.).freeze, - domain: "dbo:Station".freeze, - label: "year of electrification".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:yearOfElectrification".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :years, - domain: "dbo:SoccerPlayer".freeze, - label: "years".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:years".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :youthClub, - domain: "dbo:Athlete".freeze, - label: "youth club".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:youthClub".freeze, - range: "dbo:SportsTeam".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :youthWing, - domain: "dbo:PoliticalParty".freeze, - label: "youth wing".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:youthWing".freeze, - subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - property :youthYears, - domain: "dbo:SoccerPlayer".freeze, - label: "youth years".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:youthYears".freeze, - range: "xsd:gYear".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :zdb, - comment: %(Identifier for serial titles. More precise than issn).freeze, - domain: "dbo:PeriodicalLiterature".freeze, - label: "zdb".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:zdb".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze] - property :zipCode, - domain: "dbo:PopulatedPlace".freeze, - equivalentProperty: "http://www.wikidata.org/entity/P281".freeze, - label: "zip code".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:zipCode".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dbo:postalCode".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze] - property :zodiacSign, - comment: %(Zodiac Sign. Applies to persons, planets, etc).freeze, - label: "zodiac sign".freeze, - "prov:wasDerivedFrom": "http://mappings.dbpedia.org/index.php/OntologyProperty:zodiacSign".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] - end -end diff --git a/lib/vocabs/dbr.rb b/lib/vocabs/dbr.rb index 3f765aae..ef21523c 100644 --- a/lib/vocabs/dbr.rb +++ b/lib/vocabs/dbr.rb @@ -2,155 +2,28 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://dbpedia.org/resource/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class DBR < RDF::Vocabulary - # end - class DBR < RDF::Vocabulary("http://dbpedia.org/resource/") +module LifePreserver::Vocab + DBR = Class.new(RDF::Vocabulary("http://dbpedia.org/resource/")) do # Ontology definition ontology :"http://dbpedia.org/resource/", - comment: %( \(pronounced "five hundred px"\) is a Canadian online community and marketplace based on photography, co-founded by Oleg Gutsol and Evgeny Tchebotarev \(artistically also known as “Ian Sobolev”\) on Halloween 2009. The Toronto-based startup launched its Web 2.0 version in 2009 and is aimed at aspiring and professional photographers; encouraging members to upload their best work. In August 2015, the company launched a new version of its iOS app.).freeze, - "http://dbpedia.org/ontology/abstract": " (pronounced \"five hundred px\") is a Canadian online community and marketplace based on photography, co-founded by Oleg Gutsol and Evgeny Tchebotarev (artistically also known as “Ian Sobolev”) on Halloween 2009. The Toronto-based startup launched its Web 2.0 version in 2009 and is aimed at aspiring and professional photographers; encouraging members to upload their best work. In August 2015, the company launched a new version of its iOS app. is seen as a place to gain exposure, find inspiration and connect photographers with one another. As of January 2016, the site had 7 million users.".freeze, - "owl:sameAs": "dbr:".freeze + "http://www.w3.org/2002/07/owl#sameAs": "http://dbpedia.org/resource/".freeze # Extra definitions - term :"2012–13_EHF_Champions_League_knockout_stage", - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :"2012–13_LEN_Champions_League_knockout_stage", - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Andrei_Alexandrescu, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :"Asunder_(software)", - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :BMW_503, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Bay_Area_Ridge_Trail, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :"Bay_Road_(Bristol_County,_Massachusetts)", - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Biquaternion, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Bruckner_rhythm, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Buick_Blackhawk, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Covenant_Fellowship_Church, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :DHR_D_Class, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Diazenylium, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Doubly_ionized_oxygen, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :EAR_56_class, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :EAR_58_class, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :EAR_60_class, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Egypt_Standard_Time, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :"FS-A1WSX", - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :"Ferrari_365_GT4_2_2,_400_and_412", - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :"Ferrari_365_GTC/4", - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Ferrari_612_Scaglietti, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Fiat_124_Sport_Spider, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :GParted, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :"Greg_Hastings_Tournament_Paintball_MAX'D", - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :HiC, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :ISABELLE, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :International_cricket_in_2006–07, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :"J-Pilot", - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :KUR_EC1_class, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :KUR_EC2_class, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :KUR_EC3_class, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :KUR_EC4_class, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :KUR_EC5_class, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :KUR_EC_class, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :"Kino_(software)", - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :La_Chonita_Hacienda, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Lamborghini_Jarama, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :List_of_Alberta_area_codes, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Maserati_3200_GT, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Maserati_Alfieri, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :NGC_5886, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :New_South_Wales_AD60_class_locomotive, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Northeast_Texas_Trail, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Open_Inventor, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :OverSim, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Pantheios, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Passpo, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Politics_of_Indiana, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Porsche_911, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Proteus_vulgaris, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Qt_Creator, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Rude_and_Smooth, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :"Sisu_K-44", - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Sound_Juicer, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :"Synaptic_(software)", - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :TR_GA_class, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Telephone_numbers_in_Bangladesh, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Telephone_numbers_in_Iceland, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Telephone_numbers_in_Kosovo, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Telephone_numbers_in_Uruguay, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Time_in_Kazakhstan, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Transitive_closure, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :Voices_in_Harmony, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :WAGR_M_class, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :WAGR_Msa_class, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :"X-CD-Roast", - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze - term :YkoK_leader, - "http://purl.org/linguistics/gold/hypernym": "dbr:".freeze + term :Bulancakspor, + "http://dbpedia.org/ontology/manager": "http://dbpedia.org/resource/".freeze, + "http://dbpedia.org/ontology/wikiPageWikiLink": "http://dbpedia.org/resource/".freeze + term :"Carroll_County,_Arkansas", + "http://dbpedia.org/ontology/wikiPageWikiLink": "http://dbpedia.org/resource/".freeze + term :Citrus_unshiu, + "http://dbpedia.org/ontology/wikiPageWikiLink": "http://dbpedia.org/resource/".freeze + term :Francie_Barrett, + "http://dbpedia.org/ontology/wikiPageWikiLink": "http://dbpedia.org/resource/".freeze + term :High_Speed_1, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://dbpedia.org/resource/".freeze + term :Messier_110, + "http://dbpedia.org/ontology/wikiPageWikiLink": "http://dbpedia.org/resource/".freeze + term :Trams_in_Berlin, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://dbpedia.org/resource/".freeze end end diff --git a/lib/vocabs/deo.rb b/lib/vocabs/deo.rb index c98d7cce..bbe4cce9 100644 --- a/lib/vocabs/deo.rb +++ b/lib/vocabs/deo.rb @@ -2,209 +2,195 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/spar/deo/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class DEO < RDF::StrictVocabulary - # end - class DEO < RDF::StrictVocabulary("http://purl.org/spar/deo/") +module LifePreserver::Vocab + DEO = Class.new(RDF::StrictVocabulary("http://purl.org/spar/deo/")) do # Ontology definition ontology :"http://purl.org/spar/deo/", - comment: %(The Discourse Elements Ontology \(DEO\) is an ontology that provides a structured vocabulary for rhetorical elements within documents \(e.g., Introduction, Discussion, Acknowledgements, Reference List, Figures, Appendix\). - -**URL:** http://purl.org/spar/deo - -**Creators**: [David Shotton]\(http://orcid.org/0000-0001-5506-523X\), [Silvio Peroni]\(http://orcid.org/0000-0003-0530-4305\) - -**License:** [Creative Commons Attribution 4.0 International]\(https://creativecommons.org/licenses/by/4.0/legalcode\) - -**Website:** http://www.sparontologies.net/ontologies/deo - -**Cite as:** Constantin, A., Peroni, S., Pettifer, S., Shotton, D., Vitali, F. \(2016\). The Document Components Ontology \(DoCO\). In Semantic Web, 7 \(2\): 167-181. DOI: http://dx.doi.org/10.3233/SW-150177).freeze, - "dc11:creator": ["David Shotton".freeze, "Silvio Peroni".freeze], - "dc11:date": "2015-07-03".freeze, - "dc11:description": "DEO, The Discourse Elements Ontology, is an ontology written in OWL 2 DL that provides a structured vocabulary for rhetorical elements within documents (e.g. Introduction, Discussion, Acknowledgements, Reference List, Figures, Appendix), enabling these to be described in RDF. It uses some of the rhetorical block elements from the SALT Rhetorical Ontology and the Ontology of Rhetorical Blocks.".freeze, - "dc11:rights": "This work is distributed under a Creative Commons Attribution License (http://creativecommons.org/licenses/by/3.0/).".freeze, - "dc11:title": "The Discourse Elements Ontology\n (DEO)".freeze, - "owl:priorVersion": "https://svn.code.sf.net/p/sempublishing/code/DEO/2011-05-05-deo-1_0.owl".freeze, - "owl:versionIRI": "http://purl.org/spar/pso/2015-07-03".freeze, - "owl:versionInfo": "1.1".freeze, - type: "owl:Ontology".freeze + comment: "The Discourse Elements Ontology (DEO) is an ontology that provides a structured vocabulary for rhetorical elements within documents (e.g., Introduction, Discussion, Acknowledgements, Reference List, Figures, Appendix).\n\n**URL:** http://purl.org/spar/deo\n\n**Creators**: [David Shotton](http://orcid.org/0000-0001-5506-523X), [Silvio Peroni](http://orcid.org/0000-0003-0530-4305)\n\n**License:** [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/legalcode)\n\n**Website:** http://www.sparontologies.net/ontologies/deo\n\n**Cite as:** Constantin, A., Peroni, S., Pettifer, S., Shotton, D., Vitali, F. (2016). The Document Components Ontology (DoCO). In Semantic Web, 7 (2): 167-181. DOI: http://dx.doi.org/10.3233/SW-150177".freeze, + "http://purl.org/dc/elements/1.1/creator": ["David Shotton".freeze, "Silvio Peroni".freeze], + "http://purl.org/dc/elements/1.1/date": "2015-07-03".freeze, + "http://purl.org/dc/elements/1.1/description": "DEO, The Discourse Elements Ontology, is an ontology written in OWL 2 DL that provides a structured vocabulary for rhetorical elements within documents (e.g. Introduction, Discussion, Acknowledgements, Reference List, Figures, Appendix), enabling these to be described in RDF. It uses some of the rhetorical block elements from the SALT Rhetorical Ontology and the Ontology of Rhetorical Blocks.".freeze, + "http://purl.org/dc/elements/1.1/rights": "This work is distributed under a Creative Commons Attribution License (http://creativecommons.org/licenses/by/3.0/).".freeze, + "http://purl.org/dc/elements/1.1/title": "The Discourse Elements Ontology\n (DEO)".freeze, + "http://www.w3.org/2002/07/owl#priorVersion": "https://svn.code.sf.net/p/sempublishing/code/DEO/2011-05-05-deo-1_0.owl".freeze, + "http://www.w3.org/2002/07/owl#versionIRI": "http://purl.org/spar/pso/2015-07-03".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.1".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Acknowledgements, - comment: %(Usually part of the preface, or a separate section in its own right, often as part of the back matter, it acknowledges those, including funding agencies, who contributed to the undertaking of a research project described in a publication, or to the creation of the work in some way. In scientific articles, the acknowledgements are usually placed as a separated section immediately following the Discussion or Conclusions.).freeze, + comment: "Usually part of the preface, or a separate section in its own right, often as part of the back matter, it acknowledges those, including funding agencies, who contributed to the undertaking of a research project described in a publication, or to the creation of the work in some way. In scientific articles, the acknowledgements are usually placed as a separated section immediately following the Discussion or Conclusions.".freeze, equivalentClass: "http://purl.org/orb/1.0/Acknowledgements".freeze, label: "acknowledgements".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AuthorContribution, - comment: %(A description of the roles played by an author in the publication.).freeze, + comment: "A description of the roles played by an author in the publication.".freeze, label: "author contribution".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Background, - comment: %(Presentation of information that is essential for understanding the situation or problem that is the subject of the publication. In a journal article, the background is usually part of the Introduction, but may be present as separated section.).freeze, + comment: "Presentation of information that is essential for understanding the situation or problem that is the subject of the publication. In a journal article, the background is usually part of the Introduction, but may be present as separated section.".freeze, equivalentClass: "http://salt.semanticauthoring.org/ontologies/sro#Background".freeze, label: "background".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BibliographicReference, - comment: %(A reference, usually contained in a footnote or a bibliographic reference list, that refer to another publication, such as a journal article, a book, a book chapter or a Web site. The inclusion of the bibliographic reference in a publication constitutes the performative act of bibliographic citation.).freeze, + comment: "A reference, usually contained in a footnote or a bibliographic reference list, that refer to another publication, such as a journal article, a book, a book chapter or a Web site. The inclusion of the bibliographic reference in a publication constitutes the performative act of bibliographic citation.".freeze, label: "bibliographic reference".freeze, - subClassOf: ["deo:Reference".freeze, "http://purl.org/orb/1.0/References".freeze], - type: "owl:Class".freeze + subClassOf: ["http://purl.org/orb/1.0/References".freeze, "http://purl.org/spar/deo/Reference".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Biography, - comment: %(Information describing a person and his or her life history and contributions.).freeze, + comment: "Information describing a person and his or her life history and contributions.".freeze, label: "biography".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Caption, - comment: %(Text accompanying another item, such as a picture.).freeze, + comment: "Text accompanying another item, such as a picture.".freeze, label: "caption".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Conclusion, - comment: %(A reflection on the preceding text, summarizing the evidence, arguments or premises presented in the document and their logical outcomes. Conclusions are a fundamental feature in academic research publications, and may be included in the Discussion section.).freeze, + comment: "A reflection on the preceding text, summarizing the evidence, arguments or premises presented in the document and their logical outcomes. Conclusions are a fundamental feature in academic research publications, and may be included in the Discussion section.".freeze, equivalentClass: ["http://purl.org/orb/1.0/Conclusion".freeze, "http://salt.semanticauthoring.org/ontologies/sro#Conclusion".freeze], label: "conclusion".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Contribution, - comment: %(A description of the part that this publication plays in the overall field.).freeze, + comment: "A description of the part that this publication plays in the overall field.".freeze, equivalentClass: "http://salt.semanticauthoring.org/ontologies/sro#Contribution".freeze, label: "contribution".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Data, - comment: %(A textual description of data used or produced in the work which the document describes, or the data themselves.).freeze, + comment: "A textual description of data used or produced in the work which the document describes, or the data themselves.".freeze, label: "data".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DatasetDescription, - comment: %(Information describing a dataset held in an external database or repository and including a reference to it, such as a database ID or an accession number.).freeze, + comment: "Information describing a dataset held in an external database or repository and including a reference to it, such as a database ID or an accession number.".freeze, label: "dataset description".freeze, - subClassOf: "deo:ExternalResourceDescription".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/ExternalResourceDescription".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Dedication, - comment: %(Text in which the author names the person or people for whom he/she has written the document, or to whose memory it is dedicated.).freeze, + comment: "Text in which the author names the person or people for whom he/she has written the document, or to whose memory it is dedicated.".freeze, label: "dedication".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DiscourseElement, - comment: %(An element of a document that carries out a rhetorical function.).freeze, + comment: "An element of a document that carries out a rhetorical function.".freeze, label: "discourse element".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 :Discussion, - comment: %(An interpretation and discussion of the results obtained and an analysis of their significance, in support of conclusions. These conclusions may be part of this discussion or may be included in a separate section of the document.).freeze, + comment: "An interpretation and discussion of the results obtained and an analysis of their significance, in support of conclusions. These conclusions may be part of this discussion or may be included in a separate section of the document.".freeze, equivalentClass: ["http://purl.org/orb/1.0/Discussion".freeze, "http://salt.semanticauthoring.org/ontologies/sro#Discussion".freeze], label: "discussion".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Epilogue, - comment: %(A piece of writing at the end of a work of literature or drama, usually used to bring closure to the work.).freeze, + comment: "A piece of writing at the end of a work of literature or drama, usually used to bring closure to the work.".freeze, label: "epilogue".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Evaluation, - comment: %(A consideration of the value, meaning and significance of the results obtained.).freeze, + comment: "A consideration of the value, meaning and significance of the results obtained.".freeze, equivalentClass: "http://salt.semanticauthoring.org/ontologies/sro#Evaluation".freeze, label: "evaluation".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ExternalResourceDescription, - comment: %(Information describing an external resource and including a reference to that resource.).freeze, + comment: "Information describing an external resource and including a reference to that resource.".freeze, label: "external resource description".freeze, subClassOf: term( - intersectionOf: list("deo:DiscourseElement".freeze, term( - onProperty: "dc:hasPart".freeze, - someValuesFrom: "deo:Reference".freeze, - type: "owl:Restriction".freeze + intersectionOf: list("http://purl.org/spar/deo/DiscourseElement".freeze, term( + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + someValuesFrom: "http://purl.org/spar/deo/Reference".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FutureWork, - comment: %(A proposal for new investigation to be undertaken in order to continue and advance the work described in the publication.).freeze, + comment: "A proposal for new investigation to be undertaken in order to continue and advance the work described in the publication.".freeze, label: "future work".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Introduction, - comment: %(An initial description which states the purpose and goals of the following writing, and, in the case of journal articles, typically includes background information on the research topic and a review of related work in the area.).freeze, + comment: "An initial description which states the purpose and goals of the following writing, and, in the case of journal articles, typically includes background information on the research topic and a review of related work in the area.".freeze, equivalentClass: "http://purl.org/orb/1.0/Introduction".freeze, label: "introduction".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Legend, - comment: %(Informative text that explicitly explains another item, such as a figure or a table.).freeze, + comment: "Informative text that explicitly explains another item, such as a figure or a table.".freeze, label: "legend".freeze, - subClassOf: "deo:Caption".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/Caption".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Materials, - comment: %(A description in a research paper documenting the specialized materials used in the work described. This description is often combined with a description of the methods used, in a section entitled 'Methods and Materials', 'Experimental' or a related term.).freeze, + comment: "A description in a research paper documenting the specialized materials used in the work described. This description is often combined with a description of the methods used, in a section entitled 'Methods and Materials', 'Experimental' or a related term.".freeze, label: "materials".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Methods, - comment: %(A description in a research paper documenting the specialized methods used in the work described. This description is often combined with a description of the materials used, in a section entitled 'Methods and Materials', 'Experimental' or a related term.).freeze, + comment: "A description in a research paper documenting the specialized methods used in the work described. This description is often combined with a description of the materials used, in a section entitled 'Methods and Materials', 'Experimental' or a related term.".freeze, equivalentClass: "http://purl.org/orb/1.0/Methods".freeze, label: "methods".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Model, - comment: %(A description of a model used or produced by the work described in the publication.).freeze, + comment: "A description of a model used or produced by the work described in the publication.".freeze, label: "model".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Motivation, - comment: %(A description of the justification for undertaking the work described in the publication.).freeze, + comment: "A description of the justification for undertaking the work described in the publication.".freeze, equivalentClass: "http://salt.semanticauthoring.org/ontologies/sro#Motivation".freeze, label: "motivation".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Postscript, - comment: %(Text added after the signature of a letter, or sometimes after the main body of an essay or book.).freeze, + comment: "Text added after the signature of a letter, or sometimes after the main body of an essay or book.".freeze, label: "postscript".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProblemStatement, - "dc11:description": "A concise description of the issues that needed to be addressed by a work described in the document.".freeze, + "http://purl.org/dc/elements/1.1/description": "A concise description of the issues that needed to be addressed by a work described in the document.".freeze, label: "problem statement".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Prologue, - comment: %(A piece of writing at the beginning of a work of literature or drama, usually used to set the scene or to introduce the work.).freeze, + comment: "A piece of writing at the beginning of a work of literature or drama, usually used to set the scene or to introduce the work.".freeze, label: "prologue".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Reference, - comment: %(A reference to a specific part of the document, or to another publication.).freeze, + comment: "A reference to a specific part of the document, or to another publication.".freeze, label: "reference".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RelatedWork, - comment: %(The authors' critical review of current knowledge by specific reference to others' work, both in terms of substantive findings and theoretical and methodological contributions to a particular topic. This description is often included within the introduction section.).freeze, + comment: "The authors' critical review of current knowledge by specific reference to others' work, both in terms of substantive findings and theoretical and methodological contributions to a particular topic. This description is often included within the introduction section.".freeze, label: "related work".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Results, - comment: %(The report of the specific findings of an investigation, given without discussion or conclusion being drawn.).freeze, + comment: "The report of the specific findings of an investigation, given without discussion or conclusion being drawn.".freeze, equivalentClass: "http://purl.org/orb/1.0/Results".freeze, label: "results".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Scenario, - comment: %(A presentation of a use case or test, based on a real or hypothetical situation, used to help someone think through a complex problem or system.).freeze, + comment: "A presentation of a use case or test, based on a real or hypothetical situation, used to help someone think through a complex problem or system.".freeze, equivalentClass: "http://salt.semanticauthoring.org/ontologies/sro#Scenario".freeze, label: "scenario".freeze, - subClassOf: "deo:DiscourseElement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/DiscourseElement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SupplementaryInformationDescription, - comment: %(Information describing supplementary information relating to the document, including references or links to the relevant supplementary information.).freeze, + comment: "Information describing supplementary information relating to the document, including references or links to the relevant supplementary information.".freeze, label: "supplementary information description".freeze, - subClassOf: "deo:ExternalResourceDescription".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/deo/ExternalResourceDescription".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze end end diff --git a/lib/vocabs/deps.rb b/lib/vocabs/deps.rb index fb95135d..0ddc25cf 100644 --- a/lib/vocabs/deps.rb +++ b/lib/vocabs/deps.rb @@ -2,217 +2,213 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://ontologi.es/doap-deps# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class DEPS < RDF::StrictVocabulary - # end - class DEPS < RDF::StrictVocabulary("http://ontologi.es/doap-deps#") +module LifePreserver::Vocab + DEPS = Class.new(RDF::StrictVocabulary("http://ontologi.es/doap-deps#")) do # Ontology definition ontology :"http://ontologi.es/doap-deps#", - comment: %(an extension to DOAP for describing a project's requirements).freeze, - "dc:created": "2013-07-30".freeze, - "dc:creator": ["http://tobyinkster.co.uk/#i".freeze, term( - "foaf:isPrimaryTopicOf": "http://toxi.co.uk/foaf.rdf".freeze, - "foaf:mbox_sha1sum": "e66da09c6f6f75f0d512266706ece1647279a52e".freeze, - "foaf:name": "Karsten Schmidt".freeze, - "foaf:page": "https://twitter.com/toxi".freeze, - type: "foaf:Person".freeze + comment: "an extension to DOAP for describing a project's requirements".freeze, + "http://purl.org/dc/terms/created": "2013-07-30".freeze, + "http://purl.org/dc/terms/creator": ["http://tobyinkster.co.uk/#i".freeze, term( + "http://xmlns.com/foaf/0.1/isPrimaryTopicOf": "http://toxi.co.uk/foaf.rdf".freeze, + "http://xmlns.com/foaf/0.1/mbox_sha1sum": "e66da09c6f6f75f0d512266706ece1647279a52e".freeze, + "http://xmlns.com/foaf/0.1/name": "Karsten Schmidt".freeze, + "http://xmlns.com/foaf/0.1/page": "https://twitter.com/toxi".freeze, + type: "http://xmlns.com/foaf/0.1/Person".freeze )], - "dc:issued": "2013-07-31".freeze, - "dc:modified": ["2013-07-30".freeze, "2013-07-31".freeze], + "http://purl.org/dc/terms/issued": "2013-07-31".freeze, + "http://purl.org/dc/terms/modified": ["2013-07-30".freeze, "2013-07-31".freeze], label: "DOAP Dependencies".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Dependency, - comment: %(A condition to be met).freeze, + comment: "A condition to be met".freeze, label: "Dependency".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :HistoricDependency, label: "Historic Dependency".freeze, - subClassOf: "deps:Dependency".freeze, - type: "owl:Class".freeze + subClassOf: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :IdentifierScheme, - subClassOf: "rdfs:Datatype".freeze, - type: "rdfs:Class".freeze + subClassOf: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze, + type: "http://www.w3.org/2000/01/rdf-schema#Class".freeze term :Level, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Phase, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :"build-recommendation", - "deps:level": "deps:Recommended".freeze, - "deps:phase": "deps:BuildPhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Recommended".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#BuildPhase".freeze, label: "build recommendation".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"build-requirement", - "deps:level": "deps:Required".freeze, - "deps:phase": "deps:BuildPhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Required".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#BuildPhase".freeze, label: "build requirement".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"build-suggestion", - "deps:level": "deps:Suggested".freeze, - "deps:phase": "deps:BuildPhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Suggested".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#BuildPhase".freeze, label: "build suggestion".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"configure-recommendation", - "deps:level": "deps:Recommended".freeze, - "deps:phase": "deps:ConfigurePhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Recommended".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#ConfigurePhase".freeze, label: "configure recommendation".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"configure-requirement", - "deps:level": "deps:Required".freeze, - "deps:phase": "deps:ConfigurePhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Required".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#ConfigurePhase".freeze, label: "configure requirement".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"configure-suggestion", - "deps:level": "deps:Suggested".freeze, - "deps:phase": "deps:ConfigurePhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Suggested".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#ConfigurePhase".freeze, label: "configure suggestion".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"develop-recommendation", - "deps:level": "deps:Recommended".freeze, - "deps:phase": "deps:DevelopmentPhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Recommended".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#DevelopmentPhase".freeze, label: "development recommendation".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"develop-requirement", - "deps:level": "deps:Required".freeze, - "deps:phase": "deps:DevelopmentPhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Required".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#DevelopmentPhase".freeze, label: "development requirement".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"develop-suggestion", - "deps:level": "deps:Suggested".freeze, - "deps:phase": "deps:DevelopmentPhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Suggested".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#DevelopmentPhase".freeze, label: "development suggestion".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :level, - domain: "owl:ObjectProperty".freeze, - range: "deps:Level".freeze, - type: "owl:AnnotationProperty".freeze + domain: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze, + range: "http://ontologi.es/doap-deps#Level".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :on, - comment: %(the range of this property is a little woolly; a doap:Project is certainly fine, as is a literal which acts as an identifier, provided it's qualified with a datatype indicating what scheme it's an identifier in).freeze, - domain: "deps:Dependency".freeze, + comment: "the range of this property is a little woolly; a doap:Project is certainly fine, as is a literal which acts as an identifier, provided it's qualified with a datatype indicating what scheme it's an identifier in".freeze, + domain: "http://ontologi.es/doap-deps#Dependency".freeze, label: "on".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :phase, - domain: "owl:ObjectProperty".freeze, - range: "deps:Phase".freeze, - type: "owl:AnnotationProperty".freeze + domain: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze, + range: "http://ontologi.es/doap-deps#Phase".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :"runtime-recommendation", - "deps:level": "deps:Recommended".freeze, - "deps:phase": "deps:RuntimePhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Recommended".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#RuntimePhase".freeze, label: "runtime recommendation".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"runtime-requirement", - "deps:level": "deps:Required".freeze, - "deps:phase": "deps:RuntimePhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Required".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#RuntimePhase".freeze, label: "runtime requirement".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"runtime-suggestion", - "deps:level": "deps:Suggested".freeze, - "deps:phase": "deps:RuntimePhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Suggested".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#RuntimePhase".freeze, label: "runtime suggestion".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :since, - domain: "deps:Dependency".freeze, + domain: "http://ontologi.es/doap-deps#Dependency".freeze, label: "since".freeze, - range: "doap:Version".freeze, - type: "owl:ObjectProperty".freeze + range: "http://usefulinc.com/ns/doap#Version".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"test-recommendation", - "deps:level": "deps:Recommended".freeze, - "deps:phase": "deps:TestPhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Recommended".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#TestPhase".freeze, label: "test recommendation".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"test-requirement", - "deps:level": "deps:Required".freeze, - "deps:phase": "deps:TestPhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Required".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#TestPhase".freeze, label: "test requirement".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :"test-suggestion", - "deps:level": "deps:Suggested".freeze, - "deps:phase": "deps:TestPhase".freeze, - domain: "doap:Project".freeze, + domain: "http://usefulinc.com/ns/doap#Project".freeze, + "http://ontologi.es/doap-deps#level": "http://ontologi.es/doap-deps#Suggested".freeze, + "http://ontologi.es/doap-deps#phase": "http://ontologi.es/doap-deps#TestPhase".freeze, label: "test suggestion".freeze, - range: "deps:Dependency".freeze, - type: "owl:ObjectProperty".freeze + range: "http://ontologi.es/doap-deps#Dependency".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :until, - domain: "deps:HistoricDependency".freeze, + domain: "http://ontologi.es/doap-deps#HistoricDependency".freeze, label: "until".freeze, - range: "doap:Version".freeze, - type: "owl:ObjectProperty".freeze + range: "http://usefulinc.com/ns/doap#Version".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze # Extra definitions term :BuildPhase, - type: "deps:Phase".freeze + type: "http://ontologi.es/doap-deps#Phase".freeze term :ConfigurePhase, - type: "deps:Phase".freeze + type: "http://ontologi.es/doap-deps#Phase".freeze term :CpanId, - comment: [%(A module name, optionally followed by a space character and a version.).freeze, %(Examples: `Moose::Role` or `Moose::Role 2.0600`).freeze], + comment: ["A module name, optionally followed by a space character and a version.".freeze, "Examples: `Moose::Role` or `Moose::Role 2.0600`".freeze], label: "CPAN Identifier".freeze, - type: "deps:IdentifierScheme".freeze + type: "http://ontologi.es/doap-deps#IdentifierScheme".freeze term :DebianId, - comment: [%(Examples: `libmoose-perl` or `libmoose-perl \(>= 2.0600-1\)`).freeze, %(Note that architecture-specific modifiers \(in square brackets\) are not supported yet.).freeze], + comment: ["Examples: `libmoose-perl` or `libmoose-perl (>= 2.0600-1)`".freeze, "Note that architecture-specific modifiers (in square brackets) are not supported yet.".freeze], + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://www.debian.org/doc/debian-policy/ch-relationships.html".freeze, label: "Debian Package Identifier".freeze, - "rdfs:seeAlso": "http://www.debian.org/doc/debian-policy/ch-relationships.html".freeze, - type: "deps:IdentifierScheme".freeze + type: "http://ontologi.es/doap-deps#IdentifierScheme".freeze term :DevelopmentPhase, - type: "deps:Phase".freeze + type: "http://ontologi.es/doap-deps#Phase".freeze term :GemId, - comment: [%(A module name, optionally followed by one or more operator, version number pairs.).freeze, %(Examples: `log4r` or `log4r >= 1.0.5` or `log4r >= 1.0.5, < 2.0.0`).freeze], + comment: ["A module name, optionally followed by one or more operator, version number pairs.".freeze, "Examples: `log4r` or `log4r >= 1.0.5` or `log4r >= 1.0.5, < 2.0.0`".freeze], label: "Gem Identifier".freeze, - type: "deps:IdentifierScheme".freeze + type: "http://ontologi.es/doap-deps#IdentifierScheme".freeze term :MvnId, - comment: [%(A fully qualified Maven artefact name: 'groupID/artefactID version[-classifier]').freeze, %(Example 'org.clojure/clojure 1.5.1-SNAPSHOT').freeze], + comment: ["A fully qualified Maven artefact name: 'groupID/artefactID version[-classifier]'".freeze, "Example 'org.clojure/clojure 1.5.1-SNAPSHOT'".freeze], label: "Maven Identifier".freeze, - type: "deps:IdentifierScheme".freeze + type: "http://ontologi.es/doap-deps#IdentifierScheme".freeze term :PipId, - comment: [%(A single line from a requirements.txt file, minus the line break.).freeze, %(Example: `html5lib==0.95`).freeze], + comment: ["A single line from a requirements.txt file, minus the line break.".freeze, "Example: `html5lib==0.95`".freeze], label: "Pip Identifier".freeze, - type: "deps:IdentifierScheme".freeze + type: "http://ontologi.es/doap-deps#IdentifierScheme".freeze term :Recommended, - type: "deps:Level".freeze + type: "http://ontologi.es/doap-deps#Level".freeze term :Required, - type: "deps:Level".freeze + type: "http://ontologi.es/doap-deps#Level".freeze term :RpmId, - comment: %(Examples: `perl-Moose` or `perl-Moose >= 2.0600-1`).freeze, + comment: "Examples: `perl-Moose` or `perl-Moose >= 2.0600-1`".freeze, label: "RPM Package Identifier".freeze, - type: "deps:IdentifierScheme".freeze + type: "http://ontologi.es/doap-deps#IdentifierScheme".freeze term :RuntimePhase, - type: "deps:Phase".freeze + type: "http://ontologi.es/doap-deps#Phase".freeze term :Suggested, - type: "deps:Level".freeze + type: "http://ontologi.es/doap-deps#Level".freeze term :TestPhase, - type: "deps:Phase".freeze + type: "http://ontologi.es/doap-deps#Phase".freeze end end diff --git a/lib/vocabs/dio.rb b/lib/vocabs/dio.rb index 02e2dca6..a844b171 100644 --- a/lib/vocabs/dio.rb +++ b/lib/vocabs/dio.rb @@ -2,316 +2,312 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from https://w3id.org/dio# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class DIO < RDF::StrictVocabulary - # end - class DIO < RDF::StrictVocabulary("https://w3id.org/dio#") +module LifePreserver::Vocab + DIO = Class.new(RDF::StrictVocabulary("https://w3id.org/dio#")) do # Ontology definition ontology :"https://w3id.org/dio#", - "dc11:creator": "Monika Solanki (monika.solanki@cs.ox.ac.uk)".freeze, - "dc11:date": "04-01-2016".freeze, - "dc11:description": ["The Design Intent Ontology (DIO) is a generic ontology that provides the conceptualisation needed to capture the knowledge generated during various phases of the overall design lifecycle. \n\nIt provides definitions for design artifacts such as requirements, designs, design issues, solutions, justifications and evidence and relationships between them to represent the design process and how these things lead to design outcomes. It draws upon the paradigms of IBIS(Interactive Intent-Based Illustration), argumentation and design rationale. It is linked to W3C PROV by defining the actors in the design process as PROV agents and the design artifacts themselves are PROV entities. However DIO uses a modualrised version of PROV-O, based on Syntactic locality.\n\nDIO makes few assumptions about the design process used as the definitions of these activities properly belongs in the software lifecycle and data lifecycle models. The Figure below illustrates the conceptual entities in DIO and their relationships.".freeze, "http://aligned.cs.ox.ac.uk/images/dio.jpg".freeze], - "dc11:title": "The Design Intent Ontology - A content ontology design pattern".freeze, - "owl:imports": "http://aligned.cs.ox.ac.uk/ontologies/prov_dio".freeze, - "owl:versionInfo": "1.1.000".freeze, - "rdfs:seeAlso": "http://ceur-ws.org/Vol-1461/WOP2015_pattern_abstract_6.pdf".freeze, - type: "owl:Ontology".freeze + "http://purl.org/dc/elements/1.1/creator": "Monika Solanki (monika.solanki@cs.ox.ac.uk)".freeze, + "http://purl.org/dc/elements/1.1/date": "04-01-2016".freeze, + "http://purl.org/dc/elements/1.1/description": ["The Design Intent Ontology (DIO) is a generic ontology that provides the conceptualisation needed to capture the knowledge generated during various phases of the overall design lifecycle. \n\nIt provides definitions for design artifacts such as requirements, designs, design issues, solutions, justifications and evidence and relationships between them to represent the design process and how these things lead to design outcomes. It draws upon the paradigms of IBIS(Interactive Intent-Based Illustration), argumentation and design rationale. It is linked to W3C PROV by defining the actors in the design process as PROV agents and the design artifacts themselves are PROV entities. However DIO uses a modualrised version of PROV-O, based on Syntactic locality.\n\nDIO makes few assumptions about the design process used as the definitions of these activities properly belongs in the software lifecycle and data lifecycle models. The Figure below illustrates the conceptual entities in DIO and their relationships.".freeze, "http://aligned.cs.ox.ac.uk/images/dio.jpg".freeze], + "http://purl.org/dc/elements/1.1/title": "The Design Intent Ontology - A content ontology design pattern".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://ceur-ws.org/Vol-1461/WOP2015_pattern_abstract_6.pdf".freeze, + "http://www.w3.org/2002/07/owl#imports": "http://aligned.cs.ox.ac.uk/ontologies/prov_dio".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.1.000".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :AlternativeSolution, - comment: %(An entity representing the proposed solution.).freeze, + comment: "An entity representing the proposed solution.".freeze, label: "Alternative Solution".freeze, - subClassOf: "dio:Solution".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#Solution".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Argument, - comment: %(A reason presented against a proposed solution.).freeze, + comment: "A reason presented against a proposed solution.".freeze, label: "Argument".freeze, - subClassOf: "dio:DesignIntentArtifact".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#DesignIntentArtifact".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Assumption, - comment: %(The assumption on which a proposed solution is based.).freeze, + comment: "The assumption on which a proposed solution is based.".freeze, label: "Assumption".freeze, - subClassOf: "dio:DesignIntentArtifact".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#DesignIntentArtifact".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Comment, - comment: %(A comment made by an agent in response to an argument, a justification or another comment).freeze, + comment: "A comment made by an agent in response to an argument, a justification or another comment".freeze, label: "Comment".freeze, - subClassOf: "dio:DesignIntentArtifact".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#DesignIntentArtifact".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Constraint, - comment: %(A constraint that underlies the proposed solution.).freeze, + comment: "A constraint that underlies the proposed solution.".freeze, label: "Constraint".freeze, - subClassOf: "dio:DesignIntentArtifact".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#DesignIntentArtifact".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Design, - comment: %(A design is a specification of an object, manifested by an agent, intended to accomplish goals, in a particular environment, using a set of components, satisfying a set of requirements, subject to constraints.).freeze, + comment: "A design is a specification of an object, manifested by an agent, intended to accomplish goals, in a particular environment, using a set of components, satisfying a set of requirements, subject to constraints.".freeze, label: "Design".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DesignArtifact, - comment: %(The concrete artifact that is implemented or developed following the design that emerges from the design decisions.).freeze, + comment: "The concrete artifact that is implemented or developed following the design that emerges from the design decisions.".freeze, label: "Design Artifact".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DesignDecision, - comment: %(The final design decision made based on the various alternative solutions proposed. A design decision is driven by a mandated solution.).freeze, + comment: "The final design decision made based on the various alternative solutions proposed. A design decision is driven by a mandated solution.".freeze, label: "Design Decision".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DesignGoal, - comment: %(An entity representing the problem, goal, question or issue the design intent aims to address.).freeze, - equivalentClass: "dio:DesignIssue".freeze, + comment: "An entity representing the problem, goal, question or issue the design intent aims to address.".freeze, + equivalentClass: "https://w3id.org/dio#DesignIssue".freeze, label: "Design Goal".freeze, subClassOf: term( - intersectionOf: list("dio:DesignIntentArtifact".freeze, term( - allValuesFrom: "dio:AlternativeSolution".freeze, - onProperty: "dio:hasAlternativeSolution".freeze, - type: "owl:Restriction".freeze + intersectionOf: list("https://w3id.org/dio#DesignIntentArtifact".freeze, term( + allValuesFrom: "https://w3id.org/dio#AlternativeSolution".freeze, + onProperty: "https://w3id.org/dio#hasAlternativeSolution".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "dio:MandatedSolution".freeze, - onProperty: "dio:hasMandatedSolution".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "https://w3id.org/dio#MandatedSolution".freeze, + onProperty: "https://w3id.org/dio#hasMandatedSolution".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dio:hasMandatedSolution".freeze, - "owl:maxQualifiedCardinality": "1".freeze, - "owl:onClass": "dio:MandatedSolution".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#maxQualifiedCardinality": "1".freeze, + "http://www.w3.org/2002/07/owl#onClass": "https://w3id.org/dio#MandatedSolution".freeze, + onProperty: "https://w3id.org/dio#hasMandatedSolution".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DesignIntent, - comment: %(A entity defining the notion of a design intent, i.e., the rationale underpinning the choices that are made from the alternatives available during various phases of the overall design lifecycle.).freeze, + comment: "A entity defining the notion of a design intent, i.e., the rationale underpinning the choices that are made from the alternatives available during various phases of the overall design lifecycle.".freeze, label: "Design Intent".freeze, - subClassOf: "dio:DesignIntentArtifact".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#DesignIntentArtifact".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DesignIntentArtifact, - comment: %(An entity representing any artifact that plays a part in capturing the design intent. The minimum ontological commitment required for this entity is a brief description of the artifact, the version info and the date.).freeze, + comment: "An entity representing any artifact that plays a part in capturing the design intent. The minimum ontological commitment required for this entity is a brief description of the artifact, the version info and the date.".freeze, label: "Design Intent Artifact".freeze, subClassOf: term( intersectionOf: list(term( - onProperty: "prov:wasAttributedTo".freeze, - "owl:onClass": "prov:Agent".freeze, - "owl:qualifiedCardinality": "1".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#onClass": "http://www.w3.org/ns/prov#Agent".freeze, + "http://www.w3.org/2002/07/owl#qualifiedCardinality": "1".freeze, + onProperty: "http://www.w3.org/ns/prov#wasAttributedTo".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "prov:generatedAtTime".freeze, - "owl:onDataRange": "xsd:dateTime".freeze, - "owl:qualifiedCardinality": "1".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#onDataRange": "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + "http://www.w3.org/2002/07/owl#qualifiedCardinality": "1".freeze, + onProperty: "http://www.w3.org/ns/prov#generatedAtTime".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dio:version".freeze, - "owl:onDataRange": "xsd:string".freeze, - "owl:qualifiedCardinality": "1".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#onDataRange": "http://www.w3.org/2001/XMLSchema#string".freeze, + "http://www.w3.org/2002/07/owl#qualifiedCardinality": "1".freeze, + onProperty: "https://w3id.org/dio#version".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DesignIssue, - comment: %(An entity representing the problem, goal, question or issue the design intent aims to address.).freeze, + comment: "An entity representing the problem, goal, question or issue the design intent aims to address.".freeze, label: "Design Issue".freeze, - subClassOf: "dio:DesignIntentArtifact".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#DesignIntentArtifact".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DesignRequirement, - comment: %(An entity capturing the requirements that result in the design intent).freeze, + comment: "An entity capturing the requirements that result in the design intent".freeze, label: "Design Requirements".freeze, - subClassOf: "dio:DesignIntentArtifact".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#DesignIntentArtifact".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Evaluation, - comment: %(An entity representing the evaluation that supports the solution.).freeze, + comment: "An entity representing the evaluation that supports the solution.".freeze, label: "Evaluation".freeze, - subClassOf: "dio:DesignIntentArtifact".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#DesignIntentArtifact".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Evidence, - comment: %(An entity representing an evidence that supports a proposed solution.).freeze, + comment: "An entity representing an evidence that supports a proposed solution.".freeze, label: "Evidence".freeze, - subClassOf: "dio:DesignIntentArtifact".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#DesignIntentArtifact".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Heuristic, - comment: %(An entity representing the requirements to be fulfilled for realising the solution).freeze, + comment: "An entity representing the requirements to be fulfilled for realising the solution".freeze, label: "Heuristic".freeze, - subClassOf: "dio:DesignIntentArtifact".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#DesignIntentArtifact".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Justification, - comment: %(A reason supporting the proposed solution.).freeze, + comment: "A reason supporting the proposed solution.".freeze, label: "Justification".freeze, - subClassOf: "dio:DesignIntentArtifact".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#DesignIntentArtifact".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MandatedSolution, - comment: %(An entity representing the solution accepted as a result of the design deliberation process.).freeze, + comment: "An entity representing the solution accepted as a result of the design deliberation process.".freeze, label: "Mandated Solution".freeze, - subClassOf: "dio:Solution".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#Solution".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RationaleCaptureMethod, - comment: %(An entity representing the methodology used to capture the design intent artifact).freeze, + comment: "An entity representing the methodology used to capture the design intent artifact".freeze, label: "Rationale Capture Methodology".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Solution, label: "Solution".freeze, - subClassOf: "dio:DesignIntentArtifact".freeze, - type: "owl:Class".freeze + subClassOf: "https://w3id.org/dio#DesignIntentArtifact".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Status, - comment: %(An entity representing the status of a design issue.).freeze, + comment: "An entity representing the status of a design issue.".freeze, label: "Status".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :addressedBy, - comment: %(A relationship stating the design intent addressing a requirement.).freeze, + comment: "A relationship stating the design intent addressing a requirement.".freeze, label: "addressedBy".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :captureMethodology, - comment: %(A relationship identifying the capture methodology for a design issue).freeze, + comment: "A relationship identifying the capture methodology for a design issue".freeze, label: "captureMethodology".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :contradicts, - comment: %(A relationship indicating contradictory issues.).freeze, - domain: "dio:Solution".freeze, + comment: "A relationship indicating contradictory issues.".freeze, + domain: "https://w3id.org/dio#Solution".freeze, label: "contradicts".freeze, - range: "dio:Solution".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#Solution".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :fulfillsRequirement, - comment: %(A relationship between the design and its requirement.).freeze, - domain: ["dio:Design".freeze, "dio:DesignIntentArtifact".freeze], - inverseOf: "dio:requirementFulfilledBy".freeze, + comment: "A relationship between the design and its requirement.".freeze, + domain: ["https://w3id.org/dio#Design".freeze, "https://w3id.org/dio#DesignIntentArtifact".freeze], + inverseOf: "https://w3id.org/dio#requirementFulfilledBy".freeze, label: "fullfillsRequirements".freeze, - range: "dio:DesignRequirement".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#DesignRequirement".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :generatedByIntent, - comment: %(A relationship between the design issue and intent.).freeze, - inverseOf: "dio:generatesIssue".freeze, + comment: "A relationship between the design issue and intent.".freeze, + inverseOf: "https://w3id.org/dio#generatesIssue".freeze, label: "generatedByIntent".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :generatesIssue, - comment: %(A relationship between the design intent and issue.).freeze, + comment: "A relationship between the design intent and issue.".freeze, label: "generatesIssue".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :governsDesign, - comment: %(The design decision governing the design.).freeze, - domain: "dio:DesignDecision".freeze, + comment: "The design decision governing the design.".freeze, + domain: "https://w3id.org/dio#DesignDecision".freeze, label: "governsDesign".freeze, - range: "dio:Design".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#Design".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasAlternativeSolution, - comment: %(The realtionship between the issue and an alternative solution for it.).freeze, + comment: "The realtionship between the issue and an alternative solution for it.".freeze, label: "hasAlternativeSolution".freeze, - range: "dio:AlternativeSolution".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#AlternativeSolution".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasArgument, - comment: %(The relationship between a solution and an argument made against it.).freeze, + comment: "The relationship between a solution and an argument made against it.".freeze, label: "hasArgument".freeze, - range: "dio:Argument".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#Argument".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasComment, - comment: %(The relationship between a comment and a design intent artifact for which the comment is made.).freeze, + comment: "The relationship between a comment and a design intent artifact for which the comment is made.".freeze, label: "hasComment".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasConstraint, - comment: %(A relationship between a solution and a constarint on it.).freeze, - domain: "dio:Solution".freeze, + comment: "A relationship between a solution and a constarint on it.".freeze, + domain: "https://w3id.org/dio#Solution".freeze, label: "hasConstraint".freeze, - range: "dio:Constraint".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#Constraint".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEvidence, - comment: %(A relationship between a solution and an evidence for it.).freeze, - domain: ["dio:Argument".freeze, "dio:Justification".freeze], + comment: "A relationship between a solution and an evidence for it.".freeze, + domain: ["https://w3id.org/dio#Argument".freeze, "https://w3id.org/dio#Justification".freeze], label: "hasEvidence".freeze, - range: "dio:Evidence".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#Evidence".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasJustification, - comment: %(A relationship between a solution and the justification for it.).freeze, + comment: "A relationship between a solution and the justification for it.".freeze, label: "hasJustification".freeze, - range: "dio:Justification".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#Justification".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasMandatedSolution, - comment: %(A relationship between the issue and its mandated solution.).freeze, + comment: "A relationship between the issue and its mandated solution.".freeze, label: "hasMandatedSolution".freeze, - range: "dio:MandatedSolution".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#MandatedSolution".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasStatus, - comment: %(The relationship between an issue and its status.).freeze, - domain: "dio:DesignIssue".freeze, + comment: "The relationship between an issue and its status.".freeze, + domain: "https://w3id.org/dio#DesignIssue".freeze, label: "hasStatus".freeze, - range: "dio:Status".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#Status".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :identifiedByRequirement, - comment: %(The relationship between an issue and the requirement that identifies it.).freeze, - inverseOf: "dio:identifies".freeze, + comment: "The relationship between an issue and the requirement that identifies it.".freeze, + inverseOf: "https://w3id.org/dio#identifies".freeze, label: "identifiedByRequirement".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :identifies, - comment: %(A relationship between the requirement and the issue it identifies.).freeze, - type: "owl:ObjectProperty".freeze + comment: "A relationship between the requirement and the issue it identifies.".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :implementedBy, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :leadsTo, - comment: %(A relationship between a mandated solution and design decision made based on it.).freeze, - domain: "dio:MandatedSolution".freeze, + comment: "A relationship between a mandated solution and design decision made based on it.".freeze, + domain: "https://w3id.org/dio#MandatedSolution".freeze, label: "leadsTo".freeze, - range: "dio:DesignDecision".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#DesignDecision".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :providesAlternativeSolution, - comment: %(A relationship between an alternative solution and the issue.).freeze, - inverseOf: "dio:hasAlternativeSolution".freeze, + comment: "A relationship between an alternative solution and the issue.".freeze, + inverseOf: "https://w3id.org/dio#hasAlternativeSolution".freeze, label: "providesAlternativeSolution".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :providesMandatedSolution, - comment: %(A relationship between a mandated solution and the issue.).freeze, - inverseOf: "dio:hasMandatedSolution".freeze, + comment: "A relationship between a mandated solution and the issue.".freeze, + inverseOf: "https://w3id.org/dio#hasMandatedSolution".freeze, label: "providesMandatedSolution".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :rationaleCapturedUsing, - comment: %(A relationship between the design rationale and its capture methodology.).freeze, + comment: "A relationship between the design rationale and its capture methodology.".freeze, label: "rationaleCapturedUsing".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :refines, - comment: %(A relationship between two requirememts when one refines the other.).freeze, - domain: "dio:Solution".freeze, + comment: "A relationship between two requirememts when one refines the other.".freeze, + domain: "https://w3id.org/dio#Solution".freeze, label: "refines".freeze, - range: "dio:Solution".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#Solution".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :requirementFulfilledBy, - comment: %(A relationship between the design and its originating requirements).freeze, + comment: "A relationship between the design and its originating requirements".freeze, label: "requirementFulfilledBy".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :supports, - comment: %(A relationship between an agent and a design solution argument or justification.).freeze, + comment: "A relationship between an agent and a design solution argument or justification.".freeze, label: "supports".freeze, - range: ["dio:Argument".freeze, "dio:Justification".freeze], - type: "owl:ObjectProperty".freeze + range: ["https://w3id.org/dio#Argument".freeze, "https://w3id.org/dio#Justification".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :usesAssumption, - comment: %(A relationship between a solution and the Assumption it makes.).freeze, - domain: "dio:Solution".freeze, + comment: "A relationship between a solution and the Assumption it makes.".freeze, + domain: "https://w3id.org/dio#Solution".freeze, label: "usesAssumption".freeze, - range: "dio:Assumption".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#Assumption".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :usesHeuristic, - comment: %(A relationship between a solution and the heuristic iy uses.).freeze, - domain: "dio:Solution".freeze, + comment: "A relationship between a solution and the heuristic iy uses.".freeze, + domain: "https://w3id.org/dio#Solution".freeze, label: "usesHeuristic".freeze, - range: "dio:Heuristic".freeze, - type: "owl:ObjectProperty".freeze + range: "https://w3id.org/dio#Heuristic".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :version, - 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] # Extra definitions term :Active, - comment: %(The status of an issue when it is active.).freeze, + comment: "The status of an issue when it is active.".freeze, label: "Active".freeze, - type: ["dio:Status".freeze, "owl:NamedIndividual".freeze] + type: ["http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "https://w3id.org/dio#Status".freeze] term :OnHold, - comment: %(The status of an issue when it is onHold).freeze, + comment: "The status of an issue when it is onHold".freeze, label: "onHold".freeze, - type: ["dio:Status".freeze, "owl:NamedIndividual".freeze] + type: ["http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "https://w3id.org/dio#Status".freeze] term :Resolved, - comment: %(The status of an issue when it is resolved.).freeze, - type: ["dio:Status".freeze, "owl:NamedIndividual".freeze] + comment: "The status of an issue when it is resolved.".freeze, + type: ["http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "https://w3id.org/dio#Status".freeze] term :Terminated, - comment: %(The status of an issue when it is terminated.).freeze, - type: ["dio:Status".freeze, "owl:NamedIndividual".freeze] + comment: "The status of an issue when it is terminated.".freeze, + type: ["http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "https://w3id.org/dio#Status".freeze] end end diff --git a/lib/vocabs/doco.rb b/lib/vocabs/doco.rb index b6f38b56..f19f7606 100644 --- a/lib/vocabs/doco.rb +++ b/lib/vocabs/doco.rb @@ -2,799 +2,783 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/spar/doco/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class DOCO < RDF::StrictVocabulary - # end - class DOCO < RDF::StrictVocabulary("http://purl.org/spar/doco/") +module LifePreserver::Vocab + DOCO = Class.new(RDF::StrictVocabulary("http://purl.org/spar/doco/")) do # Ontology definition ontology :"http://purl.org/spar/doco/", - comment: [%(The Document Components Ontology \(DoCO\) in an ontology that provides a structured vocabulary written of document components, both structural \(e.g., block, inline, paragraph, section, chapter\) and rhetorical \(e.g., introduction, discussion, acknowledgements, reference list, figure, appendix\). - -**URL:** http://purl.org/spar/doco - -**Creators**: [David Shotton]\(http://orcid.org/0000-0001-5506-523X\), [Silvio Peroni]\(http://orcid.org/0000-0003-0530-4305\) - -**License:** [Creative Commons Attribution 4.0 International]\(https://creativecommons.org/licenses/by/4.0/legalcode\) - -**Website:** http://www.sparontologies.net/ontologies/doco - -**Cite as:** Constantin, A., Peroni, S., Pettifer, S., Shotton, D., Vitali, F. \(2016\). The Document Components Ontology \(DoCO\). In Semantic Web, 7 \(2\): 167-181. DOI: http://dx.doi.org/10.3233/SW-150177).freeze, %(This ontology is available at http://purl.org/spar/doco, and uses the namespace prefix doco.).freeze], - "dc11:creator": ["David Shotton".freeze, "Silvio Peroni".freeze], - "dc11:date": "2015-07-03".freeze, - "dc11:description": ["DoCO, the Document Components Ontology, provides a structured vocabulary written in OWL 2 DL of document components, both structural (e.g. block, inline, paragraph, section, chapter) and rhetorical (e.g. introduction, discussion, acknowledgements, reference list, figure, appendix), enabling these components, and documents composed of them, to be described in RDF. It imports the Discourse Elements Ontology (http://purl.org/spar/deo) and the Document Structural Patterns Ontology (http://purl.org/spar/po), and uses seven rhetorical block elements abstracted from the SALT Rhetorical Ontology and the Ontology of Rhetorical Blocks (ORB).".freeze, "doco:doco%20architecture.png".freeze], - "dc11:rights": "This work is distributed under a Creative Commons Attribution License (http://creativecommons.org/licenses/by/3.0/).".freeze, - "dc11:title": "DoCO, the Document Components Ontology".freeze, - "owl:imports": ["http://purl.org/spar/deo".freeze, "http://purl.org/spar/po".freeze], - "owl:priorVersion": "https://svn.code.sf.net/p/sempublishing/code/DoCO/2014-05-14_doco-1_2.owl".freeze, - "owl:versionIRI": "doco:2015-07-03".freeze, - "owl:versionInfo": "1.3".freeze, - type: "owl:Ontology".freeze + comment: ["The Document Components Ontology (DoCO) in an ontology that provides a structured vocabulary written of document components, both structural (e.g., block, inline, paragraph, section, chapter) and rhetorical (e.g., introduction, discussion, acknowledgements, reference list, figure, appendix).\n\n**URL:** http://purl.org/spar/doco\n\n**Creators**: [David Shotton](http://orcid.org/0000-0001-5506-523X), [Silvio Peroni](http://orcid.org/0000-0003-0530-4305)\n\n**License:** [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/legalcode)\n\n**Website:** http://www.sparontologies.net/ontologies/doco\n\n**Cite as:** Constantin, A., Peroni, S., Pettifer, S., Shotton, D., Vitali, F. (2016). The Document Components Ontology (DoCO). In Semantic Web, 7 (2): 167-181. DOI: http://dx.doi.org/10.3233/SW-150177".freeze, "This ontology is available at http://purl.org/spar/doco, and uses the namespace prefix doco.".freeze], + "http://purl.org/dc/elements/1.1/creator": ["David Shotton".freeze, "Silvio Peroni".freeze], + "http://purl.org/dc/elements/1.1/date": "2015-07-03".freeze, + "http://purl.org/dc/elements/1.1/description": ["DoCO, the Document Components Ontology, provides a structured vocabulary written in OWL 2 DL of document components, both structural (e.g. block, inline, paragraph, section, chapter) and rhetorical (e.g. introduction, discussion, acknowledgements, reference list, figure, appendix), enabling these components, and documents composed of them, to be described in RDF. It imports the Discourse Elements Ontology (http://purl.org/spar/deo) and the Document Structural Patterns Ontology (http://purl.org/spar/po), and uses seven rhetorical block elements abstracted from the SALT Rhetorical Ontology and the Ontology of Rhetorical Blocks (ORB).".freeze, "http://purl.org/spar/doco/doco%20architecture.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/3.0/).".freeze, + "http://purl.org/dc/elements/1.1/title": "DoCO, the Document Components Ontology".freeze, + "http://www.w3.org/2002/07/owl#imports": ["http://purl.org/spar/deo".freeze, "http://purl.org/spar/po".freeze], + "http://www.w3.org/2002/07/owl#priorVersion": "https://svn.code.sf.net/p/sempublishing/code/DoCO/2014-05-14_doco-1_2.owl".freeze, + "http://www.w3.org/2002/07/owl#versionIRI": "http://purl.org/spar/doco/2015-07-03".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.3".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Abstract, - comment: %(A brief summary of a book, a research article, thesis, review, conference proceeding or any in-depth analysis of a particular subject or discipline, the purpose of which is to help the reader quickly ascertain the publication's purpose.).freeze, + comment: "A brief summary of a book, a research article, thesis, review, conference proceeding or any in-depth analysis of a particular subject or discipline, the purpose of which is to help the reader quickly ascertain the publication's purpose.".freeze, equivalentClass: "http://salt.semanticauthoring.org/ontologies/sro#Abstract".freeze, label: "abstract".freeze, subClassOf: term( intersectionOf: list(term( - type: "owl:Class".freeze, - unionOf: list("doco:Chapter".freeze, "doco:Section".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/doco/Chapter".freeze, "http://purl.org/spar/doco/Section".freeze) ), term( - onProperty: "dc:isPartOf".freeze, + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, someValuesFrom: term( - type: "owl:Class".freeze, - unionOf: list("doco:BodyMatter".freeze, "doco:FrontMatter".freeze) - ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/doco/BodyMatter".freeze, "http://purl.org/spar/doco/FrontMatter".freeze) + ).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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Afterword, - comment: %(A literary device that is often found at the end of a piece of literature. It generally covers the story of how the book came into being, or how the idea for the book was developed. Alternatively, it may be written by someone other than the author of the book, and may discuss the work's historical or cultural context, if the work is being reissued many years after its original publication.).freeze, + comment: "A literary device that is often found at the end of a piece of literature. It generally covers the story of how the book came into being, or how the idea for the book was developed. Alternatively, it may be written by someone other than the author of the book, and may discuss the work's historical or cultural context, if the work is being reissued many years after its original publication.".freeze, label: "afterword".freeze, subClassOf: term( - intersectionOf: list("doco:Section".freeze, term( - onProperty: "dc:isPartOf".freeze, - someValuesFrom: "doco:BackMatter".freeze, - type: "owl:Restriction".freeze + intersectionOf: list("http://purl.org/spar/doco/Section".freeze, term( + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, + someValuesFrom: "http://purl.org/spar/doco/BackMatter".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Appendix, - comment: %(A supplemental addition to the main work. It may contain data, more detailed information about methods and materials, or provide additional detail concerning the information found in the main work.).freeze, + comment: "A supplemental addition to the main work. It may contain data, more detailed information about methods and materials, or provide additional detail concerning the information found in the main work.".freeze, label: "appendix".freeze, subClassOf: term( intersectionOf: list(term( - intersectionOf: list("doco:Section".freeze, term( - type: "owl:Class".freeze + intersectionOf: list("http://purl.org/spar/doco/Section".freeze, term( + 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( - onProperty: "dc:isPartOf".freeze, - someValuesFrom: "doco:BackMatter".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, + someValuesFrom: "http://purl.org/spar/doco/BackMatter".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BackMatter, - comment: %(The final principle part of a document, in which is usually found the bibliography, index, appendixes, etc.).freeze, + comment: "The final principle part of a document, in which is usually found the bibliography, index, appendixes, etc.".freeze, label: "back matter".freeze, subClassOf: [term( allValuesFrom: term( - "owl:complementOf": term( - type: "owl:Class".freeze, - unionOf: list("doco:BackMatter".freeze, "doco:BodyMatter".freeze, "doco:FrontMatter".freeze) - ), - type: "owl:Class".freeze - ), + "http://www.w3.org/2002/07/owl#complementOf": term( + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/doco/BackMatter".freeze, "http://purl.org/spar/doco/BodyMatter".freeze, "http://purl.org/spar/doco/FrontMatter".freeze) + ).freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze + ).freeze, onProperty: "http://www.essepuntato.it/2008/12/pattern#isContainedBy".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( intersectionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".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 )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BibliographicReferenceList, - comment: %(A list, usually within a bibliography, of all the references within the citing document that refer to journal articles, books, book chapters, Web sites or similar publications.).freeze, + comment: "A list, usually within a bibliography, of all the references within the citing document that refer to journal articles, books, book chapters, Web sites or similar publications.".freeze, label: "bibliographic reference list".freeze, subClassOf: term( - intersectionOf: list("doco:ListOfReferences".freeze, term( + intersectionOf: list("http://purl.org/spar/doco/ListOfReferences".freeze, term( onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, someValuesFrom: "http://purl.org/spar/deo/BibliographicReference".freeze, - type: "owl:Restriction".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Bibliography, - comment: %(A document section containing a list of bibliographic references.).freeze, + comment: "A document section containing a list of bibliographic references.".freeze, label: "bibliography".freeze, subClassOf: term( intersectionOf: list(term( - type: "owl:Class".freeze, - unionOf: list("doco:Chapter".freeze, "doco:Section".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/doco/Chapter".freeze, "http://purl.org/spar/doco/Section".freeze) ), term( - onProperty: "dc:hasPart".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, someValuesFrom: "http://purl.org/spar/deo/BibliographicReference".freeze, - type: "owl:Restriction".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BlockQuotation, - comment: %(A block quotation \(also known as a long quotation or extract\) is a quotation in a written document which is set off from the main text as a container for distinct paragraphs, which is typically distinguished visually using indentation, a different font, or smaller size. Block quotations are used for longer passages than run-in quotations \(which are set off with quotation marks\).).freeze, + comment: "A block quotation (also known as a long quotation or extract) is a quotation in a written document which is set off from the main text as a container for distinct paragraphs, which is typically distinguished visually using indentation, a different font, or smaller size. Block quotations are used for longer passages than run-in quotations (which are set off with quotation marks).".freeze, label: "block quotation".freeze, subClassOf: "http://www.essepuntato.it/2008/12/pattern#Container".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BodyMatter, - comment: %(The central principle part of a document, that contains the real content. It may be subdivided hierarchically by the use of chapters and sections.).freeze, + comment: "The central principle part of a document, that contains the real content. It may be subdivided hierarchically by the use of chapters and sections.".freeze, label: "body matter".freeze, subClassOf: [term( allValuesFrom: term( - "owl:complementOf": term( - type: "owl:Class".freeze, - unionOf: list("doco:BackMatter".freeze, "doco:BodyMatter".freeze, "doco:FrontMatter".freeze) - ), - type: "owl:Class".freeze - ), + "http://www.w3.org/2002/07/owl#complementOf": term( + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/doco/BackMatter".freeze, "http://purl.org/spar/doco/BodyMatter".freeze, "http://purl.org/spar/doco/FrontMatter".freeze) + ).freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze + ).freeze, onProperty: "http://www.essepuntato.it/2008/12/pattern#isContainedBy".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( intersectionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".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 )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CaptionedBox, - comment: %(A rectangle space within a page that contains an object and its related caption.).freeze, + comment: "A rectangle space within a page that contains an object and its related caption.".freeze, label: "captioned box".freeze, subClassOf: term( intersectionOf: list(term( intersectionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".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( - onProperty: "dc:hasPart".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, someValuesFrom: "http://purl.org/spar/deo/Caption".freeze, - type: "owl:Restriction".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Chapter, - comment: %(A principle division of the body matter of a large document, such as a book, a report or a legislative document.).freeze, + comment: "A principle division of the body matter of a large document, such as a book, a report or a legislative document.".freeze, label: "chapter".freeze, subClassOf: [term( intersectionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".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( onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, someValuesFrom: term( - "owl:complementOf": "doco:Chapter".freeze, - type: "owl:Class".freeze - ), - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#complementOf": "http://purl.org/spar/doco/Chapter".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze + ).freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, someValuesFrom: term( - type: "owl:Class".freeze, - unionOf: list("doco:Paragraph".freeze, "doco:Section".freeze) - ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/doco/Paragraph".freeze, "http://purl.org/spar/doco/Section".freeze) + ).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 :ChapterLabel, - comment: %(A block containing a label for the chapter, that may include the chapter number.).freeze, + comment: "A block containing a label for the chapter, that may include the chapter number.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/doco/SectionLabel".freeze, label: "chapter label".freeze, - "owl:disjointWith": "doco:SectionLabel".freeze, subClassOf: term( - intersectionOf: list("doco:Label".freeze, term( - onProperty: "dc:isPartOf".freeze, - someValuesFrom: "doco:Chapter".freeze, - type: "owl:Restriction".freeze + intersectionOf: list("http://purl.org/spar/doco/Label".freeze, term( + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, + someValuesFrom: "http://purl.org/spar/doco/Chapter".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ChapterSubtitle, - comment: %(The subtitle of a chapter.).freeze, + comment: "The subtitle of a chapter.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/doco/SectionSubtitle".freeze, label: "chapter subtitle".freeze, - "owl:disjointWith": "doco:SectionSubtitle".freeze, - subClassOf: ["doco:Subtitle".freeze, term( - onProperty: "dc:isPartOf".freeze, - someValuesFrom: "doco:Chapter".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/spar/doco/Subtitle".freeze, term( + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, + someValuesFrom: "http://purl.org/spar/doco/Chapter".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 :ChapterTitle, - comment: %(The title of a chapter.).freeze, + comment: "The title of a chapter.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/doco/SectionTitle".freeze, label: "chapter title".freeze, - "owl:disjointWith": "doco:SectionTitle".freeze, - subClassOf: ["doco:Title".freeze, term( + subClassOf: ["http://purl.org/spar/doco/Title".freeze, term( onProperty: "http://www.essepuntato.it/2008/12/pattern#isContainedByAsHeader".freeze, - someValuesFrom: "doco:Chapter".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/doco/Chapter".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 :Colophon, - comment: %(A brief description of publication or production notes relevant to the document.).freeze, + comment: "A brief description of publication or production notes relevant to the document.".freeze, label: "colophon".freeze, subClassOf: term( - intersectionOf: list("doco:Section".freeze, term( - onProperty: "dc:isPartOf".freeze, + intersectionOf: list("http://purl.org/spar/doco/Section".freeze, term( + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, someValuesFrom: term( - type: "owl:Class".freeze, - unionOf: list("doco:BackMatter".freeze, "doco:FrontMatter".freeze) - ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/doco/BackMatter".freeze, "http://purl.org/spar/doco/FrontMatter".freeze) + ).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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ComplexRunInQuotation, - comment: %(A quotation with a complex structure, that is included inline and is usually enclosed within quotation marks.).freeze, + comment: "A quotation with a complex structure, that is included inline and is usually enclosed within quotation marks.".freeze, label: "complex run-in quotation".freeze, subClassOf: ["http://purl.org/spar/deo/DiscourseElement".freeze, "http://www.essepuntato.it/2008/12/pattern#Popup".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Figure, - comment: %(A communication object comprising one or more graphics, drawings, images, or other visual representations..).freeze, + comment: "A communication object comprising one or more graphics, drawings, images, or other visual representations..".freeze, label: "figure".freeze, subClassOf: ["http://purl.org/spar/deo/DiscourseElement".freeze, term( - type: "owl:Class".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze, unionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".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 :FigureBox, - comment: %(A space within a document that contains a figure and its caption.).freeze, + comment: "A space within a document that contains a figure and its caption.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/doco/TableBox".freeze, label: "figure box".freeze, - "owl:disjointWith": "doco:TableBox".freeze, subClassOf: term( - intersectionOf: list("doco:CaptionedBox".freeze, term( - onProperty: "dc:hasPart".freeze, - someValuesFrom: "doco:Figure".freeze, - type: "owl:Restriction".freeze + intersectionOf: list("http://purl.org/spar/doco/CaptionedBox".freeze, term( + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + someValuesFrom: "http://purl.org/spar/doco/Figure".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FigureLabel, - comment: %(A block containing a label for the figure box, that may include the figure number.).freeze, + comment: "A block containing a label for the figure box, that may include the figure number.".freeze, label: "figure label".freeze, subClassOf: term( - intersectionOf: list("doco:Label".freeze, term( - onProperty: "dc:isPartOf".freeze, - someValuesFrom: "doco:FigureBox".freeze, - type: "owl:Restriction".freeze + intersectionOf: list("http://purl.org/spar/doco/Label".freeze, term( + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, + someValuesFrom: "http://purl.org/spar/doco/FigureBox".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Footnote, - comment: %(A structure within a sentence that permits the author to make a comment or to cite another publication in support of the text, or both. A footnote is normally flagged by a superscript number immediately following that portion of the text to which it relates. For convenience of reading, the text of the footnote is usually printed at the bottom of the page or at the end of a text.).freeze, + comment: "A structure within a sentence that permits the author to make a comment or to cite another publication in support of the text, or both. A footnote is normally flagged by a superscript number immediately following that portion of the text to which it relates. For convenience of reading, the text of the footnote is usually printed at the bottom of the page or at the end of a text.".freeze, label: "footnote".freeze, subClassOf: ["http://purl.org/spar/deo/DiscourseElement".freeze, term( - type: "owl:Class".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze, unionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".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 :Foreword, - comment: %(A section in a book or report, usually written by someone other than the author, that introduces or commends the document to the reader. It may include description of the interaction between the writer of the foreword and the author.).freeze, + comment: "A section in a book or report, usually written by someone other than the author, that introduces or commends the document to the reader. It may include description of the interaction between the writer of the foreword and the author.".freeze, label: "foreword".freeze, subClassOf: term( - intersectionOf: list("doco:Section".freeze, term( - onProperty: "dc:isPartOf".freeze, - someValuesFrom: "doco:FrontMatter".freeze, - type: "owl:Restriction".freeze + intersectionOf: list("http://purl.org/spar/doco/Section".freeze, term( + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, + someValuesFrom: "http://purl.org/spar/doco/FrontMatter".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Formula, - comment: %(A unit of information expressed in mathematical, chemical or logical symbols and language.).freeze, + comment: "A unit of information expressed in mathematical, chemical or logical symbols and language.".freeze, label: "formula".freeze, subClassOf: ["http://purl.org/spar/deo/DiscourseElement".freeze, "http://www.essepuntato.it/2008/12/pattern#Popup".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FormulaBox, - comment: %(A space within a document that contains one or more formulae.).freeze, + comment: "A space within a document that contains one or more formulae.".freeze, label: "formula box".freeze, subClassOf: term( intersectionOf: list(term( intersectionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".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( - onProperty: "dc:hasPart".freeze, - someValuesFrom: "doco:Formula".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + someValuesFrom: "http://purl.org/spar/doco/Formula".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FrontMatter, - comment: %(The initial principle part of a document, usually containing self-referential metadata. In a book, this typically includes its title, authors, publisher, publication date, ISBN and copyright declaration, together with the preface, foreword, table of content, etc. In a journal article, the front matter is normally restricted to the title, authors and the authors' affiliation details, although the latter may alternatively be included in a footnote or the back matter. In books, the front matter pages may be numbered in lowercase Roman numerals.).freeze, + comment: "The initial principle part of a document, usually containing self-referential metadata. In a book, this typically includes its title, authors, publisher, publication date, ISBN and copyright declaration, together with the preface, foreword, table of content, etc. In a journal article, the front matter is normally restricted to the title, authors and the authors' affiliation details, although the latter may alternatively be included in a footnote or the back matter. In books, the front matter pages may be numbered in lowercase Roman numerals.".freeze, equivalentClass: "http://purl.org/orb/1.0/Header".freeze, label: "front matter".freeze, subClassOf: [term( allValuesFrom: term( - "owl:complementOf": term( - type: "owl:Class".freeze, - unionOf: list("doco:BackMatter".freeze, "doco:BodyMatter".freeze, "doco:FrontMatter".freeze) - ), - type: "owl:Class".freeze - ), + "http://www.w3.org/2002/07/owl#complementOf": term( + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/doco/BackMatter".freeze, "http://purl.org/spar/doco/BodyMatter".freeze, "http://purl.org/spar/doco/FrontMatter".freeze) + ).freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze + ).freeze, onProperty: "http://www.essepuntato.it/2008/12/pattern#isContainedBy".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( intersectionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".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 )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Glossary, - comment: %(A set of definitions of words or phrases of importance to the work, normally alphabetized. In longer works of fiction, the entries may contains places and characters.).freeze, + comment: "A set of definitions of words or phrases of importance to the work, normally alphabetized. In longer works of fiction, the entries may contains places and characters.".freeze, label: "glossary".freeze, subClassOf: term( - intersectionOf: list("doco:Section".freeze, term( - onProperty: "dc:isPartOf".freeze, + intersectionOf: list("http://purl.org/spar/doco/Section".freeze, term( + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, someValuesFrom: term( - type: "owl:Class".freeze, - unionOf: list("doco:BackMatter".freeze, "doco:FrontMatter".freeze) - ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/doco/BackMatter".freeze, "http://purl.org/spar/doco/FrontMatter".freeze) + ).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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Index, - comment: %(A section containing a list of references to information on the named topic of importance to the content of the document. The references may be to page numbers, paragraph numbers, section numbers or chapter numbers within the document.).freeze, + comment: "A section containing a list of references to information on the named topic of importance to the content of the document. The references may be to page numbers, paragraph numbers, section numbers or chapter numbers within the document.".freeze, label: "index".freeze, subClassOf: [term( intersectionOf: list(term( - intersectionOf: list("doco:Section".freeze, term( - type: "owl:Class".freeze + intersectionOf: list("http://purl.org/spar/doco/Section".freeze, term( + 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( - onProperty: "dc:isPartOf".freeze, - someValuesFrom: "doco:BackMatter".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, + someValuesFrom: "http://purl.org/spar/doco/BackMatter".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( - onProperty: "dc:hasPart".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, someValuesFrom: term( - intersectionOf: list("doco:ListOfReferences".freeze, term( + intersectionOf: list("http://purl.org/spar/doco/ListOfReferences".freeze, term( allValuesFrom: term( - onProperty: "dc:relation".freeze, - someValuesFrom: "doco:TextChunk".freeze, - type: "owl:Restriction".freeze - ), + onProperty: "http://purl.org/dc/terms/relation".freeze, + someValuesFrom: "http://purl.org/spar/doco/TextChunk".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ).freeze, onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )), - type: "owl:Class".freeze - ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze + ).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 :Label, - comment: %(A block containing text, that may include a number \(e.g., "Chapter Three", "3.2", "Figure 1", "Table"\), used to identify an item within the document, for example a chapter, a figure, a section or a table.).freeze, + comment: "A block containing text, that may include a number (e.g., \"Chapter Three\", \"3.2\", \"Figure 1\", \"Table\"), used to identify an item within the document, for example a chapter, a figure, a section or a table.".freeze, label: "label".freeze, subClassOf: ["http://purl.org/spar/deo/DiscourseElement".freeze, term( onProperty: "http://www.essepuntato.it/2008/12/pattern#isContainedBy".freeze, someValuesFrom: term( - type: "owl:Class".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze, unionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze )) - ), - type: "owl:Restriction".freeze + ).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 :Line, - comment: %(A line in poetry is a unit of language into which a poem is divided which operates on principles which are distinct from and not necessarily coincident with grammatical structures, such as the sentence or clauses in sentences. - -A distinct numbered group of lines in verse is normally called a stanza.).freeze, + comment: "A line in poetry is a unit of language into which a poem is divided which operates on principles which are distinct from and not necessarily coincident with grammatical structures, such as the sentence or clauses in sentences.\n\nA distinct numbered group of lines in verse is normally called a stanza.".freeze, label: "line".freeze, subClassOf: ["http://purl.org/spar/deo/DiscourseElement".freeze, "http://www.essepuntato.it/2008/12/pattern#Block".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :List, - comment: %(An enumeration of items.).freeze, + comment: "An enumeration of items.".freeze, label: "list".freeze, subClassOf: ["http://purl.org/spar/deo/DiscourseElement".freeze, term( allValuesFrom: term( - type: "owl:Class".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze, unionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( intersectionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - "owl:complementOf": term( - type: "owl:Class".freeze, + "http://www.w3.org/2002/07/owl#complementOf": term( + type: "http://www.w3.org/2002/07/owl#Class".freeze, unionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze )) - ), - type: "owl:Class".freeze + ).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 )) - ), + ).freeze, onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( intersectionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, someValuesFrom: "http://www.essepuntato.it/2008/12/pattern#Pattern".freeze, - type: "owl:Restriction".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 )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ListOfAgents, - comment: %(A list of items each denoting an agent, such as an author, a contributor or an organization, related to a particular publication.).freeze, + comment: "A list of items each denoting an agent, such as an author, a contributor or an organization, related to a particular publication.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/doco/ListOfReferences".freeze, label: "list of agents".freeze, - "owl:disjointWith": "doco:ListOfReferences".freeze, - subClassOf: "doco:List".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/doco/List".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ListOfAuthors, - comment: %(A list of items each denoting an author of a particular publication.).freeze, + comment: "A list of items each denoting an author of a particular publication.".freeze, label: "list of authors".freeze, - subClassOf: "doco:ListOfAgents".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/doco/ListOfAgents".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ListOfContributors, - comment: %(A list of items, each denoting a contributor to a publication such as an encyclopedia or a text book, where such contributions are insufficient to warrant classification as author.).freeze, + comment: "A list of items, each denoting a contributor to a publication such as an encyclopedia or a text book, where such contributions are insufficient to warrant classification as author.".freeze, label: "list of contributors".freeze, - subClassOf: "doco:ListOfAgents".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/doco/ListOfAgents".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ListOfFigures, - comment: %(A section of the document listing all the figures, identified by their titles and referenced to their locations in the document. May also be referred to as 'List of illustrations'.).freeze, + comment: "A section of the document listing all the figures, identified by their titles and referenced to their locations in the document. May also be referred to as 'List of illustrations'.".freeze, label: "list of figures".freeze, subClassOf: [term( intersectionOf: list(term( - intersectionOf: list("doco:Section".freeze, term( - type: "owl:Class".freeze + intersectionOf: list("http://purl.org/spar/doco/Section".freeze, term( + 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( - onProperty: "dc:isPartOf".freeze, + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, someValuesFrom: term( - type: "owl:Class".freeze, - unionOf: list("doco:BackMatter".freeze, "doco:FrontMatter".freeze) - ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/doco/BackMatter".freeze, "http://purl.org/spar/doco/FrontMatter".freeze) + ).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( - onProperty: "dc:hasPart".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, someValuesFrom: term( - intersectionOf: list("doco:ListOfReferences".freeze, term( + intersectionOf: list("http://purl.org/spar/doco/ListOfReferences".freeze, term( allValuesFrom: term( - onProperty: "dc:relation".freeze, - someValuesFrom: "doco:FigureBox".freeze, - type: "owl:Restriction".freeze - ), + onProperty: "http://purl.org/dc/terms/relation".freeze, + someValuesFrom: "http://purl.org/spar/doco/FigureBox".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ).freeze, onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )), - type: "owl:Class".freeze - ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze + ).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 :ListOfOrganizations, - comment: %(A list of items, each denoting an organization or institution related to the publication, for example the authors' affiliations, or the suppliers of information, software, equipment or consumables used in the work described in the publication.).freeze, + comment: "A list of items, each denoting an organization or institution related to the publication, for example the authors' affiliations, or the suppliers of information, software, equipment or consumables used in the work described in the publication.".freeze, label: "list of organizations".freeze, - subClassOf: "doco:ListOfAgents".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/doco/ListOfAgents".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ListOfReferences, - comment: %(A list of items each representing a reference to a specific part of the same document, or to another publication.).freeze, + comment: "A list of items each representing a reference to a specific part of the same document, or to another publication.".freeze, label: "list of references".freeze, subClassOf: term( - intersectionOf: list("doco:List".freeze, term( + intersectionOf: list("http://purl.org/spar/doco/List".freeze, term( allValuesFrom: "http://purl.org/spar/deo/Reference".freeze, onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, - type: "owl:Restriction".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ListOfTables, - comment: %(A section of the document listing all the tables, identified by their titles and referenced to their locations in the document.).freeze, + comment: "A section of the document listing all the tables, identified by their titles and referenced to their locations in the document.".freeze, label: "list of tables".freeze, subClassOf: [term( intersectionOf: list(term( - intersectionOf: list("doco:Section".freeze, term( - type: "owl:Class".freeze + intersectionOf: list("http://purl.org/spar/doco/Section".freeze, term( + 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( - onProperty: "dc:isPartOf".freeze, + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, someValuesFrom: term( - type: "owl:Class".freeze, - unionOf: list("doco:BackMatter".freeze, "doco:FrontMatter".freeze) - ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/doco/BackMatter".freeze, "http://purl.org/spar/doco/FrontMatter".freeze) + ).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( - onProperty: "dc:hasPart".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, someValuesFrom: term( - intersectionOf: list("doco:ListOfReferences".freeze, term( + intersectionOf: list("http://purl.org/spar/doco/ListOfReferences".freeze, term( allValuesFrom: term( - onProperty: "dc:relation".freeze, - someValuesFrom: "doco:TableBox".freeze, - type: "owl:Restriction".freeze - ), + onProperty: "http://purl.org/dc/terms/relation".freeze, + someValuesFrom: "http://purl.org/spar/doco/TableBox".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ).freeze, onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )), - type: "owl:Class".freeze - ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze + ).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 :Paragraph, - comment: %(A self-contained unit of discourse that deals with a particular point or idea. Paragraphs contains one or more sentences. The start of a paragraph is indicated by beginning on a new line, which may be indented or separated by a small vertical space by the preceding paragraph. ).freeze, + comment: "A self-contained unit of discourse that deals with a particular point or idea. Paragraphs contains one or more sentences. The start of a paragraph is indicated by beginning on a new line, which may be indented or separated by a small vertical space by the preceding paragraph. ".freeze, label: "paragraph".freeze, subClassOf: term( intersectionOf: list(term( intersectionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".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( onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, - someValuesFrom: "doco:Sentence".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/doco/Sentence".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Part, - comment: %(A container of a semantic subdivision of a document. For example, chapters of a novel may be grouped into distinct parts that may be named 'Part 1', 'Part 2', etc., 'Book 1', 'Book 2', etc., or 'Genesis', 'Exodus', etc.).freeze, + comment: "A container of a semantic subdivision of a document. For example, chapters of a novel may be grouped into distinct parts that may be named 'Part 1', 'Part 2', etc., 'Book 1', 'Book 2', etc., or 'Genesis', 'Exodus', etc.".freeze, label: "part".freeze, subClassOf: term( intersectionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Preface, - comment: %(A section describing how the document came into being, or how the idea for it was developed. The preface may contains acknowledgements. The preface to a later edition of the work often explains in what respect that edition differs from previous ones.).freeze, + comment: "A section describing how the document came into being, or how the idea for it was developed. The preface may contains acknowledgements. The preface to a later edition of the work often explains in what respect that edition differs from previous ones.".freeze, label: "preface".freeze, subClassOf: term( - intersectionOf: list("doco:Section".freeze, term( - onProperty: "dc:isPartOf".freeze, - someValuesFrom: "doco:FrontMatter".freeze, - type: "owl:Restriction".freeze + intersectionOf: list("http://purl.org/spar/doco/Section".freeze, term( + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, + someValuesFrom: "http://purl.org/spar/doco/FrontMatter".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Section, - comment: %(A logical division of the text, usually numbered and/or titled, which may contain subsections.).freeze, + comment: "A logical division of the text, usually numbered and/or titled, which may contain subsections.".freeze, label: "section".freeze, subClassOf: [term( intersectionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".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( onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, someValuesFrom: term( - "owl:complementOf": "doco:Chapter".freeze, - type: "owl:Class".freeze - ), - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#complementOf": "http://purl.org/spar/doco/Chapter".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze + ).freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, someValuesFrom: term( - type: "owl:Class".freeze, - unionOf: list("doco:Paragraph".freeze, "doco:Section".freeze) - ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/doco/Paragraph".freeze, "http://purl.org/spar/doco/Section".freeze) + ).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 :SectionLabel, - comment: %(A block containing a label for the section, that may include the section number.).freeze, + comment: "A block containing a label for the section, that may include the section number.".freeze, label: "section label".freeze, - subClassOf: ["doco:Label".freeze, term( - onProperty: "dc:isPartOf".freeze, - someValuesFrom: "doco:Section".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/spar/doco/Label".freeze, term( + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, + someValuesFrom: "http://purl.org/spar/doco/Section".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 :SectionSubtitle, - comment: %(The subtitle of a section.).freeze, + comment: "The subtitle of a section.".freeze, label: "section subtitle".freeze, - subClassOf: ["doco:Subtitle".freeze, term( - onProperty: "dc:isPartOf".freeze, - someValuesFrom: "doco:Section".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/spar/doco/Subtitle".freeze, term( + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, + someValuesFrom: "http://purl.org/spar/doco/Section".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 :SectionTitle, - comment: %(The title of a section.).freeze, + comment: "The title of a section.".freeze, label: "section title".freeze, - subClassOf: ["doco:Title".freeze, term( + subClassOf: ["http://purl.org/spar/doco/Title".freeze, term( onProperty: "http://www.essepuntato.it/2008/12/pattern#isContainedByAsHeader".freeze, - someValuesFrom: "doco:Section".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/doco/Section".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 :Sentence, - comment: %(An expression in natural language forming a single grammatical unit. A sentence minimally consists of a subject and an intransitive verb, or a subject, a transitive verb and an object, and may include additional dependent clauses. In written text, a sentence is always terminated by a full stop. A sentence can include words grouped meaningfully to express a statement, a question, an exclamation, a request or a command.).freeze, + comment: "An expression in natural language forming a single grammatical unit. A sentence minimally consists of a subject and an intransitive verb, or a subject, a transitive verb and an object, and may include additional dependent clauses. In written text, a sentence is always terminated by a full stop. A sentence can include words grouped meaningfully to express a statement, a question, an exclamation, a request or a command.".freeze, label: "sentence".freeze, subClassOf: ["http://purl.org/spar/deo/DiscourseElement".freeze, "http://www.essepuntato.it/2008/12/pattern#Inline".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SimpleRunInQuotation, - comment: %(A textual quotation that is included inline and is usually enclosed within quotation marks.).freeze, + comment: "A textual quotation that is included inline and is usually enclosed within quotation marks.".freeze, label: "simple run-in quotation".freeze, subClassOf: "http://www.essepuntato.it/2008/12/pattern#Inline".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Stanza, - comment: %(A unit within a larger poem. A stanza consists of a grouping of lines, set off by a vertical space from other stanzas, that usually has a set pattern of meter and rhyme.).freeze, + comment: "A unit within a larger poem. A stanza consists of a grouping of lines, set off by a vertical space from other stanzas, that usually has a set pattern of meter and rhyme.".freeze, label: "stanza".freeze, subClassOf: term( intersectionOf: list(term( intersectionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".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( - allValuesFrom: "doco:Line".freeze, + allValuesFrom: "http://purl.org/spar/doco/Line".freeze, onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, - type: "owl:Restriction".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Subtitle, - comment: %(An explanatory or alternative title of a publication. For example, Mary Shelley uses the alternative title 'The Modern Prometheus' to hint at the theme of her most famous novel 'Frankenstein'; Nick Efford uses the subtitle 'a practical introduction using Java' to qualify the title of his book 'Digital Image Processing'.).freeze, + comment: "An explanatory or alternative title of a publication. For example, Mary Shelley uses the alternative title 'The Modern Prometheus' to hint at the theme of her most famous novel 'Frankenstein'; Nick Efford uses the subtitle 'a practical introduction using Java' to qualify the title of his book 'Digital Image Processing'.".freeze, label: "subtitle".freeze, subClassOf: ["http://purl.org/spar/deo/DiscourseElement".freeze, "http://www.essepuntato.it/2008/12/pattern#Block".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Table, - comment: %(A set of data arranged in cells within rows and columns.).freeze, + comment: "A set of data arranged in cells within rows and columns.".freeze, label: "table".freeze, subClassOf: ["http://purl.org/spar/deo/DiscourseElement".freeze, "http://www.essepuntato.it/2008/12/pattern#Table".freeze, term( onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, someValuesFrom: "http://www.essepuntato.it/2008/12/pattern#Container".freeze, - type: "owl:Restriction".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 :TableBox, - comment: %(A space within a document that contains a table and its caption.).freeze, + comment: "A space within a document that contains a table and its caption.".freeze, label: "table box".freeze, subClassOf: term( - intersectionOf: list("doco:CaptionedBox".freeze, term( - onProperty: "dc:hasPart".freeze, - someValuesFrom: "doco:Table".freeze, - type: "owl:Restriction".freeze + intersectionOf: list("http://purl.org/spar/doco/CaptionedBox".freeze, term( + onProperty: "http://purl.org/dc/terms/hasPart".freeze, + someValuesFrom: "http://purl.org/spar/doco/Table".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TableLabel, - comment: %(A block containing a label for the table box, that may include the table number.).freeze, + comment: "A block containing a label for the table box, that may include the table number.".freeze, label: "table label".freeze, subClassOf: term( - intersectionOf: list("doco:Label".freeze, term( - onProperty: "dc:isPartOf".freeze, - someValuesFrom: "doco:TableBox".freeze, - type: "owl:Restriction".freeze + intersectionOf: list("http://purl.org/spar/doco/Label".freeze, term( + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, + someValuesFrom: "http://purl.org/spar/doco/TableBox".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 ), - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TableOfContents, - comment: %(A section of the document listing all the chapters and sections, identified by their titles and referenced to their locations in the document. The table of contents may include a list of the front-matter and back-matter items, in addition to the body-matter items. Where the document 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, + comment: "A section of the document listing all the chapters and sections, identified by their titles and referenced to their locations in the document. The table of contents may include a list of the front-matter and back-matter items, in addition to the body-matter items. Where the document 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 contents".freeze, subClassOf: [term( - intersectionOf: list("doco:Section".freeze, term( - onProperty: "dc:isPartOf".freeze, + intersectionOf: list("http://purl.org/spar/doco/Section".freeze, term( + onProperty: "http://purl.org/dc/terms/isPartOf".freeze, someValuesFrom: term( - type: "owl:Class".freeze, - unionOf: list("doco:BackMatter".freeze, "doco:FrontMatter".freeze) - ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/doco/BackMatter".freeze, "http://purl.org/spar/doco/FrontMatter".freeze) + ).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( - onProperty: "dc:hasPart".freeze, + onProperty: "http://purl.org/dc/terms/hasPart".freeze, someValuesFrom: term( - intersectionOf: list("doco:ListOfReferences".freeze, term( + intersectionOf: list("http://purl.org/spar/doco/ListOfReferences".freeze, term( allValuesFrom: term( - onProperty: "dc:relation".freeze, - someValuesFrom: "doco:Section".freeze, - type: "owl:Restriction".freeze - ), + onProperty: "http://purl.org/dc/terms/relation".freeze, + someValuesFrom: "http://purl.org/spar/doco/Section".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ).freeze, onProperty: "http://www.essepuntato.it/2008/12/pattern#contains".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze )), - type: "owl:Class".freeze - ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze + ).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 :TextBox, - comment: %(A space within a document that contains textual content relating to, quoting from or expanding upon the main text. Usually a textbox is delimited by a border or use of a background colour distinct from that of the main text.).freeze, + comment: "A space within a document that contains textual content relating to, quoting from or expanding upon the main text. Usually a textbox is delimited by a border or use of a background colour distinct from that of the main text.".freeze, label: "text box".freeze, subClassOf: ["http://purl.org/spar/deo/DiscourseElement".freeze, "http://www.essepuntato.it/2008/12/pattern#Container".freeze], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TextChunk, - comment: %(A piece of text defined by a start point and an end point.).freeze, + comment: "A piece of text defined by a start point and an end point.".freeze, label: "text chunk".freeze, subClassOf: "http://www.essepuntato.it/2008/12/pattern#Inline".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Title, - comment: %(A word, phrase or sentence that precedes and indicates the subject of a document or a document component - e.g., a book, a report, a news article, a chapter, a section or a table.).freeze, + comment: "A word, phrase or sentence that precedes and indicates the subject of a document or a document component - e.g., a book, a report, a news article, a chapter, a section or a table.".freeze, label: "title".freeze, subClassOf: ["http://purl.org/spar/deo/DiscourseElement".freeze, term( onProperty: "http://www.essepuntato.it/2008/12/pattern#isContainedByAsHeader".freeze, someValuesFrom: "http://www.essepuntato.it/2008/12/pattern#HeadedContainer".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - type: "owl:Class".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze, unionOf: list(term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( - type: "owl:Class".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 end end diff --git a/lib/vocabs/dul.rb b/lib/vocabs/dul.rb index 35ca1063..4ecfe0b8 100644 --- a/lib/vocabs/dul.rb +++ b/lib/vocabs/dul.rb @@ -2,1906 +2,1818 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://www.ontologydesignpatterns.org/ont/dul/DUL.owl# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class DUL < RDF::StrictVocabulary - # end - class DUL < RDF::StrictVocabulary("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#") +module LifePreserver::Vocab + DUL = Class.new(RDF::StrictVocabulary("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#")) do # Ontology definition ontology :"http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#", - comment: %(The DOLCE+DnS Ultralite ontology. -It is a simplification of some parts of the DOLCE Lite-Plus library \(cf. http://www.ontologydesignpatterns.org/ont/dul/DLP397.owl\). -Main aspects in which DOLCE+DnS Ultralite departs from DOLCE Lite-Plus are the following: - -- The names of classes and relations have been made more intuitive -- The DnS-related part is closer to the newer 'constructive DnS' ontology \(http://www.ontologydesignpatterns.org/ont/dul/cDnS.owl\). -- Temporal and spatial relations are simplified -- Qualities and regions are more relaxed than in DOLCE-Full: they can be used as attributes of any entity; an axiom states that each quality has a region -- Axiomatization makes use of simpler constructs than DOLCE Lite-Plus -- The architecture of the ontology is pattern-based, which means that DOLCE+DnS Ultralite is also available in modules, called 'content ontology design patterns', which can be applied independently in the design of domain ontologies \(cf. http://www.ontologydesignpatterns.org\). If many modules are needed in a same ontology project, it is anyway useful to use this integrated version. - -The final result is a lightweight, easy-to-apply foundational ontology for modeling either physical or social contexts. -Several extensions of DOLCE+DnS Ultralite have been designed: -- Information objects: http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl -- Systems: http://www.ontologydesignpatterns.org/ont/dul/SystemsLite.owl -- Plans: http://www.ontologydesignpatterns.org/ont/dul/PlansLite.owl -- Legal domain: http://www.ontologydesignpatterns.org/ont/dul/CLO/CoreLegal.owl -- Lexical and semiotic domains: http://www.ontologydesignpatterns.org/ont/lmm/LMM_L2.owl -- DOLCE-Zero: http://www.ontologydesignpatterns.org/ont/d0.owl is a commonsense-oriented generalisation of some top-level classes, which allows to use DOLCE with tolerance against ambiguities like abstract vs. concrete information, locations vs. physical artifacts, event occurrences vs. event types, events vs. situations, qualities vs. regions, etc.; etc.).freeze, + comment: "The DOLCE+DnS Ultralite ontology.\nIt is a simplification of some parts of the DOLCE Lite-Plus library (cf. http://www.ontologydesignpatterns.org/ont/dul/DLP397.owl). \nMain aspects in which DOLCE+DnS Ultralite departs from DOLCE Lite-Plus are the following:\n\n- The names of classes and relations have been made more intuitive\n- The DnS-related part is closer to the newer 'constructive DnS' ontology (http://www.ontologydesignpatterns.org/ont/dul/cDnS.owl).\n- Temporal and spatial relations are simplified\n- Qualities and regions are more relaxed than in DOLCE-Full: they can be used as attributes of any entity; an axiom states that each quality has a region\n- Axiomatization makes use of simpler constructs than DOLCE Lite-Plus\n- The architecture of the ontology is pattern-based, which means that DOLCE+DnS Ultralite is also available in modules, called 'content ontology design patterns', which can be applied independently in the design of domain ontologies (cf. http://www.ontologydesignpatterns.org). If many modules are needed in a same ontology project, it is anyway useful to use this integrated version.\n\nThe final result is a lightweight, easy-to-apply foundational ontology for modeling either physical or social contexts.\nSeveral extensions of DOLCE+DnS Ultralite have been designed: \n- Information objects: http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl \n- Systems: http://www.ontologydesignpatterns.org/ont/dul/SystemsLite.owl \n- Plans: http://www.ontologydesignpatterns.org/ont/dul/PlansLite.owl\n- Legal domain: http://www.ontologydesignpatterns.org/ont/dul/CLO/CoreLegal.owl\n- Lexical and semiotic domains: http://www.ontologydesignpatterns.org/ont/lmm/LMM_L2.owl\n- DOLCE-Zero: http://www.ontologydesignpatterns.org/ont/d0.owl is a commonsense-oriented generalisation of some top-level classes, which allows to use DOLCE with tolerance against ambiguities like abstract vs. concrete information, locations vs. physical artifacts, event occurrences vs. event types, events vs. situations, qualities vs. regions, etc.; etc.".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": ["3.34".freeze, "Created by Aldo Gangemi as both a simplification and extension of DOLCE and Descriptions and Situations ontologies.".freeze, "In 3.2, the links between instances of Region or Parameter, and datatypes have been revised and made more powerful, in order to support efficient design patterns for data value modelling in OWL1.0.\nAlso, the names of the related properties have been changed in order to make them more intuitive.\nFurthermore, a large comment field has been added to the 'expresses' object property, in order to clarify some issues about the many interpretations.\nIn 3.3, the relation between regions, parameters, and datatypes has been still improved.\nIn 3.5, the person-related classes have been refactored: Person in 3.4 is now SocialPerson, to avoid confusion with commonsense intuition; Person is now the union of social persons and humans, therefore being a subclass of Agent.\nIn 3.6, other fixes on universal restriction involving expresses. Also added the property 'isConstraintFor' between parameters and entities. Moved the properties: 'assumes' and 'adopts' to the new module: http://www.ontologydesignpatterns.org/ont/dul/Conceptualization.owl.\nIn 3.7, some fixes on the names of classes and properties related to FormalEntity; created a new separate module for general universal restrictions (DULGCI.owl).\nIn 3.8, more fixes on the interface to formal entities and links to IOLite.owl.\nIn 3.9, some naming and comment fixes.\nIn 3.10, removed cardinality restriction from hasPart and isPartOf restrictions (changed to hasComponent and isComponentOf), for OWL(DL) compatibility. Also enlarged the range of includesAgent to contain both social and physical agents, and of conceptualizes universal restriction on agents, to include all social objects.\nIn 3.11, some more subproperty axioms have been introduced, and all elements have got English labels.\nIn 3.12, added some classes to map some old DolceLitePlus classes that were used to align OntoWordNet.\nIn 3.13, added the LocalConcept class to express a Concept that cannot be used in a Description different from the one that defines it. Also updated some comments.\nIn 3.14, added some comments.\nIn 3.15, removed some owl:disjointWith axioms relating Collection to InformationObject, Description, Situation, and SocialAgent. The rationale for doing that is to allow less strict constraints on domain relations involving collections that can be also conceived as descriptions, situations, social agents, or information objects; for example: a collection of sentences from a text (an information object) that are ranked with a relevance criterion can be still considered a text.\nIn 3.16, name of isActedBy changed to actsThrough, which is clearer. Also added SpatioTemporalRegion as constituted by a SpaceRegion and a TimeInterval.\nIn 3.17, removed redundant universal axioms from Entity and other top classes. Fixed restrictions on FunctionalSubstance class, and comments in Design and Substance classes.\nIn 3.18, removed subClassOf axiom from FunctionalSubstance to DesignedArtifact, created a new subclass of FunctionalSubstance, called DesignedSubstance, and created a subClassOf axiom from DesignedSubstance to DesignedArtifact.\nIn 3.19, removed disjointness axiom between Concept and Collection (the same rationale applies as in 3.15 version.\nIn 3.20, revised the comment for Quality, added InformationEntity as the superclass for InformationObject and InformationRealization (represented as the union of those classes). This is needed in many domain ontologies that do not need to distinguish between abstract and concrete aspects of information entities. One possible revision (not implemented here) would be to introduce the relations: expresses and isAbout with a broader domain:InformationEntity, and two more specific properties: abstractlyExpresses and isAbstractlyAbout. This last revision has not been implemented yet, since a large revision procedure should be carried out in order to check the impact of the revision on the existing DOLCE-DnS-Ultralite plugins.\nIn 3.21, added comment to InformationEntity, and optimized representation of equivalence for InformationRealization.\nIn 3.22, added comment to Personification.\nIn 3.23, added associatedWith object property, and put all object properties as subproperties of it.\nIn 3.24, removed hasProxy datatype property.\nIn 3.25, generalized domain and range of hasComponent and isComponentOf.\nIn 3.26, updated some comments in order to clarify or exemplify the concepts.\nIn 3.27, added rdfs:isDefinedBy annotations for Linked Data browsers.\nIn 3.28, broadened the universe of pre-/post-conditions to give room to events and states.\nIn 3.29, added some properties to support DBpedia alignment: sameSettingAs (situational analogous to coparticipation), including relations originating e.g. from sharing kinship, ownership, or roleplaying situations.\nIn 3.30, completed some domains and ranges (formerly owl:Thing, now dul:Entity), and added axiom: Organism subClassOf PhysicalAgent.\nIn 3.31, added a restriction to Quality and one to Region in order to ensure the original DOLCE constraint of qualities being always associated with a region, and vice versa. These axioms do not however exclude a direct applicability of qualities or regions to any other entity.\nIn 3.32, removed redundant union axioms and some restrictions, which spot a negative trade-off between expressivity and complexity.\nIn 3.33, added the ObjectAggregate class, added two property chains for coparticipation and same situation setting, updated some comments, added an axiom to Transition.\nIn 3.34, extended mereological support for parthood, introducing hasPropertPart (transitive) as a middle property between hasPart (transitive and reflexive) and hasComponent (asymmetric). This solution uses then \"reflexive reduction\" and \"transitive reduction\" design patterns (they allow to grant property characteristics through the superproperties, but not in the subproperties). Technically, mereology axioms would require that also hasProperPart be asymmetric, however a direct subproperty of an OWL non-simple property (hasPart) cannot be also asymmetric, hence the approximation. \nAdded a n-ary parthood class in order to suggest an alternative pattern for time- (and space-)indexed part relations. In order to ensure that property characteristics hold also with parthood n-ary, a property chain is introduced which infers a direct dul:partOf property for each parthood individual.\nAdded a dul:realizesSelfInformation propery in order to enable local reflexivity ('Self') axioms for all information realizations.\n\nIn 4.0, some foundational changes are introduced. \n- Firstly, the temporally indexed versions of some properties are introduced as subclasses of Situation (following the n-ary relation pattern), so covering relations from DOLCE that were skipped because of their larger arity. - \n- Secondly, D&S's Situation class is extracted from DOLCE top-level distinctions (it used to be a subclass of SocialObject), put as a primitive class under Entity, and not disjoint from any other class. Since we are relaxing the semantics of Situation, this change is fully compatible with previous versions of DUL.\nThe reason for the change is that it may sound counterintuitive (as many have noticed) to assume a descriptive commitment for situations, but not for events or states. \nIn fact, D&S provides an epistemological commitment to an ontology, independently from its foundational distinctions. A situation operationalizes that epistemology, and it is better not to put it under any foundational distinction (event, object, fluent, etc.), leaving to the designer whether to use descriptions as epistemological lenses, and so generating a situation, or not. \nA consequence is that any entity, when 'framed' by (satisfying) a description, becomes a situation. We can still model entities as being in a situation's setting, and classified by a concept defined in a description.".freeze], label: "DOLCE+DnS Ultralite".freeze, - "owl:versionInfo": ["3.32".freeze, "Created by Aldo Gangemi as both a simplification and extension of DOLCE and Descriptions and Situations ontologies.".freeze, "In 3.2, the links between instances of Region or Parameter, and datatypes have been revised and made more powerful, in order to support efficient design patterns for data value modelling in OWL1.0.\nAlso, the names of the related properties have been changed in order to make them more intuitive.\nFurthermore, a large comment field has been added to the 'expresses' object property, in order to clarify some issues about the many interpretations.\nIn 3.3, the relation between regions, parameters, and datatypes has been still improved.\nIn 3.5, the person-related classes have been refactored: Person in 3.4 is now SocialPerson, to avoid confusion with commonsense intuition; Person is now the union of social persons and humans, therefore being a subclass of Agent.\nIn 3.6, other fixes on universal restriction involving expresses. Also added the property 'isConstraintFor' between parameters and entities. Moved the properties: 'assumes' and 'adopts' to the new module: http://www.ontologydesignpatterns.org/ont/dul/Conceptualization.owl.\nIn 3.7, some fixes on the names of classes and properties related to FormalEntity; created a new separate module for general universal restrictions (DULGCI.owl).\nIn 3.8, more fixes on the interface to formal entities and links to IOLite.owl.\nIn 3.9, some naming and comment fixes.\nIn 3.10, removed cardinality restriction from hasPart and isPartOf restrictions (changed to hasComponent and isComponentOf), for OWL(DL) compatibility. Also enlarged the range of includesAgent to contain both social and physical agents, and of conceptualizes universal restriction on agents, to include all social objects.\nIn 3.11, some more subproperty axioms have been introduced, and all elements have got English labels.\nIn 3.12, added some classes to map some old DolceLitePlus classes that were used to align OntoWordNet.\nIn 3.13, added the LocalConcept class to express a Concept that cannot be used in a Description different from the one that defines it. Also updated some comments.\nIn 3.14, added some comments.\nIn 3.15, removed some owl:disjointWith axioms relating Collection to InformationObject, Description, Situation, and SocialAgent. The rationale for doing that is to allow less strict constraints on domain relations involving collections that can be also conceived as descriptions, situations, social agents, or information objects; for example: a collection of sentences from a text (an information object) that are ranked with a relevance criterion can be still considered a text.\nIn 3.16, name of isActedBy changed to actsThrough, which is clearer. Also added SpatioTemporalRegion as constituted by a SpaceRegion and a TimeInterval.\nIn 3.17, removed redundant universal axioms from Entity and other top classes. Fixed restrictions on FunctionalSubstance class, and comments in Design and Substance classes.\nIn 3.18, removed subClassOf axiom from FunctionalSubstance to DesignedArtifact, created a new subclass of FunctionalSubstance, called DesignedSubstance, and created a subClassOf axiom from DesignedSubstance to DesignedArtifact.\nIn 3.19, removed disjointness axiom between Concept and Collection (the same rationale applies as in 3.15 version.\nIn 3.20, revised the comment for Quality, added InformationEntity as the superclass for InformationObject and InformationRealization (represented as the union of those classes). This is needed in many domain ontologies that do not need to distinguish between abstract and concrete aspects of information entities. One possible revision (not implemented here) would be to introduce the relations: expresses and isAbout with a broader domain:InformationEntity, and two more specific properties: abstractlyExpresses and isAbstractlyAbout. This last revision has not been implemented yet, since a large revision procedure should be carried out in order to check the impact of the revision on the existing DOLCE-DnS-Ultralite plugins.\nIn 3.21, added comment to InformationEntity, and optimized representation of equivalence for InformationRealization.\nIn 3.22, added comment to Personification.\nIn 3.23, added associatedWith object property, and put all object properties as subproperties of it.\nIn 3.24, removed hasProxy datatype property.\nIn 3.25, generalized domain and range of hasComponent and isComponentOf.\nIn 3.26, updated some comments in order to clarify or exemplify the concepts.\nIn 3.27, added rdfs:isDefinedBy annotations for Linked Data browsers.\nIn 3.28, broadened the universe of pre-/post-conditions to give room to events and states.\nIn 3.29, added some properties to support DBpedia alignment: sameSettingAs (situational analogous to coparticipation), including relations originating e.g. from sharing kinship, ownership, or roleplaying situations.\nIn 3.30, completed some domains and ranges (formerly owl:Thing, now dul:Entity), and added axiom: Organism subClassOf PhysicalAgent.\nIn 3.31, added a restriction to Quality and one to Region in order to ensure the original DOLCE constraint of qualities being always associated with a region, and vice versa. These axioms do not however exclude a direct applicability of qualities or regions to any other entity.\nIn 3.32, removed redundant union axioms and some restrictions, which spot a negative trade-off between expressivity and complexity.".freeze], - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Abstract, - comment: %(Any Entity that cannot be located in space-time. E.g. mathematical entities: formal semantics elements, regions within dimensional spaces, etc.).freeze, + comment: "Any Entity that cannot be located in space-time. E.g. mathematical entities: formal semantics elements, regions within dimensional spaces, etc.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Quality".freeze], isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Abstract".freeze, - "owl:disjointWith": ["dul:Event".freeze, "dul:Object".freeze, "dul:Quality".freeze], - subClassOf: "dul:Entity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Action, - comment: %(An Event with at least one Agent that isParticipantIn it, and that executes a Task that typically isDefinedIn a Plan, Workflow, Project, etc.).freeze, + comment: "An Event with at least one Agent that isParticipantIn it, and that executes a Task that typically isDefinedIn a Plan, Workflow, Project, etc.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Action".freeze, - subClassOf: ["dul:Event".freeze, term( + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, term( minCardinality: "1".freeze, - onProperty: "dul:executesTask".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#executesTask".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:hasParticipant".freeze, - someValuesFrom: "dul:Agent".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".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, - comment: [%(Additional comment: a computational agent can be considered as a PhysicalAgent that realizes a certain class of algorithms \(that can be considered as instances of InformationObject\) that allow to obtain some behaviors that are considered typical of agents in general. For an ontology of computational objects based on DOLCE see e.g. http://www.loa-cnr.it/COS/COS.owl, and http://www.loa-cnr.it/KCO/KCO.owl.).freeze, %(Any agentive Object , either physical \(e.g. a whale, a robot, an oak\), or social \(e.g. a corporation, an institution, a community\).).freeze], + comment: ["Additional comment: a computational agent can be considered as a PhysicalAgent that realizes a certain class of algorithms (that can be considered as instances of InformationObject) that allow to obtain some behaviors that are considered typical of agents in general. For an ontology of computational objects based on DOLCE see e.g. http://www.loa-cnr.it/COS/COS.owl, and http://www.loa-cnr.it/KCO/KCO.owl.".freeze, "Any agentive Object , either physical (e.g. a whale, a robot, an oak), or social (e.g. a corporation, an institution, a community).".freeze], isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Agent".freeze, - subClassOf: "dul:Object".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Amount, - comment: %(A quantity, independently from how it is measured, computed, etc.).freeze, + comment: "A quantity, independently from how it is measured, computed, etc.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalAttribute".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SpaceRegion".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".freeze], isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Amount".freeze, - "owl:disjointWith": ["dul:PhysicalAttribute".freeze, "dul:SpaceRegion".freeze, "dul:TimeInterval".freeze], - subClassOf: "dul:Region".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BiologicalObject, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Biological object".freeze, - subClassOf: "dul:PhysicalBody".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalBody".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ChemicalObject, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Chemical object".freeze, - subClassOf: "dul:PhysicalBody".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalBody".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Classification, - comment: %(A special kind of Situation that allows to include time indexing for the classifies relation in situations. For example, if a Situation s 'my old cradle is used in these days as a flower pot' isSettingFor the entity 'my old cradle' and the TimeIntervals '8June2007' and '10June2007', and we know that s satisfies a functional Description for aesthetic objects, which defines the Concepts 'flower pot' and 'flower', then we also need to know what concept classifies 'my old cradle' at what time. -In order to solve this issue, we need to create a sub-situation s' for the classification time: 'my old cradle is a flower pot in 8June2007'. Such sub-situation s' isPartOf s.).freeze, - isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, - label: "Classification".freeze, - subClassOf: ["dul:Situation".freeze, term( - onProperty: "dul:isSettingFor".freeze, - someValuesFrom: "dul:Concept".freeze, - type: "owl:Restriction".freeze + comment: "A special kind of Situation that allows to include time indexing for the classifies relation in situations. For example, if a Situation s 'my old cradle is used in these days as a flower pot' isSettingFor the entity 'my old cradle' and the TimeIntervals '8June2007' and '10June2007', and we know that s satisfies a functional Description for aesthetic objects, which defines the Concepts 'flower pot' and 'flower', then we also need to know what concept classifies 'my old cradle' at what time.\nIn order to solve this issue, we need to create a sub-situation s' for the classification time: 'my old cradle is a flower pot in 8June2007'. Such sub-situation s' isPartOf s.".freeze, + isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, + label: ["Classification".freeze, "time-indexed classification".freeze], + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeIndexedRelation".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:isSettingFor".freeze, - someValuesFrom: "dul:TimeInterval".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ), term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".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 :Collection, - comment: %(Any container for entities that share one or more common properties. E.g. "stone objects", "the nurses", "the Louvre Aegyptian collection", all the elections for the Italian President of the Republic. -A collection is not a logical class: a collection is a first-order entity, while a class is second-order.).freeze, + comment: "Any container for entities that share one or more common properties. E.g. \"stone objects\", \"the nurses\", \"the Louvre Aegyptian collection\", all the elections for the Italian President of the Republic. \nA collection is not a logical class: a collection is a first-order entity, while a class is second-order.\nA collection is neither an aggregate of its member entities (see e.g. ObjectAggregate class).".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Collection".freeze, - subClassOf: ["dul:SocialObject".freeze, term( - allValuesFrom: "dul:Collection".freeze, - onProperty: "dul:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".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 :Collective, - comment: %(A Collection whose members are agents, e.g. "the nurses", "the Italian rockabilly fans". -Collectives, facon de parler, can act as agents, although they are not assumed here to be agents \(they are even disjoint from the class SocialAgent\). This is represented by admitting collectives in the range of the relations having Agent in their domain or range.).freeze, + comment: "A Collection whose members are agents, e.g. \"the nurses\", \"the Italian rockabilly fans\".\nCollectives, facon de parler, can act as agents, although they are not assumed here to be agents (they are even disjoint from the class SocialAgent). This is represented by admitting collectives in the range of the relations having Agent in their domain or range.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Collective".freeze, - subClassOf: ["dul:Collection".freeze, term( - allValuesFrom: "dul:Agent".freeze, - onProperty: "dul:hasMember".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasMember".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 :CollectiveAgent, - comment: %(A SocialAgent that is actedBy agents that are \(and act as\) members of a Collective. A collective agent can have roles that are also roles of those agents. -For example, in sociology, a 'group action' is the situation in which a number of people \(that result to be members of a collective\) in a given area behave in a coordinated way in order to achieve a \(often common\) goal. The Agent in such a Situation is not single, but a CollectiveAgent \(a Group\). This can be generalized to the notion of social movement, which assumes a large Community or even the entire Society as agents. -The difference between a CollectiveAgent and an Organization is that a Description that introduces a CollectiveAgent is also one that unifies the corresponding Collective. In practice, this difference makes collective agents 'less stable' than organizations, because they have a dedicated, publicly recognizable Description that is conceived to introduce them.).freeze, + comment: "A SocialAgent that is actedBy agents that are (and act as) members of a Collective. A collective agent can have roles that are also roles of those agents.\nFor example, in sociology, a 'group action' is the situation in which a number of people (that result to be members of a collective) in a given area behave in a coordinated way in order to achieve a (often common) goal. The Agent in such a Situation is not single, but a CollectiveAgent (a Group). This can be generalized to the notion of social movement, which assumes a large Community or even the entire Society as agents.\nThe difference between a CollectiveAgent and an Organization is that a Description that introduces a CollectiveAgent is also one that unifies the corresponding Collective. In practice, this difference makes collective agents 'less stable' than organizations, because they have a dedicated, publicly recognizable Description that is conceived to introduce them.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Collective agent".freeze, - subClassOf: ["dul:SocialAgent".freeze, term( - onProperty: "dul:actsThrough".freeze, - someValuesFrom: "dul:Agent".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialAgent".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#actsThrough".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:isIntroducedBy".freeze, - someValuesFrom: "dul:Description".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isIntroducedBy".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".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 :Community, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Community".freeze, - subClassOf: "dul:CollectiveAgent".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#CollectiveAgent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Concept, - comment: %(A Concept is a SocialObject, and isDefinedIn some Description; once defined, a Concept can be used in other Description\(s\). If a Concept isDefinedIn exactly one Description, see the LocalConcept class. -The classifies relation relates Concept\(s\) to Entity\(s\) at some TimeInterval).freeze, + comment: "A Concept is a SocialObject, and isDefinedIn some Description; once defined, a Concept can be used in other Description(s). If a Concept isDefinedIn exactly one Description, see the LocalConcept class.\nThe classifies relation relates Concept(s) to Entity(s) at some TimeInterval".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialAgent".freeze], isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Concept".freeze, - "owl:disjointWith": ["dul:Description".freeze, "dul:InformationObject".freeze, "dul:Situation".freeze, "dul:SocialAgent".freeze], - subClassOf: ["dul:SocialObject".freeze, term( - allValuesFrom: "dul:Concept".freeze, - onProperty: "dul:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:isDefinedIn".freeze, - someValuesFrom: "dul:Description".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDefinedIn".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".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 :Configuration, - comment: %(A collection whose members are 'unified', i.e. organized according to a certain schema that can be represented by a Description. -Typically, a configuration is the collection that emerges out of a composed entity: an industrial artifact, a plan, a discourse, etc. -E.g. a physical book has a configuration provided by the part-whole schema that holds together its cover, pages, ink. That schema, based on the individual relations between the book and its parts, can be represented in a reified way by means of a \(structural\) description, which is said to 'unify' the book configuration.).freeze, + comment: "A collection whose members are 'unified', i.e. organized according to a certain schema that can be represented by a Description.\nTypically, a configuration is the collection that emerges out of a composed entity: an industrial artifact, a plan, a discourse, etc. \nE.g. a physical book has a configuration provided by the part-whole schema that holds together its cover, pages, ink. That schema, based on the individual relations between the book and its parts, can be represented in a reified way by means of a (structural) description, which is said to 'unify' the book configuration.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Configuration".freeze, - subClassOf: "dul:Collection".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Contract, - comment: %(\(The content of\) an agreement between at least two agents that play a Party Role, about some contract object \(a Task to be executed\).).freeze, + comment: "(The content of) an agreement between at least two agents that play a Party Role, about some contract object (a Task to be executed).".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Contract".freeze, - subClassOf: "dul:Description".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Description, - comment: %(A Description is a SocialObject that represents a conceptualization. -It can be thought also as a 'descriptive context' that uses or defines concepts in order to create a view on a 'relational context' \(cf. Situation\) out of a set of data or observations. -For example, a Plan is a Description of some actions to be executed by agents in a certain way, with certain parameters; a Diagnosis is a Description that provides an interpretation for a set of observed entities, etc.).freeze, + comment: "A Description is a SocialObject that represents a conceptualization. \nIt can be thought also as a 'descriptive context' that uses or defines concepts in order to create a view on a 'relational context' (cf. Situation) out of a set of data or observations. \nFor example, a Plan is a Description of some actions to be executed by agents in a certain way, with certain parameters; a Diagnosis is a Description that provides an interpretation for a set of observed entities, etc.\nDescriptions 'define' or 'use' concepts, and can be 'satisfied' by situations.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialAgent".freeze], isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Description".freeze, - "owl:disjointWith": ["dul:InformationObject".freeze, "dul:Situation".freeze, "dul:SocialAgent".freeze], - subClassOf: "dul:SocialObject".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Design, - comment: %(A Description of the Situation, in terms of structure and function, held by an Entity for some reason. -A design is usually accompanied by the rationales behind the construction of the designed Entity \(i.e. of the reasons why a design is claimed to be as such\). For example, the actual design \(a Situation\) of a car or of a law is based on both the specification \(a Description\) of the structure, and the rationales used to construct cars or laws. -While designs typically describe entities to be constructed, they can also be used to describe 'refunctionalized' entities, or to hypothesize unknown functions. For example, a cradle can be refunctionalized as a flowerpot based on a certain home design.).freeze, + comment: "A Description of the Situation, in terms of structure and function, held by an Entity for some reason.\nA design is usually accompanied by the rationales behind the construction of the designed Entity (i.e. of the reasons why a design is claimed to be as such). For example, the actual design (a Situation) of a car or of a law is based on both the specification (a Description) of the structure, and the rationales used to construct cars or laws.\nWhile designs typically describe entities to be constructed, they can also be used to describe 'refunctionalized' entities, or to hypothesize unknown functions. For example, a cradle can be refunctionalized as a flowerpot based on a certain home design.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Design".freeze, - subClassOf: "dul:Description".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DesignedArtifact, - comment: %(A PhysicalArtifact that is also described by a Design. This excludes simple recycling or refunctionalization of natural objects. Most common sense 'artifacts' can be included in this class: cars, lamps, houses, chips, etc.).freeze, + comment: "A PhysicalArtifact that is also described by a Design. This excludes simple recycling or refunctionalization of natural objects. Most common sense 'artifacts' can be included in this class: cars, lamps, houses, chips, etc.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Designed artifact".freeze, - subClassOf: ["dul:PhysicalArtifact".freeze, term( - onProperty: "dul:isDescribedBy".freeze, - someValuesFrom: "dul:Design".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalArtifact".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDescribedBy".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Design".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 :DesignedSubstance, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, - subClassOf: ["dul:DesignedArtifact".freeze, "dul:FunctionalSubstance".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#DesignedArtifact".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#FunctionalSubstance".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Diagnosis, - comment: %(A Description of the Situation of a system, usually applied in order to control a normal behaviour, or to explain a notable behavior \(e.g. a functional breakdown\).).freeze, + comment: "A Description of the Situation of a system, usually applied in order to control a normal behaviour, or to explain a notable behavior (e.g. a functional breakdown).".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Diagnosis".freeze, - subClassOf: "dul:Description".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Entity, - comment: %(Anything: real, possible, or imaginary, which some modeller wants to talk about for some purpose.).freeze, + comment: "Anything: real, possible, or imaginary, which some modeller wants to talk about for some purpose.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Entity".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Event, - comment: %(Any physical, social, or mental process, event, or state. - -More theoretically, events can be classified in different ways, possibly based on 'aspect' \(e.g. stative, continuous, accomplishement, achievement, etc.\), on 'agentivity' \(e.g. intentional, natural, etc.\), or on 'typical participants' \(e.g. human, physical, abstract, food, etc.\). -Here no special direction is taken, and the following explains why: events are related to observable situations, and they can have different views at a same time. -If a position has to be suggested here anyway, the participant-based classification of events seems the most stable and appropriate for many modelling problems. - -\(1\) Alternative aspectual views - -Consider a same event 'rock erosion in the Sinni valley': it can be conceptualized as an accomplishment \(what has brought a certain state to occur\), as an achievement \(the state resulting from a previous accomplishment\), as a punctual event \(if we collapse the time interval of the erosion into a time point\), or as a transition \(something that has changed from a state to a different one\). -In the erosion case, we could therefore have good motivations to shift from one aspect to another: a\) causation focus, b\) effectual focus, c\) historical condensation, d\) transition \(causality\). - -The different views refer to the same event, but are still different: how to live with this seeming paradox? -A typical solution e.g. in linguistics \(cf. Levin's aspectual classes\) and in DOLCE Full \(cf. WonderWeb D18 axiomatization\) is to classify events based on aspectual differences. But this solution would create different identities for a same event, where the difference is only based on the modeller's attitude. -An alternative solution is applied here, and exploits the notion of \(observable\) Situation; a Situation is a view, consistent with a Description, which can be observed of a set of entities. It can also be seen as a 'relational context' created by an observer on the basis of a 'frame'. Therefore, a Situation allows to create a context where each particular view can have a proper identity, while the Event preserves its own identity. -For example, ErosionAsAccomplishment is a Situation where rock erosion is observed as a process leading to a certain achievement: the conditions \(roles, parameters\) that suggest such view are stated in a Description, which acts as a 'theory of accomplishments'. Similarly, ErosionAsTransition is a Situation where rock erosion is observed as an event that has changed a state to another: the conditions for such interpretation are stated in a different Description, which acts as a 'theory of state transitions'. -Consider that in no case the actual event is changed or enriched in parts by the aspectual view. - -\(2\) Alternative intentionality views - -Similarly to aspectual views, several intentionality views can be provided for a same Event. For example, one can investigate if an avalanche has been caused by immediate natural forces, or if there is any hint of an intentional effort to activate those natural forces. -Also in this case, the Event as such has not different identities, while the causal analysis generates situations with different identities, according to what Description is taken for interpreting the Event. -On the other hand, if the possible actions of an Agent causing the starting of an avalanche are taken as parts of the Event, then this makes its identity change, because we are adding a part to it. -Therefore, if intentionality is a criterion to classify events or not, this depends on if an ontology designer wants to consider causality as a relevant dimension for events' identity. - -\(3\) Alternative participant views - -A slightly different case is when we consider the basic participants to an Event. In this case, the identity of the Event is affected by the participating objects, because it depends on them. -For example, if snow, mountain slopes, wind, waves, etc. are considered as an avalanche basic participants, or if we also want to add water, human agents, etc., that makes the identity of an avalanche change. -Anyway, this approach to event classification is based on the designer's choices, and more accurately mirrors lexical or commonsense classifications \(see. e.g. WordNet 'supersenses' for verb synsets\). - -Ultimately, this discussion has no end, because realists will keep defending the idea that events in reality are not changed by the way we describe them, while constructivists will keep defending the idea that, whatever 'true reality' is about, it can't be modelled without the theoretical burden of how we observe and describe it. -Both positions are in principle valid, but, if taken too radically, they focus on issues that are only partly relevant to the aim of computational ontologies, which only attempt to assist domain experts in representing what they want to conceptualize a certain portion of reality according to their own ideas. -For this reason, in this ontology both events and situations are allowed, together with descriptions, in order to encode the modelling needs, independently from the position \(if any\) chosen by the designer.).freeze, + comment: "Any physical, social, or mental process, event, or state.\n\nMore theoretically, events can be classified in different ways, possibly based on 'aspect' (e.g. stative, continuous, accomplishement, achievement, etc.), on 'agentivity' (e.g. intentional, natural, etc.), or on 'typical participants' (e.g. human, physical, abstract, food, etc.).\nHere no special direction is taken, and the following explains why: events are related to observable situations, and they can have different views at a same time.\nIf a position has to be suggested here anyway, the participant-based classification of events seems the most stable and appropriate for many modelling problems.\n\n(1) Alternative aspectual views\n\nConsider a same event 'rock erosion in the Sinni valley': it can be conceptualized as an accomplishment (what has brought a certain state to occur), as an achievement (the state resulting from a previous accomplishment), as a punctual event (if we collapse the time interval of the erosion into a time point), or as a transition (something that has changed from a state to a different one). \nIn the erosion case, we could therefore have good motivations to shift from one aspect to another: a) causation focus, b) effectual focus, c) historical condensation, d) transition (causality).\n\nThe different views refer to the same event, but are still different: how to live with this seeming paradox? \nA typical solution e.g. in linguistics (cf. Levin's aspectual classes) and in DOLCE Full (cf. WonderWeb D18 axiomatization) is to classify events based on aspectual differences. But this solution would create different identities for a same event, where the difference is only based on the modeller's attitude.\nAn alternative solution is suggested here, and exploits the notion of (observable) Situation; a Situation is a view, consistent with a Description, which can be observed of a set of entities. It can also be seen as a 'relational context' created by an observer on the basis of a 'frame'. Therefore, a Situation allows to create a context where each particular view can have a proper identity, while the Event preserves its own identity. \nFor example, ErosionAsAccomplishment is a Situation where rock erosion is observed as a process leading to a certain achievement: the conditions (roles, parameters) that suggest such view are stated in a Description, which acts as a 'theory of accomplishments'. Similarly, ErosionAsTransition is a Situation where rock erosion is observed as an event that has changed a state to another: the conditions for such interpretation are stated in a different Description, which acts as a 'theory of state transitions'.\nConsider that in no case the actual event is changed or enriched in parts by the aspectual view.\n\n(2) Alternative intentionality views\n\nSimilarly to aspectual views, several intentionality views can be provided for a same Event. For example, one can investigate if an avalanche has been caused by immediate natural forces, or if there is any hint of an intentional effort to activate those natural forces.\nAlso in this case, the Event as such has not different identities, while the causal analysis generates situations with different identities, according to what Description is taken for interpreting the Event. \nOn the other hand, if the possible actions of an Agent causing the starting of an avalanche are taken as parts of the Event, then this makes its identity change, because we are adding a part to it. \nTherefore, if intentionality is a criterion to classify events or not, this depends on if an ontology designer wants to consider causality as a relevant dimension for events' identity.\n\n(3) Alternative participant views\n\nA slightly different case is when we consider the basic participants to an Event. In this case, the identity of the Event is affected by the participating objects, because it depends on them. \nFor example, if snow, mountain slopes, wind, waves, etc. are considered as an avalanche basic participants, or if we also want to add water, human agents, etc., that makes the identity of an avalanche change.\nAnyway, this approach to event classification is based on the designer's choices, and more accurately mirrors lexical or commonsense classifications (see. e.g. WordNet 'supersenses' for verb synsets).\n\nUltimately, this discussion has no end, because realists will keep defending the idea that events in reality are not changed by the way we describe them, while constructivists will keep defending the idea that, whatever 'true reality' is about, it can't be modelled without the theoretical burden of how we observe and describe it. \nBoth positions are in principle valid, but, if taken too radically, they focus on issues that are only partly relevant to the aim of computational ontologies, which assist domain experts in representing a certain portion of reality according to their own assumptions and requirements. \n\nFor this reason, in this ontology version of DOLCE, both events and situations are allowed, together with descriptions (the reason for the inclusion of the D&S framewrok in DOLCE), in order to encode the modelling needs, independently from the position (if any) chosen by the model designer.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Quality".freeze], isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Event".freeze, - "owl:disjointWith": ["dul:Object".freeze, "dul:Quality".freeze], - subClassOf: ["dul:Entity".freeze, term( - allValuesFrom: "dul:Event".freeze, - onProperty: "dul:hasConstituent".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasConstituent".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "dul:Event".freeze, - onProperty: "dul:hasPart".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:hasParticipant".freeze, - someValuesFrom: "dul:Object".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:hasTimeInterval".freeze, - someValuesFrom: "dul:TimeInterval".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasTimeInterval".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".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 :EventType, - comment: %(A Concept that classifies an Event . An event type describes how an Event should be interpreted, executed, expected, seen, etc., according to the Description that the EventType isDefinedIn \(or used in\)).freeze, + comment: "A Concept that classifies an Event . An event type describes how an Event should be interpreted, executed, expected, seen, etc., according to the Description that the EventType isDefinedIn (or used in)".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Parameter".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Role".freeze], isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Event type".freeze, - "owl:disjointWith": ["dul:Parameter".freeze, "dul:Role".freeze], - subClassOf: ["dul:Concept".freeze, term( - allValuesFrom: "dul:Event".freeze, - onProperty: "dul:classifies".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#classifies".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 :FormalEntity, - comment: %(Entities that are formally defined and are considered independent from the social context in which they are used. They cannot be localized in space or time. Also called 'Platonic entities'. -Mathematical and logical entities are included in this class: sets, categories, tuples, costants, variables, etc. -Abstract formal entities are distinguished from information objects, which are supposed to be part of a social context, and are localized in space and time, therefore being \(social\) objects. -For example, the class 'Quark' is an abstract formal entity from the purely set-theoretical perspective, but it is an InformationObject from the viewpoint of ontology design, when e.g. implemented in a logical language like OWL. -Abstract formal entities are also distinguished from Concept\(s\), Collection\(s\), and Description\(s\), which are part of a social context, therefore being SocialObject\(s\) as well. -For example, the class 'Quark' is an abstract FormalEntity from the purely set-theoretical perspective, but it is a Concept within history of science and cultural dynamics. - -These distinctions allow to represent two different notions of 'semantics': the first one is abstract and formal \('formal semantics'\), and formallyInterprets symbols that are about entities whatsoever; for example, the term 'Quark' isAbout the Collection of all quarks, and that Collection isFormalGroundingFor the abstract class 'Quark' \(in the extensional sense\). -The second notion is social, localized in space-time \('social semantics'\), and can be used to interpret entities in the intensional sense. For example, the Collection of all quarks isCoveredBy the Concept 'Quark', which is also expressed by the term 'Quark'.).freeze, + comment: "Entities that are formally defined and are considered independent from the social context in which they are used. They cannot be localized in space or time. Also called 'Platonic entities'.\nMathematical and logical entities are included in this class: sets, categories, tuples, costants, variables, etc.\nAbstract formal entities are distinguished from information objects, which are supposed to be part of a social context, and are localized in space and time, therefore being (social) objects.\nFor example, the class 'Quark' is an abstract formal entity from the purely set-theoretical perspective, but it is an InformationObject from the viewpoint of ontology design, when e.g. implemented in a logical language like OWL.\nAbstract formal entities are also distinguished from Concept(s), Collection(s), and Description(s), which are part of a social context, therefore being SocialObject(s) as well.\nFor example, the class 'Quark' is an abstract FormalEntity from the purely set-theoretical perspective, but it is a Concept within history of science and cultural dynamics.\n\nThese distinctions allow to represent two different notions of 'semantics': the first one is abstract and formal ('formal semantics'), and formallyInterprets symbols that are about entities whatsoever; for example, the term 'Quark' isAbout the Collection of all quarks, and that Collection isFormalGroundingFor the abstract class 'Quark' (in the extensional sense). \nThe second notion is social, localized in space-time ('social semantics'), and can be used to interpret entities in the intensional sense. For example, the Collection of all quarks isCoveredBy the Concept 'Quark', which is also expressed by the term 'Quark'.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Formal entity".freeze, - subClassOf: "dul:Abstract".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Abstract".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FunctionalSubstance, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Functional substance".freeze, - subClassOf: "dul:Substance".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Substance".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Goal, - comment: %(The Description of a Situation that is desired by an Agent, and usually associated to a Plan that describes how to actually achieve it).freeze, + comment: "The Description of a Situation that is desired by an Agent, and usually associated to a Plan that describes how to actually achieve it".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Goal".freeze, - subClassOf: "dul:Description".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Group, - comment: %(A CollectiveAgent whose acting agents conceptualize a same SocialRelation .).freeze, + comment: "A CollectiveAgent whose acting agents conceptualize a same SocialRelation .".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Group".freeze, - subClassOf: ["dul:CollectiveAgent".freeze, term( - onProperty: "dul:isDescribedBy".freeze, - someValuesFrom: "dul:Plan".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#CollectiveAgent".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDescribedBy".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Plan".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 :InformationEntity, - comment: %(A piece of information, be it concretely realized or not.).freeze, + comment: "A piece of information, be it concretely realized or not. It is a catchall class, intended to bypass the ambiguities of many data or text that could denote either a an expression or a concrete realization of that expression.\nIn a semiotic model, there is no special reason to distinguish between them, however we may want to distinguish between a pure information content (e.g. the 3rd Gymnopedie by Satie), and its possible concrete realizations as a music sheet, a piano execution, the reproduction of the execution, its publishing as a record, etc.).".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, - subClassOf: "dul:Entity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :InformationObject, - comment: %(A piece of information, such as a musical composition, a text, a word, a picture, independently from how it is concretely realized.).freeze, + comment: "A piece of information, such as a musical composition, a text, a word, a picture, independently from how it is concretely realized.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialAgent".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Information object".freeze, - "owl:disjointWith": ["dul:Situation".freeze, "dul:SocialAgent".freeze], - subClassOf: ["dul:InformationEntity".freeze, "dul:SocialObject".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationEntity".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :InformationRealization, - comment: %(A concrete realization of an InformationObject, e.g. the written document containing the text of a law.).freeze, + comment: "A concrete realization of an InformationObject, e.g. the written document (object) containing the text of a law, a poetry reading (event), the dark timbre (quality) of a sound (event) in the execution (event) of a musical composition, realizing a 'misterioso' tempo indication.\n\nThe realization of an information object also realizes information about itself. This is a special semiotic feature, which allows to avoid a traditonal paradox, by which an information is often supposed to be about itself besides other entities (e.g. the information object 'carpe diem' is about its meaning in Horace's Odes (let alone its fortune in Western culture and beyond), but also about its expression in context: 'dum loquimur, fugerit invida aetas: carpe diem, quam minimum credula postero', with the sound and emotional relations that it could activate.\nThis is expressed in OWL2 with a local reflexivity axiom of the dul:InformationRealization class.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Information realization".freeze, - subClassOf: ["dul:InformationEntity".freeze, term( - onProperty: "dul:realizes".freeze, - someValuesFrom: "dul:InformationObject".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationEntity".freeze, term( + "http://www.w3.org/2002/07/owl#hasSelf": "true".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#realizesSelfInformation".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ), term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#realizes".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - type: "owl:Class".freeze, - unionOf: list("dul:Event".freeze, "dul:PhysicalObject".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalObject".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Quality".freeze) )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LocalConcept, - comment: %(A Concept that isDefinedIn exactly 1 Description. For example, the Concept 'coffee' in a 'preparesCoffee' relation can be defined in that relation, and for all other Description\(s\) that use it, the isConceptUsedIn property should be applied. Notice therefore that not necessarily all Concept\(s\) isDefinedIn exactly 1 Description.).freeze, + comment: "A Concept that isDefinedIn exactly 1 Description. For example, the Concept 'coffee' in a 'preparesCoffee' relation can be defined in that relation, and for all other Description(s) that use it, the isConceptUsedIn property should be applied. Notice therefore that not necessarily all Concept(s) isDefinedIn exactly 1 Description.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Local concept".freeze, - subClassOf: "dul:Concept".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Method, - comment: %(A method is a Description that defines or uses concepts in order to guide carrying out actions aimed at a solution with respect to a problem. -It is different from a Plan, because plans could be carried out in order to follow a method, but a method can be followed by executing alternative plans.).freeze, + comment: "A method is a Description that defines or uses concepts in order to guide carrying out actions aimed at a solution with respect to a problem. \nIt is different from a Plan, because plans could be carried out in order to follow a method, but a method can be followed by executing alternative plans.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Method".freeze, - subClassOf: "dul:Description".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Narrative, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Narrative".freeze, - subClassOf: "dul:Description".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NaturalPerson, - comment: %(A person in the physical commonsense intuition: 'have you seen that person walking down the street?').freeze, + comment: "A person in the physical commonsense intuition: 'have you seen that person walking down the street?'".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Natural person".freeze, - subClassOf: ["dul:Person".freeze, "dul:PhysicalAgent".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Person".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalAgent".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Norm, - comment: %(A social norm.).freeze, + comment: "A social norm.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Norm".freeze, - subClassOf: "dul:Description".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Object, - comment: %(Any physical, social, or mental object, or a substance. Following DOLCE Full, objects are always participating in some event \(at least their own life\), and are spatially located.).freeze, + comment: "Any physical, social, or mental object, or a substance. Following DOLCE Full, objects are always participating in some event (at least their own life), and are spatially located.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Quality".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Object".freeze, - "owl:disjointWith": "dul:Quality".freeze, - subClassOf: ["dul:Entity".freeze, term( - allValuesFrom: "dul:Object".freeze, - onProperty: "dul:hasConstituent".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasConstituent".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "dul:Object".freeze, - onProperty: "dul:hasPart".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "dul:Role".freeze, - onProperty: "dul:isClassifiedBy".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Role".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:hasLocation".freeze, - someValuesFrom: "dul:Entity".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasLocation".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:isParticipantIn".freeze, - someValuesFrom: "dul:Event".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".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 :ObjectAggregate, + comment: "An aggregate of distributed objects, members of a same Collection, e.g. the stars in a constellation, the parts of a car, the employees of a company, the entries from an encyclopedia, the concepts expressed in a speech, etc.\nIt cannot be defined by means of an equivalence axiom, because it'd require the same Collection for all members, an axiom that cannot be expressed in OWL.".freeze, + "http://purl.org/dc/elements/1.1/creator": "Aldo Gangemi".freeze, + "http://purl.org/dc/elements/1.1/date": "2021-02-21T23:35:02Z".freeze, + subClassOf: term( + intersectionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, + someValuesFrom: term( + intersectionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + )), + type: "http://www.w3.org/2002/07/owl#Class".freeze + ).freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + )), + type: "http://www.w3.org/2002/07/owl#Class".freeze + ), + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Organism, - comment: %(A physical objects with biological characteristics, typically that organisms can self-reproduce.).freeze, + comment: "A physical objects with biological characteristics, typically that organisms can self-reproduce.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Organism".freeze, - subClassOf: ["dul:BiologicalObject".freeze, "dul:PhysicalAgent".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#BiologicalObject".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalAgent".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Organization, - comment: %(An internally structured, conventionally created SocialAgent, needing a specific Role and Agent that plays it, in order to act.).freeze, + comment: "An internally structured, conventionally created SocialAgent, needing a specific Role and Agent that plays it, in order to act.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Organization".freeze, - subClassOf: "dul:SocialAgent".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialAgent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Parameter, - comment: %(A Concept that classifies a Region; the difference between a Region and a Parameter is that regions represent sets of observable values, e.g. the height of a given building, while parameters represent constraints or selections on observable values, e.g. 'VeryHigh'. Therefore, parameters can also be used to constrain regions, e.g. VeryHigh on a subset of values of the Region Height applied to buildings, or to add an external selection criterion , such as measurement units, to regions, e.g. Meter on a subset of values from the Region Length applied to the Region Length applied to roads.).freeze, + comment: "A Concept that classifies a Region; the difference between a Region and a Parameter is that regions represent sets of observable values, e.g. the height of a given building, while parameters represent constraints or selections on observable values, e.g. 'VeryHigh'. Therefore, parameters can also be used to constrain regions, e.g. VeryHigh on a subset of values of the Region Height applied to buildings, or to add an external selection criterion , such as measurement units, to regions, e.g. Meter on a subset of values from the Region Length applied to the Region Length applied to roads.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Role".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Parameter".freeze, - "owl:disjointWith": "dul:Role".freeze, - subClassOf: ["dul:Concept".freeze, term( - allValuesFrom: "dul:Parameter".freeze, - onProperty: "dul:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Parameter".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "dul:Region".freeze, - onProperty: "dul:classifies".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#classifies".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 :Parthood, + comment: "A special kind of Situation that allows to include time indexing for the hasPart relation in situations. \nFor example, if a Situation s 'finally, my bike has a luggage rack' isSettingFor the entity 'my bike' and the TimeIntervals 'now', or more specifically '29March2021', we need to have a time-index the part relation. With Parthood, we use includesWhole and includesPart properties.\nThis can be done similarly for other arguments of parthood, e.g. location, configuration, topology, etc.\nConcerning the possible property characteristics reused from mereology (transitivity, asymmetry, reflexivity), they need to be implemented by means of rules (or, in a limited way, property chains using the binary hasPart or hasProperPart properties).\nA key is also added to ensure identification constraints of time-indexed parthood.".freeze, + "http://purl.org/dc/elements/1.1/creator": "Aldo Gangemi".freeze, + "http://purl.org/dc/elements/1.1/date": "2021-04-03T13:53:57Z".freeze, + "http://www.w3.org/2002/07/owl#hasKey": list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#includesPart".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#includesWhole".freeze), + label: "parthood".freeze, + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeIndexedRelation".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#includesPart".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ), term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#includesWhole".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + )], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Pattern, - comment: %(Any invariance detected from a dataset, or from observation; also, any invariance proposed based on top-down considerations. -E.g. patterns detected and abstracted by an organism, by pattern recognition algorithms, by machine learning techniques, etc. -An occurrence of a pattern is an 'observable', or detected Situation).freeze, + comment: "Any invariance detected from a dataset, or from observation; also, any invariance proposed based on top-down considerations.\nE.g. patterns detected and abstracted by an organism, by pattern recognition algorithms, by machine learning techniques, etc.\nAn occurrence of a pattern is an 'observable', or detected Situation".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Pattern".freeze, - subClassOf: "dul:Relation".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Relation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Person, - comment: %(Persons in commonsense intuition, which does not apparently distinguish between either natural or social persons.).freeze, + comment: "Persons in commonsense intuition, which does not apparently distinguish between either natural or social persons.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: ["Person".freeze, "Persona {it}".freeze], - subClassOf: "dul:Agent".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Personification, - comment: %(A social entity with agentive features, but whose status is the result of a cultural transformation from e.g. a PhysicalObject, an Event, an Abstract, another SocialObject, etc. For example: the holy grail, deus ex machina, gods, magic wands, etc.).freeze, + comment: "A social entity with agentive features, but whose status is the result of a cultural transformation from e.g. a PhysicalObject, an Event, an Abstract, another SocialObject, etc. For example: the holy grail, deus ex machina, gods, magic wands, etc.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Personification".freeze, - subClassOf: "dul:SocialAgent".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialAgent".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PhysicalAgent, - comment: %(A PhysicalObject that is capable of self-representing \(conceptualizing\) a Description in order to plan an Action. -A PhysicalAgent is a substrate for \(actsFor\) a Social Agent).freeze, + comment: "A PhysicalObject that is capable of self-representing (conceptualizing) a Description in order to plan an Action. \nA PhysicalAgent is a substrate for (actsFor) a Social Agent".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Physical agent".freeze, - subClassOf: ["dul:Agent".freeze, "dul:PhysicalObject".freeze], - type: "owl:Class".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalObject".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PhysicalArtifact, - comment: %(Any PhysicalObject that isDescribedBy a Plan . -This axiomatization is weak, but allows to talk of artifacts in a very general sense, i.e. including recycled objects, objects with an intentional functional change, natural objects that are given a certain function, even though they are not modified or structurally designed, etc. PhysicalArtifact\(s\) are not considered disjoint from PhysicalBody\(s\), in order to allow a dual classification when needed. E.g., -FunctionalSubstance\(s\) are included here as well. -Immaterial \(non-physical\) artifacts \(e.g. texts, ideas, cultural movements, corporations, communities, etc. can be modelled as social objects \(see SocialObject\), which are all 'artifactual' in the weak sense assumed here.).freeze, + comment: "Any PhysicalObject that isDescribedBy a Plan .\nThis axiomatization is weak, but allows to talk of artifacts in a very general sense, i.e. including recycled objects, objects with an intentional functional change, natural objects that are given a certain function, even though they are not modified or structurally designed, etc. PhysicalArtifact(s) are not considered disjoint from PhysicalBody(s), in order to allow a dual classification when needed. E.g.,\nFunctionalSubstance(s) are included here as well.\nImmaterial (non-physical) artifacts (e.g. texts, ideas, cultural movements, corporations, communities, etc. can be modelled as social objects (see SocialObject), which are all 'artifactual' in the weak sense assumed here.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Physical artifact".freeze, - subClassOf: ["dul:PhysicalObject".freeze, term( - onProperty: "dul:isDescribedBy".freeze, - someValuesFrom: "dul:Plan".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalObject".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDescribedBy".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Plan".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 :PhysicalAttribute, - comment: %(Physical value of a physical object, e.g. density, color, etc.).freeze, + comment: "Physical value of a physical object, e.g. density, color, etc.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SpaceRegion".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".freeze], isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Physical attribute".freeze, - "owl:disjointWith": ["dul:SpaceRegion".freeze, "dul:TimeInterval".freeze], - subClassOf: ["dul:Region".freeze, term( - allValuesFrom: "dul:PhysicalObject".freeze, - onProperty: "dul:isRegionFor".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalObject".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRegionFor".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 :PhysicalBody, - comment: %(Physical bodies are PhysicalObject\(s\), for which we tend to neutralize any possible artifactual character. They can have several granularity levels: geological, chemical, physical, biological, etc.).freeze, + comment: "Physical bodies are PhysicalObject(s), for which we tend to neutralize any possible artifactual character. They can have several granularity levels: geological, chemical, physical, biological, etc.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Physical body".freeze, - subClassOf: "dul:PhysicalObject".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalObject".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PhysicalObject, - comment: %(Any Object that has a proper space region. The prototypical physical object has also an associated mass, but the nature of its mass can greatly vary based on the epistemological status of the object \(scientifically measured, subjectively possible, imaginary\).).freeze, + comment: "Any Object that has a proper space region. The prototypical physical object has also an associated mass, but the nature of its mass can greatly vary based on the epistemological status of the object (scientifically measured, subjectively possible, imaginary).".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Physical object".freeze, - "owl:disjointWith": "dul:SocialObject".freeze, - subClassOf: ["dul:Object".freeze, term( - allValuesFrom: "dul:PhysicalObject".freeze, - onProperty: "dul:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalObject".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".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 :PhysicalPlace, - comment: %(A physical object that is inherently located; for example, a water area.).freeze, + comment: "A physical object that is inherently located; for example, a water area.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Physical place".freeze, - subClassOf: "dul:PhysicalObject".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalObject".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Place, - comment: %(A location, in a very generic sense: a political geographic entity \(Roma, Lesotho\), a non-material location determined by the presence of other entities \("the area close to Roma"\), pivot events or signs \("the area where the helicopter fell"\), complements of other entities \("the area under the table"\), etc. -In this generic sense, a Place is an "approximate" location. For an "absolute" location, see the class SpaceRegion).freeze, + comment: "Socially or cognitively dependent locations: political geographic entities (Rome, Lesotho), and non-material locations determined by the presence of other entities (\"the area close to Rome\") or of pivot events or signs (\"the area where the helicopter fell\"), as well as identified as complements to other entities (\"the area under the table\"), etc. \nIn this generic sense, a Place is a 'dependent' location. For 'non-dependent' locations, cf. the PhysicalPlace class. For an abstract (dimensional) location, cf. the SpaceRegion class.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Place".freeze, - subClassOf: ["dul:SocialObject".freeze, term( + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, term( minCardinality: "1".freeze, - onProperty: "dul:isLocationOf".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".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 :Plan, - comment: %(A Description having an explicit Goal, to be achieved by executing the plan).freeze, + comment: "A Description having an explicit Goal, to be achieved by executing the plan".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Plan".freeze, - subClassOf: ["dul:Description".freeze, term( - onProperty: "dul:hasComponent".freeze, - someValuesFrom: "dul:Goal".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasComponent".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Goal".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 :PlanExecution, - comment: %(Plan executions are situations that proactively satisfy a plan. Subplan executions are proper parts of the whole plan execution.).freeze, + comment: "Plan executions are situations that proactively satisfy a plan. Subplan executions are proper parts of the whole plan execution.".freeze, equivalentClass: term( - onProperty: "dul:satisfies".freeze, - someValuesFrom: "dul:Plan".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#satisfies".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Plan".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Plan execution".freeze, - subClassOf: "dul:Situation".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Process, - comment: %(This is a placeholder for events that are considered in their evolution, or anyway not strictly dependent on agents, tasks, and plans. -See Event class for some thoughts on classifying events. See also 'Transition'.).freeze, + comment: "This is a placeholder for events that are considered in their evolution, or anyway not strictly dependent on agents, tasks, and plans. \nSee Event class for some thoughts on classifying events. See also 'Transition'.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Process".freeze, - subClassOf: "dul:Event".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Project, - comment: %(A Plan that defines Role\(s\), Task\(s\), and a specific structure for tasks to be executed in relation to goals to be achieved, in order to achieve the main goal of the project. In other words, a project is a plan with a subgoal structure and multiple roles and tasks.).freeze, + comment: "A Plan that defines Role(s), Task(s), and a specific structure for tasks to be executed in relation to goals to be achieved, in order to achieve the main goal of the project. In other words, a project is a plan with a subgoal structure and multiple roles and tasks.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Project".freeze, - subClassOf: ["dul:Plan".freeze, term( - onProperty: "dul:definesRole".freeze, - someValuesFrom: "dul:Role".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Plan".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#definesRole".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Role".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:definesTask".freeze, - someValuesFrom: "dul:Task".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#definesTask".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Task".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 :Quality, - comment: %(Any aspect of an Entity \(but not a part of it\), which cannot exist without that Entity. For example, the way the surface of a specific PhysicalObject looks like, or the specific light of a place at a certain time, are examples of Quality, while the encoding of a Quality into e.g. a PhysicalAttribute should be modeled as a Region. -From the design viewpoint, the Quality-Region distinction is useful only when individual aspects of an Entity are considered in a domain of discourse. -For example, in an automotive context, it would be irrelevant to consider the aspects of car windows for a specific car, unless the factory wants to check a specific window against design parameters \(anomaly detection\). -On the other hand, in an antiques context, the individual aspects for a specific piece of furniture are a major focus of attention, and may constitute the actual added value, because the design parameters for old furniture are often not fixed, and may not be viewed as 'anomalies'.).freeze, + comment: "Any aspect of an Entity (but not a part of it), which cannot exist without that Entity. For example, the way the surface of a specific PhysicalObject looks like, or the specific light of a place at a certain time, are examples of Quality, while the encoding of a Quality into e.g. a PhysicalAttribute should be modeled as a Region. \nFrom the design viewpoint, the Quality-Region distinction is useful only when individual aspects of an Entity are considered in a domain of discourse. \nFor example, in an automotive context, it would be irrelevant to consider the aspects of car windows for a specific car, unless the factory wants to check a specific window against design parameters (anomaly detection). \nOn the other hand, in an antiques context, the individual aspects for a specific piece of furniture are a major focus of attention, and may constitute the actual added value, because the design parameters for old furniture are often not fixed, and may not be viewed as 'anomalies'.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Quality".freeze, - subClassOf: ["dul:Entity".freeze, term( - allValuesFrom: "dul:Quality".freeze, - onProperty: "dul:hasConstituent".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Quality".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasConstituent".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ), term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Quality".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "dul:Quality".freeze, - onProperty: "dul:hasPart".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasRegion".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:hasRegion".freeze, - someValuesFrom: "dul:Region".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isQualityOf".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".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 :Region, - comment: %(Any region in a dimensional space \(a dimensional space is a maximal Region\), which can be used as a value for a quality of an Entity . For example, TimeInterval, SpaceRegion, PhysicalAttribute, Amount, SocialAttribute are all subclasses of Region. -Regions are not data values in the ordinary knowledge representation sense; in order to get patterns for modelling data, see the properties: representsDataValue and hasDataValue).freeze, + comment: "Any region in a dimensional space (a dimensional space is a maximal Region), which can be used as a value for a quality of an Entity . For example, TimeInterval, SpaceRegion, PhysicalAttribute, Amount, SocialAttribute are all subclasses of Region. \nRegions are not data values in the ordinary knowledge representation sense; in order to get patterns for modelling data, see the properties: representsDataValue and hasDataValue".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Region".freeze, - subClassOf: ["dul:Abstract".freeze, term( - allValuesFrom: "dul:Region".freeze, - onProperty: "dul:hasConstituent".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Abstract".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasConstituent".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "dul:Region".freeze, - onProperty: "dul:hasPart".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "dul:Region".freeze, - onProperty: "dul:overlaps".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#overlaps".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "dul:Region".freeze, - onProperty: "dul:precedes".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#precedes".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 :Relation, - comment: %(Relations are descriptions that can be considered as the counterpart of formal relations \(that are included in the FormalEntity class\). -For example, 'givingGrantToInstitution\(x,y,z\)' with three argument types: Provider\(x\),Grant\(y\),Recipient\(z\), can have a Relation counterpart: 'GivingGrantToInstitution', which defines three Concept instances: Provider,Grant,Recipient. -Since social objects are not formal entities, Relation includes here any 'relation-like' entity in common sense, including social relations.).freeze, + comment: "Relations are descriptions that can be considered as the counterpart of formal relations (that are included in the FormalEntity class).\nFor example, 'givingGrantToInstitution(x,y,z)' with three argument types: Provider(x),Grant(y),Recipient(z), can have a Relation counterpart: 'GivingGrantToInstitution', which defines three Concept instances: Provider,Grant,Recipient.\nSince social objects are not formal entities, Relation includes here any 'relation-like' entity in common sense, including social relations.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Relation".freeze, - subClassOf: "dul:Description".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Right, - comment: %(A legal position by which an Agent is entitled to obtain something from another Agent , under specified circumstances, through an enforcement explicited either in a Law, Contract , etc.).freeze, + comment: "A legal position by which an Agent is entitled to obtain something from another Agent , under specified circumstances, through an enforcement explicited either in a Law, Contract , etc.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Right".freeze, - subClassOf: ["dul:Description".freeze, term( + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, term( minCardinality: "1".freeze, - onProperty: "dul:definesTask".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#definesTask".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "2".freeze, - onProperty: "dul:definesRole".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#definesRole".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 :Role, - comment: %(A Concept that classifies an Object).freeze, + comment: "A Concept that classifies an Object".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Role".freeze, - subClassOf: ["dul:Concept".freeze, term( - allValuesFrom: "dul:Object".freeze, - onProperty: "dul:classifies".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#classifies".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "dul:Role".freeze, - onProperty: "dul:hasPart".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Role".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".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 :Set, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: ["Insieme {it}".freeze, "Set".freeze], - subClassOf: "dul:FormalEntity".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#FormalEntity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Situation, - comment: %(A view, consistent with \('satisfying'\) a Description, on a set of entities. -It can also be seen as a 'relational context' created by an observer on the basis of a 'frame' \(i.e. a Description\). -For example, a PlanExecution is a context including some actions executed by agents according to certain parameters and expected tasks to be achieved from a Plan; a DiagnosedSituation is a context of observed entities that is interpreted on the basis of a Diagnosis, etc. -Situation is also able to represent reified n-ary relations, where isSettingFor is the top-level relation for all binary projections of the n-ary relation. If used in a transformation pattern for n-ary relations, the designer should take care of creating only one subclass of Situation for each n-ary relation, otherwise the 'identification constraint' \(Calvanese et al., IJCAI 2001\) could be violated.).freeze, + comment: "A view, consistent with ('satisfying') a Description, on a set of entities. \nIt can also be seen as a 'relational context' created by an observer on the basis of a 'frame' (i.e. a Description). \nFor example, a PlanExecution is a context including some actions executed by agents according to certain parameters and expected tasks to be achieved from a Plan; a DiagnosedSituation is a context of observed entities that is interpreted on the basis of a Diagnosis, etc.\nSituation is also able to represent reified n-ary relations, where isSettingFor is the top-level relation for all binary projections of the n-ary relation. \nIf used in a transformation pattern for n-ary relations, the designer should take care of adding (some or all) OWL2 keys, corresponding to binary projections of the n-ary, to a subclass of Situation. Otherwise the 'identification constraint' (Calvanese et al., IJCAI 2001) might be violated.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Situation".freeze, - "owl:disjointWith": "dul:SocialAgent".freeze, - subClassOf: ["dul:SocialObject".freeze, term( - onProperty: "dul:satisfies".freeze, - someValuesFrom: "dul:Description".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#satisfies".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".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 :SocialAgent, - comment: %(Any individual whose existence is granted simply by its social communicability and capability of action \(through some PhysicalAgent\).).freeze, + comment: "Any individual whose existence is granted simply by its social communicability and capability of action (through some PhysicalAgent).".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Social agent".freeze, - subClassOf: ["dul:Agent".freeze, "dul:SocialObject".freeze, term( - onProperty: "dul:actsThrough".freeze, - someValuesFrom: "dul:PhysicalAgent".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#actsThrough".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalAgent".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 :SocialObject, - comment: %(Any Object that exists only within some communication Event, in which at least one PhysicalObject participates in. -In other words, all objects that have been or are created in the process of social communication: for the sake of communication \(InformationObject\), for incorporating new individuals \(SocialAgent, Place\), for contextualizing existing entities \(Situation\), for collecting existing entities \(Collection\), or for describing existing entities \(Description, Concept\). -Being dependent on communication, all social objects need to be expressed by some information object \(information object are self-expressing\).).freeze, + comment: "Any Object that exists only within some communication Event, in which at least one PhysicalObject participates in. \nIn other words, all objects that have been or are created in the process of social communication: for the sake of communication (InformationObject), for incorporating new individuals (SocialAgent, Place), for contextualizing or intepreting existing entities (Description, Concept), or for collecting existing entities (Collection).\nBeing dependent on communication, all social objects need to be expressed by some information object (information objects are self-expressing).".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Social object".freeze, - subClassOf: ["dul:Object".freeze, term( - allValuesFrom: "dul:SocialObject".freeze, - onProperty: "dul:hasPart".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:isExpressedBy".freeze, - someValuesFrom: "dul:InformationObject".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isExpressedBy".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject".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 :SocialObjectAttribute, - comment: %(Any Region in a dimensional space that is used to represent some characteristic of a SocialObject, e.g. judgment values, social scalars, statistical attributes over a collection of entities, etc.).freeze, + comment: "Any Region in a dimensional space that is used to represent some characteristic of a SocialObject, e.g. judgment values, social scalars, statistical attributes over a collection of entities, etc.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Social attribute".freeze, - subClassOf: ["dul:Region".freeze, term( - allValuesFrom: "dul:SocialObject".freeze, - onProperty: "dul:isRegionFor".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRegionFor".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 :SocialPerson, - comment: %(A SocialAgent that needs the existence of a specific NaturalPerson in order to act \(but the lifetime of the NaturalPerson has only to overlap that of the SocialPerson\).).freeze, + comment: "A SocialAgent that needs the existence of a specific NaturalPerson in order to act (but the lifetime of the NaturalPerson has only to overlap that of the SocialPerson).".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "Formerly: Person (changed to avoid confusion with commonsense intuition)".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Social person".freeze, - "owl:versionInfo": "Formerly: Person (changed to avoid confusion with commonsense intuition)".freeze, - subClassOf: ["dul:Person".freeze, "dul:SocialAgent".freeze, term( + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Person".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialAgent".freeze, term( cardinality: "1".freeze, - onProperty: "dul:actsThrough".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#actsThrough".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 :SocialRelation, - comment: %(Any social relationship).freeze, + comment: "Any social relationship".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Social relation".freeze, - subClassOf: "dul:Relation".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Relation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SpaceRegion, - comment: %(Any Region in a dimensional space that is used to localize an Entity ; i.e., it is not used to represent some characteristic \(e.g. it excludes time intervals, colors, size values, judgment values, etc.\). Differently from a Place , a space region has a specific dimensional space.).freeze, + comment: "Any Region in a dimensional space that is used to localize an Entity ; i.e., it is not used to represent some characteristic (e.g. it excludes time intervals, colors, size values, judgment values, etc.). Differently from a Place , a space region has a specific dimensional space.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Space region".freeze, - "owl:disjointWith": "dul:TimeInterval".freeze, - subClassOf: "dul:Region".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SpatioTemporalRegion, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, - subClassOf: ["dul:Region".freeze, term( - onProperty: "dul:hasConstituent".freeze, - someValuesFrom: "dul:SpaceRegion".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasConstituent".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SpaceRegion".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:hasConstituent".freeze, - someValuesFrom: "dul:TimeInterval".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasConstituent".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".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 :Substance, - comment: %(Any PhysicalBody that has not necessarily specified \(designed\) boundaries, e.g. a pile of trash, some sand, etc. -In this sense, an artistic object made of trash or a dose of medicine in the form of a pill would be a FunctionalSubstance, and a DesignedArtifact, since its boundaries are specified by a Design; aleatoric objects that are outcomes of an artistic process might be still considered DesignedArtifact\(s\), and Substance\(s\).).freeze, + comment: "Any PhysicalBody that has not necessarily specified (designed) boundaries, e.g. a pile of trash, some sand, etc. \nIn this sense, an artistic object made of trash or a dose of medicine in the form of a pill would be a FunctionalSubstance, and a DesignedArtifact, since its boundaries are specified by a Design; aleatoric objects that are outcomes of an artistic process might be still considered DesignedArtifact(s), and Substance(s).".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Substance".freeze, - subClassOf: "dul:PhysicalBody".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#PhysicalBody".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Task, - comment: %(An EventType that classifies an Action to be executed. -For example, reaching a destination is a task that can be executed by performing certain actions, e.g. driving a car, buying a train ticket, etc. -The actions to execute a task can also be organized according to a Plan that is not the same as the one that defines the task \(if any\). -For example, reaching a destination could be defined by a plan to get on holidays, while the plan to execute the task can consist of putting some travels into a sequence.).freeze, + comment: "An EventType that classifies an Action to be executed. \nFor example, reaching a destination is a task that can be executed by performing certain actions, e.g. driving a car, buying a train ticket, etc. \nThe actions to execute a task can also be organized according to a Plan that is not the same as the one that defines the task (if any). \nFor example, reaching a destination could be defined by a plan to get on holidays, while the plan to execute the task can consist of putting some travels into a sequence.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Task".freeze, - subClassOf: ["dul:EventType".freeze, term( - allValuesFrom: "dul:Action".freeze, - onProperty: "dul:isExecutedIn".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#EventType".freeze, term( + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Action".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isExecutedIn".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "dul:Description".freeze, - onProperty: "dul:isTaskDefinedIn".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isTaskDefinedIn".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "dul:Role".freeze, - onProperty: "dul:isTaskOf".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Role".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isTaskOf".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "dul:Task".freeze, - onProperty: "dul:hasPart".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Task".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".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 :Theory, - comment: %(A Theory is a Description that represents a set of assumptions for describing something, usually general. Scientific, philosophical, and commonsense theories can be included here. -This class can also be used to act as 'naturalized reifications' of logical theories \(of course, they will be necessarily incomplete in this case, because second-order entities are represented as first-order ones\).).freeze, + comment: "A Theory is a Description that represents a set of assumptions for describing something, usually general. Scientific, philosophical, and commonsense theories can be included here.\nThis class can also be used to act as 'naturalized reifications' of logical theories (of course, they will be necessarily incomplete in this case, because second-order entities are represented as first-order ones).".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Theory".freeze, - subClassOf: ["dul:Description".freeze, term( - onProperty: "dul:hasComponent".freeze, - someValuesFrom: "dul:Relation".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasComponent".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#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 :TimeIndexedRelation, + comment: "A Situation that includes a time indexing in its setting, so allowing to order any binary relation (property) with time.".freeze, + equivalentClass: term( + intersectionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + )), + type: "http://www.w3.org/2002/07/owl#Class".freeze + ), + "http://purl.org/dc/elements/1.1/creator": "Aldo Gangemi".freeze, + "http://purl.org/dc/elements/1.1/date": "2021-02-24T14:24:23Z".freeze, + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TimeInterval, - comment: %(Any Region in a dimensional space that aims at representing time.).freeze, + comment: "Any Region in a dimensional space that aims at representing time.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Time interval".freeze, - subClassOf: "dul:Region".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Transition, - comment: %(A transition is a Situation that creates a context for three TimeInterval\(s\), two additional different Situation\(s\), one Event, one Process, and at least one Object: the Event is observed as the cause for the transition, one Situation is the state before the transition, the second Situation is the state after the transition, the Process is the invariance under some different transitions \(including the one represented here\), in which at least one Object is situated. Finally, the time intervals position the situations and the transitional event in time. -This class of situations partly encodes the ontology underlying typical engineering algebras for processes, e.g. Petri Nets. -A full representation of the transition ontology is outside the expressivity of OWL, because we would need qualified cardinality restrictions, coreference, property equivalence, and property composition.).freeze, + comment: "A transition is a Situation that creates a context for three TimeInterval(s), two additional different Situation(s), one Event, one Process, and at least one Object: the Event is observed as the cause for the transition, one Situation is the state before the transition, the second Situation is the state after the transition, the Process is the invariance under some different transitions (including the one represented here), in which at least one Object is situated. Finally, the time intervals position the situations and the transitional event in time.\nThis class of situations partly encodes the ontology underlying typical engineering algebras for processes, e.g. Petri Nets. \nA full representation of the transition ontology is outside the expressivity of OWL, because we would need qualified cardinality restrictions, coreference, property equivalence, and property composition.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Transition".freeze, - subClassOf: ["dul:Situation".freeze, term( - minCardinality: "1".freeze, - onProperty: "dul:includesObject".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, term( + "http://www.w3.org/2002/07/owl#minQualifiedCardinality": "2".freeze, + "http://www.w3.org/2002/07/owl#onClass": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - minCardinality: "2".freeze, - onProperty: "dul:includesEvent".freeze, - type: "owl:Restriction".freeze + "http://www.w3.org/2002/07/owl#minQualifiedCardinality": "3".freeze, + "http://www.w3.org/2002/07/owl#onClass": "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".freeze, + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#includesTime".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - minCardinality: "3".freeze, - onProperty: "dul:includesTime".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#includesEvent".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:isSettingFor".freeze, - someValuesFrom: "dul:Process".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#includesObject".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:isSettingFor".freeze, - someValuesFrom: "dul:Situation".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Process".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ), term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, + someValuesFrom: term( + intersectionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#precedes".freeze, + someValuesFrom: term( + intersectionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#precedes".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + )), + type: "http://www.w3.org/2002/07/owl#Class".freeze + ).freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + )), + type: "http://www.w3.org/2002/07/owl#Class".freeze + ).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 :TypeCollection, - comment: %(A Collection whose members are the maximal set of individuals that share the same \(named\) type, e.g. "the gem stones", "the Italians". -This class is very useful to apply a variety of the so-called "ClassesAsValues" design pattern, when it is used to talk about the extensional aspect of a class. An alternative variety of the pattern applies to the intensional aspect of a class, and the class Concept should be used instead.).freeze, + comment: "A Collection whose members are the maximal set of individuals that share the same (named) type, e.g. \"the gem stones\", \"the Italians\".\nThis class is very useful to apply a variety of the so-called \"ClassesAsValues\" design pattern, when it is used to talk about the extensional aspect of a class. An alternative variety of the pattern applies to the intensional aspect of a class, and the class Concept should be used instead.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Type collection".freeze, - subClassOf: "dul:Collection".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :UnitOfMeasure, - comment: %(Units of measure are conceptualized here as parameters on regions, which can be valued as datatype values.).freeze, + comment: "Units of measure are conceptualized here as parameters on regions, which can be valued as datatype values.".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Unit of measure".freeze, - subClassOf: ["dul:Parameter".freeze, term( - onProperty: "dul:parametrizes".freeze, - someValuesFrom: "dul:Region".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Parameter".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#parametrizes".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".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 :Workflow, - comment: %(A Plan that defines Role\(s\), Task\(s\), and a specific structure for tasks to be executed, usually supporting the work of an Organization).freeze, + comment: "A Plan that defines Role(s), Task(s), and a specific structure for tasks to be executed, usually supporting the work of an Organization".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Workflow".freeze, - subClassOf: ["dul:Plan".freeze, term( - onProperty: "dul:definesRole".freeze, - someValuesFrom: "dul:Role".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Plan".freeze, term( + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#definesRole".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Role".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "dul:definesTask".freeze, - someValuesFrom: "dul:Task".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#definesTask".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Task".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 :WorkflowExecution, equivalentClass: term( - onProperty: "dul:satisfies".freeze, - someValuesFrom: "dul:Workflow".freeze, - type: "owl:Restriction".freeze + onProperty: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#satisfies".freeze, + someValuesFrom: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Workflow".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "Workflow execution".freeze, - subClassOf: "dul:Situation".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :actsFor, - comment: %(The relation holding between any Agent, and a SocialAgent. In principle, a SocialAgent requires at least one PhysicalAgent in order to act, but this dependency can be 'delegated'; e.g. a university can be acted for by a department, which on its turm is acted for by physical agents.).freeze, - domain: "dul:Agent".freeze, - inverseOf: "dul:actsThrough".freeze, + comment: "The relation holding between any Agent, and a SocialAgent. In principle, a SocialAgent requires at least one PhysicalAgent in order to act, but this dependency can be 'delegated'; e.g. a university can be acted for by a department, which on its turm is acted for by physical agents.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#actsThrough".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "acts for".freeze, - range: "dul:SocialAgent".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialAgent".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :actsThrough, - comment: %(The relation holding between a PhysicalAgent and a SocialAgent. In principle, a SocialAgent requires at least one PhysicalAgent in order to act, but this dependency can be 'delegated', e.g. a university can be acted for by a department, which is acted for by physical agents. AKA isActedBy).freeze, - domain: "dul:SocialAgent".freeze, + comment: "The relation holding between a PhysicalAgent and a SocialAgent. In principle, a SocialAgent requires at least one PhysicalAgent in order to act, but this dependency can be 'delegated', e.g. a university can be acted for by a department, which is acted for by physical agents. AKA isActedBy".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialAgent".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "acts through".freeze, - range: "dul:Agent".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :associatedWith, - comment: %(A catch-all object property, useful for alignment and querying purposes.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:associatedWith".freeze, + comment: "A catch-all object property, useful for alignment and querying purposes.\nIt is declared as both transitive and symmetric, in order to reason an a maximal closure of associations between individuals.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "associatedWith".freeze, - range: "dul:Entity".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".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 :characterizes, - comment: %(A relation between concepts and collections, where a Concept is said to characterize a Collection; it corresponds to a link between the \(reified\) intensional and extensional interpretations of a _proper subset of_ a \(reified\) class. This is different from covers, because it refers to an interpretation the entire reified class. -E.g. the collection of vintage saxophones is characterized by the Concept 'manufactured by hand', while it gets covered by the Concept 'Saxophone' with the Parameter 'Vintage'.).freeze, - domain: "dul:Concept".freeze, - inverseOf: "dul:isCharacterizedBy".freeze, + comment: "A relation between concepts and collections, where a Concept is said to characterize a Collection; it corresponds to a link between the (reified) intensional and extensional interpretations of a _proper subset of_ a (reified) class. This is different from covers, because it refers to an interpretation the entire reified class.\nE.g. the collection of vintage saxophones is characterized by the Concept 'manufactured by hand', while it gets covered by the Concept 'Saxophone' with the Parameter 'Vintage'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isCharacterizedBy".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "characterizes".freeze, - range: "dul:Collection".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :classifies, - comment: %(A relation between a Concept and an Entity, e.g. the Role 'student' classifies a Person 'John'.).freeze, - domain: "dul:Concept".freeze, - inverseOf: "dul:isClassifiedBy".freeze, + comment: "A relation between a Concept and an Entity, e.g. the Role 'student' classifies a Person 'John'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "classifies".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :conceptualizes, - comment: %(A relation stating that an Agent is internally representing a SocialObject: situations, descriptions, concepts, etc. E.g., 'John believes in the conspiracy theory'; 'Niels Bohr created the solar-system metaphor for the atomic theory'; 'Jacques assumes all swans are white'; 'the task force members share the attack plan'. -Conceptualizations can be distinguished into different forms, primarily based on the type of SocialObject that is conceptualized. Descriptions and concepts can be 'assumed', situations can be 'believed' or 'known', plans can be 'adopted', etc. \(see ontology: http://www.ontologydesignpatterns.org/ont/dul/Conceptualization.owl.).freeze, - domain: "dul:Agent".freeze, - inverseOf: "dul:isConceptualizedBy".freeze, + comment: "A relation stating that an Agent is internally representing a SocialObject: situations, descriptions, concepts, etc. E.g., 'John believes in the conspiracy theory'; 'Niels Bohr created the solar-system metaphor for the atomic theory'; 'Jacques assumes all swans are white'; 'the task force members share the attack plan'.\nConceptualizations can be distinguished into different forms, primarily based on the type of SocialObject that is conceptualized. Descriptions and concepts can be 'assumed', situations can be 'believed' or 'known', plans can be 'adopted', etc. (see ontology: http://www.ontologydesignpatterns.org/ont/dul/Conceptualization.owl.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isConceptualizedBy".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "conceptualizes".freeze, - range: "dul:SocialObject".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :concretelyExpresses, - comment: %(A relation between an InformationRealization and a Description, e.g. 'the printout of the Italian Constitution concretelyExpresses the Italian Constitution'. It should be supplied also with a rule stating that the InformationRealization realizes an InformationObject that expresses the Description).freeze, - domain: "dul:InformationRealization".freeze, - inverseOf: "dul:isConcretelyExpressedBy".freeze, + comment: "A relation between an InformationRealization and a Description, e.g. 'the printout of the Italian Constitution concretelyExpresses the Italian Constitution'. It should be supplied also with a rule stating that the InformationRealization realizes an InformationObject that expresses the Description".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationRealization".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isConcretelyExpressedBy".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "concretely expresses".freeze, - range: "dul:SocialObject".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :coparticipatesWith, - comment: %(A relation between two objects participating in a same Event; e.g., 'Vitas and Jimmy are playing tennis'.).freeze, - domain: "dul:Object".freeze, - inverseOf: "dul:coparticipatesWith".freeze, + comment: "A relation between two objects participating in a same Event; e.g., 'Vitas and Jimmy are playing tennis'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze), + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#coparticipatesWith".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "co-participates with".freeze, - range: "dul:Object".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :covers, - comment: %(A relation between concepts and collections, where a Concept is said to cover a Collection; it corresponds to a link between the \(reified\) intensional and extensional interpretations of a \(reified\) class. -E.g. the collection of vintage saxophones is covered by the Concept 'Saxophone' with the Parameter 'Vintage'.).freeze, - domain: "dul:Concept".freeze, - inverseOf: "dul:isCoveredBy".freeze, + comment: "A relation between concepts and collections, where a Concept is said to cover a Collection; it corresponds to a link between the (reified) intensional and extensional interpretations of a (reified) class.\nE.g. the collection of vintage saxophones is covered by the Concept 'Saxophone' with the Parameter 'Vintage'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isCoveredBy".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "covers".freeze, - range: "dul:Collection".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :defines, - comment: %(A relation between a Description and a Concept, e.g. a Workflow for a governmental Organization defines the Role 'officer', or 'the Italian Traffic Law defines the role Vehicle'.).freeze, - domain: "dul:Description".freeze, - inverseOf: "dul:isDefinedIn".freeze, + comment: "A relation between a Description and a Concept, e.g. a Workflow for a governmental Organization defines the Role 'officer', or 'the Italian Traffic Law defines the role Vehicle'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDefinedIn".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "defines".freeze, - range: "dul:Concept".freeze, - subPropertyOf: "dul:usesConcept".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#usesConcept".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :definesRole, - comment: %(A relation between a description and a role, e.g. the recipe for a cake defines the role 'ingredient'.).freeze, - domain: "dul:Description".freeze, - inverseOf: "dul:isRoleDefinedIn".freeze, + comment: "A relation between a description and a role, e.g. the recipe for a cake defines the role 'ingredient'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRoleDefinedIn".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "defines role".freeze, - range: "dul:Role".freeze, - subPropertyOf: "dul:defines".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Role".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#defines".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :definesTask, - comment: %(A relation between a description and a task, e.g. the recipe for a cake defines the task 'boil'.).freeze, - domain: "dul:Description".freeze, - inverseOf: "dul:isTaskDefinedIn".freeze, + comment: "A relation between a description and a task, e.g. the recipe for a cake defines the task 'boil'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isTaskDefinedIn".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "defines task".freeze, - range: "dul:Task".freeze, - subPropertyOf: "dul:defines".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Task".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#defines".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :describes, - comment: %(The relation between a Description and an Entity : a Description gives a unity to a Collection of parts \(the components\), or constituents, by assigning a Role to each of them in the context of a whole Object \(the system\). -A same Entity can be given different descriptions, for example, an old cradle can be given a unifying Description based on the original aesthetic design, the functionality it was built for, or a new aesthetic functionality in which it can be used as a flower pot.).freeze, - domain: "dul:Description".freeze, - inverseOf: "dul:isDescribedBy".freeze, + comment: "The relation between a Description and an Entity : a Description gives a unity to a Collection of parts (the components), or constituents, by assigning a Role to each of them in the context of a whole Object (the system).\nA same Entity can be given different descriptions, for example, an old cradle can be given a unifying Description based on the original aesthetic design, the functionality it was built for, or a new aesthetic functionality in which it can be used as a flower pot.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDescribedBy".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "describes".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :directlyFollows, - comment: %(The intransitive follows relation. For example, Wednesday directly precedes Thursday. Directness of precedence depends on the designer conceptualization.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:directlyPrecedes".freeze, + comment: "The intransitive follows relation. For example, Wednesday directly precedes Thursday. Directness of precedence depends on the designer conceptualization.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#directlyPrecedes".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "directly follows".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:follows".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#follows".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :directlyPrecedes, - comment: %(The intransitive precedes relation. For example, Monday directly precedes Tuesday. Directness of precedence depends on the designer conceptualization.).freeze, - domain: "dul:Entity".freeze, + comment: "The intransitive precedes relation. For example, Monday directly precedes Tuesday. Directness of precedence depends on the designer conceptualization.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "directly precedes".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:precedes".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#precedes".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :executesTask, - comment: %(A relation between an action and a task, e.g. 'putting some water in a pot and putting the pot on a fire until the water starts bubbling' executes the task 'boiling'.).freeze, - domain: "dul:Action".freeze, - inverseOf: "dul:isExecutedIn".freeze, + comment: "A relation between an action and a task, e.g. 'putting some water in a pot and putting the pot on a fire until the water starts bubbling' executes the task 'boiling'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Action".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isExecutedIn".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "executes task".freeze, - range: "dul:Task".freeze, - subPropertyOf: "dul:isClassifiedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Task".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :expands, - comment: %(A partial order relation that holds between descriptions. It represents the proper part relation between a description and another description featuring the same properties as the former, with at least one additional one. -Descriptions can be expanded either by adding other descriptions as parts, or by refining concepts that are used by them. -An 'intention' to expand must be present \(unless purely formal theories are considered, but even in this case a criterion of relevance is usually active\).).freeze, - domain: "dul:Description".freeze, - inverseOf: "dul:isExpandedIn".freeze, + comment: "A partial order relation that holds between descriptions. It represents the proper part relation between a description and another description featuring the same properties as the former, with at least one additional one.\nDescriptions can be expanded either by adding other descriptions as parts, or by refining concepts that are used by them. \nAn 'intention' to expand must be present (unless purely formal theories are considered, but even in this case a criterion of relevance is usually active).".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isExpandedIn".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "expands".freeze, - range: "dul:Description".freeze, - subPropertyOf: "dul:isRelatedToDescription".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRelatedToDescription".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :expresses, - comment: [%(A relation between an InformationObject and a 'meaning', generalized here as a 'SocialObject'. For example: 'A Beehive is a structure in which bees are kept, typically in the form of a dome or box.' \(Oxford dictionary\)'; 'the term Beehive expresses the concept Beehive in my apiculture ontology'. -The intuition for 'meaning' is intended to be very broad. A separate, large comment is included for those who want to investigate more on what kind of meaning can be represented in what form.).freeze, %(This is a large comment field for those who want to investigate the different uses of the 'expresses' relation for modeling different approaches to meaning characterization and modeling. -For example, in all these cases, some aspect of meaning is involved: - -- Beehive means "a structure in which bees are kept, typically in the form of a dome or box." \(Oxford dictionary\) -- 'Beehive' is a synonym in noun synset 09218159 "beehive|hive" \(WordNet\) -- 'the term Beehive can be interpreted as the fact of 'being a beehive', i.e. a relation that holds for concepts such as Bee, Honey, Hosting, etc.' -- 'the text of Italian apiculture regulation expresses a rule by which beehives should be kept at least one kilometer away from inhabited areas' -- 'the term Beehive expresses the concept Beehive' -- ''Beehive' for apiculturists does not express the same meaning as for, say, fishermen' -- 'Your meaning of 'Beautiful' does not seem to fit mine' -- ''Beehive' is formally interpreted as the set of all beehives' -- 'from the term 'Beehive', we can build a vector space of statistically significant cooccurring terms in the documents that contain it' -- the lexeme 'Belly' expresses the role 'Body_Part' in the frame 'ObservableBodyParts' \(FrameNet\) - -As the examples suggest, the 'meaning of meaning' is dependent on the background approach/theory that one assumes. One can hardly make a summary of the too many approaches and theories of meaning, therefore this relation is maybe the most controversial and difficult to explain; normally, in such cases it would be better to give up formalizing. -However, the usefulness of having a 'semantic abstraction' in modeling information objects is so high \(e.g. for the semantic web, interoperability, reengineering, etc.\), that we accept this challenging task, although without taking any particular position in the debate. -We provide here some examples, which we want to generalize upon when using the 'expresses' relation to model semantic aspects of social reality. - -In the most common approach, lexicographers that write dictionaries, glossaries, etc. assume that the meaning of a term is a paraphrase \(or 'gloss', or 'definition'\). -Another approach is provided by concept schemes like thesauri and lexicons, which assume that the meaning of a term is a 'concept', encoded as a 'lemma', 'synset', or 'descriptor'. -Still another approach is that of psychologists and cognitive scientists, which often assume that the meaning of an information object is a concept encoded in the mind or cognitive system of an agent. -A radically different approach is taken by social scientists and semioticians, who usually assume that meanings of an information object are spread across the communication practices in which members of a community use that object. -Another approach that tackles the distributed nature of meaning is assumed by geometrical models of semantics, which assume that the meaning of an InformationObject \(e.g. a word\) results from the set of informational contexts \(e.g. within texts\) in which that object is used similarly. -The logical approach to meaning is still different, since it assumes that the meaning of e.g. a term is equivalent to the set of individuals that the term can be applied to; for example, the meaning of 'Ali' is e.g. an individual person called Ali, the meaning of 'Airplane' is e.g. the set of airplanes, etc. -Finally, an approach taken by structuralist linguistics and frame semantics is that a meaning is the relational context in which an information object can be applied; for example, a meaning of 'Airplane' is situated e.g. in the context \('frame'\) of passenger airline flights. - -These different approaches are not necessarily conflicting, and they mostly talk about different aspects of so-called 'semantics'. They can be summarized and modelled within DOLCE-Ultralite as follows \(notice that such list is far from exhaustive\): - -\(1\) Informal meaning \(as for linguistic or commonsense semantics: a distinction is assumed between \(informal\) meaning and reference; see isAbout for an alternative pattern on reference\) - - Paraphrase meaning \(as for lexicographic semantics\). Here it is modelled as the expresses relation between instances of InformationObject and different instances of InformationObject that act as 'paraphrases' - - Conceptual meaning \(as for 'concept scheme' semantics\). Here it is modelled as the expresses relation between instances of InformationObject and instances of Concept - - Relational meaning \(as for frame semantics\). Here it is modelled as the expresses relation between instances of InformationObject and instances of Description - - Cognitive meaning \(as for 'psychological' semantics\). Here it is modelled as the expresses relation between any instance of InformationObject and any different instance of InformationObject that isRealizedBy a mental, cognitive or neural state \(depending on which theory of mind is assumed\). Such states can be considered here as instances of Process \(occurring in the mind, cognitive system, or neural system of an agent\) - - Cultural meaning \(as for 'social science' semantics\). Here it is modelled as the expresses relation between instances of InformationObject and instances of SocialObject \(institutions, cultural paradigms, norms, social practices, etc.\) - - Distributional meaning \(as for geometrical models of meaning\). Here it is modelled as the expresses relation between any instance of InformationObject and any different instance of InformationObject that isFormallyRepresentedIn some \(geometrical\) Region \(e.g. a vector space\) - -\(2\) Formal meaning \(as for logic and formal semantics: no distinction is assumed between informal meaning and reference, therefore between 'expresses' and 'isAbout', which can be used interchangeably\) - - Object-level formal meaning \(as in the traditional first-order logic semantics\). Here it is modelled as the expresses relation between an instance of InformationObject and an instance of Collection that isGroundingFor \(in most cases\) a Set; isGroundingFor is defined in the ontology: http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl - - Modal formal meaning \(as in possible-world semantics\). Here it is modelled as the expresses relation between an instance of InformationObject and an instance of Collection that isGroundingFor a Set, and which isPartOf some different instance of Collection that isGroundingFor a PossibleWorld - -This is only a first step to provide a framework, in which one can model different aspects of meaning. A more developed ontology should approach the problem of integrating the different uses of 'expresses', so that different theories, resources, methods can interoperate.).freeze], - domain: "dul:InformationObject".freeze, - inverseOf: "dul:isExpressedBy".freeze, + comment: ["A relation between an InformationObject and a 'meaning', generalized here as a 'SocialObject'. For example: 'A Beehive is a structure in which bees are kept, typically in the form of a dome or box.' (Oxford dictionary)'; 'the term Beehive expresses the concept Beehive in my apiculture ontology'.\nThe intuition for 'meaning' is intended to be very broad. A separate, large comment is included for those who want to investigate more on what kind of meaning can be represented in what form.".freeze, "This is a large comment field for those who want to investigate the different uses of the 'expresses' relation for modeling different approaches to meaning characterization and modeling.\nFor example, in all these cases, some aspect of meaning is involved:\n\n- Beehive means \"a structure in which bees are kept, typically in the form of a dome or box.\" (Oxford dictionary)\n- 'Beehive' is a synonym in noun synset 09218159 \"beehive|hive\" (WordNet)\n- 'the term Beehive can be interpreted as the fact of 'being a beehive', i.e. a relation that holds for concepts such as Bee, Honey, Hosting, etc.'\n- 'the text of Italian apiculture regulation expresses a rule by which beehives should be kept at least one kilometer away from inhabited areas'\n- 'the term Beehive expresses the concept Beehive'\n- ''Beehive' for apiculturists does not express the same meaning as for, say, fishermen'\n- 'Your meaning of 'Beautiful' does not seem to fit mine'\n- ''Beehive' is formally interpreted as the set of all beehives'\n- 'from the term 'Beehive', we can build a vector space of statistically significant cooccurring terms in the documents that contain it'\n- the lexeme 'Belly' expresses the role 'Body_Part' in the frame 'ObservableBodyParts' (FrameNet)\n\nAs the examples suggest, the 'meaning of meaning' is dependent on the background approach/theory that one assumes. One can hardly make a summary of the too many approaches and theories of meaning, therefore this relation is maybe the most controversial and difficult to explain; normally, in such cases it would be better to give up formalizing. \nHowever, the usefulness of having a 'semantic abstraction' in modeling information objects is so high (e.g. for the semantic web, interoperability, reengineering, etc.), that we accept this challenging task, although without taking any particular position in the debate. \nWe provide here some examples, which we want to generalize upon when using the 'expresses' relation to model semantic aspects of social reality.\n\nIn the most common approach, lexicographers that write dictionaries, glossaries, etc. assume that the meaning of a term is a paraphrase (or 'gloss', or 'definition'). \nAnother approach is provided by concept schemes like thesauri and lexicons, which assume that the meaning of a term is a 'concept', encoded as a 'lemma', 'synset', or 'descriptor'.\nStill another approach is that of psychologists and cognitive scientists, which often assume that the meaning of an information object is a concept encoded in the mind or cognitive system of an agent. \nA radically different approach is taken by social scientists and semioticians, who usually assume that meanings of an information object are spread across the communication practices in which members of a community use that object.\nAnother approach that tackles the distributed nature of meaning is assumed by geometrical models of semantics, which assume that the meaning of an InformationObject (e.g. a word) results from the set of informational contexts (e.g. within texts) in which that object is used similarly.\nThe logical approach to meaning is still different, since it assumes that the meaning of e.g. a term is equivalent to the set of individuals that the term can be applied to; for example, the meaning of 'Ali' is e.g. an individual person called Ali, the meaning of 'Airplane' is e.g. the set of airplanes, etc. \nFinally, an approach taken by structuralist linguistics and frame semantics is that a meaning is the relational context in which an information object can be applied; for example, a meaning of 'Airplane' is situated e.g. in the context ('frame') of passenger airline flights.\n\nThese different approaches are not necessarily conflicting, and they mostly talk about different aspects of so-called 'semantics'. They can be summarized and modelled within DOLCE-Ultralite as follows (notice that such list is far from exhaustive):\n\n(1) Informal meaning (as for linguistic or commonsense semantics: a distinction is assumed between (informal) meaning and reference; see isAbout for an alternative pattern on reference)\n\t- Paraphrase meaning (as for lexicographic semantics). Here it is modelled as the expresses relation between instances of InformationObject and different instances of InformationObject that act as 'paraphrases'\n\t- Conceptual meaning (as for 'concept scheme' semantics). Here it is modelled as the expresses relation between instances of InformationObject and instances of Concept\n\t- Relational meaning (as for frame semantics). Here it is modelled as the expresses relation between instances of InformationObject and instances of Description\n\t- Cognitive meaning (as for 'psychological' semantics). Here it is modelled as the expresses relation between any instance of InformationObject and any different instance of InformationObject that isRealizedBy a mental, cognitive or neural state (depending on which theory of mind is assumed). Such states can be considered here as instances of Process (occurring in the mind, cognitive system, or neural system of an agent)\n\t- Cultural meaning (as for 'social science' semantics). Here it is modelled as the expresses relation between instances of InformationObject and instances of SocialObject (institutions, cultural paradigms, norms, social practices, etc.)\n\t- Distributional meaning (as for geometrical models of meaning). Here it is modelled as the expresses relation between any instance of InformationObject and any different instance of InformationObject that isFormallyRepresentedIn some (geometrical) Region (e.g. a vector space)\n\n(2) Formal meaning (as for logic and formal semantics: no distinction is assumed between informal meaning and reference, therefore between 'expresses' and 'isAbout', which can be used interchangeably)\n\t- Object-level formal meaning (as in the traditional first-order logic semantics). Here it is modelled as the expresses relation between an instance of InformationObject and an instance of Collection that isGroundingFor (in most cases) a Set; isGroundingFor is defined in the ontology: http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl\n\t- Modal formal meaning (as in possible-world semantics). Here it is modelled as the expresses relation between an instance of InformationObject and an instance of Collection that isGroundingFor a Set, and which isPartOf some different instance of Collection that isGroundingFor a PossibleWorld\n\nThis is only a first step to provide a framework, in which one can model different aspects of meaning. A more developed ontology should approach the problem of integrating the different uses of 'expresses', so that different theories, resources, methods can interoperate.".freeze], + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isExpressedBy".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "expresses".freeze, - range: "dul:SocialObject".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :expressesConcept, - comment: %(A relation between an InformationObject and a Concept , e.g. the term "dog" expresses the Concept "dog". For expressing a relational meaning, see the more general object property: expresses).freeze, - domain: "dul:InformationObject".freeze, - inverseOf: "dul:isConceptExpressedBy".freeze, + comment: "A relation between an InformationObject and a Concept , e.g. the term \"dog\" expresses the Concept \"dog\". For expressing a relational meaning, see the more general object property: expresses".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isConceptExpressedBy".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "expresses concept".freeze, - range: "dul:Concept".freeze, - subPropertyOf: "dul:expresses".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#expresses".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :farFrom, - comment: %(Generic distance relation between any Entity\(s\). E.g. Rome is far from Beijing, astronomy is far from necromancy.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:farFrom".freeze, + comment: "Generic distance relation between any Entity(s). E.g. Rome is far from Beijing, astronomy is far from necromancy.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#farFrom".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "far from".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :follows, - comment: %(A relation between entities, expressing a 'sequence' schema. -E.g. 'year 2000 follows 1999', 'preparing coffee' follows 'deciding what coffee to use', 'II World War follows I World War', etc. -It can be used between tasks, processes or time intervals, and subproperties would fit best in order to distinguish the different uses.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:precedes".freeze, + comment: "A relation between entities, expressing a 'sequence' schema. \nE.g. 'year 2000 follows 1999', 'preparing coffee' follows 'deciding what coffee to use', 'II World War follows I World War', etc. \nIt can be used between tasks, processes or time intervals, and subproperties would fit best in order to distinguish the different uses.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#precedes".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "follows".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :hasCommonBoundary, - comment: %(A relation to encode either formal or informal characterizations of 'boundaries' common to two different entities: an Event that ends when another begins, two abstract regions that have a common topological boundary, two objects that are said to be 'in contact' from a commonsense perspective, etc.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:hasCommonBoundary".freeze, + comment: "A relation to encode either formal or informal characterizations of 'boundaries' common to two different entities: an Event that ends when another begins, two abstract regions that have a common topological boundary, two objects that are said to be 'in contact' from a commonsense perspective, etc.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasCommonBoundary".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has common boundary".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :hasComponent, - comment: %(The hasPart relation without transitivity, holding between an Object \(the system\) and another \(the component\), and assuming a Design that structures the Object.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:isComponentOf".freeze, + comment: "The hasProperPart relation without transitivity, holding between an Object (the system) and another (the component), and assuming a Design that structures the Object.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isComponentOf".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has component".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:hasPart".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasProperPart".freeze, + type: ["http://www.w3.org/2002/07/owl#AsymmetricProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasConstituent, - comment: %('Constituency' depends on some layering of the world described by the ontology. For example, scientific granularities \(e.g. body-organ-tissue-cell\) or ontological 'strata' \(e.g. social-mental-biological-physical\) are typical layerings. -Intuitively, a constituent is a part belonging to a lower layer. Since layering is actually a partition of the world described by the ontology, constituents are not properly classified as parts, although this kinship can be intuitive for common sense. -A desirable advantage of this distinction is that we are able to talk e.g. of physical constituents of non-physical objects \(e.g. systems\), while this is not possible in terms of parts. -Example of are the persons constituting a social system, the molecules constituting a person, the atoms constituting a river, etc. -In all these examples, we notice a typical discontinuity between the constituted and the constituent object: e.g. a social system is conceptualized at a different layer from the persons that constitute it, a person is conceptualized at a different layer from the molecules that constitute them, and a river is conceptualized at a different layer from the atoms that constitute it.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:isConstituentOf".freeze, + comment: "'Constituency' depends on some layering of the world described by the ontology. For example, scientific granularities (e.g. body-organ-tissue-cell) or ontological 'strata' (e.g. social-mental-biological-physical) are typical layerings. \nIntuitively, a constituent is a part belonging to a lower layer. Since layering is actually a partition of the world described by the ontology, constituents are not properly classified as parts, although this kinship can be intuitive for common sense.\nA desirable advantage of this distinction is that we are able to talk e.g. of physical constituents of non-physical objects (e.g. systems), while this is not possible in terms of parts.\nExample of are the persons constituting a social system, the molecules constituting a person, the atoms constituting a river, etc. \nIn all these examples, we notice a typical discontinuity between the constituted and the constituent object: e.g. a social system is conceptualized at a different layer from the persons that constitute it, a person is conceptualized at a different layer from the molecules that constitute them, and a river is conceptualized at a different layer from the atoms that constitute it.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isConstituentOf".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has constituent".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasConstraint, - comment: %(A relation between parameters and entities. It allows to assert generic constraints \(encoded as parameters\), e.g. MinimumAgeForDriving isConstraintFor John \(where John is a legal subject under the TrafficLaw\). -The intended semantics \(not expressible in OWL\) is that a Parameter isParameterFor a Concept that classifies an Entity; moreover, it entails that a Parameter parametrizes a Region that isRegionFor that Entity.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:isConstraintFor".freeze, + comment: "A relation between parameters and entities. It allows to assert generic constraints (encoded as parameters), e.g. MinimumAgeForDriving isConstraintFor John (where John is a legal subject under the TrafficLaw).\nThe intended semantics (not expressible in OWL) is that a Parameter isParameterFor a Concept that classifies an Entity; moreover, it entails that a Parameter parametrizes a Region that isRegionFor that Entity.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isConstraintFor".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has constraint".freeze, - range: "dul:Parameter".freeze, - subPropertyOf: "dul:isClassifiedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Parameter".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasDataValue, - comment: %(A datatype property that encodes values from a datatype for an Entity. -There are several ways to encode values in DOLCE \(Ultralite\): - -1\) Directly assert an xsd:_ value to an Entity by using hasDataValue -2\) Assert a Region for an Entity by using hasRegion, and then assert an xsd:_ value to that Region, by using hasRegionDataValue -3\) Assert a Quality for an Entity by using hasQuality, then assert a Region for that Quality, and assert an xsd:_ value to that Region, by using hasRegionDataValue -4\) When the value is required, but not directly observed, assert a Parameter for an xsd:_ value by using hasParameterDataValue, and then associate the Parameter to an Entity by using isConstraintFor -5\) When the value is required, but not directly observed, you can also assert a Parameter for a Region by using parametrizes, and then assert an xsd:_ value to that Region, by using hasRegionDataValue - -The five approaches obey different requirements. -For example, a simple value can be easily asserted by using pattern \(1\), but if one needs to assert an interval between two values, a Region should be introduced to materialize that interval, as pattern \(2\) suggests. -Furthermore, if one needs to distinguish the individual Quality of a value, e.g. the particular nature of the density of a substance, pattern \(3\) can be used. -Patterns \(4\) and \(5\) should be used instead when a constraint or a selection is modeled, independently from the actual observation of values in the real world.).freeze, - domain: "dul:Entity".freeze, + comment: "A datatype property that encodes values from a datatype for an Entity. \nThere are several ways to encode values in DOLCE (Ultralite):\n\n1) Directly assert an xsd:_ value to an Entity by using hasDataValue\n2) Assert a Region for an Entity by using hasRegion, and then assert an xsd:_ value to that Region, by using hasRegionDataValue\n3) Assert a Quality for an Entity by using hasQuality, then assert a Region for that Quality, and assert an xsd:_ value to that Region, by using hasRegionDataValue\n4) When the value is required, but not directly observed, assert a Parameter for an xsd:_ value by using hasParameterDataValue, and then associate the Parameter to an Entity by using isConstraintFor\n5) When the value is required, but not directly observed, you can also assert a Parameter for a Region by using parametrizes, and then assert an xsd:_ value to that Region, by using hasRegionDataValue\n\nThe five approaches obey different requirements. \nFor example, a simple value can be easily asserted by using pattern (1), but if one needs to assert an interval between two values, a Region should be introduced to materialize that interval, as pattern (2) suggests. \nFurthermore, if one needs to distinguish the individual Quality of a value, e.g. the particular nature of the density of a substance, pattern (3) can be used. \nPatterns (4) and (5) should be used instead when a constraint or a selection is modeled, independently from the actual observation of values in the real world.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has data value".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasEventDate, - comment: %(A datatype property that encodes values from xsd:dateTime for an Event; a same Event can have more than one xsd:dateTime value: begin date, end date, date at which the interval holds, etc.).freeze, - domain: "dul:Event".freeze, + comment: "A datatype property that encodes values from xsd:dateTime for an Event; a same Event can have more than one xsd:dateTime value: begin date, end date, date at which the interval holds, etc.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has event date".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "dul:hasDataValue".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasDataValue".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasIntervalDate, - comment: %(A datatype property that encodes values from xsd:dateTime for a TimeInterval; a same TimeInterval can have more than one xsd:dateTime value: begin date, end date, date at which the interval holds, etc.).freeze, - domain: "dul:TimeInterval".freeze, + comment: "A datatype property that encodes values from xsd:dateTime for a TimeInterval; a same TimeInterval can have more than one xsd:dateTime value: begin date, end date, date at which the interval holds, etc.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has interval date".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "dul:hasRegionDataValue".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasRegionDataValue".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasLocation, - comment: %(A generic, relative spatial location, holding between any entities. E.g. 'the cat is on the mat', 'Omar is in Samarcanda', 'the wound is close to the femural artery'. -For 'absolute' locations, see SpaceRegion).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:isLocationOf".freeze, + comment: "A generic, relative spatial location, holding between any entities. E.g. 'the cat is on the mat', 'Omar is in Samarcanda', 'the wound is close to the femural artery'.\nFor 'absolute' locations, see SpaceRegion".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isLocationOf".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has location".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasMember, - comment: %(A relation between collections and entities, e.g. 'my collection of saxophones includes an old Adolphe Sax original alto' \(i.e. my collection has member an Adolphe Sax alto\).).freeze, - domain: "dul:Collection".freeze, - inverseOf: "dul:isMemberOf".freeze, + comment: "A relation between collections and entities, e.g. 'my collection of saxophones includes an old Adolphe Sax original alto' (i.e. my collection has member an Adolphe Sax alto).".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isMemberOf".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has member".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasParameter, - comment: %(A Concept can have a Parameter that constrains the attributes that a classified Entity can have in a certain Situation, e.g. a 4WheelDriver Role definedIn the ItalianTrafficLaw has a MinimumAge parameter on the Amount 16.).freeze, - domain: "dul:Concept".freeze, - inverseOf: "dul:isParameterFor".freeze, + comment: "A Concept can have a Parameter that constrains the attributes that a classified Entity can have in a certain Situation, e.g. a 4WheelDriver Role definedIn the ItalianTrafficLaw has a MinimumAge parameter on the Amount 16.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParameterFor".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has parameter".freeze, - range: "dul:Parameter".freeze, - subPropertyOf: "dul:isRelatedToConcept".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Parameter".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRelatedToConcept".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasParameterDataValue, - comment: %(Parametrizes values from a datatype. For example, a Parameter MinimumAgeForDriving hasParameterDataValue 18 on datatype xsd:int, in the Italian traffic code. In this example, MinimumAgeForDriving isDefinedIn the Norm ItalianTrafficCodeAgeDriving. -More complex parametrization requires workarounds. E.g. AgeRangeForDrugUsage could parametrize data value: 14 to 50 on the datatype: xsd:int. Since complex datatypes are not allowed in OWL1.0, a solution to this can only work by creating two 'sub-parameters': MinimumAgeForDrugUsage \(that hasParameterDataValue 14\) and MaximumAgeForDrugUsage \(that hasParameterDataValue 50\), which are components of \(cf. hasComponent\) the main Parameter AgeRangeForDrugUsage. -Ordering on subparameters can be created by using or specializing the object property 'precedes'.).freeze, - domain: "dul:Parameter".freeze, + comment: "Parametrizes values from a datatype. For example, a Parameter MinimumAgeForDriving hasParameterDataValue 18 on datatype xsd:int, in the Italian traffic code. In this example, MinimumAgeForDriving isDefinedIn the Norm ItalianTrafficCodeAgeDriving.\nMore complex parametrization requires workarounds. E.g. AgeRangeForDrugUsage could parametrize data value: 14 to 50 on the datatype: xsd:int. Since complex datatypes are not allowed in OWL1.0, a solution to this can only work by creating two 'sub-parameters': MinimumAgeForDrugUsage (that hasParameterDataValue 14) and MaximumAgeForDrugUsage (that hasParameterDataValue 50), which are components of (cf. hasComponent) the main Parameter AgeRangeForDrugUsage.\nOrdering on subparameters can be created by using or specializing the object property 'precedes'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Parameter".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has parameter data value".freeze, - subPropertyOf: "dul:hasDataValue".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasDataValue".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasPart, - comment: %(A schematic relation between any entities, e.g. 'the human body has a brain as part', '20th century contains year 1923', 'World War II includes the Pearl Harbour event'. -Subproperties and restrictions can be used to specialize hasPart for objects, events, etc.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:isPartOf".freeze, + comment: "A schematic relation between any entities, e.g. 'the human body has a brain as part', '20th century contains year 1923', 'World War II includes the Pearl Harbour event'.\n\nParthood should assume the basic properties of mereology: transitivity, antisymmetry, and reflexivity (propert Parthood of course misses reflexivity). \nHowever, antisymmetry is not supported in OWL2 explicitly, therefore DUL has to adopt one of two patterns:\n1) dropping asymmetry axioms, while granting reflexivity: this means that symmetry is not enforced, but permitted for the case of reflexivity. Of course, in this way we cannot prevent symmetric usages of hasPart;\n2) dropping the reflexivity axiom, and enforce asymmetry: in this case, we would prevent all symmetric usages, but we loose the possibility of enforcing reflexivity, which is commonsensical in parthood.\nIn DUL, we adopt pattern #1 for partOf, and pattern #2 for properPartOf, which seems a good approximation: due to the lack of inheritance of property characteristics, each asymmetric hasPropertPart assertion would also be a reflexive hasPart assertion (reflexive reduction design pattern).\n\nSubproperties and restrictions can be used to specialize hasPart for objects, events, etc.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list(term( + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#includesWhole".freeze + ), "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#includesPart".freeze), + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has part".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#ReflexiveProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :hasParticipant, - comment: %(A relation between an object and a process, e.g. 'John took part in the discussion', 'a large mass of snow fell during the avalanche', or 'a cook, some sugar, flour, etc. are all present in the cooking of a cake'.).freeze, - domain: "dul:Event".freeze, - inverseOf: "dul:isParticipantIn".freeze, + comment: "A relation between an object and a process, e.g. 'John took part in the discussion', 'a large mass of snow fell during the avalanche', or 'a cook, some sugar, flour, etc. are all present in the cooking of a cake'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has participant".freeze, - range: "dul:Object".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPostcondition, - comment: %(Direct succession applied to situations. -E.g., 'A postcondition of our Plan is to have things settled'.).freeze, + comment: "Direct succession applied to situations. \nE.g., 'A postcondition of our Plan is to have things settled'.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("dul:Event".freeze, "dul:Situation".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze) ), - inverseOf: "dul:isPostconditionOf".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPostconditionOf".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has postcondition".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("dul:Event".freeze, "dul:Situation".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze) ), - subPropertyOf: "dul:directlyPrecedes".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#directlyPrecedes".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPrecondition, - comment: %(Direct precedence applied to situations. -E.g., 'A precondition to declare war against a foreign country is claiming to find nuclear weapons in it'.).freeze, + comment: "Direct precedence applied to situations. \nE.g., 'A precondition to declare war against a foreign country is claiming to find nuclear weapons in it'.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("dul:Event".freeze, "dul:Situation".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze) ), - inverseOf: "dul:isPreconditionOf".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPreconditionOf".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has precondition".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("dul:Event".freeze, "dul:Situation".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze) ), - subPropertyOf: "dul:directlyFollows".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#directlyFollows".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze + property :hasProperPart, + comment: "Asymmetric (so including irreflexive) parthood.".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPropertPartOf".freeze, + label: "has proper part".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasPart".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :hasQuality, - comment: %(A relation between entities and qualities, e.g. 'Dmitri's skin is yellowish'.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:isQualityOf".freeze, + comment: "A relation between entities and qualities, e.g. 'Dmitri's skin is yellowish'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isQualityOf".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has quality".freeze, - range: "dul:Quality".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Quality".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRegion, - comment: %(A relation between entities and regions, e.g. 'the number of wheels of that truck is 12', 'the time of the experiment is August 9th, 2004', 'the whale has been localized at 34 degrees E, 20 degrees S'.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:isRegionFor".freeze, + comment: "A relation between entities and regions, e.g. 'the number of wheels of that truck is 12', 'the time of the experiment is August 9th, 2004', 'the whale has been localized at 34 degrees E, 20 degrees S'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRegionFor".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has region".freeze, - range: "dul:Region".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRegionDataValue, - comment: %(A datatype property that encodes values for a Region, e.g. a float for the Region Height.).freeze, - domain: "dul:Region".freeze, + comment: "A datatype property that encodes values for a Region, e.g. a float for the Region Height.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has region data value".freeze, - subPropertyOf: "dul:hasDataValue".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasDataValue".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasRole, - comment: %(A relation between an object and a role, e.g. the person 'John' has role 'student'.).freeze, - domain: "dul:Object".freeze, - inverseOf: "dul:isRoleOf".freeze, + comment: "A relation between an object and a role, e.g. the person 'John' has role 'student'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRoleOf".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has role".freeze, - range: "dul:Role".freeze, - subPropertyOf: "dul:isClassifiedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Role".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSetting, - comment: %(A relation between entities and situations, e.g. 'this morning I've prepared my coffee with a new fantastic Arabica', i.e.: \(an amount of\) a new fantastic Arabica hasSetting the preparation of my coffee this morning.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:isSettingFor".freeze, + comment: "A relation between entities and situations, e.g. 'this morning I've prepared my coffee with a new fantastic Arabica', i.e.: (an amount of) a new fantastic Arabica hasSetting the preparation of my coffee this morning.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has setting".freeze, - range: "dul:Situation".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasTask, - comment: %(A relation between roles and tasks, e.g. 'students have the duty of giving exams' \(i.e. the Role 'student' hasTask the Task 'giving exams'\).).freeze, - domain: "dul:Role".freeze, - inverseOf: "dul:isTaskOf".freeze, + comment: "A relation between roles and tasks, e.g. 'students have the duty of giving exams' (i.e. the Role 'student' hasTask the Task 'giving exams').".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Role".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isTaskOf".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has task".freeze, - range: "dul:Task".freeze, - subPropertyOf: "dul:isRelatedToConcept".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Task".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRelatedToConcept".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasTimeInterval, - comment: %(The generic relation between events and time intervals.).freeze, - domain: "dul:Event".freeze, - inverseOf: "dul:isTimeIntervalOf".freeze, + comment: "The generic relation between events and time intervals.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isTimeIntervalOf".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "has time interval".freeze, - range: "dul:TimeInterval".freeze, - subPropertyOf: "dul:hasRegion".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasRegion".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :includesAction, - comment: %(A relation between situations and actions, e.g. 'this morning I've prepared my coffee and had my fingers burnt' \(i.e.: the preparation of my coffee this morning included a burning of my fingers\).).freeze, - domain: "dul:Situation".freeze, - inverseOf: "dul:isActionIncludedIn".freeze, + comment: "A relation between situations and actions, e.g. 'this morning I've prepared my coffee and had my fingers burnt' (i.e.: the preparation of my coffee this morning included a burning of my fingers).".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isActionIncludedIn".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "includes action".freeze, - range: "dul:Action".freeze, - subPropertyOf: "dul:includesEvent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Action".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#includesEvent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :includesAgent, - comment: %(A relation between situations and persons, e.g. 'this morning I've prepared my coffee and had my fingers burnt' \(i.e.: the preparation of my coffee this morning included me\).).freeze, - domain: "dul:Situation".freeze, - inverseOf: "dul:isAgentIncludedIn".freeze, + comment: "A relation between situations and persons, e.g. 'this morning I've prepared my coffee and had my fingers burnt' (i.e.: the preparation of my coffee this morning included me).".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isAgentIncludedIn".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "includes agent".freeze, - range: "dul:Agent".freeze, - subPropertyOf: "dul:includesObject".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#includesObject".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :includesEvent, - comment: %(A relation between situations and events, e.g. 'this morning I've prepared my coffee and had my fingers burnt' \(i.e.: the preparation of my coffee this morning included a burning of my fingers\).).freeze, - domain: "dul:Situation".freeze, - inverseOf: "dul:isEventIncludedIn".freeze, + comment: "A relation between situations and events, e.g. 'this morning I've prepared my coffee and had my fingers burnt' (i.e.: the preparation of my coffee this morning included a burning of my fingers).".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isEventIncludedIn".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "includes event".freeze, - range: "dul:Event".freeze, - subPropertyOf: "dul:isSettingFor".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :includesObject, - comment: %(A relation between situations and objects, e.g. 'this morning I've prepared my coffee and had my fingers burnt' \(i.e.: the preparation of my coffee this morning included me\).).freeze, - domain: "dul:Situation".freeze, - inverseOf: "dul:isObjectIncludedIn".freeze, + comment: "A relation between situations and objects, e.g. 'this morning I've prepared my coffee and had my fingers burnt' (i.e.: the preparation of my coffee this morning included me).".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isObjectIncludedIn".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "includes object".freeze, - range: "dul:Object".freeze, - subPropertyOf: "dul:isSettingFor".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze + property :includesPart, + "http://purl.org/dc/elements/1.1/creator": "Aldo Gangemi".freeze, + "http://purl.org/dc/elements/1.1/date": "2021-04-03T14:11:09Z".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :includesTime, - comment: %(A relation between situations and time intervals, e.g. 'this morning I've prepared my coffee and had my fingers burnt' \(i.e.: preparing my coffee was held this morning\). A data value attached to the time interval typically complements this modelling pattern.).freeze, - domain: "dul:Situation".freeze, - inverseOf: "dul:isTimeIncludedIn".freeze, + comment: "A relation between situations and time intervals, e.g. 'this morning I've prepared my coffee and had my fingers burnt' (i.e.: preparing my coffee was held this morning). A data value attached to the time interval typically complements this modelling pattern.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isTimeIncludedIn".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "includes time".freeze, - range: "dul:TimeInterval".freeze, - subPropertyOf: "dul:isSettingFor".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze + property :includesWhole, + "http://purl.org/dc/elements/1.1/creator": "Aldo Gangemi".freeze, + "http://purl.org/dc/elements/1.1/date": "2021-04-03T14:11:01Z".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :introduces, - comment: %(A relation between a Description and a SocialAgent, e.g. a Constitutional Charter introduces the SocialAgent 'PresidentOfRepublic'.).freeze, - domain: "dul:Description".freeze, - inverseOf: "dul:isIntroducedBy".freeze, + comment: "A relation between a Description and a SocialAgent, e.g. a Constitutional Charter introduces the SocialAgent 'PresidentOfRepublic'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isIntroducedBy".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "introduces".freeze, - range: "dul:SocialAgent".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialAgent".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :involvesAgent, - comment: %(Agent participation.).freeze, - domain: "dul:Event".freeze, - inverseOf: "dul:isAgentInvolvedIn".freeze, + comment: "Agent participation.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isAgentInvolvedIn".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "involves agent".freeze, - range: "dul:Agent".freeze, - subPropertyOf: "dul:hasParticipant".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasParticipant".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isAbout, - comment: %(A relation between information objects and any Entity \(including information objects\). It can be used to talk about e.g. entities are references of proper nouns: the proper noun 'Leonardo da Vinci' isAbout the Person Leonardo da Vinci; as well as to talk about sets of entities that can be described by a common noun: the common noun 'person' isAbout the set of all persons in a domain of discourse, which can be represented in DOLCE-Ultralite as an individual of the class: Collection . -The isAbout relation is reflexive \(not expressible in OWL1.0\), because information objects are also about themselves.).freeze, - domain: "dul:InformationObject".freeze, - inverseOf: "dul:isReferenceOf".freeze, + comment: "A relation between an information object and an Entity (including information objects). It can be used to talk about entities that are references of proper nouns: the proper noun 'Leonardo da Vinci' isAbout the Person Leonardo da Vinci; as well as to talk about sets of entities that can be described by a common noun: the common noun 'person' isAbout the set of all persons in a domain of discourse, which can be represented in DOLCE-Ultralite as an individual of the class: dul:Collection.\nA specific sentence may use common nouns with either a singular or plural reference, or it can even refer to all possible references (e.g. in a lexicographic definition): all those uses are kinds of aboutness.\n\nThe isAbout relation is sometimes considered as reflexive, however this is semiotically inaccurate, because information can be about itself ('de dicto' usage, as in 'John is four character long'), but it is typically about something else ('de re' usage, as in 'John loves Mary').\nIf a reflexivity exists in general, it rather concerns its realisation, which is always associated with an event, e.g. an utterance, which makes the information denoting itself, besides its aboutness. This is implemented in DUL with the dul:realizesSelfInformation property, which is used with local reflexivity in the dul:InformationRealization class.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isReferenceOf".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is about".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isActionIncludedIn, - domain: "dul:Action".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Action".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is action included in".freeze, - range: "dul:Situation".freeze, - subPropertyOf: "dul:isEventIncludedIn".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isEventIncludedIn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isAgentIncludedIn, - domain: "dul:Agent".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is agent included in".freeze, - range: "dul:Situation".freeze, - subPropertyOf: "dul:isObjectIncludedIn".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isObjectIncludedIn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isAgentInvolvedIn, - comment: %(Agent participation.).freeze, - domain: "dul:Agent".freeze, + comment: "Agent participation.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is agent involved in".freeze, - range: "dul:Event".freeze, - subPropertyOf: "dul:isParticipantIn".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isParticipantIn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isCharacterizedBy, - domain: "dul:Collection".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: ["is characterized by {@en-us}".freeze, "is characterized by".freeze], - range: "dul:Concept".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isClassifiedBy, - comment: %(A relation between a Concept and an Entity, e.g. 'John is considered a typical rude man'; your last concert constitutes the achievement of a lifetime; '20-year-old means she's mature enough'.).freeze, - domain: "dul:Entity".freeze, + comment: "A relation between a Concept and an Entity, e.g. 'John is considered a typical rude man'; your last concert constitutes the achievement of a lifetime; '20-year-old means she's mature enough'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is classified by".freeze, - range: "dul:Concept".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isComponentOf, - comment: %(The hasPart relation without transitivity, holding between an Object \(the system\) and another \(the component\), and assuming a Design that structures the Object.).freeze, - domain: "dul:Entity".freeze, + comment: "The asymmetric isProperPartOf relation without transitivity, holding between an Object (the system) and another (the component), and assuming a Design that structures the Object.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is component of".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:isPartOf".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPropertPartOf".freeze, + type: ["http://www.w3.org/2002/07/owl#AsymmetricProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :isConceptExpressedBy, - comment: %(A relation between an InformationObject and a Concept , e.g. the term "dog" expresses the Concept "dog". For expressing a relational meaning, see the more general object property: expresses).freeze, - domain: "dul:Concept".freeze, + comment: "A relation between an InformationObject and a Concept , e.g. the term \"dog\" expresses the Concept \"dog\". For expressing a relational meaning, see the more general object property: expresses".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is concept expressed by".freeze, - range: "dul:InformationObject".freeze, - subPropertyOf: "dul:isExpressedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isExpressedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isConceptUsedIn, - comment: %(A more generic relation holding between a Description and a Concept. In order to be used, a Concept must be previously definedIn another Description).freeze, - domain: "dul:Concept".freeze, - inverseOf: "dul:usesConcept".freeze, + comment: "A more generic relation holding between a Description and a Concept. In order to be used, a Concept must be previously definedIn another Description".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#usesConcept".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is concept used in".freeze, - range: "dul:Description".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isConceptualizedBy, - comment: %(A relation stating that an Agent is internally representing a Description . E.g., 'John believes in the conspiracy theory'; 'Niels Bohr created a solar-system metaphor for his atomic theory'; 'Jacques assumes all swans are white'; 'the task force shares the attack plan'.).freeze, - domain: "dul:SocialObject".freeze, + comment: "A relation stating that an Agent is internally representing a Description . E.g., 'John believes in the conspiracy theory'; 'Niels Bohr created a solar-system metaphor for his atomic theory'; 'Jacques assumes all swans are white'; 'the task force shares the attack plan'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is conceptualized by".freeze, - range: "dul:Agent".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Agent".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isConcretelyExpressedBy, - comment: %(A relation between an InformationRealization and a Description, e.g. 'the printout of the Italian Constitution concretelyExpresses the Italian Constitution'. It should be supplied also with a rule stating that the InformationRealization realizes an InformationObject that expresses the Description).freeze, - domain: "dul:SocialObject".freeze, + comment: "A relation between an InformationRealization and a Description, e.g. 'the printout of the Italian Constitution concretelyExpresses the Italian Constitution'. It should be supplied also with a rule stating that the InformationRealization realizes an InformationObject that expresses the Description".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is concretely expressed by".freeze, - range: "dul:InformationRealization".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationRealization".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isConstituentOf, - comment: %('Constituency' depends on some layering of the world described by the ontology. For example, scientific granularities \(e.g. body-organ-tissue-cell\) or ontological 'strata' \(e.g. social-mental-biological-physical\) are typical layerings. -Intuitively, a constituent is a part belonging to a lower layer. Since layering is actually a partition of the world described by the ontology, constituents are not properly classified as parts, although this kinship can be intuitive for common sense. -A desirable advantage of this distinction is that we are able to talk e.g. of physical constituents of non-physical objects \(e.g. systems\), while this is not possible in terms of parts. -Example of are the persons constituting a social system, the molecules constituting a person, the atoms constituting a river, etc. -In all these examples, we notice a typical discontinuity between the constituted and the constituent object: e.g. a social system is conceptualized at a different layer from the persons that constitute it, a person is conceptualized at a different layer from the molecules that constitute them, and a river is conceptualized at a different layer from the atoms that constitute it.).freeze, - domain: "dul:Entity".freeze, + comment: "'Constituency' depends on some layering of the world described by the ontology. For example, scientific granularities (e.g. body-organ-tissue-cell) or ontological 'strata' (e.g. social-mental-biological-physical) are typical layerings. \nIntuitively, a constituent is a part belonging to a lower layer. Since layering is actually a partition of the world described by the ontology, constituents are not properly classified as parts, although this kinship can be intuitive for common sense.\nA desirable advantage of this distinction is that we are able to talk e.g. of physical constituents of non-physical objects (e.g. systems), while this is not possible in terms of parts.\nExample of are the persons constituting a social system, the molecules constituting a person, the atoms constituting a river, etc. \nIn all these examples, we notice a typical discontinuity between the constituted and the constituent object: e.g. a social system is conceptualized at a different layer from the persons that constitute it, a person is conceptualized at a different layer from the molecules that constitute them, and a river is conceptualized at a different layer from the atoms that constitute it.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is constituent of".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isConstraintFor, - comment: %(A relation between parameters and entities. It allows to assert generic constraints \(encoded as parameters\), e.g. MinimumAgeForDriving isConstraintFor John \(where John is a legal subject under the TrafficLaw\). -The intended semantics \(not expressible in OWL\) is that a Parameter isConstraintFor and Entity if the Parameter isParameterFor a Concept that classifies that Entity; moreover, it entails that a Parameter parametrizes a Region that isRegionFor that Entity. The use in OWL is therefore a shortcut to annotate what Parameter constrains what Entity).freeze, - domain: "dul:Parameter".freeze, + comment: "A relation between parameters and entities. It allows to assert generic constraints (encoded as parameters), e.g. MinimumAgeForDriving isConstraintFor John (where John is a legal subject under the TrafficLaw).\nThe intended semantics (not expressible in OWL) is that a Parameter isConstraintFor and Entity if the Parameter isParameterFor a Concept that classifies that Entity; moreover, it entails that a Parameter parametrizes a Region that isRegionFor that Entity. The use in OWL is therefore a shortcut to annotate what Parameter constrains what Entity".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Parameter".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is constraint for".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:classifies".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#classifies".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isCoveredBy, - comment: %(A relation between concepts and collections, where a Concept is said to cover a Collection; it corresponds to a link between the \(reified\) intensional and extensional interpretations of a \(reified\) class. -E.g. the collection of vintage saxophones is covered by the Concept 'Saxophone' with the Parameter 'Vintage'.).freeze, - domain: "dul:Collection".freeze, + comment: "A relation between concepts and collections, where a Concept is said to cover a Collection; it corresponds to a link between the (reified) intensional and extensional interpretations of a (reified) class.\nE.g. the collection of vintage saxophones is covered by the Concept 'Saxophone' with the Parameter 'Vintage'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is covered by".freeze, - range: "dul:Concept".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isDefinedIn, - comment: %(A relation between a Description and a Concept, e.g. a Workflow for a governmental Organization defines the Role 'officer', or 'the Italian Traffic Law defines the role Vehicle'.).freeze, - domain: "dul:Concept".freeze, + comment: "A relation between a Description and a Concept, e.g. a Workflow for a governmental Organization defines the Role 'officer', or 'the Italian Traffic Law defines the role Vehicle'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is defined in".freeze, - range: "dul:Description".freeze, - subPropertyOf: "dul:isConceptUsedIn".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isConceptUsedIn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isDescribedBy, - comment: %(The relation between an Entity and a Description: a Description gives a unity to a Collection of parts \(the components\), or constituents, by assigning a Role to each of them in the context of a whole Object \(the system\). -A same Entity can be given different descriptions, for example, an old cradle can be given a unifying Description based on the original aesthetic design, the functionality it was built for, or a new aesthetic functionality in which it can be used as a flower pot.).freeze, - domain: "dul:Entity".freeze, + comment: "The relation between an Entity and a Description: a Description gives a unity to a Collection of parts (the components), or constituents, by assigning a Role to each of them in the context of a whole Object (the system).\nA same Entity can be given different descriptions, for example, an old cradle can be given a unifying Description based on the original aesthetic design, the functionality it was built for, or a new aesthetic functionality in which it can be used as a flower pot.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is described by".freeze, - range: "dul:Description".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isEventIncludedIn, - domain: "dul:Event".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is event included in".freeze, - range: "dul:Situation".freeze, - subPropertyOf: "dul:hasSetting".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasSetting".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isExecutedIn, - comment: %(A relation between an action and a task, e.g. 'putting some water in a pot and putting the pot on a fire until the water starts bubbling' executes the task 'boiling'.).freeze, - domain: "dul:Task".freeze, + comment: "A relation between an action and a task, e.g. 'putting some water in a pot and putting the pot on a fire until the water starts bubbling' executes the task 'boiling'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Task".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is executed in".freeze, - range: "dul:Action".freeze, - subPropertyOf: "dul:classifies".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Action".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#classifies".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isExpandedIn, - comment: %(A partial order relation that holds between descriptions. It represents the proper part relation between a description and another description featuring the same properties as the former, with at least one additional one. -Descriptions can be expanded either by adding other descriptions as parts, or by refining concepts that are used by them. -An 'intention' to expand must be present \(unless purely formal theories are considered, but even in this case a criterion of relevance is usually active\).).freeze, - domain: "dul:Description".freeze, + comment: "A partial order relation that holds between descriptions. It represents the proper part relation between a description and another description featuring the same properties as the former, with at least one additional one.\nDescriptions can be expanded either by adding other descriptions as parts, or by refining concepts that are used by them. \nAn 'intention' to expand must be present (unless purely formal theories are considered, but even in this case a criterion of relevance is usually active).".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is expanded in".freeze, - range: "dul:Description".freeze, - subPropertyOf: "dul:isRelatedToDescription".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRelatedToDescription".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isExpressedBy, - comment: %(A relation between a dul:SocialObject \(the 'meaning'\) and a dul:InformationObject \(the 'expression'\). -For example: 'A Beehive is a structure in which bees are kept, typically in the form of a dome or box.' \(Oxford dictionary\)'; 'the term Beehive expresses the concept Beehive in my apiculture ontology'. -The intuition for 'meaning' is intended to be very broad. A separate, large comment is included in the encoding of 'expresses', for those who want to investigate more on what kind of meaning can be represented in what form.).freeze, - domain: "dul:SocialObject".freeze, + comment: "A relation between a dul:SocialObject (the 'meaning') and a dul:InformationObject (the 'expression'). \nFor example: 'A Beehive is a structure in which bees are kept, typically in the form of a dome or box.' (Oxford dictionary)'; 'the term Beehive expresses the concept Beehive in my apiculture ontology'.\nThe intuition for 'meaning' is intended to be very broad. A separate, large comment is included in the encoding of 'expresses', for those who want to investigate more on what kind of meaning can be represented in what form.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is expressed by".freeze, - range: "dul:InformationObject".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isIntroducedBy, - comment: %(A relation between a Description and a SocialAgent, e.g. a Constitutional Charter introduces the SocialAgent 'PresidentOfRepublic'.).freeze, - domain: "dul:SocialAgent".freeze, + comment: "A relation between a Description and a SocialAgent, e.g. a Constitutional Charter introduces the SocialAgent 'PresidentOfRepublic'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialAgent".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is introduced by".freeze, - range: "dul:Description".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isLocationOf, - comment: %(A generic, relative localization, holding between any entities. E.g. 'Rome is the seat of the Pope', 'the liver is the location of the tumor'. -For 'absolute' locations, see SpaceRegion).freeze, - domain: "dul:Entity".freeze, + comment: "A generic, relative localization, holding between any entities. E.g. 'Rome is the seat of the Pope', 'the liver is the location of the tumor'.\nFor 'absolute' locations, see SpaceRegion".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is location of".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isMemberOf, - comment: %(A relation between collections and entities, e.g. 'the Night Watch by Rembrandt is in the Rijksmuseum collection'; 'Davide is member of the Pen Club', 'Igor is one the subjects chosen for the experiment'.).freeze, - domain: "dul:Entity".freeze, + comment: "A relation between collections and entities, e.g. 'the Night Watch by Rembrandt is in the Rijksmuseum collection'; 'Davide is member of the Pen Club', 'Igor is one the subjects chosen for the experiment'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is member of".freeze, - range: "dul:Collection".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isObjectIncludedIn, - domain: "dul:Object".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is object included in".freeze, - range: "dul:Situation".freeze, - subPropertyOf: "dul:hasSetting".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasSetting".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isObservableAt, - comment: %(A relation to represent a \(past, present or future\) TimeInterval at which an Entity is observable. -In order to encode a specific time, a data value should be related to the TimeInterval. -An alternative way of representing time is the datatype property: hasIntervalDate).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:isTimeOfObservationOf".freeze, + comment: "A relation to represent a (past, present or future) TimeInterval at which an Entity is observable.\nIn order to encode a specific time, a data value should be related to the TimeInterval. \nAn alternative way of representing time is the datatype property: hasIntervalDate".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isTimeOfObservationOf".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is observable at".freeze, - range: "dul:TimeInterval".freeze, - subPropertyOf: "dul:hasRegion".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasRegion".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isParameterFor, - comment: %(A Concept can have a Parameter that constrains the attributes that a classified Entity can have in a certain Situation, e.g. a 4WheelDriver Role definedIn the ItalianTrafficLaw has a MinimumAge parameter on the Amount 16.).freeze, - domain: "dul:Parameter".freeze, + comment: "A Concept can have a Parameter that constrains the attributes that a classified Entity can have in a certain Situation, e.g. a 4WheelDriver Role definedIn the ItalianTrafficLaw has a MinimumAge parameter on the Amount 16.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Parameter".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is parameter for".freeze, - range: "dul:Concept".freeze, - subPropertyOf: "dul:isRelatedToConcept".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRelatedToConcept".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isParametrizedBy, - comment: %(The relation between a Parameter, e.g. 'MajorAge', and a Region, e.g. '>17 year'.).freeze, - domain: "dul:Region".freeze, - inverseOf: "dul:parametrizes".freeze, + comment: "The relation between a Parameter, e.g. 'MajorAge', and a Region, e.g. '>17 year'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#parametrizes".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is parametrized by".freeze, - range: "dul:Parameter".freeze, - subPropertyOf: "dul:isClassifiedBy".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Parameter".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isClassifiedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isPartOf, - comment: %(A relation between any entities, e.g.'brain is a part of the human body'.).freeze, - domain: "dul:Entity".freeze, + comment: "A relation between any entities, e.g. 'brain is a part of the human body'. See dul:hasPart for additional documentation.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is part of".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#ReflexiveProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :isParticipantIn, - comment: %(A relation between an object and a process, e.g. 'John took part in the discussion', 'a large mass of snow fell during the avalanche', or 'a cook, some sugar, flour, etc. are all present in the cooking of a cake'.).freeze, - domain: "dul:Object".freeze, + comment: "A relation between an object and a process, e.g. 'John took part in the discussion', 'a large mass of snow fell during the avalanche', or 'a cook, some sugar, flour, etc. are all present in the cooking of a cake'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is participant in".freeze, - range: "dul:Event".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isPostconditionOf, - comment: %(Direct succession applied to situations. -E.g., 'Taking some rest is a postcondition of my search for a hotel'.).freeze, + comment: "Direct succession applied to situations. \nE.g., 'Taking some rest is a postcondition of my search for a hotel'.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("dul:Event".freeze, "dul:Situation".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze) ), isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is postcondition of".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("dul:Event".freeze, "dul:Situation".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze) ), - subPropertyOf: "dul:directlyFollows".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#directlyFollows".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isPreconditionOf, - comment: %(Direct precedence applied to situations. -E.g., 'claiming to find nuclear weapons in a foreign country is a precondition to declare war against it'.).freeze, + comment: "Direct precedence applied to situations. \nE.g., 'claiming to find nuclear weapons in a foreign country is a precondition to declare war against it'.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("dul:Event".freeze, "dul:Situation".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze) ), isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is precondition of".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("dul:Event".freeze, "dul:Situation".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze) ), - subPropertyOf: "dul:directlyPrecedes".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#directlyPrecedes".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze + property :isPropertPartOf, + comment: "See dul:hasProperPart for additional documentation.".freeze, + label: "is propert part of".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isPartOf".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :isQualityOf, - comment: %(A relation between entities and qualities, e.g. 'Dmitri's skin is yellowish'.).freeze, - domain: "dul:Quality".freeze, + comment: "A relation between entities and qualities, e.g. 'Dmitri's skin is yellowish'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Quality".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is quality of".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isRealizedBy, - comment: %(A relation between an information realization and an information object, e.g. the paper copy of the Italian Constitution realizes the text of the Constitution.).freeze, - domain: "dul:InformationObject".freeze, - inverseOf: "dul:realizes".freeze, + comment: "A relation between an information realization and an information object, e.g. the paper copy of the Italian Constitution realizes the text of the Constitution.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#realizes".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is realized by".freeze, - range: "dul:InformationRealization".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationRealization".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isReferenceOf, - comment: %(A relation between information objects and any Entity \(including information objects\). It can be used to talk about e.g. entities are references of proper nouns: the proper noun 'Leonardo da Vinci' isAbout the Person Leonardo da Vinci; as well as to talk about sets of entities that can be described by a common noun: the common noun 'person' isAbout the set of all persons in a domain of discourse, which can be represented in DOLCE-Ultralite as an individual of the class: Collection . -The isReferenceOf relation is irreflexive, differently from its inverse isAbout.).freeze, - domain: "dul:Entity".freeze, + comment: "A relation between information objects and any Entity (including information objects). It can be used to talk about e.g. entities are references of proper nouns: the proper noun 'Leonardo da Vinci' isAbout the Person Leonardo da Vinci; as well as to talk about sets of entities that can be described by a common noun: the common noun 'person' isAbout the set of all persons in a domain of discourse, which can be represented in DOLCE-Ultralite as an individual of the class: Collection .\nThe isReferenceOf relation is irreflexive, differently from its inverse isAbout.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is reference of".freeze, - range: "dul:InformationObject".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isReferenceOfInformationRealizedBy, - comment: %(The relation between entities and information realizations, e.g. between Italy and a paper copy of the text of the Italian Constitution.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:realizesInformationAbout".freeze, + comment: "The relation between entities and information realizations, e.g. between Italy and a paper copy of the text of the Italian Constitution.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#realizesInformationAbout".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is reference of information realized by".freeze, - range: "dul:InformationRealization".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationRealization".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isRegionFor, - comment: %(A relation between entities and regions, e.g. 'the color of my car is red'.).freeze, - domain: "dul:Region".freeze, + comment: "A relation between entities and regions, e.g. 'the color of my car is red'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is region for".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isRelatedToConcept, - comment: %(Any relation between concepts, e.g. superordinated, conceptual parthood, having a parameter, having a task, superordination, etc.).freeze, - domain: "dul:Concept".freeze, - inverseOf: "dul:isRelatedToConcept".freeze, + comment: "Any relation between concepts, e.g. superordinated, conceptual parthood, having a parameter, having a task, superordination, etc.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRelatedToConcept".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is related to concept".freeze, - range: "dul:Concept".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :isRelatedToDescription, - comment: %(Any relation between descriptions.).freeze, - domain: "dul:Description".freeze, - inverseOf: "dul:isRelatedToDescription".freeze, + comment: "Any relation between descriptions.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRelatedToDescription".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is related to description".freeze, - range: "dul:Description".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :isRoleDefinedIn, - comment: %(A relation between a description and a role, e.g. the role 'Ingredient' is defined in the recipe for a cake.).freeze, - domain: "dul:Role".freeze, + comment: "A relation between a description and a role, e.g. the role 'Ingredient' is defined in the recipe for a cake.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Role".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is role defined in".freeze, - range: "dul:Description".freeze, - subPropertyOf: "dul:isDefinedIn".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDefinedIn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isRoleOf, - comment: %(A relation between an object and a role, e.g. 'student' is the role of 'John'.).freeze, - domain: "dul:Role".freeze, + comment: "A relation between an object and a role, e.g. 'student' is the role of 'John'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Role".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is role of".freeze, - range: "dul:Object".freeze, - subPropertyOf: "dul:classifies".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Object".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#classifies".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isSatisfiedBy, - comment: %(A relation between a Situation and a Description, e.g. the execution of a Plan satisfies that plan.).freeze, - domain: "dul:Description".freeze, - inverseOf: "dul:satisfies".freeze, + comment: "A relation between a Situation and a Description, e.g. the execution of a Plan satisfies that plan.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#satisfies".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is satisfied by".freeze, - range: "dul:Situation".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isSettingFor, - comment: %(A relation between situations and entities, e.g. 'this morning I've prepared my coffee with a new fantastic Arabica', i.e.: the preparation of my coffee this morning is the setting for \(an amount of\) a new fantastic Arabica.).freeze, - domain: "dul:Situation".freeze, + comment: "A relation between situations and entities, e.g. 'this morning I've prepared my coffee with a new fantastic Arabica', i.e.: the preparation of my coffee this morning is the setting for (an amount of) a new fantastic Arabica.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is setting for".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isSpecializedBy, - comment: %(A partial order relation that holds between social objects. It represents the subsumption relation between e.g. a Concept and another Concept that is broader in extensional interpretation, but narrowe in intensional interpretation. -E.g. PhDStudent Role specializes Student Role).freeze, - domain: "dul:SocialObject".freeze, - inverseOf: "dul:specializes".freeze, + comment: "A partial order relation that holds between social objects. It represents the subsumption relation between e.g. a Concept and another Concept that is broader in extensional interpretation, but narrowe in intensional interpretation.\nE.g. PhDStudent Role specializes Student Role".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#specializes".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is specialized by".freeze, - range: "dul:SocialObject".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :isSubordinatedTo, - comment: %(Direct succession applied to concepts. E.g. the role 'Officer' is subordinated to 'Director'.).freeze, - domain: "dul:Concept".freeze, - inverseOf: "dul:isSuperordinatedTo".freeze, + comment: "Direct succession applied to concepts. E.g. the role 'Officer' is subordinated to 'Director'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSuperordinatedTo".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is subordinated to".freeze, - range: "dul:Concept".freeze, - subPropertyOf: ["dul:directlyFollows".freeze, "dul:isRelatedToConcept".freeze], - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + subPropertyOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#directlyFollows".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRelatedToConcept".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isSuperordinatedTo, - comment: %(Direct precedence applied to concepts. E.g. the role 'Executive' is superordinated to 'DepartmentManager'.).freeze, - domain: "dul:Concept".freeze, + comment: "Direct precedence applied to concepts. E.g. the role 'Executive' is superordinated to 'DepartmentManager'.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is superordinated to".freeze, - range: "dul:Concept".freeze, - subPropertyOf: ["dul:directlyPrecedes".freeze, "dul:isRelatedToConcept".freeze], - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + subPropertyOf: ["http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#directlyPrecedes".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRelatedToConcept".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isTaskDefinedIn, - comment: %(A relation between a description and a task, e.g. the task 'boil' is defined in a recipe for a cake.).freeze, - domain: "dul:Task".freeze, + comment: "A relation between a description and a task, e.g. the task 'boil' is defined in a recipe for a cake.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Task".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is task defined in".freeze, - range: "dul:Description".freeze, - subPropertyOf: "dul:isDefinedIn".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isDefinedIn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isTaskOf, - comment: %(A relation between roles and tasks, e.g. 'students have the duty of giving exams' \(i.e. the Role 'student' hasTask the Task 'giving exams'\).).freeze, - domain: "dul:Task".freeze, + comment: "A relation between roles and tasks, e.g. 'students have the duty of giving exams' (i.e. the Role 'student' hasTask the Task 'giving exams').".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Task".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is task of".freeze, - range: "dul:Role".freeze, - subPropertyOf: "dul:isRelatedToConcept".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Role".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRelatedToConcept".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isTimeIncludedIn, - domain: "dul:TimeInterval".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is time included in".freeze, - range: "dul:Situation".freeze, - subPropertyOf: "dul:hasSetting".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasSetting".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isTimeIntervalOf, - comment: %(The generic relation between time intervals and events.).freeze, - domain: "dul:TimeInterval".freeze, + comment: "The generic relation between time intervals and events.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is time interval of".freeze, - range: "dul:Event".freeze, - subPropertyOf: "dul:isRegionFor".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Event".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRegionFor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isTimeOfObservationOf, - comment: %(A relation to represent a \(past, present or future\) TimeInterval at which an Entity is observable. -In order to encode a specific time, a data value should be related to the TimeInterval. -An alternative way of representing time is the datatype property: hasIntervalDate).freeze, - domain: "dul:TimeInterval".freeze, + comment: "A relation to represent a (past, present or future) TimeInterval at which an Entity is observable.\nIn order to encode a specific time, a data value should be related to the TimeInterval. \nAn alternative way of representing time is the datatype property: hasIntervalDate".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#TimeInterval".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is time of observation of".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:isRegionFor".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isRegionFor".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isUnifiedBy, - comment: %(A Collection has a unification criterion, provided by a Description; for example, a community of practice can be unified by a shared theory or interest, e.g. the community that makes research on mirror neurons shares some core knowledge about mirror neurons, which can be represented as a Description MirrorNeuronTheory that unifies the community. There can be several unifying descriptions.).freeze, - domain: "dul:Collection".freeze, - inverseOf: "dul:unifies".freeze, + comment: "A Collection has a unification criterion, provided by a Description; for example, a community of practice can be unified by a shared theory or interest, e.g. the community that makes research on mirror neurons shares some core knowledge about mirror neurons, which can be represented as a Description MirrorNeuronTheory that unifies the community. There can be several unifying descriptions.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#unifies".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is unified by".freeze, - range: "dul:Description".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :nearTo, - comment: %(Generic distance relation between any Entity\(s\). E.g. Rome is near to Florence, astronomy is near to physics.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:nearTo".freeze, + comment: "Generic distance relation between any Entity(s). E.g. Rome is near to Florence, astronomy is near to physics.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#nearTo".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "near to".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :overlaps, - comment: %(A schematic relation between any entities, e.g. 'the chest region overlaps with the abdomen region', 'my spoken words overlap with hers', 'the time of my leave overlaps with the time of your arrival', 'fibromyalgia overlaps with other conditions'. -Subproperties and restrictions can be used to specialize overlaps for objects, events, time intervals, etc.).freeze, - domain: "dul:Entity".freeze, - inverseOf: "dul:overlaps".freeze, + comment: "A schematic relation between any entities, e.g. 'the chest region overlaps with the abdomen region', 'my spoken words overlap with hers', 'the time of my leave overlaps with the time of your arrival', 'fibromyalgia overlaps with other conditions'.\nSubproperties and restrictions can be used to specialize overlaps for objects, events, time intervals, etc.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#overlaps".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "overlaps".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :parametrizes, - comment: %(The relation between a Parameter, e.g. 'MajorAgeLimit', and a Region, e.g. '18_year'. -For a more data-oriented relation, see hasDataValue).freeze, - domain: "dul:Parameter".freeze, + comment: "The relation between a Parameter, e.g. 'MajorAgeLimit', and a Region, e.g. '18_year'.\nFor a more data-oriented relation, see hasDataValue".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Parameter".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "parametrizes".freeze, - range: "dul:Region".freeze, - subPropertyOf: "dul:classifies".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Region".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#classifies".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :precedes, - comment: %(A relation between entities, expressing a 'sequence' schema. -E.g. 'year 1999 precedes 2000', 'deciding what coffee to use' precedes 'preparing coffee', 'World War II follows World War I', 'in the Milan to Rome autoroute, Bologna precedes Florence', etc. -It can then be used between tasks, processes, time intervals, spatially locate objects, situations, etc. -Subproperties can be defined in order to distinguish the different uses.).freeze, - domain: "dul:Entity".freeze, + comment: "A relation between entities, expressing a 'sequence' schema. \nE.g. 'year 1999 precedes 2000', 'deciding what coffee to use' precedes 'preparing coffee', 'World War II follows World War I', 'in the Milan to Rome autoroute, Bologna precedes Florence', etc.\nIt can then be used between tasks, processes, time intervals, spatially locate objects, situations, etc. \nSubproperties can be defined in order to distinguish the different uses.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "precedes".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :realizes, - comment: %(A relation between an information realization and an information object, e.g. the paper copy of the Italian Constitution realizes the text of the Constitution.).freeze, - domain: "dul:InformationRealization".freeze, + comment: "A relation between an information realization and an information object, e.g. the paper copy of the Italian Constitution realizes the text of the Constitution.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationRealization".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "realizes".freeze, - range: "dul:InformationObject".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationObject".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :realizesInformationAbout, - comment: %(The relation between entities and information realizations, e.g. between Italy and a paper copy of the text of the Italian Constitution.).freeze, - domain: "dul:InformationRealization".freeze, + comment: "The relation between entities and information realizations, e.g. between Italy and a paper copy of the text of the Italian Constitution.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#InformationRealization".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#realizes".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isAbout".freeze), isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "realizes information about".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze + property :realizesSelfInformation, + comment: "This relation is a workaround to enable local reflexivity axioms (Self) working with non-simple properties; in this case, dul:realizesInformation About.".freeze, + "http://purl.org/dc/elements/1.1/creator": "Aldo Gangemi".freeze, + "http://purl.org/dc/elements/1.1/date": "2021-04-05T22:31:22Z".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#realizesInformationAbout".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :sameSettingAs, - domain: "dul:Entity".freeze, - inverseOf: "dul:sameSettingAs".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#hasSetting".freeze, "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#isSettingFor".freeze), + inverseOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#sameSettingAs".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "is in the same setting as".freeze, - range: "dul:Entity".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :satisfies, - comment: %(A relation between a Situation and a Description, e.g. the execution of a Plan satisfies that plan.).freeze, - domain: "dul:Situation".freeze, + comment: "A relation between a Situation and a Description, e.g. the execution of a Plan satisfies that plan.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "satisfies".freeze, - range: "dul:Description".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :specializes, - comment: %(A partial order relation that holds between social objects. -It mainly represents the subsumption relation between e.g. a Concept or Description and another Concept \(resp. Description\) that is broader in extensional interpretation, but narrower in intensional interpretation. For example, the role PhDStudent specializes the role Student. -Another possible use is between a Collection that isCoveredBy a Concept A, and another Collection that isCoveredBy a Concept B that on its turm specializes A. For example, the 70,000 series Selmer Mark VI saxophone Collection specializes the Selmer Mark VI saxophone Collection.).freeze, - domain: "dul:SocialObject".freeze, + comment: "A partial order relation that holds between social objects. \nIt mainly represents the subsumption relation between e.g. a Concept or Description and another Concept (resp. Description) that is broader in extensional interpretation, but narrower in intensional interpretation. For example, the role PhDStudent specializes the role Student.\nAnother possible use is between a Collection that isCoveredBy a Concept A, and another Collection that isCoveredBy a Concept B that on its turm specializes A. For example, the 70,000 series Selmer Mark VI saxophone Collection specializes the Selmer Mark VI saxophone Collection.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "specializes".freeze, - range: "dul:SocialObject".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#SocialObject".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :unifies, - comment: %(A Collection has a unification criterion, provided by a Description; for example, a community of practice can be unified by a shared theory or interest, e.g. the community that makes research on mirror neurons shares some core knowledge about mirror neurons, which can be represented as a Description MirrorNeuronTheory that unifies the community. There can be several unifying descriptions.).freeze, - domain: "dul:Description".freeze, + comment: "A Collection has a unification criterion, provided by a Description; for example, a community of practice can be unified by a shared theory or interest, e.g. the community that makes research on mirror neurons shares some core knowledge about mirror neurons, which can be represented as a Description MirrorNeuronTheory that unifies the community. There can be several unifying descriptions.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "unifies".freeze, - range: "dul:Collection".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Collection".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :usesConcept, - comment: %(A generic relation holding between a Description and a Concept. In order to be used, a Concept must be previously definedIn another Description. This last condition cannot be encoded for object properties in OWL.).freeze, - domain: "dul:Description".freeze, + comment: "A generic relation holding between a Description and a Concept. In order to be used, a Concept must be previously definedIn another Description. This last condition cannot be encoded for object properties in OWL.".freeze, + domain: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description".freeze, isDefinedBy: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl".freeze, label: "uses concept".freeze, - range: "dul:Concept".freeze, - subPropertyOf: "dul:associatedWith".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Concept".freeze, + subPropertyOf: "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#associatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze end end diff --git a/lib/vocabs/essglobal.rb b/lib/vocabs/essglobal.rb index 90633d37..883ef7ca 100644 --- a/lib/vocabs/essglobal.rb +++ b/lib/vocabs/essglobal.rb @@ -2,358 +2,354 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/essglobal/vocab/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class ESSGLOBAL < RDF::StrictVocabulary - # end - class ESSGLOBAL < RDF::StrictVocabulary("http://purl.org/essglobal/vocab/") +module LifePreserver::Vocab + ESSGlobal = Class.new(RDF::StrictVocabulary("http://purl.org/essglobal/vocab/")) do # Class definitions term :Address, - "dc:description": "A phisical address of a Location of sale, of a SSE Initiative or of a Network ".freeze, - "dc:issued": "2015-05-04".freeze, - "dc:modified": "2015-05-04".freeze, + "http://purl.org/dc/terms/description": "A phisical address of a Location of sale, of a SSE Initiative or of a Network ".freeze, + "http://purl.org/dc/terms/issued": "2015-05-04".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Address".freeze, - type: "rdf:Class".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Class".freeze term :Cost, - "dc:description": "The cost for a particular product or service produced by an SSE initiative or network, including all costs. The price will be this cost added to delivery costs and sales margin as can be seen in the sale-option class.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, + "http://purl.org/dc/terms/description": "The cost for a particular product or service produced by an SSE initiative or network, including all costs. The price will be this cost added to delivery costs and sales margin as can be seen in the sale-option class.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Cost".freeze, - type: "rdf:Class".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Class".freeze term :CostComposition, - "dc:description": "A breakdown of all inputs (as taxes and raw materials) and labour costs that make up the product or service's final cost. An open cost is a pre-requisite for solidarity fair trade systems. ".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, + "http://purl.org/dc/terms/description": "A breakdown of all inputs (as taxes and raw materials) and labour costs that make up the product or service's final cost. An open cost is a pre-requisite for solidarity fair trade systems. ".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Cost Composition".freeze, - type: "rdf:Class".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Class".freeze term :Input, - "dc:description": "A product, service, or activity that goes into making the final product or service. ".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, + "http://purl.org/dc/terms/description": "A product, service, or activity that goes into making the final product or service. ".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Input".freeze, - type: "rdf:Class".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Class".freeze term :Labour, - "dc:description": "Work done for specific tasks related to the provision of goods or services offered by the SSE initiative. Generally it can be human, animal or machine labour, but in ESSglobal it's human labour only.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, + "http://purl.org/dc/terms/description": "Work done for specific tasks related to the provision of goods or services offered by the SSE initiative. Generally it can be human, animal or machine labour, but in ESSglobal it's human labour only.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Labour".freeze, - type: "rdf:Class".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Class".freeze term :LocationOfSale, - "dc:description": "Place where the goods or services of an SSE initiative are provided. It can be self owned shops, but also partner places where the products or services are available among those from other initiatives. ".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, + "http://purl.org/dc/terms/description": "Place where the goods or services of an SSE initiative are provided. It can be self owned shops, but also partner places where the products or services are available among those from other initiatives. ".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Location of Sale".freeze, subClassOf: "http://purl.org/goodrelations/v1/Location".freeze, - type: "rdf:Class".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Class".freeze term :Network, - "dc:description": "A network of individuals and/or organizations that participate in the SSE. ".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, + "http://purl.org/dc/terms/description": "A network of individuals and/or organizations that participate in the SSE. ".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Network".freeze, subClassOf: "http://www.w3.org/ns/org/OrganizationColaboration".freeze, - type: "rdf:Class".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Class".freeze term :OtherCosts, - "dc:description": "Other costs which impact on the final cost of a product or service provided by an SSE initiative, other than input or labour, like taxes, deprecation of machinery, funds, etc. The delivery costs are not included in these costs: they are included in the sale-options class.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, + "http://purl.org/dc/terms/description": "Other costs which impact on the final cost of a product or service provided by an SSE initiative, other than input or labour, like taxes, deprecation of machinery, funds, etc. The delivery costs are not included in these costs: they are included in the sale-options class.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Other Costs".freeze, - type: "rdf:Class".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Class".freeze term :ProductOrService, - "dc:description": "The good offered by an SSE initiative. It may be material goods or provision of services. ".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, + "http://purl.org/dc/terms/description": "The good offered by an SSE initiative. It may be material goods or provision of services. ".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Product or Service".freeze, subClassOf: "http://purl.org/goodrelations/v1/ProductOrService".freeze, - type: "rdf:Class".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Class".freeze term :SSEInitiative, - "dc:description": "An organization, practice, network, or other initiative that is recognized as belonging within the social solidarity economy. ".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, + "http://purl.org/dc/terms/description": "An organization, practice, network, or other initiative that is recognized as belonging within the social solidarity economy. ".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "SSE Initiative".freeze, subClassOf: "http://www.w3.org/ns/org/OrganizationUnit".freeze, - type: "rdf:Class".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Class".freeze term :SaleOption, - "dc:description": "A Product sold at a certain price, under specific properties, in a certain Location. ".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, + "http://purl.org/dc/terms/description": "A Product sold at a certain price, under specific properties, in a certain Location. ".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Sale Option".freeze, - type: "rdf:Class".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Class".freeze # Property definitions property :"1.0/isMain", - "dc:description": "If the Location of Sale is the headquarter of the SSE initiative?".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:LocationOfSale".freeze, + domain: "http://purl.org/essglobal/vocab/LocationOfSale".freeze, + "http://purl.org/dc/terms/description": "If the Location of Sale is the headquarter of the SSE initiative?".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, isDefinedBy: "http://purl.org/essglobal/vocab/1.0/".freeze, label: "Is Main".freeze, - range: "rdfs:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :availableAt, - "dc:description": "A Product or Service is sold at a sale location under specific definitions.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:SaleOption".freeze, + domain: "http://purl.org/essglobal/vocab/SaleOption".freeze, equivalentProperty: "http://purl.org/goodrelations/v1/availableAtOrFrom".freeze, - isDefinedBy: "essglobal:".freeze, + "http://purl.org/dc/terms/description": "A Product or Service is sold at a sale location under specific definitions.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Available At".freeze, - range: "essglobal:LocationOfSale".freeze, - type: "rdf:Property".freeze + range: "http://purl.org/essglobal/vocab/LocationOfSale".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :costPerUnit, - "dc:description": "The cost per unit of input.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:Input".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/Input".freeze, + "http://purl.org/dc/terms/description": "The cost per unit of input.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Cost per Unit".freeze, - range: "rdfs:decimal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#decimal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :deliveryRangeDistance, - "dc:description": "Delivery range of product or service, in kilometers or miles.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:LocationOfSale".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/LocationOfSale".freeze, + "http://purl.org/dc/terms/description": "Delivery range of product or service, in kilometers or miles.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Delivery Range (distance)".freeze, - range: "rdfs:decimal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#decimal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :economicSector, - "dc:description": "A categorization of the type of activities carried on by SSE initiatives, depending of its nature, raw materials and methodology.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:SSEInitiative".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/SSEInitiative".freeze, + "http://purl.org/dc/terms/description": "A categorization of the type of activities carried on by SSE initiatives, depending of its nature, raw materials and methodology.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + "http://www.w3.org/2000/01/rdf-schema#Datatype": "http://purl.org/essglobal/standard/activities/".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Economic Sector".freeze, - "rdfs:Datatype": "http://purl.org/essglobal/standard/activities/".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasAddress, - "dc:description": "The address that the SSE initiative, Network or Location of Sale have.".freeze, - "dc:issued": "2015-05-04".freeze, - "dc:modified": "2015-05-04".freeze, - domain: ["essglobal:Network".freeze, "essglobal:ProductOrService".freeze], - isDefinedBy: "essglobal:".freeze, + domain: ["http://purl.org/essglobal/vocab/Network".freeze, "http://purl.org/essglobal/vocab/ProductOrService".freeze], + "http://purl.org/dc/terms/description": "The address that the SSE initiative, Network or Location of Sale have.".freeze, + "http://purl.org/dc/terms/issued": "2015-05-04".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Has an Address".freeze, - range: "essglobal:LocationOfSale".freeze, - type: "rdf:Property".freeze + range: "http://purl.org/essglobal/vocab/LocationOfSale".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasCost, - "dc:description": "The cost for a particular product or service produced by an SSE initiative or network.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:ProductOrService".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/ProductOrService".freeze, + "http://purl.org/dc/terms/description": "The cost for a particular product or service produced by an SSE initiative or network.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Has Cost".freeze, - range: "essglobal:Cost".freeze, - type: "rdf:Property".freeze + range: "http://purl.org/essglobal/vocab/Cost".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasImpactOnPrice, - "dc:description": "Does the input contribute to the monetary price of the final product? Whereas many (perhaps most) inputs do contribute to the monetary price of the final product or service, some don't. For example, volunteer labour may contribute greatly to production without adding to the monetary cost of production. \n".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: ["essglobal:Input".freeze, "essglobal:OtherCosts".freeze], - isDefinedBy: "essglobal:".freeze, + domain: ["http://purl.org/essglobal/vocab/Input".freeze, "http://purl.org/essglobal/vocab/OtherCosts".freeze], + "http://purl.org/dc/terms/description": "Does the input contribute to the monetary price of the final product? Whereas many (perhaps most) inputs do contribute to the monetary price of the final product or service, some don't. For example, volunteer labour may contribute greatly to production without adding to the monetary cost of production. \n".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Has impact on price".freeze, - range: "rdfs:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasInputCost, - "dc:description": "A product, service, or activity that goes into making the final product or service.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:CostComposition".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/CostComposition".freeze, + "http://purl.org/dc/terms/description": "A product, service, or activity that goes into making the final product or service.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Has input".freeze, - range: "essglobal:Input".freeze, - type: "rdf:Property".freeze + range: "http://purl.org/essglobal/vocab/Input".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasLabourCost, - "dc:description": "Work done for specific tasks related to the provision of goods or services offered by the SSE initiative. Generally it can be human, animal or machine labour, but in ESSglobal it's human labour only.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:CostComposition".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/CostComposition".freeze, + "http://purl.org/dc/terms/description": "Work done for specific tasks related to the provision of goods or services offered by the SSE initiative. Generally it can be human, animal or machine labour, but in ESSglobal it's human labour only.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Has Labour".freeze, - range: "essglobal:Labour".freeze, - type: "rdf:Property".freeze + range: "http://purl.org/essglobal/vocab/Labour".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasOtherCosts, - "dc:description": "Other costs which impact on the final cost of a product or service provided by an SSE initiative, other than input or labour, like taxes, deprecation of machinery, funds, etc. The delivery costs are not included in these costs: they are included in the sale-options class.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:CostComposition".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/CostComposition".freeze, + "http://purl.org/dc/terms/description": "Other costs which impact on the final cost of a product or service provided by an SSE initiative, other than input or labour, like taxes, deprecation of machinery, funds, etc. The delivery costs are not included in these costs: they are included in the sale-options class.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Has Other Costs".freeze, - range: "essglobal:OtherCosts".freeze, - type: "rdf:Property".freeze + range: "http://purl.org/essglobal/vocab/OtherCosts".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasProductOrService, - "dc:description": "A Network or SSE Initiative produce products or make available services.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: ["essglobal:Network".freeze, "essglobal:SSEInitiative".freeze], + domain: ["http://purl.org/essglobal/vocab/Network".freeze, "http://purl.org/essglobal/vocab/SSEInitiative".freeze], equivalentProperty: "http://purl.org/goodrelations/v1/offers".freeze, - isDefinedBy: "essglobal:".freeze, + "http://purl.org/dc/terms/description": "A Network or SSE Initiative produce products or make available services.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Has Product or Service".freeze, - range: "essglobal:ProductOrService".freeze, - type: "rdf:Property".freeze + range: "http://purl.org/essglobal/vocab/ProductOrService".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasSaleOption, - "dc:description": "A sale option si connected to a place where the good or service is provided.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:ProductOrService".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/ProductOrService".freeze, + "http://purl.org/dc/terms/description": "A sale option si connected to a place where the good or service is provided.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Has a Sale Option".freeze, - range: "essglobal:SaleOption".freeze, - type: "rdf:Property".freeze + range: "http://purl.org/essglobal/vocab/SaleOption".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isAvailable, - "dc:description": "If the Sale Option (the product/service at a certain price, under specific properties, in a specific Sale Location) is available.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:SaleOption".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/SaleOption".freeze, + "http://purl.org/dc/terms/description": "If the Sale Option (the product/service at a certain price, under specific properties, in a specific Sale Location) is available.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Is available".freeze, - range: "rdfs:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isComposedBy, - "dc:description": "A breakdown of all inputs (as taxes and raw materials) and labour costs that make up the product or service's final cost. An open cost is a pre-requisite for solidarity fair trade systems.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:Cost".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/Cost".freeze, + "http://purl.org/dc/terms/description": "A breakdown of all inputs (as taxes and raw materials) and labour costs that make up the product or service's final cost. An open cost is a pre-requisite for solidarity fair trade systems.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Is Composed By".freeze, - range: "essglobal:CostComposition".freeze, - type: "rdf:Property".freeze + range: "http://purl.org/essglobal/vocab/CostComposition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isSSE, - "dc:description": "If the Location of Sale is a place belonging to the SSE.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:LocationOfSale".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/LocationOfSale".freeze, + "http://purl.org/dc/terms/description": "If the Location of Sale is a place belonging to the SSE.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Is SSE Initiative".freeze, - range: "rdfs:boolean".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#boolean".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :legalForm, - "dc:description": "The legal form of a SSE Initiative or Network.To be described.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: ["essglobal:Network".freeze, "essglobal:SSEInitiative".freeze], - isDefinedBy: "essglobal:".freeze, + domain: ["http://purl.org/essglobal/vocab/Network".freeze, "http://purl.org/essglobal/vocab/SSEInitiative".freeze], + "http://purl.org/dc/terms/description": "The legal form of a SSE Initiative or Network.To be described.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + "http://www.w3.org/2000/01/rdf-schema#Datatype": "http://purl.org/essglobal/standard/legal-form/".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Legal Form".freeze, - "rdfs:Datatype": "http://purl.org/essglobal/standard/legal-form/".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mission, - "dc:description": "The initiative's vision, values, and principles.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: ["essglobal:Network".freeze, "essglobal:SSEInitiative".freeze], - isDefinedBy: "essglobal:".freeze, + domain: ["http://purl.org/essglobal/vocab/Network".freeze, "http://purl.org/essglobal/vocab/SSEInitiative".freeze], + "http://purl.org/dc/terms/description": "The initiative's vision, values, and principles.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Mission".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 :objective, - "dc:description": "Actionable and measurable steps the SSE Initiative is taking to carry out its mission. ".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: ["essglobal:Network".freeze, "essglobal:SSEInitiative".freeze], - isDefinedBy: "essglobal:".freeze, + domain: ["http://purl.org/essglobal/vocab/Network".freeze, "http://purl.org/essglobal/vocab/SSEInitiative".freeze], + "http://purl.org/dc/terms/description": "Actionable and measurable steps the SSE Initiative is taking to carry out its mission. ".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Objective".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :qualifier, - "dc:description": "\n\t\tAspect that differentiates the product or service of an SSE initiative which is related to the form of production, the actors involved, the use of only organic materials, etc. \n\t\tExamples are organic, permacultural, made with recycled raw materials, indigenous, made by women, etc.\n ".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: ["essglobal:Input".freeze, "essglobal:ProductOrService".freeze], - isDefinedBy: "essglobal:".freeze, + domain: ["http://purl.org/essglobal/vocab/Input".freeze, "http://purl.org/essglobal/vocab/ProductOrService".freeze], + "http://purl.org/dc/terms/description": "\n\t\tAspect that differentiates the product or service of an SSE initiative which is related to the form of production, the actors involved, the use of only organic materials, etc. \n\t\tExamples are organic, permacultural, made with recycled raw materials, indigenous, made by women, etc.\n ".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + "http://www.w3.org/2000/01/rdf-schema#Datatype": "http://purl.org/essglobal/standard/qualifiers/".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Qualifier".freeze, - "rdfs:Datatype": "http://purl.org/essglobal/standard/qualifiers/".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :quantityPerProductOrServiceUnit, - "dc:description": "The quantity of the input that goes into providing one unit of the final product or service. ".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:Input".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/Input".freeze, + "http://purl.org/dc/terms/description": "The quantity of the input that goes into providing one unit of the final product or service. ".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Quantity per Product or Service Unit".freeze, - range: "rdfs:decimal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#decimal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :salesMarginPercentage, - "dc:description": "\n\t\tMargin (on sales) is the difference between selling price and cost. This difference is typically expressed either as a percentage of selling price or on a per-unit basis. This attribute is the percentage sales margin. \n ".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:SaleOption".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/SaleOption".freeze, + "http://purl.org/dc/terms/description": "\n\t\tMargin (on sales) is the difference between selling price and cost. This difference is typically expressed either as a percentage of selling price or on a per-unit basis. This attribute is the percentage sales margin. \n ".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Sales Margin (percentage)".freeze, - range: "rdfs:decimal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#decimal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :salesMarginValue, - "dc:description": "\n\t\tMargin (on sales) is the difference between selling price and cost. This difference is typically expressed either as a percentage of selling price or on a per-unit basis. The present attribute is an absolute value for sales margin on each unit of the product or service offered in the location.\n\t".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2014-04-15".freeze, - domain: "essglobal:SaleOption".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/SaleOption".freeze, + "http://purl.org/dc/terms/description": "\n\t\tMargin (on sales) is the difference between selling price and cost. This difference is typically expressed either as a percentage of selling price or on a per-unit basis. The present attribute is an absolute value for sales margin on each unit of the product or service offered in the location.\n\t".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2014-04-15".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Sales Margin (value)".freeze, - range: "rdfs:decimal".freeze, - type: "rdf:Property".freeze + range: "http://www.w3.org/2000/01/rdf-schema#decimal".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :state, - "dc:description": "The State of the Address.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:Address".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/Address".freeze, + "http://purl.org/dc/terms/description": "The State of the Address.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "State".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 :totalMen, - "dc:description": "The number of men that work in the SSE Initiative.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:SSEInitiative".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/SSEInitiative".freeze, + "http://purl.org/dc/terms/description": "The number of men that work in the SSE Initiative.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Total of Men".freeze, range: "http://http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalOfMembers, - "dc:description": "The total number of members that work in the SSE Initiative.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:SSEInitiative".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/SSEInitiative".freeze, + "http://purl.org/dc/terms/description": "The total number of members that work in the SSE Initiative.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Total of Members".freeze, range: "http://http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :totalWomen, - "dc:description": "The number of women that work in the SSE Initiative.".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:SSEInitiative".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/SSEInitiative".freeze, + "http://purl.org/dc/terms/description": "The number of women that work in the SSE Initiative.".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Total of Women".freeze, range: "http://http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :typeOfLabour, - "dc:description": "The human labour dedicated for providing goods or services can be of different types, depending on the established labour relations. For example, it might be associative (i.e., the worker is one of the collective owners of the SSE initiative), but it might also be subordinated work (an employee of the SSE initiative), volunteer work or externally hired work (like a freelancer or a partner initiative).".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:Labour".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/Labour".freeze, + "http://purl.org/dc/terms/description": "The human labour dedicated for providing goods or services can be of different types, depending on the established labour relations. For example, it might be associative (i.e., the worker is one of the collective owners of the SSE initiative), but it might also be subordinated work (an employee of the SSE initiative), volunteer work or externally hired work (like a freelancer or a partner initiative).".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + "http://www.w3.org/2000/01/rdf-schema#Datatype": "http://purl.org/essglobal/standard/type-of-labour/".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Type of Labour".freeze, - "rdfs:Datatype": "http://purl.org/essglobal/standard/type-of-labour/".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :unit, - "dc:description": "The unit that a product or service is measured in, in the Universal Unit System (e.g., kilograms, hours)".freeze, - "dc:issued": "2014-02-06".freeze, - "dc:modified": "2015-05-04".freeze, - domain: "essglobal:Input".freeze, - isDefinedBy: "essglobal:".freeze, + domain: "http://purl.org/essglobal/vocab/Input".freeze, + "http://purl.org/dc/terms/description": "The unit that a product or service is measured in, in the Universal Unit System (e.g., kilograms, hours)".freeze, + "http://purl.org/dc/terms/issued": "2014-02-06".freeze, + "http://purl.org/dc/terms/modified": "2015-05-04".freeze, + isDefinedBy: "http://purl.org/essglobal/vocab/".freeze, label: "Unit".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/vocabs/essglobal_activities.rb b/lib/vocabs/essglobal_activities.rb index cd93b18b..2209a3fd 100644 --- a/lib/vocabs/essglobal_activities.rb +++ b/lib/vocabs/essglobal_activities.rb @@ -2,151 +2,147 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/essglobal/standard/activities/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class ESSGLOBALActivities < RDF::Vocabulary - # end - class ESSGLOBALActivities < RDF::Vocabulary("http://purl.org/essglobal/standard/activities/") +module LifePreserver::Vocab + ESSGlobalActivities = Class.new(RDF::Vocabulary("http://purl.org/essglobal/standard/activities/")) do # Extra definitions term :"#A01", altLabel: ["A".freeze, "Agriculture, forestry and fishing".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Integrates the sectors of agriculture, forestry and fishing".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Agriculture and environment".freeze, - "skos:scopeNote": "Integrates the sectors of agriculture, forestry and fishing".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A02", altLabel: ["B".freeze, "Mining and quarrying".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Integra sectors of the extractive industry".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Mining and quarrying".freeze, - "skos:scopeNote": "Integra sectors of the extractive industry".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A03", altLabel: ["C".freeze, "Manufacturing".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Integrates the manufacturing sectors".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Craftmanship and manufacturing".freeze, - "skos:scopeNote": "Integrates the manufacturing sectors".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A04", altLabel: ["D".freeze, "Electricity, gas, steam and air conditioning supply".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Includes the sectors of electricity, gas, steam and air conditioning".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Energy production and distribution".freeze, - "skos:scopeNote": "Includes the sectors of electricity, gas, steam and air conditioning".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A05", altLabel: ["E".freeze, "Water supply; sewerage, waste management and remediation activities".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Includes the sectors of water supply sanitation activities, waste management and remediation".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Recycling, waste treatment, water cycle and ecological restoration".freeze, - "skos:scopeNote": "Includes the sectors of water supply sanitation activities, waste management and remediation".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A06", altLabel: ["Construction".freeze, "F".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Includes the sectors of construction".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Construction, public works and refurbishing".freeze, - "skos:scopeNote": "Includes the sectors of construction".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A07", altLabel: ["G".freeze, "Wholesale and retail trade; repair of motor vehicles and motorcycles".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Includes the sectors of trade and retail trade, repair of motor vehicles and motorcycles".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Trade and distribution".freeze, - "skos:scopeNote": "Includes the sectors of trade and retail trade, repair of motor vehicles and motorcycles".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A08", altLabel: ["H".freeze, "Transportation and storage".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Includes the sectors of transport and storage".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Transport, logistics and storage".freeze, - "skos:scopeNote": "Includes the sectors of transport and storage".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A09", altLabel: ["Accommodation and food service activities".freeze, "I".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Integrates the industry sectors of accommodation and food services".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Hospitality and food service activities".freeze, - "skos:scopeNote": "Integrates the industry sectors of accommodation and food services".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A10", altLabel: ["Information and communication".freeze, "J".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Integrates information and communication sectors".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Information, communication and technologies".freeze, - "skos:scopeNote": "Integrates information and communication sectors".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A11", altLabel: ["Financial and insurance activities".freeze, "K".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Includes the sectors of financial and insurance activities".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Financial, insurance and related activities".freeze, - "skos:scopeNote": "Includes the sectors of financial and insurance activities".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A12", altLabel: ["L".freeze, "Real estate activities".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Includes the sectors of real estate activities".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Habitat and housing".freeze, - "skos:scopeNote": "Includes the sectors of real estate activities".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A13", altLabel: ["M".freeze, "Professional, scientific and technical activities".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Integrates the sectors of professional, scientific and technical".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Professional, scientific and technical activities".freeze, - "skos:scopeNote": "Integrates the sectors of professional, scientific and technical".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A14", altLabel: ["Administrative and support service activities".freeze, "N".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Includes the sectors of administrative and support service activities".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Administration and management, tourism, rentals".freeze, - "skos:scopeNote": "Includes the sectors of administrative and support service activities".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A15", altLabel: ["O".freeze, "Public administration and defence; compulsory social security".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Includes the sectors of public administration, defense and compulsory social security".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Public administration and social security".freeze, - "skos:scopeNote": "Includes the sectors of public administration, defense and compulsory social security".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A16", altLabel: ["Education".freeze, "P".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Integrates education sectors".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Education and training".freeze, - "skos:scopeNote": "Integrates education sectors".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A17", altLabel: ["Human health and social work activities".freeze, "Q".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Includes the sectors of health and social".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Social services, health and employment".freeze, - "skos:scopeNote": "Includes the sectors of health and social".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A18", altLabel: ["Arts, entertainment and recreation".freeze, "R".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Includes the sectors of arts, entertainment and recreation".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: "Arts, culture, recreation and sports".freeze, - "skos:scopeNote": "Includes the sectors of arts, entertainment and recreation".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A19", altLabel: ["Other service activities".freeze, "S".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Integrates the activities of other sectors of services".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: ["".freeze, "Membership activities, repairing and wellness".freeze], - "skos:scopeNote": "Integrates the activities of other sectors of services".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A20", altLabel: ["Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use".freeze, "T".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Integra sectors of activities of households as employers".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: ["".freeze, "Household activities, self-production, domestic work".freeze], - "skos:scopeNote": "Integra sectors of activities of households as employers".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#A21", altLabel: ["Activities of extraterritorial organizations and bodies".freeze, "U".freeze], - inScheme: "essglobalactivities:activities".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "Integra sectors of activities of organizations and bodies".freeze, + inScheme: "http://purl.org/essglobal/standard/activities/activities".freeze, prefLabel: ["".freeze, "International diplomacy and cooperation".freeze], - "skos:scopeNote": "Integra sectors of activities of organizations and bodies".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :activities, - "dc11:contributor": ["Ana Alice Baptista (analice@dsi.uminho.pt)".freeze, "Daniel Tygel (dtygel@gmail.com)".freeze, "Jason Nardi (jason.nardi@gmail.com)".freeze, "Marc Alphandery (marc.alphandery@wanadoo.fr)".freeze, "Mariana Malta (mariana@iscap.ipp.pt)".freeze], - "dc11:creator": ["César Araújo (cesar_araujo@sapo.pt)".freeze, "Leonardo Cruz (leonardopscruz@gmail.com)".freeze, "Rodrigo Alves (rasalves@gmail.com)".freeze, "Sérgio Vale (gks_sergio@hotmail.com)".freeze], - "dc11:description": "Activities controlled vocabulary for SSE".freeze, - "dc11:language": "en-en".freeze, - "dc11:modified": "2014-01-25".freeze, - "dc11:publisher": "http://www.ripess.org/".freeze, - "dc11:relation": "http://www.dsi.uminho.pt/".freeze, - "dc11:title": "Activities".freeze, - "dc:created": "2012-02-20".freeze, - "dc:publisher": "RIPESS - ESSGlobal".freeze, - type: "skos:ConceptScheme".freeze + "http://purl.org/dc/elements/1.1/contributor": ["Ana Alice Baptista (analice@dsi.uminho.pt)".freeze, "Daniel Tygel (dtygel@gmail.com)".freeze, "Jason Nardi (jason.nardi@gmail.com)".freeze, "Marc Alphandery (marc.alphandery@wanadoo.fr)".freeze, "Mariana Malta (mariana@iscap.ipp.pt)".freeze], + "http://purl.org/dc/elements/1.1/creator": ["César Araújo (cesar_araujo@sapo.pt)".freeze, "Leonardo Cruz (leonardopscruz@gmail.com)".freeze, "Rodrigo Alves (rasalves@gmail.com)".freeze, "Sérgio Vale (gks_sergio@hotmail.com)".freeze], + "http://purl.org/dc/elements/1.1/description": "Activities controlled vocabulary for SSE".freeze, + "http://purl.org/dc/elements/1.1/language": "en-en".freeze, + "http://purl.org/dc/elements/1.1/modified": "2014-01-25".freeze, + "http://purl.org/dc/elements/1.1/publisher": "http://www.ripess.org/".freeze, + "http://purl.org/dc/elements/1.1/relation": "http://www.dsi.uminho.pt/".freeze, + "http://purl.org/dc/elements/1.1/title": "Activities".freeze, + "http://purl.org/dc/terms/created": "2012-02-20".freeze, + "http://purl.org/dc/terms/publisher": "RIPESS - ESSGlobal".freeze, + type: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze end end diff --git a/lib/vocabs/essglobal_legalform.rb b/lib/vocabs/essglobal_legalform.rb index de2f26bd..8c300bef 100644 --- a/lib/vocabs/essglobal_legalform.rb +++ b/lib/vocabs/essglobal_legalform.rb @@ -2,11 +2,7 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/essglobal/standard/legal-form/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class ESSGLOBALLegalform < RDF::Vocabulary - # end - class ESSGLOBALLegalform < RDF::Vocabulary("http://purl.org/essglobal/standard/legal-form/") +module LifePreserver::Vocab + ESSGlobalLegalform = Class.new(RDF::Vocabulary("http://purl.org/essglobal/standard/legal-form/")) do end end diff --git a/lib/vocabs/essglobal_qualifiers.rb b/lib/vocabs/essglobal_qualifiers.rb index ba393abe..98d2750b 100644 --- a/lib/vocabs/essglobal_qualifiers.rb +++ b/lib/vocabs/essglobal_qualifiers.rb @@ -2,158 +2,154 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/essglobal/standard/qualifiers/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class ESSGLOBALQualifiers < RDF::Vocabulary - # end - class ESSGLOBALQualifiers < RDF::Vocabulary("http://purl.org/essglobal/standard/qualifiers/") +module LifePreserver::Vocab + ESSGlobalQualifiers = Class.new(RDF::Vocabulary("http://purl.org/essglobal/standard/qualifiers/")) do # Extra definitions term :"#Q01", - definition: %(Products and Services which are developed in a process that is focused on environmental sustainability, like the usage of renewable energy, recycling, ecologic packing, reused inputs, etc.).freeze, - inScheme: "essglobalqualifiers:".freeze, + definition: "Products and Services which are developed in a process that is focused on environmental sustainability, like the usage of renewable energy, recycling, ecologic packing, reused inputs, etc.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/".freeze, prefLabel: "Ecologically or Environmentally Sustainable".freeze, - "skos:scopeNote": "".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#Q02", - definition: %(Work relations, structure and conditions which are democratic and decent.).freeze, - inScheme: "essglobalqualifiers:".freeze, + definition: "Work relations, structure and conditions which are democratic and decent.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/".freeze, prefLabel: "Democratic and decent working conditions".freeze, - "skos:scopeNote": "".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#Q03", - definition: %("Products and Services developed by people normally marginalised from society and the work market, like for example unemployed people, immigrants, disabled, ex-prisonners.").freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + definition: "\"Products and Services developed by people normally marginalised from society and the work market, like for example unemployed people, immigrants, disabled, ex-prisonners.\"".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Socially fair".freeze, - "skos:scopeNote": "".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#Q04", - definition: %("Products and Services which are democratic and fair in the economic level, bringing autonomy to local SSE enterprises, fair relations along chains and contributing for a sovreign, territorial and solidarity development.").freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + definition: "\"Products and Services which are democratic and fair in the economic level, bringing autonomy to local SSE enterprises, fair relations along chains and contributing for a sovreign, territorial and solidarity development.\"".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Economically democratic and sovereign".freeze, - "skos:scopeNote": "".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#Q05", - definition: %(Products and Services developped in a way where women are empowered, as in women owned SSE initiatives or initiatives that have an internal charter granting gender equity in all steps of the economic activity.).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + definition: "Products and Services developped in a way where women are empowered, as in women owned SSE initiatives or initiatives that have an internal charter granting gender equity in all steps of the economic activity.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Gender Equity".freeze, - "skos:scopeNote": "".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#Q06", - definition: %(SSE initiatives from local and traditional communities, indigenous people, "campesinat".).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + definition: "SSE initiatives from local and traditional communities, indigenous people, \"campesinat\".".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "From original / indigenous people or traditional communities".freeze, - "skos:scopeNote": "".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#Q07", - definition: %(The outcomes of the work have licenses which allow for reproduction and sharing of knowledge and culture.).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + definition: "The outcomes of the work have licenses which allow for reproduction and sharing of knowledge and culture.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Commons and free knowledge/free culture".freeze, - "skos:scopeNote": "".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#Q08", - definition: %(Products and Services that are not industrial, being made in a traditional and artisanal way.).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + definition: "Products and Services that are not industrial, being made in a traditional and artisanal way.".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Handicraft".freeze, - "skos:scopeNote": "".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :Agroecological, - broader: "essglobalqualifiers:Q01".freeze, - definition: %(Agriculture Products or Services that ally social justice \(no workers exploration\) and organic farming.).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q01".freeze, + definition: "Agriculture Products or Services that ally social justice (no workers exploration) and organic farming.".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Agroecological".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :Agroextrativism, - broader: "essglobalqualifiers:Q01".freeze, - definition: %(Extractivism of natural fruits, seeds and other plants that's done in a traditional manner without harming the biodiversity and natural environment).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q01".freeze, + definition: "Extractivism of natural fruits, seeds and other plants that's done in a traditional manner without harming the biodiversity and natural environment".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Agroextrativism".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :Animalwelfare, - broader: "essglobalqualifiers:Q01".freeze, - definition: %(Products and Services which are developped in a process that doesn't do any harm to animals, like animal testing or the usage of animal material as inputs.).freeze, - inScheme: "essglobalqualifiers:".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q01".freeze, + definition: "Products and Services which are developped in a process that doesn't do any harm to animals, like animal testing or the usage of animal material as inputs.".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/".freeze, prefLabel: "Animal Welfare".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :Fairtrade, - broader: "essglobalqualifiers:Q04".freeze, - definition: %(Products and Services which are offered in a trading chain that respects several criteria and code of conducts from production to the consumption, like direct relashionship among consummers and producers, international fair trade, open/transparent price composition, trading process owned by the producers, etc.).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q04".freeze, + definition: "Products and Services which are offered in a trading chain that respects several criteria and code of conducts from production to the consumption, like direct relashionship among consummers and producers, international fair trade, open/transparent price composition, trading process owned by the producers, etc.".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Fair trade".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :FreeCulture, - broader: "essglobalqualifiers:Q07".freeze, - definition: %(Artistic and Cultural Products which have licenses like the Creative Commons and similars, where it can be copied and in some times transformed with some conditions that vary, like citing the original author, prohibition of commercial trading, etc.).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q07".freeze, + definition: "Artistic and Cultural Products which have licenses like the Creative Commons and similars, where it can be copied and in some times transformed with some conditions that vary, like citing the original author, prohibition of commercial trading, etc.".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Free Culture".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :FreeKnowledgeorSoftware, - broader: "essglobalqualifiers:Q07".freeze, - definition: %(Products, like software and machinery, that are licensed in a way that allows the public to know the source code \(the way it has been produced\) and to produce derivatives, under some conditions like citing the original author and having to also use the same license,as in GPL.).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q07".freeze, + definition: "Products, like software and machinery, that are licensed in a way that allows the public to know the source code (the way it has been produced) and to produce derivatives, under some conditions like citing the original author and having to also use the same license,as in GPL.".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Free Knowledge or Software".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :FromOriginalorIndigenousPeople, - broader: "essglobalqualifiers:Q06".freeze, - definition: %(Products and Services developped by original or indigenous people.).freeze, - inScheme: "essglobalqualifiers:".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q06".freeze, + definition: "Products and Services developped by original or indigenous people.".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/".freeze, prefLabel: "From Original or Indigenous People".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :LocalorFromCommunity, - broader: "essglobalqualifiers:Q04".freeze, - definition: %(Products and Services issued and traded locally.).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q04".freeze, + definition: "Products and Services issued and traded locally.".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Local or From Community".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :Madefromrecycledorrecoveredmaterial, - broader: "essglobalqualifiers:Q01".freeze, - definition: %(Products and Services that use inputs that are recovered or recycled, totally or partially.).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q01".freeze, + definition: "Products and Services that use inputs that are recovered or recycled, totally or partially.".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Made from Recycled or Recovered Material".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :Naturalcosmeticsandherbalmedicines, - broader: "essglobalqualifiers:Q01".freeze, - definition: %(Medicinal os Cosmetic Products and Services that use only natural essences, without human made chemical compounds.).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q01".freeze, + definition: "Medicinal os Cosmetic Products and Services that use only natural essences, without human made chemical compounds.".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Natural Cosmetics and Herbal Medicines".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :Organic, - broader: "essglobalqualifiers:Q01".freeze, - definition: %(Agricultural Products issued from organic farming, without the usage of agrotoxics and other chemical based seeds, fertilizer or other inputs. It might also be Products and Services that use only organic agricultural products as inputs.).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q01".freeze, + definition: "Agricultural Products issued from organic farming, without the usage of agrotoxics and other chemical based seeds, fertilizer or other inputs. It might also be Products and Services that use only organic agricultural products as inputs.".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Organic".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :PeasantorFamilyAgriculture, - broader: "essglobalqualifiers:Q06".freeze, - definition: %(Products and Services developped by small farmers, normally organised in the community, and normally families, that might be using traditional ways to do farming.).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q06".freeze, + definition: "Products and Services developped by small farmers, normally organised in the community, and normally families, that might be using traditional ways to do farming.".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Peasant or Family Agriculture".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :Selfmanagement, - broader: "essglobalqualifiers:Q02".freeze, - definition: %(SSE enterprise owned by the workers. Decisions about the initiative and the work are done by the same people.).freeze, - inScheme: "essglobalqualifiers:".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q02".freeze, + definition: "SSE enterprise owned by the workers. Decisions about the initiative and the work are done by the same people.".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/".freeze, prefLabel: "Self-management".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :Socialinsertioninitiatives, - broader: "essglobalqualifiers:Q03".freeze, - definition: %(Unemployed people work during a established timespan in an insertion enterprise to be better qualified for the market.).freeze, - inScheme: "essglobalqualifiers:qualifiers".freeze, + broader: "http://purl.org/essglobal/standard/qualifiers/Q03".freeze, + definition: "Unemployed people work during a established timespan in an insertion enterprise to be better qualified for the market.".freeze, + inScheme: "http://purl.org/essglobal/standard/qualifiers/qualifiers".freeze, prefLabel: "Social insertion initiatives".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :qualifiers, - "dc11:contributor": ["Ana Alice Baptista (analice@dsi.uminho.pt)".freeze, "Daniel Tygel (dtygel@gmail.com)".freeze, "Jason Nardi (jason.nardi@gmail.com)".freeze, "Marc Alphandery (marc.alphandery@wanadoo.fr)".freeze, "Mariana Malta (mariana@iscap.ipp.pt)".freeze], - "dc11:creator": ["Cesar Araujo (cesar_araujo@sapo.pt)".freeze, "Leonardo Cruz (leonardopscruz@gmail.com)".freeze, "Rodrigo Alves (rasalves@gmail.com)".freeze, "Sergio Vale (gks_sergio@hotmail.com)".freeze], - "dc11:description": "Qualifiers controlled vocabulary for SSE".freeze, - "dc11:language": "en-en".freeze, - "dc11:publisher": "http://www.ripess.org/".freeze, - "dc11:relation": "http://www.dsi.uminho.pt/".freeze, - "dc11:title": "Qualifiers".freeze, - "dc:created": "2012-02-20".freeze, - "dc:modified": "2014-01-25".freeze, - "dc:publisher": "RIPESS-ESSGlobal".freeze, - hasTopConcept: ["essglobalqualifiers:Q01".freeze, "essglobalqualifiers:Q02".freeze, "essglobalqualifiers:Q03".freeze, "essglobalqualifiers:Q04".freeze, "essglobalqualifiers:Q05".freeze, "essglobalqualifiers:Q06".freeze, "essglobalqualifiers:Q07".freeze, "essglobalqualifiers:Q08".freeze], - type: "skos:ConceptScheme".freeze + hasTopConcept: ["http://purl.org/essglobal/standard/qualifiers/Q01".freeze, "http://purl.org/essglobal/standard/qualifiers/Q02".freeze, "http://purl.org/essglobal/standard/qualifiers/Q03".freeze, "http://purl.org/essglobal/standard/qualifiers/Q04".freeze, "http://purl.org/essglobal/standard/qualifiers/Q05".freeze, "http://purl.org/essglobal/standard/qualifiers/Q06".freeze, "http://purl.org/essglobal/standard/qualifiers/Q07".freeze, "http://purl.org/essglobal/standard/qualifiers/Q08".freeze], + "http://purl.org/dc/elements/1.1/contributor": ["Ana Alice Baptista (analice@dsi.uminho.pt)".freeze, "Daniel Tygel (dtygel@gmail.com)".freeze, "Jason Nardi (jason.nardi@gmail.com)".freeze, "Marc Alphandery (marc.alphandery@wanadoo.fr)".freeze, "Mariana Malta (mariana@iscap.ipp.pt)".freeze], + "http://purl.org/dc/elements/1.1/creator": ["Cesar Araujo (cesar_araujo@sapo.pt)".freeze, "Leonardo Cruz (leonardopscruz@gmail.com)".freeze, "Rodrigo Alves (rasalves@gmail.com)".freeze, "Sergio Vale (gks_sergio@hotmail.com)".freeze], + "http://purl.org/dc/elements/1.1/description": "Qualifiers controlled vocabulary for SSE".freeze, + "http://purl.org/dc/elements/1.1/language": "en-en".freeze, + "http://purl.org/dc/elements/1.1/publisher": "http://www.ripess.org/".freeze, + "http://purl.org/dc/elements/1.1/relation": "http://www.dsi.uminho.pt/".freeze, + "http://purl.org/dc/elements/1.1/title": "Qualifiers".freeze, + "http://purl.org/dc/terms/created": "2012-02-20".freeze, + "http://purl.org/dc/terms/modified": "2014-01-25".freeze, + "http://purl.org/dc/terms/publisher": "RIPESS-ESSGlobal".freeze, + type: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze end end diff --git a/lib/vocabs/essglobal_typeoflabour.rb b/lib/vocabs/essglobal_typeoflabour.rb index c82239c4..b18ca6d3 100644 --- a/lib/vocabs/essglobal_typeoflabour.rb +++ b/lib/vocabs/essglobal_typeoflabour.rb @@ -2,51 +2,47 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/essglobal/standard/type-of-labour/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class ESSGLOBALTypeoflabour < RDF::Vocabulary - # end - class ESSGLOBALTypeoflabour < RDF::Vocabulary("http://purl.org/essglobal/standard/type-of-labour/") +module LifePreserver::Vocab + ESSGlobalTypeoflabour = Class.new(RDF::Vocabulary("http://purl.org/essglobal/standard/type-of-labour/")) do # Ontology definition ontology :"http://purl.org/essglobal/standard/type-of-labour/", - "dc11:contributor": ["Alan Tygel (alantygel@gmail.com)".freeze, "Ana Alice Baptista (analice@dsi.uminho.pt)".freeze, "Craig Borowiak (cborowiakhaverford.edu)".freeze, "Daniel Tygel (dtygel@gmail.com)".freeze, "Jason Nardi (jason.nardi@gmail.com)".freeze], - "dc11:creator": "Mariana Malta (mariana@iscap.ipp.pt)".freeze, - "dc11:description": "SSE Initiative or SSE Network Legal form controlled vocabulary for SSE".freeze, - "dc11:language": "en-en".freeze, - "dc11:publisher": "http://www.ripess.org/".freeze, - "dc11:relation": "http://www.dsi.uminho.pt/".freeze, - "dc11:title": "Legal Form".freeze, - "dc:created": "2014-02-06".freeze, - "dc:publisher": "RIPESS-ESSGlobal".freeze, - type: "skos:ConceptScheme".freeze + "http://purl.org/dc/elements/1.1/contributor": ["Alan Tygel (alantygel@gmail.com)".freeze, "Ana Alice Baptista (analice@dsi.uminho.pt)".freeze, "Craig Borowiak (cborowiakhaverford.edu)".freeze, "Daniel Tygel (dtygel@gmail.com)".freeze, "Jason Nardi (jason.nardi@gmail.com)".freeze], + "http://purl.org/dc/elements/1.1/creator": "Mariana Malta (mariana@iscap.ipp.pt)".freeze, + "http://purl.org/dc/elements/1.1/description": "SSE Initiative or SSE Network Legal form controlled vocabulary for SSE".freeze, + "http://purl.org/dc/elements/1.1/language": "en-en".freeze, + "http://purl.org/dc/elements/1.1/publisher": "http://www.ripess.org/".freeze, + "http://purl.org/dc/elements/1.1/relation": "http://www.dsi.uminho.pt/".freeze, + "http://purl.org/dc/elements/1.1/title": "Legal Form".freeze, + "http://purl.org/dc/terms/created": "2014-02-06".freeze, + "http://purl.org/dc/terms/publisher": "RIPESS-ESSGlobal".freeze, + type: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze # Extra definitions term :"#T1", - inScheme: "essglobaltypeoflabour:".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "".freeze, + inScheme: "http://purl.org/essglobal/standard/type-of-labour/".freeze, prefLabel: ["".freeze, "Associative".freeze], - "skos:scopeNote": "".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#T2", - inScheme: "essglobaltypeoflabour:".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "".freeze, + inScheme: "http://purl.org/essglobal/standard/type-of-labour/".freeze, prefLabel: ["".freeze, "Subordinate".freeze], - "skos:scopeNote": "".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#T3", - inScheme: "essglobaltypeoflabour:".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "".freeze, + inScheme: "http://purl.org/essglobal/standard/type-of-labour/".freeze, prefLabel: ["".freeze, "Voluntary Work".freeze], - "skos:scopeNote": "".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#T4", - inScheme: "essglobaltypeoflabour:".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "".freeze, + inScheme: "http://purl.org/essglobal/standard/type-of-labour/".freeze, prefLabel: ["".freeze, "Reproductive Labour/Care Work".freeze], - "skos:scopeNote": "".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze term :"#T5", - inScheme: "essglobaltypeoflabour:".freeze, + "http://www.w3.org/2004/02/skos/core#scopeNote": "".freeze, + inScheme: "http://purl.org/essglobal/standard/type-of-labour/".freeze, prefLabel: ["".freeze, "Externally hired ".freeze], - "skos:scopeNote": "".freeze, - type: "skos:Concept".freeze + type: "http://www.w3.org/2004/02/skos/core#Concept".freeze end end diff --git a/lib/vocabs/fabio.rb b/lib/vocabs/fabio.rb index 30ef31b2..62da8ef1 100644 --- a/lib/vocabs/fabio.rb +++ b/lib/vocabs/fabio.rb @@ -2,2225 +2,2184 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/spar/fabio/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class FABIO < RDF::StrictVocabulary - # end - class FABIO < RDF::StrictVocabulary("http://purl.org/spar/fabio/") +module LifePreserver::Vocab + FABIO = Class.new(RDF::StrictVocabulary("http://purl.org/spar/fabio/")) do # Ontology definition ontology :"http://purl.org/spar/fabio/", - comment: %(The FRBR-aligned Bibliographic Ontology \(FaBiO\) is an ontology for describing entities that are published or potentially publishable \(e.g., journal articles, conference papers, books\), and that contain or are referred to by bibliographic references. - -**URL:** http://purl.org/spar/fabio - -**Creators**: [David Shotton]\(http://orcid.org/0000-0001-5506-523X\), [Silvio Peroni]\(http://orcid.org/0000-0003-0530-4305\) - -**Contributors:** [Paolo Ciccarese]\(https://orcid.org/0000-0002-5156-2703\), [Tim Clark]\(https://orcid.org/0000-0003-4060-7360\) - -**License:** [Creative Commons Attribution 4.0 International]\(https://creativecommons.org/licenses/by/4.0/legalcode\) - -**Website:** http://www.sparontologies.net/ontologies/fabio - -**Cite as:** Peroni, S., Shotton, D. \(2012\). FaBiO and CiTO: ontologies for describing bibliographic resources and citations. In Journal of Web Semantics, 17: 33-43. https://doi.org/10.1016/j.websem.2012.08.001. Open Access at: http://speroni.web.cs.unibo.it/publications/peroni-2012-fabio-cito-ontologies.pdf).freeze, - "dc11:contributor": ["Paolo Ciccarese".freeze, "Tim Clark".freeze], - "dc11:creator": ["David Shotton".freeze, "Silvio Peroni".freeze], - "dc11:date": "2019-02-19".freeze, - "dc11:description": ["FaBiO, the FRBR-aligned Bibliographic Ontology, is an ontology for recording and publishing on the Semantic Web descriptions of entities that are published or potentially publishable, and that contain or are referred to by bibliographic references, or entities used to define such bibliographic references. FaBiO entities are primarily textual publications such as books, magazines, newspapers and journals, and items of their content such as poems, conference papers and editorials. However, they also include blogs, web pages, datasets, computer algorithms, experimental protocols, formal specifications and vocabularies, legal records, governmental papers, technical and commercial reports and similar publications, and also anthologies, catalogues and similar collections. \n\nFaBiO classes are structured according to the FRBR schema of Works, Expressions, Manifestations and Items. Additional properties have been added to extends the FRBR data model by linking Works and Manifestations (fabio:hasManifestation and fabio:isManifestationOf), Works and Items (fabio:hasPortrayal and fabio:isPortrayedBy), and Expressions and Items (fabio:hasRepresentation and fabio:isRepresentedBy).".freeze, "fabio:FRBR%20diagram%20with%20new%20Fabio%20verbs.png".freeze], - "dc11:rights": "This work is distributed under a Creative Commons Attribution License (https://creativecommons.org/licenses/by/4.0/legalcode).".freeze, - "dc11:title": "FaBiO, the FRBR-aligned Bibliographic Ontology".freeze, + comment: "The FRBR-aligned Bibliographic Ontology (FaBiO) is an ontology for describing entities that are published or potentially publishable (e.g., journal articles, conference papers, books), and that contain or are referred to by bibliographic references.\n\n**URL:** http://purl.org/spar/fabio\n\n**Creators**: [David Shotton](http://orcid.org/0000-0001-5506-523X), [Silvio Peroni](http://orcid.org/0000-0003-0530-4305)\n\n**Contributors:** [Paolo Ciccarese](https://orcid.org/0000-0002-5156-2703), [Tim Clark](https://orcid.org/0000-0003-4060-7360)\n\n**License:** [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/legalcode)\n\n**Website:** http://www.sparontologies.net/ontologies/fabio\n\n**Cite as:** Peroni, S., Shotton, D. (2012). FaBiO and CiTO: ontologies for describing bibliographic resources and citations. In Journal of Web Semantics, 17: 33-43. https://doi.org/10.1016/j.websem.2012.08.001. Open Access at: http://speroni.web.cs.unibo.it/publications/peroni-2012-fabio-cito-ontologies.pdf".freeze, + "http://purl.org/dc/elements/1.1/contributor": ["Paolo Ciccarese".freeze, "Tim Clark".freeze], + "http://purl.org/dc/elements/1.1/creator": ["David Shotton".freeze, "Silvio Peroni".freeze], + "http://purl.org/dc/elements/1.1/date": "2019-02-19".freeze, + "http://purl.org/dc/elements/1.1/description": ["FaBiO, the FRBR-aligned Bibliographic Ontology, is an ontology for recording and publishing on the Semantic Web descriptions of entities that are published or potentially publishable, and that contain or are referred to by bibliographic references, or entities used to define such bibliographic references. FaBiO entities are primarily textual publications such as books, magazines, newspapers and journals, and items of their content such as poems, conference papers and editorials. However, they also include blogs, web pages, datasets, computer algorithms, experimental protocols, formal specifications and vocabularies, legal records, governmental papers, technical and commercial reports and similar publications, and also anthologies, catalogues and similar collections. \n\nFaBiO classes are structured according to the FRBR schema of Works, Expressions, Manifestations and Items. Additional properties have been added to extends the FRBR data model by linking Works and Manifestations (fabio:hasManifestation and fabio:isManifestationOf), Works and Items (fabio:hasPortrayal and fabio:isPortrayedBy), and Expressions and Items (fabio:hasRepresentation and fabio:isRepresentedBy).".freeze, "http://purl.org/spar/fabio/FRBR%20diagram%20with%20new%20Fabio%20verbs.png".freeze], + "http://purl.org/dc/elements/1.1/rights": "This work is distributed under a Creative Commons Attribution License (https://creativecommons.org/licenses/by/4.0/legalcode).".freeze, + "http://purl.org/dc/elements/1.1/title": "FaBiO, the FRBR-aligned Bibliographic Ontology".freeze, "http://purl.org/vocab/vann/preferredNamespacePrefix": "fabio".freeze, "http://purl.org/vocab/vann/preferredNamespaceUri": "http://purl.org/spar/fabio/".freeze, - "owl:imports": "http://purl.org/spar/frbr".freeze, - "owl:priorVersion": "fabio:2018-05-02".freeze, - "owl:versionIRI": "fabio:2019-02-19".freeze, - "owl:versionInfo": "2.1".freeze, - type: "owl:Ontology".freeze + "http://www.w3.org/2002/07/owl#imports": "http://purl.org/spar/frbr".freeze, + "http://www.w3.org/2002/07/owl#priorVersion": "http://purl.org/spar/fabio/2018-05-02".freeze, + "http://www.w3.org/2002/07/owl#versionIRI": "http://purl.org/spar/fabio/2019-02-19".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "2.1".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Abstract, - comment: %(A brief summary of a work on a particular subject, designed to act as the point-of-entry that will help the reader quickly to obtain an overview of the work's contents. The abstract may be an integral part of the work itself, written by the same author\(s\) and appearing at the beginning of a work such as a research paper, report, review or thesis. Alternatively it may be separate from the published work itself, and written by someone other than the author\(s\) of the published work, for example by a member of a professional abstracting service such as CAB Abstracts.).freeze, + comment: "A brief summary of a work on a particular subject, designed to act as the point-of-entry that will help the reader quickly to obtain an overview of the work's contents. The abstract may be an integral part of the work itself, written by the same author(s) and appearing at the beginning of a work such as a research paper, report, review or thesis. Alternatively it may be separate from the published work itself, and written by someone other than the author(s) of the published work, for example by a member of a professional abstracting service such as CAB Abstracts.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/spar/fabio/StructuredSummary".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/fabio/StructuredSummary".freeze, label: "abstract".freeze, - "owl:disjointWith": "fabio:StructuredSummary".freeze, - "rdfs:seeAlso": "fabio:StructuredSummary".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AcademicProceedings, - comment: %(A document containing the programme and collected papers, or their abstracts, presented at an academic meeting.).freeze, + comment: "A document containing the programme and collected papers, or their abstracts, presented at an academic meeting.".freeze, label: "academic proceedings".freeze, - subClassOf: ["fabio:ExpressionCollection".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/ExpressionCollection".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:ProceedingsPaper".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/ProceedingsPaper".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 :Addendum, - comment: %(An item of material added at the end of a book or other publication, typically to include omitted or late-arriving material. ).freeze, + comment: "An item of material added at the end of a book or other publication, typically to include omitted or late-arriving material. ".freeze, label: "addendum".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Algorithm, - comment: %(A precise sequential set of pre-defined logical rules or computational operations to be employed for solving a particular problem in a finite number of steps.).freeze, + comment: "A precise sequential set of pre-defined logical rules or computational operations to be employed for solving a particular problem in a finite number of steps.".freeze, label: "algorithm".freeze, - subClassOf: "fabio:Specification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Specification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AnalogItem, - comment: %(A real object that is an exemplar of a fabio:Manifestation, such as a particular copy of the book 'Alice's adventures in Wonderland', that a person may own.).freeze, - "dc11:description": "An analog item is an exemplar of an analog manifestation only and it is always stored in a storage medium suitable for analog objects, such as paper, vinyl discs and films.".freeze, + comment: "A real object that is an exemplar of a fabio:Manifestation, such as a particular copy of the book 'Alice's adventures in Wonderland', that a person may own.".freeze, + "http://purl.org/dc/elements/1.1/description": "An analog item is an exemplar of an analog manifestation only and it is always stored in a storage medium suitable for analog objects, such as paper, vinyl discs and films.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/fabio/DigitalItem".freeze, label: "analog item".freeze, - "owl:disjointWith": "fabio:DigitalItem".freeze, - subClassOf: ["fabio:Item".freeze, term( - onProperty: "fabio:isStoredOn".freeze, - someValuesFrom: "fabio:AnalogStorageMedium".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/spar/fabio/Item".freeze, term( + onProperty: "http://purl.org/spar/fabio/isStoredOn".freeze, + someValuesFrom: "http://purl.org/spar/fabio/AnalogStorageMedium".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( onProperty: "http://purl.org/vocab/frbr/core#exemplarOf".freeze, - someValuesFrom: "fabio:AnalogManifestation".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/AnalogManifestation".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 :AnalogManifestation, - comment: %(A manifestation in an analog form.).freeze, + comment: "A manifestation in an analog form.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/fabio/DigitalManifestation".freeze, label: "analog manifestation".freeze, - "owl:disjointWith": "fabio:DigitalManifestation".freeze, - subClassOf: ["fabio:Manifestation".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Manifestation".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#exemplar".freeze, - someValuesFrom: "fabio:AnalogItem".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/AnalogItem".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 :AnalogStorageMedium, - comment: %(A means of storing information in non-digital form, e.g. paper, film \(for analogue photographs or movies\), magnetic tape \(for analogue sound recordings or video recordings\) or vinyl disc.).freeze, + comment: "A means of storing information in non-digital form, e.g. paper, film (for analogue photographs or movies), magnetic tape (for analogue sound recordings or video recordings) or vinyl disc.".freeze, label: "analog storage medium".freeze, - subClassOf: ["fabio:StorageMedium".freeze, term( - allValuesFrom: "fabio:AnalogItem".freeze, - onProperty: "fabio:stores".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/spar/fabio/StorageMedium".freeze, term( + allValuesFrom: "http://purl.org/spar/fabio/AnalogItem".freeze, + onProperty: "http://purl.org/spar/fabio/stores".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 :Announcement, - comment: %(A formal statement about something.).freeze, + comment: "A formal statement about something.".freeze, label: "announcement".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Anthology, - comment: %(A collection of selected literary or scholastics works, for example poems, short stories, plays or research papers.).freeze, + comment: "A collection of selected literary or scholastics works, for example poems, short stories, plays or research papers.".freeze, label: "anthology".freeze, - subClassOf: "fabio:ExpressionCollection".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ExpressionCollection".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ApplicationProfile, - comment: %(A set of metadata elements, policies and guidelines defined for a particular application. The metadata elements used in the application profile may be drawn from more than one element sets, including locally defined sets. ).freeze, + comment: "A set of metadata elements, policies and guidelines defined for a particular application. The metadata elements used in the application profile may be drawn from more than one element sets, including locally defined sets. ".freeze, label: "application profile".freeze, - subClassOf: "fabio:Metadata".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Metadata".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ApplicationProgrammingInterface, - comment: %( A computer program that enables a separate computer to interact programmatically with the computer running the API. \(Commonly abbreviated 'API'.\)).freeze, + comment: " A computer program that enables a separate computer to interact programmatically with the computer running the API. (Commonly abbreviated 'API'.)".freeze, label: ["API".freeze, "application programming interface".freeze], - subClassOf: "fabio:ComputerProgram".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ComputerProgram".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ArchivalDocument, - comment: %(An archival document is a realization of the content related to an archival record. It can be exemplified as a book, a document, a letter, a database, etc.).freeze, + comment: "An archival document is a realization of the content related to an archival record. It can be exemplified as a book, a document, a letter, a database, etc.".freeze, label: "archival document".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ArchivalDocumentSet, - comment: %(A collection of archival document.).freeze, + comment: "A collection of archival document.".freeze, label: "archival document set".freeze, - subClassOf: ["fabio:ExpressionCollection".freeze, term( - allValuesFrom: "fabio:ArchivalDocument".freeze, + subClassOf: ["http://purl.org/spar/fabio/ExpressionCollection".freeze, term( + allValuesFrom: "http://purl.org/spar/fabio/ArchivalDocument".freeze, onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:ArchivalDocument".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/ArchivalDocument".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 :ArchivalRecord, - comment: %(An archival record connotes a material created or received by a person, family, or organization, public or private, in the conduct of their affairs that is preserved because of the enduring value contained in the information it contains or as evidence of the function and the responsibilities of its creator.).freeze, + comment: "An archival record connotes a material created or received by a person, family, or organization, public or private, in the conduct of their affairs that is preserved because of the enduring value contained in the information it contains or as evidence of the function and the responsibilities of its creator.".freeze, label: "archival record".freeze, - subClassOf: ["fabio:Work".freeze, term( - allValuesFrom: "fabio:ArchivalDocument".freeze, + subClassOf: ["http://purl.org/spar/fabio/Work".freeze, term( + allValuesFrom: "http://purl.org/spar/fabio/ArchivalDocument".freeze, onProperty: "http://purl.org/vocab/frbr/core#realization".freeze, - type: "owl:Restriction".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 :ArchivalRecordSet, - comment: %(A collection of archival records.).freeze, + comment: "A collection of archival records.".freeze, label: "archival record set".freeze, - subClassOf: ["fabio:WorkCollection".freeze, term( - allValuesFrom: "fabio:ArchivalDocumentSet".freeze, + subClassOf: ["http://purl.org/spar/fabio/WorkCollection".freeze, term( + allValuesFrom: "http://purl.org/spar/fabio/ArchivalDocumentSet".freeze, onProperty: "http://purl.org/vocab/frbr/core#realization".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "fabio:ArchivalRecord".freeze, + allValuesFrom: "http://purl.org/spar/fabio/ArchivalRecord".freeze, onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:ArchivalRecord".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/ArchivalRecord".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 :Article, - comment: %(The realization of a piece of writing on a particular topic, usually published within a periodical publication \(e.g. journal, magazine and newspaper\).).freeze, + comment: "The realization of a piece of writing on a particular topic, usually published within a periodical publication (e.g. journal, magazine and newspaper).".freeze, label: "article".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ArtisticWork, - comment: %(It describes any work regarded as art in its widest sense, including works from literature and music, visual art, etc.).freeze, + comment: "It describes any work regarded as art in its widest sense, including works from literature and music, visual art, etc.".freeze, label: "artistic work".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AudioDocument, - comment: %(The realization of a sound recording.).freeze, + comment: "The realization of a sound recording.".freeze, label: "audio document".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:SoundRecording".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/SoundRecording".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 :AuthorityFile, - comment: %(A controlled vocabulary or official list that establishes, for consistency, the authoritative forms of headings, and the preferred terms or proper names to be used, when creating a catalogue or when indexing and searching a set of entities within a defined domain.).freeze, + comment: "A controlled vocabulary or official list that establishes, for consistency, the authoritative forms of headings, and the preferred terms or proper names to be used, when creating a catalogue or when indexing and searching a set of entities within a defined domain.".freeze, label: "authority file".freeze, - subClassOf: "fabio:ControlledVocabulary".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ControlledVocabulary".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BachelorsThesis, - comment: %(A thesis reporting a research project undertaken as part of an undergraduate course of education leading to a bachelor's degree.).freeze, + comment: "A thesis reporting a research project undertaken as part of an undergraduate course of education leading to a bachelor's degree.".freeze, label: "bachelor's thesis".freeze, - subClassOf: "fabio:Thesis".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Thesis".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BibliographicDatabase, - comment: %(A database providing an authoritative source of bibliographic information, for example PubMed \(http://www.ncbi.nlm.nih.gov/pubmed\), CrossRef Metadata Search \(http://search.crossref.org/\) and PubMed Central \(http://www.ncbi.nlm.nih.gov/pmc/\).).freeze, + comment: "A database providing an authoritative source of bibliographic information, for example PubMed (http://www.ncbi.nlm.nih.gov/pubmed), CrossRef Metadata Search (http://search.crossref.org/) and PubMed Central (http://www.ncbi.nlm.nih.gov/pmc/).".freeze, label: "bibliographic database".freeze, - subClassOf: "fabio:Database".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Database".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BibliographicMetadata, - comment: %(Standard bibliographic metadata describing an expression of a work. To take the example of a journal article, bibliographic metadata typically include the authors' names, the date of publication, the title of the article, the journal name and volume number, the first and last page numbers, and the Digital Object Identifier \(DOI\).).freeze, + comment: "Standard bibliographic metadata describing an expression of a work. To take the example of a journal article, bibliographic metadata typically include the authors' names, the date of publication, the title of the article, the journal name and volume number, the first and last page numbers, and the Digital Object Identifier (DOI).".freeze, label: "bibliographic metadata".freeze, - subClassOf: "fabio:Metadata".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Metadata".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Biography, - comment: %(An account of the events, works and achievements, both personal and professional, of a person, either living or dead.).freeze, + comment: "An account of the events, works and achievements, both personal and professional, of a person, either living or dead.".freeze, label: "biography".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Blog, - comment: %(A Web publication medium containing blog posts.).freeze, + comment: "A Web publication medium containing blog posts.".freeze, label: "blog".freeze, - subClassOf: "fabio:WebManifestation".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/WebManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BlogPost, - comment: %(Information manifested in a blog, one of a set of periodic sequential entries containing commentary, descriptions of events, or other material such as images or videos, usually displayed in reverse-chronological order and usually maintained by an individual, or comments on such a post.).freeze, + comment: "Information manifested in a blog, one of a set of periodic sequential entries containing commentary, descriptions of events, or other material such as images or videos, usually displayed in reverse-chronological order and usually maintained by an individual, or comments on such a post.".freeze, label: "blog post".freeze, - subClassOf: ["fabio:Entry".freeze, "fabio:WebContent".freeze], - type: "owl:Class".freeze + subClassOf: ["http://purl.org/spar/fabio/Entry".freeze, "http://purl.org/spar/fabio/WebContent".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Book, - comment: %(A non-serial document that is complete in one volume or a designated finite number of volumes. A book published by a publisher is usually identified by an International Standard Book Number \(ISBN\), and may be manifested as a physical printed publication on paper bound in a hard or soft cover, or in electronic format as an 'e-book'.).freeze, + comment: "A non-serial document that is complete in one volume or a designated finite number of volumes. A book published by a publisher is usually identified by an International Standard Book Number (ISBN), and may be manifested as a physical printed publication on paper bound in a hard or soft cover, or in electronic format as an 'e-book'.".freeze, label: "book".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BookChapter, - comment: %(A defined chapter of a book, usually with a separate title or number.).freeze, + comment: "A defined chapter of a book, usually with a separate title or number.".freeze, label: "book chapter".freeze, - subClassOf: ["fabio:Chapter".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Chapter".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:Book".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Book".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 :BookReview, - comment: %(A written review and critical analysis of the content, scope and quality of a book or other monographic work.).freeze, + comment: "A written review and critical analysis of the content, scope and quality of a book or other monographic work.".freeze, label: "book review".freeze, - subClassOf: "fabio:Review".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Review".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BookSeries, - comment: %(A sequence of books having certain characteristics in common that are formally identified together as a group - for instance, the books in the Law, Governance and Technology Series published by Springer.).freeze, + comment: "A sequence of books having certain characteristics in common that are formally identified together as a group - for instance, the books in the Law, Governance and Technology Series published by Springer.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/fabio/BookSet".freeze, label: "book series".freeze, - "owl:disjointWith": "fabio:BookSet".freeze, - subClassOf: ["fabio:Series".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Series".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:Book".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Book".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 :BookSet, - comment: %(A set of books having certain characteristics in common that informally allow their identification together as a group - for instance, the books of the Harry Potter saga.).freeze, + comment: "A set of books having certain characteristics in common that informally allow their identification together as a group - for instance, the books of the Harry Potter saga.".freeze, label: "book set".freeze, - subClassOf: ["fabio:ExpressionCollection".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/ExpressionCollection".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:Book".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Book".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 :BriefReport, - comment: %(A brief report document. This term may also be used synonymously with Rapid Communication to mean 'A short rapidly published research article or conference paper, typically reporting significant research results that have been recently discovered, or a brief news item reporting such discoveries.').freeze, + comment: "A brief report document. This term may also be used synonymously with Rapid Communication to mean 'A short rapidly published research article or conference paper, typically reporting significant research results that have been recently discovered, or a brief news item reporting such discoveries.'".freeze, label: "brief report".freeze, - subClassOf: ["fabio:Expression".freeze, term( - type: "owl:Class".freeze, - unionOf: list("fabio:RapidCommunication".freeze, "fabio:ReportDocument".freeze) + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/fabio/RapidCommunication".freeze, "http://purl.org/spar/fabio/ReportDocument".freeze) )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CallForApplications, - comment: %(A document published by a funding agency requesting submission of applications for financial grants to fund projects, for example to enable research investigations in areas specified in the Call.).freeze, + comment: "A document published by a funding agency requesting submission of applications for financial grants to fund projects, for example to enable research investigations in areas specified in the Call.".freeze, label: "call for applications".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:Proposition".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Proposition".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 :CaseForSupport, - comment: %(A part of a grant application that provides a description of a proposed project and gives reasons why it is worthy of funding. \(See also fabio:GrantApplication\).).freeze, + comment: "A part of a grant application that provides a description of a proposed project and gives reasons why it is worthy of funding. (See also fabio:GrantApplication).".freeze, label: "case for support".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CaseForSupportDocument, - comment: %(A document containing the case for support for a particular project, usually contained within a grant application document but sometimes distributed separately, without the financial and organizational information that the grant application document also contains.).freeze, + comment: "A document containing the case for support for a particular project, usually contained within a grant application document but sometimes distributed separately, without the financial and organizational information that the grant application document also contains.".freeze, label: "case for support document".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:CaseForSupport".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/CaseForSupport".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 :CaseReport, - comment: %(A report about a particular case or situation.).freeze, + comment: "A report about a particular case or situation.".freeze, label: "case report".freeze, - subClassOf: "fabio:Report".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Report".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Catalog, - comment: %(A list of items describing the content of a resource, for example items in an exhibition, items offered for sale by a vendor, or entities contained within a library or collection. Ideally, catalogs are created according to specific and uniform principles of construction and are under the control of an authority file.).freeze, + comment: "A list of items describing the content of a resource, for example items in an exhibition, items offered for sale by a vendor, or entities contained within a library or collection. Ideally, catalogs are created according to specific and uniform principles of construction and are under the control of an authority file.".freeze, label: "catalog".freeze, - subClassOf: "fabio:Specification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Specification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Chapter, - comment: %(A defined document section, forming part of or intended for inclusion within a larger document, usually with its own title or chapter number. Different chapters within a document such as a book or a report may each be independently authored, or may all be authored by a single individual or group of authors.).freeze, + comment: "A defined document section, forming part of or intended for inclusion within a larger document, usually with its own title or chapter number. Different chapters within a document such as a book or a report may each be independently authored, or may all be authored by a single individual or group of authors.".freeze, label: "chapter".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CitationMetadata, - comment: %(Metadata describing the citations made within a work to other works, and \(optionally\) some characteristics of the expressions of the cited works.).freeze, + comment: "Metadata describing the citations made within a work to other works, and (optionally) some characteristics of the expressions of the cited works.".freeze, label: "citation metadata".freeze, - subClassOf: "fabio:Metadata".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Metadata".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClinicalCaseReport, - comment: %(A presentation of findings following a clinical or medical investigation on a human or animal patient, that may contain a diagnosis and proposals for therapeutic treatment and/or epidemiological control measures, or may propose further evaluative studies that will eventually lead to such outcomes.).freeze, + comment: "A presentation of findings following a clinical or medical investigation on a human or animal patient, that may contain a diagnosis and proposals for therapeutic treatment and/or epidemiological control measures, or may propose further evaluative studies that will eventually lead to such outcomes.".freeze, label: "clinical case report".freeze, - subClassOf: "fabio:CaseReport".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/CaseReport".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClinicalGuideline, - comment: %(A recommendation on the appropriate treatment and care of people with a specific disease or condition, based on the best available evidence, designed to help healthcare professionals in their work.).freeze, + comment: "A recommendation on the appropriate treatment and care of people with a specific disease or condition, based on the best available evidence, designed to help healthcare professionals in their work.".freeze, label: "clinical guideline".freeze, - subClassOf: "fabio:InstructionalWork".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/InstructionalWork".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClinicalTrialDesign, - comment: %(A predefined written procedural method, designed to ensure reliability of findings, for undertaking a medical or veterinary clinical study of the safety, efficacy, or optimum dosage schedule of one or more diagnostic, therapeutic or prophylactic drugs or treatments, or of devices or techniques, involving a randomized controlled trial for evidence-based assessment in humans or animals, specifying criteria of eligibility, nature of controls, sampling schedules, data collection parameters, statistical analyses, reporting standards, etc. to be employed in undertaking the clinical trial.).freeze, + comment: "A predefined written procedural method, designed to ensure reliability of findings, for undertaking a medical or veterinary clinical study of the safety, efficacy, or optimum dosage schedule of one or more diagnostic, therapeutic or prophylactic drugs or treatments, or of devices or techniques, involving a randomized controlled trial for evidence-based assessment in humans or animals, specifying criteria of eligibility, nature of controls, sampling schedules, data collection parameters, statistical analyses, reporting standards, etc. to be employed in undertaking the clinical trial.".freeze, label: "clinical trial design".freeze, - subClassOf: "fabio:Specification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Specification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClinicalTrialReport, - comment: %(The report of a pre-planned medical or veterinary clinical study of the safety, efficacy, or optimum dosage schedule of one or more diagnostic, therapeutic or prophylactic drugs, or of devices, treatments or techniques, involving a randomized controlled trial for evidence-based assessment in humans or animals selected according to predetermined criteria of eligibility and observed for evidence of favourable and unfavourable effects.).freeze, + comment: "The report of a pre-planned medical or veterinary clinical study of the safety, efficacy, or optimum dosage schedule of one or more diagnostic, therapeutic or prophylactic drugs, or of devices, treatments or techniques, involving a randomized controlled trial for evidence-based assessment in humans or animals selected according to predetermined criteria of eligibility and observed for evidence of favourable and unfavourable effects.".freeze, label: "clinical trial report".freeze, - subClassOf: "fabio:TrialReport".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/TrialReport".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CollectedWorks, - comment: %(A collection of the literary or scholastic works of a single person.).freeze, + comment: "A collection of the literary or scholastic works of a single person.".freeze, label: "collected works".freeze, - subClassOf: "fabio:Anthology".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Anthology".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Comment, - comment: %(A verbal or written remark concerning some entity. In written form, a comment is often appended to that entity and termed an annotation. Within computer programs or ontologies, comments are added to enhance human understanding, and are usually prefaced by a special syntactic symbol that ensures they are ignored during execution of the program.).freeze, + comment: "A verbal or written remark concerning some entity. In written form, a comment is often appended to that entity and termed an annotation. Within computer programs or ontologies, comments are added to enhance human understanding, and are usually prefaced by a special syntactic symbol that ensures they are ignored during execution of the program.".freeze, label: "comment".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CompleteWorks, - comment: %(A collection of all the literary or scholastic works of a single person.).freeze, + comment: "A collection of all the literary or scholastic works of a single person.".freeze, label: "complete works".freeze, - subClassOf: "fabio:CollectedWorks".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/CollectedWorks".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ComputerApplication, - comment: %(A computer program designed to assist a human user to perform one or more goal-oriented tasks such as word processing or image processing. A computer application will typically save its output files in one or more specific formats, conforming either to proprietary or open standards. ).freeze, + comment: "A computer program designed to assist a human user to perform one or more goal-oriented tasks such as word processing or image processing. A computer application will typically save its output files in one or more specific formats, conforming either to proprietary or open standards. ".freeze, label: "computer application".freeze, - subClassOf: "fabio:ComputerProgram".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ComputerProgram".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ComputerFile, - comment: %(A digital item containing information in computer-readable form encoded in a particular format.).freeze, + comment: "A digital item containing information in computer-readable form encoded in a particular format.".freeze, label: "computer file".freeze, - subClassOf: "fabio:DigitalItem".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/DigitalItem".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ComputerProgram, - comment: %(A unit of computer code in source or compiled form, employing one or more algorithms to be executed by a digital computer to undertake a particular task. Computer programs are collectively called 'software' to distinguish them from the equipment \('hardware'\) upon which they run. ).freeze, + comment: "A unit of computer code in source or compiled form, employing one or more algorithms to be executed by a digital computer to undertake a particular task. Computer programs are collectively called 'software' to distinguish them from the equipment ('hardware') upon which they run. ".freeze, label: "computer program".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ConferencePaper, - comment: %(A paper, typically the realization of a research paper reporting original research findings, usually published within a conference proceedings volume.).freeze, + comment: "A paper, typically the realization of a research paper reporting original research findings, usually published within a conference proceedings volume.".freeze, label: "conference paper".freeze, - subClassOf: "fabio:ProceedingsPaper".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ProceedingsPaper".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ConferencePoster, - comment: %(A display poster, typically containing text with illustrative figures and/or tables, usually reporting research results or proposing hypotheses, submitted for acceptance to and/or presented at a conference, seminar, symposium, workshop or similar event.).freeze, + comment: "A display poster, typically containing text with illustrative figures and/or tables, usually reporting research results or proposing hypotheses, submitted for acceptance to and/or presented at a conference, seminar, symposium, workshop or similar event.".freeze, label: "conference poster".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ConferenceProceedings, - comment: %(A document containing the programme and collected conference papers, or their abstracts, presented at a conference, seminar, symposium or similar event.).freeze, + comment: "A document containing the programme and collected conference papers, or their abstracts, presented at a conference, seminar, symposium or similar event.".freeze, label: "conference proceedings".freeze, - subClassOf: ["fabio:AcademicProceedings".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/AcademicProceedings".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:ConferencePaper".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/ConferencePaper".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 :ControlledVocabulary, - comment: %(A collection of selected words and phrases related to a particular domain of knowledge used to permit consistency of metadata annotation and improved retrieval following a search, in which homonyms, synonyms and similar ambiguities of meaning present in natural language are disambiguated.).freeze, + comment: "A collection of selected words and phrases related to a particular domain of knowledge used to permit consistency of metadata annotation and improved retrieval following a search, in which homonyms, synonyms and similar ambiguities of meaning present in natural language are disambiguated.".freeze, label: "controlled vocabulary".freeze, - subClassOf: "fabio:Vocabulary".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Vocabulary".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Correction, - comment: %(A correction to an error in a previously published document.).freeze, + comment: "A correction to an error in a previously published document.".freeze, label: "correction".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Corrigendum, - comment: %(A formal correction to an error introduced by the author into a previously published document.).freeze, + comment: "A formal correction to an error introduced by the author into a previously published document.".freeze, label: "corrigendum".freeze, - subClassOf: "fabio:Correction".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Correction".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Cover, - comment: %(A protective covering used to bind together the pages of a document or the first, informative, page of a digital document.).freeze, + comment: "A protective covering used to bind together the pages of a document or the first, informative, page of a digital document.".freeze, label: "cover".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CriticalEdition, - comment: %(A new edition of a historical publication, edited by a scholar other than the original author, containing within the body text the supposedly best version of the original work, with footnotes detailing and commenting on textual variations between different versions, typically with an introduction to the original work written by the scholar, and with a bibliography listing related publications.).freeze, + comment: "A new edition of a historical publication, edited by a scholar other than the original author, containing within the body text the supposedly best version of the original work, with footnotes detailing and commenting on textual variations between different versions, typically with an introduction to the original work written by the scholar, and with a bibliography listing related publications.".freeze, label: "critical edition".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DataFile, - comment: %(A realisation of a fabio:Dataset \(a frbr:Work\) containing a defined collection of data with specific content and possibly with a specific version number, that can be embodied as a fabio:Digital Manifestation \(a frbr:Manifestation with a specific format\) and be represented by a specific fabio:ComputerFile \(a frbr:Item\) on someone's hard drive.).freeze, + comment: "A realisation of a fabio:Dataset (a frbr:Work) containing a defined collection of data with specific content and possibly with a specific version number, that can be embodied as a fabio:Digital Manifestation (a frbr:Manifestation with a specific format) and be represented by a specific fabio:ComputerFile (a frbr:Item) on someone's hard drive.".freeze, label: "data file".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:Dataset".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Dataset".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 :DataManagementPolicy, - comment: %(A policy that descibes and defines how data should be managed, preserved and shared.).freeze, + comment: "A policy that descibes and defines how data should be managed, preserved and shared.".freeze, label: "data management policy".freeze, - subClassOf: "fabio:Policy".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Policy".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DataManagementPolicyDocument, - comment: %(A document embodying a policy that descibes and defines how data should be managed, preserved and shared.).freeze, + comment: "A document embodying a policy that descibes and defines how data should be managed, preserved and shared.".freeze, label: "data management policy document".freeze, - subClassOf: "fabio:PolicyDocument".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/PolicyDocument".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DataMangementPlan, - comment: %(A structured document giving information about how data arising from a research project or other endeavour is to be manages, preserved and shared.).freeze, + comment: "A structured document giving information about how data arising from a research project or other endeavour is to be manages, preserved and shared.".freeze, label: "data management plan".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:Proposition".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Proposition".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 :DataRepository, - comment: %(A repository for storing data.).freeze, + comment: "A repository for storing data.".freeze, label: "data repository".freeze, - subClassOf: "fabio:Repository".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Repository".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Database, - comment: %(A structured collection of logically related records or data usually stored and retrieved using computer-based means.).freeze, + comment: "A structured collection of logically related records or data usually stored and retrieved using computer-based means.".freeze, label: "database".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DatabaseManagementSystem, - comment: %(The software used to create a database. \(Commonly abbreviated 'DBMS'.\)).freeze, + comment: "The software used to create a database. (Commonly abbreviated 'DBMS'.)".freeze, label: "database management system".freeze, - subClassOf: "fabio:ComputerProgram".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ComputerProgram".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Dataset, - comment: %(A collection of related facts, often expressed in numerical form and encoded in a defined structure.).freeze, + comment: "A collection of related facts, often expressed in numerical form and encoded in a defined structure.".freeze, label: "dataset".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DefinitiveVersion, - comment: %(The final published expression of a work that bears the publisher's imprimatur. Typically for a journal article, the Definitive Version results from revision of an earlier submitted version of the work following peer review, and is then published in print and/or digital form after the publisher has assigned it a DOI. The Definitive Version is also known as the Version of Record, although according to the CrossRef Glossary \(http://crossref.org/02publishers/glossary.html\) that term can also refer to the author's final version of a work that is not formally published. ).freeze, + comment: "The final published expression of a work that bears the publisher's imprimatur. Typically for a journal article, the Definitive Version results from revision of an earlier submitted version of the work following peer review, and is then published in print and/or digital form after the publisher has assigned it a DOI. The Definitive Version is also known as the Version of Record, although according to the CrossRef Glossary (http://crossref.org/02publishers/glossary.html) that term can also refer to the author's final version of a work that is not formally published. ".freeze, label: "definitive version".freeze, - subClassOf: "fabio:Manuscript".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Manuscript".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DemoPaper, - comment: %(A demonstration paper, typically describing a new product, service or system created as a result of research, usually presented during a conference or workshop.).freeze, + comment: "A demonstration paper, typically describing a new product, service or system created as a result of research, usually presented during a conference or workshop.".freeze, label: "demo paper".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Diary, - comment: %(A personal record, in a form of book, with discrete entries \(often handwritten\) arranged by date, reporting what has happened over the course of a day or other period of time.).freeze, + comment: "A personal record, in a form of book, with discrete entries (often handwritten) arranged by date, reporting what has happened over the course of a day or other period of time.".freeze, label: "diary".freeze, - subClassOf: ["fabio:Notebook".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Notebook".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:Entry".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Entry".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 :DigitalItem, - comment: %(A digital object, such as a computer file.).freeze, - "dc11:description": "A digital item is an exemplar of a digital manifestation only and it is always stored in a storage medium suitable for digital objects, such as CDs, DVDs, HDs and the Web.".freeze, + comment: "A digital object, such as a computer file.".freeze, + "http://purl.org/dc/elements/1.1/description": "A digital item is an exemplar of a digital manifestation only and it is always stored in a storage medium suitable for digital objects, such as CDs, DVDs, HDs and the Web.".freeze, label: "digital item".freeze, - subClassOf: ["fabio:Item".freeze, term( - onProperty: "fabio:isStoredOn".freeze, - someValuesFrom: "fabio:DigitalStorageMedium".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/spar/fabio/Item".freeze, term( + onProperty: "http://purl.org/spar/fabio/isStoredOn".freeze, + someValuesFrom: "http://purl.org/spar/fabio/DigitalStorageMedium".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( onProperty: "http://purl.org/vocab/frbr/core#exemplarOf".freeze, - someValuesFrom: "fabio:DigitalManifestation".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/DigitalManifestation".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 :DigitalManifestation, - comment: %(A manifestation that represents data in binary form, encoding the data as a series of 0s and 1s.).freeze, + comment: "A manifestation that represents data in binary form, encoding the data as a series of 0s and 1s.".freeze, label: "digital manifestation".freeze, - subClassOf: ["fabio:Manifestation".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Manifestation".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#exemplar".freeze, - someValuesFrom: "fabio:DigitalItem".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/DigitalItem".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 :DigitalStorageMedium, - comment: %(A means of storing information in digital form, involving binary encoding of data in 0s and 1s, e.g. a computer random access memory, hard disc, USB stick, CD, DVD or digital magnetic tape.).freeze, + comment: "A means of storing information in digital form, involving binary encoding of data in 0s and 1s, e.g. a computer random access memory, hard disc, USB stick, CD, DVD or digital magnetic tape.".freeze, label: "digital storage medium".freeze, - subClassOf: ["fabio:StorageMedium".freeze, term( - allValuesFrom: "fabio:DigitalItem".freeze, - onProperty: "fabio:stores".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/spar/fabio/StorageMedium".freeze, term( + allValuesFrom: "http://purl.org/spar/fabio/DigitalItem".freeze, + onProperty: "http://purl.org/spar/fabio/stores".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 :Directory, - comment: %(A database of information which is heavily optimized for reading.).freeze, + comment: "A database of information which is heavily optimized for reading.".freeze, label: "directory".freeze, - subClassOf: "fabio:Database".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Database".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DisciplineDictionary, - comment: %(A discipline dictionary is a collection of subject disciplines.).freeze, + comment: "A discipline dictionary is a collection of subject disciplines.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/fabio/TermDictionary".freeze, label: "discipline dictionary".freeze, - "owl:disjointWith": "fabio:TermDictionary".freeze, - subClassOf: ["skos:ConceptScheme".freeze, term( - allValuesFrom: "fabio:SubjectDiscipline".freeze, - onProperty: "fabio:isSchemeOf".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, term( + allValuesFrom: "http://purl.org/spar/fabio/SubjectDiscipline".freeze, + onProperty: "http://purl.org/spar/fabio/isSchemeOf".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 :DoctoralThesis, - comment: %(A thesis reporting the research undertaken during a period of graduate study leading to a doctoral degree.).freeze, + comment: "A thesis reporting the research undertaken during a period of graduate study leading to a doctoral degree.".freeze, label: "doctoral thesis".freeze, - subClassOf: "fabio:Thesis".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Thesis".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DocumentRepository, - comment: %(A repository for storing documents.).freeze, + comment: "A repository for storing documents.".freeze, label: "document repository".freeze, - subClassOf: "fabio:Repository".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Repository".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DustJacket, - comment: %(A detachable outer cover, usually made of paper and printed with text and illustrations. This outer cover has folded flaps that hold it to the cover of a document.).freeze, + comment: "A detachable outer cover, usually made of paper and printed with text and illustrations. This outer cover has folded flaps that hold it to the cover of a document.".freeze, label: "dust jacket".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Editorial, - comment: %(The realization of an opinion written by an editor.).freeze, + comment: "The realization of an opinion written by an editor.".freeze, label: "editorial".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:Opinion".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Opinion".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 :Email, - comment: %(A message transmitted over the internet as an item of electronic mail, typically based on the Simple Mail Transfer Protocol \(SMTP\). Emails can have computer files containing documents, dataset and images attached to them or embedded within them.).freeze, + comment: "A message transmitted over the internet as an item of electronic mail, typically based on the Simple Mail Transfer Protocol (SMTP). Emails can have computer files containing documents, dataset and images attached to them or embedded within them.".freeze, label: "e-mail".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EntityMetadata, - comment: %(Metadata describing the work itself, including for example the name of the creator\(s\), the title of the work, and the date and place of its creation.).freeze, + comment: "Metadata describing the work itself, including for example the name of the creator(s), the title of the work, and the date and place of its creation.".freeze, label: "entity metadata".freeze, - subClassOf: "fabio:Metadata".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Metadata".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Entry, - comment: %(An item written or printed in a diary, list, account book, reference book, or database.).freeze, + comment: "An item written or printed in a diary, list, account book, reference book, or database.".freeze, label: "entry".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Erratum, - comment: %(A formal correction to an error introduced by the publisher into a previously published document.).freeze, + comment: "A formal correction to an error introduced by the publisher into a previously published document.".freeze, label: "erratum".freeze, - subClassOf: "fabio:Correction".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Correction".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Essay, - comment: %(A piece of non-fiction writing on a particular subject, usually of moderate length and without chapters.).freeze, + comment: "A piece of non-fiction writing on a particular subject, usually of moderate length and without chapters.".freeze, label: "essay".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ExaminationPaper, - comment: %(A set of questions on a particular topic designed to test the academic, professional or technical ability of the person taking the examination, with achievement of a pass grade in the examination typically being a prerequisite for the award of an educational award such as a degree, or of a professional or technical qualification.).freeze, + comment: "A set of questions on a particular topic designed to test the academic, professional or technical ability of the person taking the examination, with achievement of a pass grade in the examination typically being a prerequisite for the award of an educational award such as a degree, or of a professional or technical qualification.".freeze, label: "examination paper".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Excerpt, - comment: %(A segment or passage selected from a larger expression for use in another expression, usually with specific attribution to its original source. - -[Note: Use fabio:Excerpt to indicate a segment or passage selected from another expression that is not a passage of speech, and fabio:Quotation to indicate a segment or passage selected from another expression that is a passage of speech.]).freeze, - "dc11:description": "An excerpt is more general than a quotation, and is generally used to indicate a re-published extract from a book, instruction manual, film, radio programme, etc, that need not be what someone said. \n\nFor example:\n Oxford 01865\n Oxshott 01372\n Oxted 01883\n Oxton 01578\nis an excerpt from the UK Dialling Codes section of the Oxford Telephone Directory. \n\nSimilarly, the following concluding passage from William Wordsworth's poem Lines written a Few Miles above Tintern Abbey is an excerpt rather than a quotation:\n Nor wilt thou then forget, \n That after many wanderings, many years \n Of absence, these steep woods and lofty cliffs, \n And this green pastoral landscape, were to me \n More dear, both for themselves and for thy sake.".freeze, + comment: "A segment or passage selected from a larger expression for use in another expression, usually with specific attribution to its original source.\n\n[Note: Use fabio:Excerpt to indicate a segment or passage selected from another expression that is not a passage of speech, and fabio:Quotation to indicate a segment or passage selected from another expression that is a passage of speech.]".freeze, + "http://purl.org/dc/elements/1.1/description": "An excerpt is more general than a quotation, and is generally used to indicate a re-published extract from a book, instruction manual, film, radio programme, etc, that need not be what someone said. \n\nFor example:\n Oxford 01865\n Oxshott 01372\n Oxted 01883\n Oxton 01578\nis an excerpt from the UK Dialling Codes section of the Oxford Telephone Directory. \n\nSimilarly, the following concluding passage from William Wordsworth's poem Lines written a Few Miles above Tintern Abbey is an excerpt rather than a quotation:\n Nor wilt thou then forget, \n That after many wanderings, many years \n Of absence, these steep woods and lofty cliffs, \n And this green pastoral landscape, were to me \n More dear, both for themselves and for thy sake.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/spar/fabio/Quotation".freeze, label: "excerpt".freeze, - "rdfs:seeAlso": "fabio:Quotation".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ExecutiveSummary, - comment: %(An executive summary is a brief report summarizing a longer formal report, designed to present the key points, conclusions and recommendations arising from the study being reported, for readers too busy to take the time to read the complete report.).freeze, + comment: "An executive summary is a brief report summarizing a longer formal report, designed to present the key points, conclusions and recommendations arising from the study being reported, for readers too busy to take the time to read the complete report.".freeze, label: "executive summary".freeze, - subClassOf: "fabio:BriefReport".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/BriefReport".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ExperimentalProtocol, - comment: %(A predefined written procedural method, designed to ensure successful replication of results by others in the same or other laboratories, that describes the overall objectives, organization and implementation of a scientific experiment, and specifies the experimental design, experimental methods, reagents, instrumentation, sampling schedules, data collection parameters, statistical analyses, image processing procedures, safety precautions, reporting standards, etc. employed in undertaking the experiment.).freeze, + comment: "A predefined written procedural method, designed to ensure successful replication of results by others in the same or other laboratories, that describes the overall objectives, organization and implementation of a scientific experiment, and specifies the experimental design, experimental methods, reagents, instrumentation, sampling schedules, data collection parameters, statistical analyses, image processing procedures, safety precautions, reporting standards, etc. employed in undertaking the experiment.".freeze, label: "experimental protocol".freeze, - subClassOf: "fabio:Specification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Specification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Expression, - comment: %(A subclass of FRBR expression, restricted to expressions of fabio:Works. For your latest research paper, the preprint submitted to the publisher, and the final published version to which the publisher assigned a unique digital object identifier, are both expressions of the same work. ).freeze, - "dc11:description": "A fabio:Expression can only have part or be part of another fabio:Expression. Moreover, it can be a representation only of a fabio:Work, and it can be embodied only in fabio:Manifestation(s).".freeze, + comment: "A subclass of FRBR expression, restricted to expressions of fabio:Works. For your latest research paper, the preprint submitted to the publisher, and the final published version to which the publisher assigned a unique digital object identifier, are both expressions of the same work. ".freeze, + "http://purl.org/dc/elements/1.1/description": "A fabio:Expression can only have part or be part of another fabio:Expression. Moreover, it can be a representation only of a fabio:Work, and it can be embodied only in fabio:Manifestation(s).".freeze, label: "expression".freeze, subClassOf: ["http://purl.org/vocab/frbr/core#Expression".freeze, term( - allValuesFrom: "fabio:Manifestation".freeze, + allValuesFrom: "http://purl.org/spar/fabio/Manifestation".freeze, onProperty: "http://purl.org/vocab/frbr/core#embodiment".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "fabio:Work".freeze, + allValuesFrom: "http://purl.org/spar/fabio/Work".freeze, onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( intersectionOf: list(term( allValuesFrom: "http://purl.org/vocab/frbr/core#Expression".freeze, onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( allValuesFrom: "http://purl.org/vocab/frbr/core#Expression".freeze, onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - type: "owl:Restriction".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 )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ExpressionCollection, - comment: %(A collection of expressions, for example a periodical or a book series.).freeze, + comment: "A collection of expressions, for example a periodical or a book series.".freeze, label: "expression collection".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:Expression".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Expression".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 :Figure, - comment: %(A visual communication object comprising one or more still images on a related theme. If included within a publication, a figure is typically unaligned with the main body of text, having its own descriptive textual figure legend.).freeze, + comment: "A visual communication object comprising one or more still images on a related theme. If included within a publication, a figure is typically unaligned with the main body of text, having its own descriptive textual figure legend.".freeze, label: "figure".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:StillImage".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/StillImage".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 :Film, - comment: %(A movie with an accompanying soundtrack, typically created by a professional film studio, designed to communicate a fictional story, record an artistic event, or impart information that is scientific or documentary in nature.).freeze, + comment: "A movie with an accompanying soundtrack, typically created by a professional film studio, designed to communicate a fictional story, record an artistic event, or impart information that is scientific or documentary in nature.".freeze, label: "film".freeze, - subClassOf: "fabio:Movie".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Movie".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Folksonomy, - comment: %(A system of classification derived from the practice and method of collaboratively creating and managing tags to annotate and categorize content in a particular domain. [Contrast fabio:Ontology]).freeze, + comment: "A system of classification derived from the practice and method of collaboratively creating and managing tags to annotate and categorize content in a particular domain. [Contrast fabio:Ontology]".freeze, label: "folksonomy".freeze, - subClassOf: "fabio:UncontrolledVocabulary".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/UncontrolledVocabulary".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GanttChart, - comment: %(A horizontal bar chart used to guide project planning, execution and control, illustrating the project schedule, with a separate line indicating the start and end dates of each of the key project activities or workpackages, and optionally showing the dependencies between these items. A Gantt chart is typically part of a project plan.).freeze, + comment: "A horizontal bar chart used to guide project planning, execution and control, illustrating the project schedule, with a separate line indicating the start and end dates of each of the key project activities or workpackages, and optionally showing the dependencies between these items. A Gantt chart is typically part of a project plan.".freeze, label: "Gantt chart".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GrantApplication, - comment: %(A formal written request for financial support from a grant-giving body in support of a project, for example an academic research project. \(See also fabio:CaseForSupport.\)).freeze, + comment: "A formal written request for financial support from a grant-giving body in support of a project, for example an academic research project. (See also fabio:CaseForSupport.)".freeze, label: "grant application".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GrantApplicationDocument, - comment: %(The realization of a grant application, usually containing a case for support document.).freeze, + comment: "The realization of a grant application, usually containing a case for support document.".freeze, label: "grant application document".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:GrantApplication".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/GrantApplication".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 :Hardback, - comment: %(A print object bound with rigid protective covers \(typically of cardboard covered with cloth, heavy paper, or sometimes leather\).).freeze, + comment: "A print object bound with rigid protective covers (typically of cardboard covered with cloth, heavy paper, or sometimes leather).".freeze, label: "hardback".freeze, - subClassOf: "fabio:PrintObject".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/PrintObject".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Image, - comment: %(A visual representation other than text, including all types of moving image and still image.).freeze, + comment: "A visual representation other than text, including all types of moving image and still image.".freeze, label: "image".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :InBrief, - comment: %(An 'In Brief' is a journal or magazine news item that describes all the articles \(or all the important articles\) in that issue of the periodical. The content of an 'In Brief' may be constructed from the abstracts of the articles it highlights, but is more likely to be written by a member of the periodical staff especially for the issue.).freeze, + comment: "An 'In Brief' is a journal or magazine news item that describes all the articles (or all the important articles) in that issue of the periodical. The content of an 'In Brief' may be constructed from the abstracts of the articles it highlights, but is more likely to be written by a member of the periodical staff especially for the issue.".freeze, label: "in brief".freeze, - subClassOf: ["fabio:NewsItem".freeze, term( - type: "owl:Class".freeze, - unionOf: list("fabio:JournalNewsItem".freeze, "fabio:MagazineNewsItem".freeze) + subClassOf: ["http://purl.org/spar/fabio/NewsItem".freeze, term( + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/fabio/JournalNewsItem".freeze, "http://purl.org/spar/fabio/MagazineNewsItem".freeze) )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :InUsePaper, - comment: %(A scholarly work that describes applied and validated solutions such as software tools, systems or architectures that benefit from the use of the technology of a particular scholarly domain. Usually, papers of this kind should also provide convincing evidence that there is use of the proposed application or tool by the target user group, preferably outside the institution that conducted its development. - -E.g. see http://iswc2018.semanticweb.org/call-for-in-use-track-papers/.).freeze, + comment: "A scholarly work that describes applied and validated solutions such as software tools, systems or architectures that benefit from the use of the technology of a particular scholarly domain. Usually, papers of this kind should also provide convincing evidence that there is use of the proposed application or tool by the target user group, preferably outside the institution that conducted its development.\n\nE.g. see http://iswc2018.semanticweb.org/call-for-in-use-track-papers/.".freeze, label: "in-use paper".freeze, - subClassOf: "fabio:ScholarlyWork".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ScholarlyWork".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Index, - comment: %(An alphabetically-ordered list of words and phrases \('headings'\) and associated pointers \('locators'\) to where useful material relating to that heading can be found in a document.).freeze, + comment: "An alphabetically-ordered list of words and phrases ('headings') and associated pointers ('locators') to where useful material relating to that heading can be found in a document.".freeze, label: "index".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :InstructionManual, - comment: %(An instructional document typically supplied with a technologically advanced consumer product, such as a car or a computer application, or with an item of complex equipment such as a microscope.).freeze, + comment: "An instructional document typically supplied with a technologically advanced consumer product, such as a car or a computer application, or with an item of complex equipment such as a microscope.".freeze, label: "instruction manual".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:InstructionalWork".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/InstructionalWork".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 :InstructionalWork, - comment: %(A work created for the purpose of education or instruction, that may be expressed as a text book, a lecture, a tutorial or an instruction manual.).freeze, + comment: "A work created for the purpose of education or instruction, that may be expressed as a text book, a lecture, a tutorial or an instruction manual.".freeze, label: "instructional work".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Item, - comment: %(A subclass of FRBR item, restricted to exemplars of fabio:Manifestations. An example of a fabio:Item is a printed copy of a journal article on your desk, or a PDF file of that article that you purchased from a publisher and that now resides in digital form on your computer hard drive. ).freeze, - "dc11:description": "A fabio:Item can only have part or be part of another fabio:Item. Moreover, it can be an exemplar only of a fabio:Manifestation.".freeze, + comment: "A subclass of FRBR item, restricted to exemplars of fabio:Manifestations. An example of a fabio:Item is a printed copy of a journal article on your desk, or a PDF file of that article that you purchased from a publisher and that now resides in digital form on your computer hard drive. ".freeze, + "http://purl.org/dc/elements/1.1/description": "A fabio:Item can only have part or be part of another fabio:Item. Moreover, it can be an exemplar only of a fabio:Manifestation.".freeze, label: "item".freeze, subClassOf: ["http://purl.org/vocab/frbr/core#Item".freeze, term( - allValuesFrom: "fabio:Manifestation".freeze, + allValuesFrom: "http://purl.org/spar/fabio/Manifestation".freeze, onProperty: "http://purl.org/vocab/frbr/core#exemplarOf".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( intersectionOf: list(term( allValuesFrom: "http://purl.org/vocab/frbr/core#Item".freeze, onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( allValuesFrom: "http://purl.org/vocab/frbr/core#Item".freeze, onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - type: "owl:Restriction".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 )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ItemCollection, - comment: %(A collection of items.).freeze, + comment: "A collection of items.".freeze, label: "item collection".freeze, - subClassOf: ["fabio:Item".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Item".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:Item".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Item".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 :Journal, - comment: %(A scholarly periodical primarily devoted to the publication of original research papers. [Printed and electronic manifestations of the same journal are usually identified by separate print and electronic International Standard Serial Numbers \(ISSN or eISSN, respectively\), that identifies the journal as a whole, not to individual issues of it.]).freeze, + comment: "A scholarly periodical primarily devoted to the publication of original research papers. [Printed and electronic manifestations of the same journal are usually identified by separate print and electronic International Standard Serial Numbers (ISSN or eISSN, respectively), that identifies the journal as a whole, not to individual issues of it.]".freeze, label: "journal".freeze, - subClassOf: ["fabio:Periodical".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Periodical".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:JournalIssue".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/JournalIssue".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:JournalVolume".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/JournalVolume".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 :JournalArticle, - comment: %(An article, typically the realization of a research paper reporting original research findings, published in a journal issue. ).freeze, + comment: "An article, typically the realization of a research paper reporting original research findings, published in a journal issue. ".freeze, label: "journal article".freeze, - subClassOf: ["fabio:Article".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Article".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:JournalIssue".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/JournalIssue".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 :JournalEditorial, - comment: %(An editorial published in an issue of a journal.).freeze, + comment: "An editorial published in an issue of a journal.".freeze, label: "journal editorial".freeze, - subClassOf: ["fabio:Editorial".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Editorial".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:JournalIssue".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/JournalIssue".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 :JournalIssue, - comment: %(A particular published issue of a journal, one or more of which will constitute a volume of the journal.).freeze, + comment: "A particular published issue of a journal, one or more of which will constitute a volume of the journal.".freeze, label: "journal issue".freeze, - subClassOf: ["fabio:PeriodicalIssue".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/PeriodicalIssue".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:JournalVolume".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/JournalVolume".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 :JournalNewsItem, - comment: %(A news report published in a journal issue.).freeze, + comment: "A news report published in a journal issue.".freeze, label: "journal news item".freeze, - subClassOf: ["fabio:NewsItem".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/NewsItem".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:JournalIssue".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/JournalIssue".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 :JournalVolume, - comment: %(A particular published volume of a journal, comprising one or more journal issues.).freeze, + comment: "A particular published volume of a journal, comprising one or more journal issues.".freeze, label: "journal volume".freeze, - subClassOf: ["fabio:PeriodicalVolume".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/PeriodicalVolume".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:Journal".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Journal".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 :LaboratoryNotebook, - comment: %(A notebook used by an individual research scientist as the primary record of his or her research activities. A researcher may use a laboratory notebook to document hypotheses, to describe experiments and to record data in various formats, to provide details of data analysis and interpretation, or to record the validation or invalidation of the original hypotheses. The laboratory notebook serves as an organizational tool and a memory aid. It may also have a role in recording and protecting any intellectual property created during the research, and may be used in evidence when establishing priority of discoveries, for example in patent applications. Electronic versions of laboratory notebooks are increasingly being employed by researchers, particularly in chemistry and the pharmaceutical industry.).freeze, + comment: "A notebook used by an individual research scientist as the primary record of his or her research activities. A researcher may use a laboratory notebook to document hypotheses, to describe experiments and to record data in various formats, to provide details of data analysis and interpretation, or to record the validation or invalidation of the original hypotheses. The laboratory notebook serves as an organizational tool and a memory aid. It may also have a role in recording and protecting any intellectual property created during the research, and may be used in evidence when establishing priority of discoveries, for example in patent applications. Electronic versions of laboratory notebooks are increasingly being employed by researchers, particularly in chemistry and the pharmaceutical industry.".freeze, label: "laboratory notebook".freeze, - subClassOf: "fabio:Notebook".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Notebook".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LectureNotes, - comment: %(A document containing notes that summarize a lecture or course of lectures.).freeze, + comment: "A document containing notes that summarize a lecture or course of lectures.".freeze, label: "lecture notes".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LegalOpinion, - comment: %(A written explanation by a judge or group of judges that accompanies a ruling in a legal case, laying out the reasons and legal principles for the ruling, and sometimes containing pronouncements about what the law is and how it should be interpreted.).freeze, + comment: "A written explanation by a judge or group of judges that accompanies a ruling in a legal case, laying out the reasons and legal principles for the ruling, and sometimes containing pronouncements about what the law is and how it should be interpreted.".freeze, label: "legal opinion".freeze, - subClassOf: "fabio:Opinion".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Opinion".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Letter, - comment: %(A written or printed communication of a personal or professional nature between individuals and/or representatives of corporate bodies, usually transmitted by the postal service or published in a periodical. In the latter case, the letter is typically addressed to the editor and comments on or discussed an item previously published by that periodical, or of interest to its readership.).freeze, + comment: "A written or printed communication of a personal or professional nature between individuals and/or representatives of corporate bodies, usually transmitted by the postal service or published in a periodical. In the latter case, the letter is typically addressed to the editor and comments on or discussed an item previously published by that periodical, or of interest to its readership.".freeze, label: "letter".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LibraryCatalog, - comment: %(The catalog of the holdings of a library, for example that of the Library of Congress \(http://catalog.loc.gov/\).).freeze, + comment: "The catalog of the holdings of a library, for example that of the Library of Congress (http://catalog.loc.gov/).".freeze, label: "library catalog".freeze, - subClassOf: "fabio:Catalog".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Catalog".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LiteraryArtisticWork, - comment: %(A literary creative work, such as a novel, play, poem or song.).freeze, + comment: "A literary creative work, such as a novel, play, poem or song.".freeze, label: "literary artistic work".freeze, - subClassOf: "fabio:ArtisticWork".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ArtisticWork".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Magazine, - comment: %(A periodical, usually devoted to a particular topic or domain of interest, and usually published weekly or monthly, consisting primarily of non-peer reviewed editorials, journalistic news items and more substantive articles, reviews, book reviews and discussions concerning current or recent events and publications, and matters of interest to the domain served by the magazine. [Some scientific journals, notably Science and Nature, also secondarily serve as science magazines by containing substantive editorials and news items on vital or controversial issues].).freeze, + comment: "A periodical, usually devoted to a particular topic or domain of interest, and usually published weekly or monthly, consisting primarily of non-peer reviewed editorials, journalistic news items and more substantive articles, reviews, book reviews and discussions concerning current or recent events and publications, and matters of interest to the domain served by the magazine. [Some scientific journals, notably Science and Nature, also secondarily serve as science magazines by containing substantive editorials and news items on vital or controversial issues].".freeze, label: "magazine".freeze, - subClassOf: ["fabio:Periodical".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Periodical".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:MagazineIssue".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/MagazineIssue".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 :MagazineArticle, - comment: %(An article published in a magazine issue.).freeze, + comment: "An article published in a magazine issue.".freeze, label: "magazine article".freeze, - subClassOf: ["fabio:Article".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Article".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:MagazineIssue".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/MagazineIssue".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 :MagazineEditorial, - comment: %(An editorial published in an issue of a magazine.).freeze, + comment: "An editorial published in an issue of a magazine.".freeze, label: "magazine editorial".freeze, - subClassOf: ["fabio:Editorial".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Editorial".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:MagazineIssue".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/MagazineIssue".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 :MagazineIssue, - comment: %(A particular published issue of a magazine, identified by date, and sometimes also by place \(e.g. 'West Coast edition'\) or language \(e.g. 'Spanish edition'\).).freeze, + comment: "A particular published issue of a magazine, identified by date, and sometimes also by place (e.g. 'West Coast edition') or language (e.g. 'Spanish edition').".freeze, label: "magazine issue".freeze, - subClassOf: ["fabio:PeriodicalIssue".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/PeriodicalIssue".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:Magazine".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Magazine".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 :MagazineNewsItem, - comment: %(A news report published in a magazine issue.).freeze, + comment: "A news report published in a magazine issue.".freeze, label: "magazine news item".freeze, - subClassOf: ["fabio:NewsItem".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/NewsItem".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:MagazineIssue".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/MagazineIssue".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 :Manifestation, - comment: %(A subclass of FRBR manifestation, restricted to manifestations of fabio:Expressions. fabio:Manifestation specifically applies to electronic \(digital\) as well as to physical manifestations of expressions. - -Examples of different manifestations of a single 'version of record' expression of a scholarly work include an article in a print journal or the on-line version of that article as a web page.).freeze, - "dc11:description": "A fabio:Manifestation can only have part or be part of another fabio:Manifestation. Moreover, it can be an embodiment only of a fabio:Expression and it can be exemplified only by fabio:Item(s).".freeze, + comment: "A subclass of FRBR manifestation, restricted to manifestations of fabio:Expressions. fabio:Manifestation specifically applies to electronic (digital) as well as to physical manifestations of expressions. \n\nExamples of different manifestations of a single 'version of record' expression of a scholarly work include an article in a print journal or the on-line version of that article as a web page.".freeze, + "http://purl.org/dc/elements/1.1/description": "A fabio:Manifestation can only have part or be part of another fabio:Manifestation. Moreover, it can be an embodiment only of a fabio:Expression and it can be exemplified only by fabio:Item(s).".freeze, label: "manifestation".freeze, subClassOf: ["http://purl.org/vocab/frbr/core#Manifestation".freeze, term( - allValuesFrom: "fabio:Expression".freeze, + allValuesFrom: "http://purl.org/spar/fabio/Expression".freeze, onProperty: "http://purl.org/vocab/frbr/core#embodimentOf".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "fabio:Item".freeze, + allValuesFrom: "http://purl.org/spar/fabio/Item".freeze, onProperty: "http://purl.org/vocab/frbr/core#exemplar".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( intersectionOf: list(term( allValuesFrom: "http://purl.org/vocab/frbr/core#Manifestation".freeze, onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( allValuesFrom: "http://purl.org/vocab/frbr/core#Manifestation".freeze, onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - type: "owl:Restriction".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 )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ManifestationCollection, - comment: %(A collection of manifestations.).freeze, + comment: "A collection of manifestations.".freeze, label: "manifestation collection".freeze, - subClassOf: ["fabio:Manifestation".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Manifestation".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:Manifestation".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Manifestation".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 :Manuscript, - comment: %(A textual work prepared 'by hand', such as a typescript or word-processed pre-publication draft of a research paper or a report, or a work not otherwise reproduced in multiple copies. [Note: fabio:Manuscript is not intended to describe a handwritten historical document on paper or parchment, for which the FRBR distinctions between work, expression, manifestation and item \(individual copy\) becomes blurred.].).freeze, + comment: "A textual work prepared 'by hand', such as a typescript or word-processed pre-publication draft of a research paper or a report, or a work not otherwise reproduced in multiple copies. [Note: fabio:Manuscript is not intended to describe a handwritten historical document on paper or parchment, for which the FRBR distinctions between work, expression, manifestation and item (individual copy) becomes blurred.].".freeze, label: "manuscript".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MastersThesis, - comment: %(A thesis reporting a research project undertaken as part of a graduate course of education leading to a master's degree.).freeze, + comment: "A thesis reporting a research project undertaken as part of a graduate course of education leading to a master's degree.".freeze, label: "master's thesis".freeze, - subClassOf: "fabio:Thesis".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Thesis".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MeetingReport, - comment: %(A report of a meeting of some kind.).freeze, + comment: "A report of a meeting of some kind.".freeze, label: "meeting report".freeze, - subClassOf: "fabio:Report".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Report".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Metadata, - comment: %(A separate work that provides information describing one or more characteristics of a resource or entity.).freeze, + comment: "A separate work that provides information describing one or more characteristics of a resource or entity.".freeze, label: "metadata".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MetadataDocument, - comment: %(A document that contains metadata information describing one or more characteristics of an entity.).freeze, + comment: "A document that contains metadata information describing one or more characteristics of an entity.".freeze, label: "metadata document".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:Metadata".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Metadata".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 :MethodsPaper, - comment: %(A scholarly work detailing a method, procedure or experimental protocol employed in a particular scholarly domain.).freeze, + comment: "A scholarly work detailing a method, procedure or experimental protocol employed in a particular scholarly domain.".freeze, label: "methods paper".freeze, - subClassOf: "fabio:ScholarlyWork".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ScholarlyWork".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Microblog, - comment: %(A social networking publication medium such as Twitter, Tumblr, FriendFeed, Facebook or MySpace. A microblog differs from a traditional blog in that its individual content items are smaller than a traditional blog posts, typically containing just a short sentence, a single image, or a URI. These small messages are referred to as microposts.).freeze, + comment: "A social networking publication medium such as Twitter, Tumblr, FriendFeed, Facebook or MySpace. A microblog differs from a traditional blog in that its individual content items are smaller than a traditional blog posts, typically containing just a short sentence, a single image, or a URI. These small messages are referred to as microposts.".freeze, label: "microblog".freeze, - subClassOf: "fabio:Blog".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Blog".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Micropost, - comment: %(A content item that is published in a Microblog, typically containing just a short sentence, a single image, or a URL.).freeze, + comment: "A content item that is published in a Microblog, typically containing just a short sentence, a single image, or a URL.".freeze, label: "micropost".freeze, - subClassOf: ["fabio:Entry".freeze, "fabio:WebContent".freeze], - type: "owl:Class".freeze + subClassOf: ["http://purl.org/spar/fabio/Entry".freeze, "http://purl.org/spar/fabio/WebContent".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MinimalInformationStandard, - comment: %(A metadata standard specifying items to be included when creating metadata describing a dataset of a particular type, or when creating a structured summary of the main findings of an article or report in a particular domain of interest, thereby ensuring adequate descriptive information is recorded for subsequent resource discovery and/or interpretation of the information described. [See also fabio:ReportingStandard.]).freeze, + comment: "A metadata standard specifying items to be included when creating metadata describing a dataset of a particular type, or when creating a structured summary of the main findings of an article or report in a particular domain of interest, thereby ensuring adequate descriptive information is recorded for subsequent resource discovery and/or interpretation of the information described. [See also fabio:ReportingStandard.]".freeze, label: "minimal information standard".freeze, - subClassOf: "fabio:Specification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Specification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Model, - comment: %(A mathematical, graphical or physical representation of some physical reality, conceptual idea or theoretical construct.).freeze, + comment: "A mathematical, graphical or physical representation of some physical reality, conceptual idea or theoretical construct.".freeze, label: "model".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Movie, - comment: %(The realization of a moving image.).freeze, + comment: "The realization of a moving image.".freeze, label: "movie".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:MovingImage".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/MovingImage".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 :MovingImage, - comment: %(A moving display, either generated dynamically by a computer program or formed from a series of pre-recorded still images imparting an impression of motion when shown in succession. Examples include animations, cine films, videos, and computational simulations. Expressions of moving images may incorporate synchronized soundtracks.).freeze, + comment: "A moving display, either generated dynamically by a computer program or formed from a series of pre-recorded still images imparting an impression of motion when shown in succession. Examples include animations, cine films, videos, and computational simulations. Expressions of moving images may incorporate synchronized soundtracks.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/spar/fabio/StillImage".freeze, label: "moving image".freeze, - "owl:disjointWith": "fabio:StillImage".freeze, - subClassOf: "fabio:Image".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Image".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MusicalComposition, - comment: %(A piece of music, typically in the form of a composition recorded in musical notation.).freeze, + comment: "A piece of music, typically in the form of a composition recorded in musical notation.".freeze, label: "musical composition".freeze, - subClassOf: "fabio:LiteraryArtisticWork".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/LiteraryArtisticWork".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Nanopublication, - comment: %(A single, attributable and machine-readable factual assertion - the smallest unit of publishable information that can be uniquely identified and attributed to its author – typically expressed in RDF. The minimal components of a nanopublication are as follows: -* the factual assertion itself, in the form subject, predicate and object \(e.g. malaria is_a disease\); -* provenance information about the nanopublication, defining its authorship and creation date; -* supporting information \(optional\), providing context for the assertion; -* a unique identifier for the nanopublication, in the form of a URI; -* an integrity key that ensures that the nanopublication is in its original form and has not been altered. -).freeze, + comment: "A single, attributable and machine-readable factual assertion - the smallest unit of publishable information that can be uniquely identified and attributed to its author – typically expressed in RDF. The minimal components of a nanopublication are as follows:\n* the factual assertion itself, in the form subject, predicate and object (e.g. malaria is_a disease);\n* provenance information about the nanopublication, defining its authorship and creation date;\n* supporting information (optional), providing context for the assertion;\n* a unique identifier for the nanopublication, in the form of a URI;\n* an integrity key that ensures that the nanopublication is in its original form and has not been altered.\n".freeze, label: "nanopublication".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NewsItem, - comment: %(A published news report.).freeze, + comment: "A published news report.".freeze, label: "news item".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:NewsReport".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/NewsReport".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 :NewsReport, - comment: %(A report of an item of news.).freeze, + comment: "A report of an item of news.".freeze, label: "news report".freeze, - subClassOf: "fabio:Report".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Report".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Newspaper, - comment: %(A non-peer reviewed periodical, usually published daily or weekly, consisting primarily of editorials and news items concerning current or recent events and matters of public interest.).freeze, + comment: "A non-peer reviewed periodical, usually published daily or weekly, consisting primarily of editorials and news items concerning current or recent events and matters of public interest.".freeze, label: "newspaper".freeze, - subClassOf: ["fabio:Periodical".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Periodical".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:NewspaperIssue".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/NewspaperIssue".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 :NewspaperArticle, - comment: %(An article written by a journalist and published in a newspaper.).freeze, + comment: "An article written by a journalist and published in a newspaper.".freeze, label: "newspaper article".freeze, - subClassOf: ["fabio:Article".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Article".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:NewspaperIssue".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/NewspaperIssue".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 :NewspaperEditorial, - comment: %(An editorial published in an issue of a newspaper.).freeze, + comment: "An editorial published in an issue of a newspaper.".freeze, label: "newspaper editorial".freeze, - subClassOf: ["fabio:Editorial".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Editorial".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:NewspaperIssue".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/NewspaperIssue".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 :NewspaperIssue, - comment: %(A particular published issue of a newspaper, identified by date, and sometimes also by place or time \(e.g. 'Late London Edition'\).).freeze, + comment: "A particular published issue of a newspaper, identified by date, and sometimes also by place or time (e.g. 'Late London Edition').".freeze, label: "newspaper issue".freeze, - subClassOf: ["fabio:PeriodicalIssue".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/PeriodicalIssue".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:Newspaper".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Newspaper".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 :NewspaperNewsItem, - comment: %(A news report published in a newspaper issue.).freeze, + comment: "A news report published in a newspaper issue.".freeze, label: "newspaper news item".freeze, - subClassOf: ["fabio:NewsItem".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/NewsItem".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:NewspaperIssue".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/NewspaperIssue".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 :Notebook, - comment: %(A book containing personal notes, typically created by writing into a physical book with blank pages.).freeze, + comment: "A book containing personal notes, typically created by writing into a physical book with blank pages.".freeze, label: "notebook".freeze, - subClassOf: "fabio:Book".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Book".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NotificationOfReceipt, - comment: %(A notification of receipt of something, for example of receipt of a book that will later be the subject of a book review.).freeze, + comment: "A notification of receipt of something, for example of receipt of a book that will later be the subject of a book review.".freeze, label: "notification of receipt".freeze, - subClassOf: "fabio:Announcement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Announcement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Novel, - comment: %(A long fictitious narrative written in literary prose.).freeze, + comment: "A long fictitious narrative written in literary prose.".freeze, label: "novel".freeze, - subClassOf: "fabio:LiteraryArtisticWork".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/LiteraryArtisticWork".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Obituary, - comment: %(A news item reporting the death of a person, typically accompanied by an description of that person's life and contributions to his or her profession and to society at large.).freeze, + comment: "A news item reporting the death of a person, typically accompanied by an description of that person's life and contributions to his or her profession and to society at large.".freeze, label: "obituary".freeze, - subClassOf: "fabio:NewsReport".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/NewsReport".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Ontology, - comment: %(A formal representation of a set of concepts within a domain of knowledge, and the logical relationships between those concepts. [Contrast fabio:Folksonomy]).freeze, + comment: "A formal representation of a set of concepts within a domain of knowledge, and the logical relationships between those concepts. [Contrast fabio:Folksonomy]".freeze, label: "ontology".freeze, - subClassOf: "fabio:ControlledVocabulary".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ControlledVocabulary".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :OntologyDocument, - comment: %(A document containing an ontology, for example an OWL \(Web Ontology Language\) file \(http://www.w3.org/TR/owl-features/\).).freeze, + comment: "A document containing an ontology, for example an OWL (Web Ontology Language) file (http://www.w3.org/TR/owl-features/).".freeze, label: "ontology document".freeze, - subClassOf: ["fabio:VocabularyDocument".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/VocabularyDocument".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:Ontology".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Ontology".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 :Opinion, - comment: %(An expression of a personal or professional opinion on an issue or topic.).freeze, + comment: "An expression of a personal or professional opinion on an issue or topic.".freeze, label: "opinion".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Oration, - comment: %(A formal speech, for example one delivered at a ceremonial occasion, or the written transcript of such a speech.).freeze, + comment: "A formal speech, for example one delivered at a ceremonial occasion, or the written transcript of such a speech.".freeze, label: "oration".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Page, - comment: %(A manifestation that represents pages either in physical \(e.g., one side of a sheet of paper\) or in digital form \(e.g., a page in a PDF, or a web page\).).freeze, + comment: "A manifestation that represents pages either in physical (e.g., one side of a sheet of paper) or in digital form (e.g., a page in a PDF, or a web page).".freeze, label: "page".freeze, - subClassOf: "fabio:Manifestation".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Manifestation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Paperback, - comment: %(A print object with a flexible cover, usually made of paper or paperboard.).freeze, + comment: "A print object with a flexible cover, usually made of paper or paperboard.".freeze, label: "paperback".freeze, - subClassOf: "fabio:PrintObject".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/PrintObject".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Patent, - comment: %(A formal disclosure of a new invention approved by a governmental patent agency, made to register intellectual property rights, and to give exclusive rights to the inventor or assignee to manufacture, use, license or sell the invention for a certain number of years.).freeze, + comment: "A formal disclosure of a new invention approved by a governmental patent agency, made to register intellectual property rights, and to give exclusive rights to the inventor or assignee to manufacture, use, license or sell the invention for a certain number of years.".freeze, label: "patent".freeze, - subClassOf: "fabio:Specification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Specification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PatentApplication, - comment: %(A formal disclosure of a new invention, made in application for a patent.).freeze, + comment: "A formal disclosure of a new invention, made in application for a patent.".freeze, label: "patent application".freeze, - subClassOf: "fabio:Specification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Specification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PatentApplicationDocument, - comment: %(The physical or electronic realization of a patent application.).freeze, + comment: "The physical or electronic realization of a patent application.".freeze, label: "patent application document".freeze, - subClassOf: ["fabio:SpecificationDocument".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/SpecificationDocument".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:PatentApplication".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/PatentApplication".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 :PatentDocument, - comment: %(The physical or electronic realization of a patent.).freeze, + comment: "The physical or electronic realization of a patent.".freeze, label: "patent document".freeze, - subClassOf: ["fabio:SpecificationDocument".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/SpecificationDocument".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:Patent".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Patent".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 :Periodical, - comment: %(A publication issued on a regular and ongoing basis as a series of issues, each issue comprising separate periodical items, for example editorials, articles, news items and/or other writings.).freeze, + comment: "A publication issued on a regular and ongoing basis as a series of issues, each issue comprising separate periodical items, for example editorials, articles, news items and/or other writings.".freeze, label: "periodical".freeze, - subClassOf: ["fabio:ExpressionCollection".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/ExpressionCollection".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:PeriodicalIssue".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/PeriodicalIssue".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 :PeriodicalIssue, - comment: %(A particular issue of a periodical, identified and distinguished from other issues of the same publication by date and/or issue number and/or volume number, and comprising separate periodical items such as editorials, articles and news items.).freeze, + comment: "A particular issue of a periodical, identified and distinguished from other issues of the same publication by date and/or issue number and/or volume number, and comprising separate periodical items such as editorials, articles and news items.".freeze, label: "periodical issue".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:Periodical".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Periodical".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 :PeriodicalItem, - comment: %(A piece of writing published in a periodical issue, typically accompanied by other items by different authors.).freeze, + comment: "A piece of writing published in a periodical issue, typically accompanied by other items by different authors.".freeze, equivalentClass: term( - intersectionOf: list("fabio:Expression".freeze, term( + intersectionOf: list("http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, someValuesFrom: term( - type: "owl:Class".freeze, - unionOf: list("fabio:PeriodicalIssue".freeze, "fabio:PeriodicalVolume".freeze) - ), - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/fabio/PeriodicalIssue".freeze, "http://purl.org/spar/fabio/PeriodicalVolume".freeze) + ).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 ), label: "periodical item".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PeriodicalVolume, - comment: %(A particular published volume of a periodical.).freeze, + comment: "A particular published volume of a periodical.".freeze, label: "periodical volume".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - someValuesFrom: "fabio:Periodical".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Periodical".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 :PersonalCommunication, - comment: %(Information communicated personally by verbal or written means from one individual to one or more another persons or organizations.).freeze, + comment: "Information communicated personally by verbal or written means from one individual to one or more another persons or organizations.".freeze, label: "personal communication".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PhDSymposiumPaper, - comment: %(A paper, usually presented during a specific session of a conference dedicated to Ph.D. students, that describes ongoing Ph.D. student's research.).freeze, + comment: "A paper, usually presented during a specific session of a conference dedicated to Ph.D. students, that describes ongoing Ph.D. student's research.".freeze, label: "Ph.D. symposium paper".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Play, - comment: %(A form of literature written by a playwright, usually consisting of scripted dialogue between characters, intended for theatrical performance rather than reading.).freeze, + comment: "A form of literature written by a playwright, usually consisting of scripted dialogue between characters, intended for theatrical performance rather than reading.".freeze, label: "play".freeze, - subClassOf: "fabio:LiteraryArtisticWork".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/LiteraryArtisticWork".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Poem, - comment: %(An artistic work written with an intensity or beauty of language more characteristic of poetry than of prose.).freeze, + comment: "An artistic work written with an intensity or beauty of language more characteristic of poetry than of prose.".freeze, label: "poem".freeze, - subClassOf: "fabio:LiteraryArtisticWork".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/LiteraryArtisticWork".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Policy, - comment: %(A description and definition of how something should be done. Ideally a policy should be both effective in achieving its goals and acceptable to those who have to abide by it.).freeze, + comment: "A description and definition of how something should be done. Ideally a policy should be both effective in achieving its goals and acceptable to those who have to abide by it.".freeze, label: "policy".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PolicyDocument, - comment: %(A document embodying a policy that descibes and defines how something should be done. ).freeze, + comment: "A document embodying a policy that descibes and defines how something should be done. ".freeze, label: "policy document".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:Policy".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Policy".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 :PositionPaper, - comment: %(A scholarly work that reports a particular intellectual position or viewpoint regarding a particular scholarly topic. Usually, these papers are dependent on the author's opinion or interpretation, do not have an evaluation, and need to present relevant and novel discussion points in a thorough manner. - -E.g. see https://datasciencehub.net/content/guidelines-authors).freeze, + comment: "A scholarly work that reports a particular intellectual position or viewpoint regarding a particular scholarly topic. Usually, these papers are dependent on the author's opinion or interpretation, do not have an evaluation, and need to present relevant and novel discussion points in a thorough manner.\n\nE.g. see https://datasciencehub.net/content/guidelines-authors".freeze, label: "position paper".freeze, - subClassOf: ["fabio:Opinion".freeze, "fabio:ScholarlyWork".freeze], - type: "owl:Class".freeze + subClassOf: ["http://purl.org/spar/fabio/Opinion".freeze, "http://purl.org/spar/fabio/ScholarlyWork".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PosterPaper, - comment: %(A paper that typically accompanies a poster describing some preliminary results of research, usually presented during a conference or a workshop.).freeze, + comment: "A paper that typically accompanies a poster describing some preliminary results of research, usually presented during a conference or a workshop.".freeze, label: "poster paper".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Postprint, - comment: %(The version of an author's original scholarly work, such as a research paper or a review, re-submitted for publication after revision by the author in the light of comments from reviewers. [Note: For the version before peer review, use fabio:Preprint. For the final piblished version, use fabio:DefinitiveVersion.]).freeze, + comment: "The version of an author's original scholarly work, such as a research paper or a review, re-submitted for publication after revision by the author in the light of comments from reviewers. [Note: For the version before peer review, use fabio:Preprint. For the final piblished version, use fabio:DefinitiveVersion.]".freeze, label: "postprint".freeze, - subClassOf: "fabio:Manuscript".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Manuscript".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Preprint, - comment: %(The version of an author's original scholarly work, such as a research paper or a review, first submitted to publisher for publication. [Note: For that version resubmitted after peer-review and revision, use fabio:Postprint. For the final published version use fabio:DefinitiveVersion.]).freeze, + comment: "The version of an author's original scholarly work, such as a research paper or a review, first submitted to publisher for publication. [Note: For that version resubmitted after peer-review and revision, use fabio:Postprint. For the final published version use fabio:DefinitiveVersion.]".freeze, label: "preprint".freeze, - subClassOf: "fabio:Manuscript".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Manuscript".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Presentation, - comment: %(A set of slides containing text, tables or figures, designed to communicate ideas or research results, for projection and viewing by an audience at a conference, symposium, seminar, lecture, workshop or other gatherings, typically embodied in a particular manifestation format such as a SlideShare or PowerPoint slideshow.).freeze, + comment: "A set of slides containing text, tables or figures, designed to communicate ideas or research results, for projection and viewing by an audience at a conference, symposium, seminar, lecture, workshop or other gatherings, typically embodied in a particular manifestation format such as a SlideShare or PowerPoint slideshow.".freeze, label: "presentation".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PressRelease, - comment: %(A news report published by an organization to provide information to journalists.).freeze, + comment: "A news report published by an organization to provide information to journalists.".freeze, label: "press release".freeze, - subClassOf: "fabio:NewsItem".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/NewsItem".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PrintObject, - comment: %(An analog manifestation in physical printed form, typically on paper.).freeze, + comment: "An analog manifestation in physical printed form, typically on paper.".freeze, label: "print object".freeze, - subClassOf: "fabio:AnalogManifestation".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/AnalogManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProceedingsPaper, - comment: %(A paper, typically the realization of a research paper reporting original research findings, usually published within an academic proceedings volume.).freeze, + comment: "A paper, typically the realization of a research paper reporting original research findings, usually published within an academic proceedings volume.".freeze, label: "proceedings paper".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProductReview, - comment: %(A written review and critical analysis of the purpose, features, performance and other qualities of a product.).freeze, + comment: "A written review and critical analysis of the purpose, features, performance and other qualities of a product.".freeze, label: "product review".freeze, - subClassOf: "fabio:Review".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Review".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProjectMetadata, - comment: %(Metadata describing a project, for example the project name, the names of those who conducted the project, the name of the institution in which the project was conducted, and the project funding information.).freeze, + comment: "Metadata describing a project, for example the project name, the names of those who conducted the project, the name of the institution in which the project was conducted, and the project funding information.".freeze, label: "project metadata".freeze, - subClassOf: "fabio:Metadata".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Metadata".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProjectPlan, - comment: %(A document used to guide project planning, execution and control, specifying the project's goal and objectives and the activities and resources required to achieve these, setting out the project schedule, and identifying the major workpackages, milestones and deliverables. A project plan will typically contain a Gantt chart. -).freeze, + comment: "A document used to guide project planning, execution and control, specifying the project's goal and objectives and the activities and resources required to achieve these, setting out the project schedule, and identifying the major workpackages, milestones and deliverables. A project plan will typically contain a Gantt chart.\n".freeze, label: "project plan".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProjectReport, - comment: %(A report describing the outcomes of specific project, typically listing 'deliverables' created or 'milestones' achieved during the project.).freeze, + comment: "A report describing the outcomes of specific project, typically listing 'deliverables' created or 'milestones' achieved during the project.".freeze, label: "deliverable report".freeze, - subClassOf: "fabio:Report".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Report".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ProjectReportDocument, - comment: %(A document containing a project report, intended to be delivered to a customer or funding agency describing the results achieved within a specific project. ).freeze, + comment: "A document containing a project report, intended to be delivered to a customer or funding agency describing the results achieved within a specific project. ".freeze, label: "deliverable".freeze, - subClassOf: ["fabio:ReportDocument".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/ReportDocument".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:ProjectReport".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/ProjectReport".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 :Proof, - comment: %(In printing and publishing, a proof copy is the preliminary version of a publication, after the inclusion of any author corrections following review, and after copy editing and formatting to bring the manuscript into the house style, intended for final checking prior to publication to detect and eliminate typographical errors, omissions or transpositions of text, incorrect layout or placement of illustrations and tables, or other formatting errors. Those who check proofs include the editor, possibly the peer-reviewers \(to ensure that their requested modifications have been included to their satisfaction\), possibly an in-house professional proof-reader, and / or the author, who is ultimately responsible for ensuring the published work says what \(s\)he means it to say. Substantive changes to the text are not permitted once the manuscript has reached proof stage.).freeze, + comment: "In printing and publishing, a proof copy is the preliminary version of a publication, after the inclusion of any author corrections following review, and after copy editing and formatting to bring the manuscript into the house style, intended for final checking prior to publication to detect and eliminate typographical errors, omissions or transpositions of text, incorrect layout or placement of illustrations and tables, or other formatting errors. Those who check proofs include the editor, possibly the peer-reviewers (to ensure that their requested modifications have been included to their satisfaction), possibly an in-house professional proof-reader, and / or the author, who is ultimately responsible for ensuring the published work says what (s)he means it to say. Substantive changes to the text are not permitted once the manuscript has reached proof stage.".freeze, label: "proof".freeze, - subClassOf: "fabio:Manuscript".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Manuscript".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Proposition, - comment: %(A proposal or proposition of a new conceptualization, hypothesis, idea, theory, activity or organisation.).freeze, + comment: "A proposal or proposition of a new conceptualization, hypothesis, idea, theory, activity or organisation.".freeze, label: "proposition".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Questionnaire, - comment: %(A set of questions on a particular topic, usually in the form of multiple choice questions requiring the respondent to select the correct answer, or providing the ability to indicate support for or against a proposal on a numerical scale, designed for rapid numerical analysis of responses and often used in surveying public opinion.).freeze, + comment: "A set of questions on a particular topic, usually in the form of multiple choice questions requiring the respondent to select the correct answer, or providing the ability to indicate support for or against a proposal on a numerical scale, designed for rapid numerical analysis of responses and often used in surveying public opinion.".freeze, label: "questionnaire".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Quotation, - comment: %(A passage of speech selected from a larger verbal or written expression for use in another expression, with specific attribution to its original source, and usually demarcated by quotation marks and / or by placing it in a separate indented paragraph. - -[Note: Use fabio:Quotation to indicate a segment or passage selected from another expression that is a passage of speech, and fabio:Excerpt to indicate a segment or passage selected from another expression that is not a passage of speech.]).freeze, - "dc11:description": "A quotation is a repetition of what someone has said, and is presented \"within quotation marks\", for example:\n\nOn June 4th 1940, Winston Churchill made a speech on the radio that has since become famous, that included the words:\n \" . . . we shall fight on the beaches, we shall fight on the landing grounds, we shall fight in the fields and in the streets, we shall fight in the hills; we shall never surrender . . .\"\n\nSimilarly, the words \"but Brutus is an honourable man\" from Mark Antony's funeral speech in Shakespeare's play Julius Caesar is a quotation, since Mark Antony says these words in the play.".freeze, + comment: "A passage of speech selected from a larger verbal or written expression for use in another expression, with specific attribution to its original source, and usually demarcated by quotation marks and / or by placing it in a separate indented paragraph. \n\n[Note: Use fabio:Quotation to indicate a segment or passage selected from another expression that is a passage of speech, and fabio:Excerpt to indicate a segment or passage selected from another expression that is not a passage of speech.]".freeze, + "http://purl.org/dc/elements/1.1/description": "A quotation is a repetition of what someone has said, and is presented \"within quotation marks\", for example:\n\nOn June 4th 1940, Winston Churchill made a speech on the radio that has since become famous, that included the words:\n \" . . . we shall fight on the beaches, we shall fight on the landing grounds, we shall fight in the fields and in the streets, we shall fight in the hills; we shall never surrender . . .\"\n\nSimilarly, the words \"but Brutus is an honourable man\" from Mark Antony's funeral speech in Shakespeare's play Julius Caesar is a quotation, since Mark Antony says these words in the play.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/spar/fabio/Excerpt".freeze, label: "quotation".freeze, - "rdfs:seeAlso": "fabio:Excerpt".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RapidCommunication, - comment: %(A short rapidly published research article or conference paper, typically reporting significant research results that have been recently discovered, or a brief news item reporting such discoveries.).freeze, + comment: "A short rapidly published research article or conference paper, typically reporting significant research results that have been recently discovered, or a brief news item reporting such discoveries.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/spar/fabio/BriefReport".freeze, label: "rapid communication".freeze, - "rdfs:seeAlso": "fabio:BriefReport".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReferenceBook, - comment: %(A book containing authoritative factual information, such as a dictionary, encyclopaedia, handbook or field guide, which is a realisation of a certain reference work and may contain several reference entries.).freeze, + comment: "A book containing authoritative factual information, such as a dictionary, encyclopaedia, handbook or field guide, which is a realisation of a certain reference work and may contain several reference entries.".freeze, label: "reference book".freeze, - subClassOf: ["fabio:Book".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Book".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:ReferenceWork".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/ReferenceWork".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 :ReferenceEntry, - comment: %(A particular reference entry containing authoritative factual information on a certain topic, usually contained in a larger expression.).freeze, + comment: "A particular reference entry containing authoritative factual information on a certain topic, usually contained in a larger expression.".freeze, label: "reference entry".freeze, - subClassOf: ["fabio:Entry".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Entry".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:ReferenceWork".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/ReferenceWork".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 :ReferenceWork, - comment: %(A work to which people refer for authoritative factual information, such as a dictionary, encyclopaedia, entry, handbook or field guide, or an informative web page such as an institutional, research group or project home page.).freeze, + comment: "A work to which people refer for authoritative factual information, such as a dictionary, encyclopaedia, entry, handbook or field guide, or an informative web page such as an institutional, research group or project home page.".freeze, label: "reference work".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :RelationalDatabase, - comment: %(A database in which the data are arranged in tables according to their common characteristics, with relationships between the tables being defined by a relational model or schema. A relational database is highly optimized for performance, and is queried using a database query language such as SQL \(Structured Query Language\). The software used to create a relational database is called a relational database management system \(RDBMS\).).freeze, + comment: "A database in which the data are arranged in tables according to their common characteristics, with relationships between the tables being defined by a relational model or schema. A relational database is highly optimized for performance, and is queried using a database query language such as SQL (Structured Query Language). The software used to create a relational database is called a relational database management system (RDBMS).".freeze, label: "relational database".freeze, - subClassOf: "fabio:Database".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Database".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Reply, - comment: %(A work that is a reply, either to a letter or other direct communication, or to feedback or comments about a piece of submitted writing. The latter is typically written by the author of a journal article submitted for publication, or by an applicant making a grant application, in response to reviews of the work from peer reviewers prior to publication \(for the journal article\) or prior to funding decision \(for the grant application\). Alternatively, it can be written in response to post-publication peer-review of a published journal article, or comments about it.).freeze, + comment: "A work that is a reply, either to a letter or other direct communication, or to feedback or comments about a piece of submitted writing. The latter is typically written by the author of a journal article submitted for publication, or by an applicant making a grant application, in response to reviews of the work from peer reviewers prior to publication (for the journal article) or prior to funding decision (for the grant application). Alternatively, it can be written in response to post-publication peer-review of a published journal article, or comments about it.".freeze, label: "reply".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Report, - comment: %(A formal factual, methodological, statistical, technical or research report issued by an individual, group, agency, government body or other institution.).freeze, + comment: "A formal factual, methodological, statistical, technical or research report issued by an individual, group, agency, government body or other institution.".freeze, label: "report".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReportDocument, - comment: %(The realization of a report, usually in printed form.).freeze, + comment: "The realization of a report, usually in printed form.".freeze, label: "report document".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:Report".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Report".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 :ReportingStandard, - comment: %(A set of recommendations for the minimum reporting requirements to be employed when reporting a particular type of investigation or project, for example a randomized clinical trial. A reporting standard may involve a checklist and a flow diagram, offers a standard way for authors to prepare a complete and transparent report of their findings, and aids their critical appraisal and interpretation of their data. [See also fabio:MinimalInformationStandard.]).freeze, + comment: "A set of recommendations for the minimum reporting requirements to be employed when reporting a particular type of investigation or project, for example a randomized clinical trial. A reporting standard may involve a checklist and a flow diagram, offers a standard way for authors to prepare a complete and transparent report of their findings, and aids their critical appraisal and interpretation of their data. [See also fabio:MinimalInformationStandard.]".freeze, label: "reporting standard".freeze, - subClassOf: "fabio:Specification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Specification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Repository, - comment: %(A computer system in which information may be stored.).freeze, + comment: "A computer system in which information may be stored.".freeze, label: "repository".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ResearchPaper, - comment: %(A scholarly work that reports original research contributions addressing theoretical, analytical or experimental aspects of a particular scholarly domain. - -E.g. see http://iswc2018.semanticweb.org/call-for-research-track-papers/.).freeze, + comment: "A scholarly work that reports original research contributions addressing theoretical, analytical or experimental aspects of a particular scholarly domain.\n\nE.g. see http://iswc2018.semanticweb.org/call-for-research-track-papers/.".freeze, label: "research paper".freeze, - subClassOf: "fabio:ScholarlyWork".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ScholarlyWork".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ResourcePaper, - comment: %(A scholarly work that describes resources developed to provide experimental materials or facilities, support a research hypothesis, to provide answers to a research question, or that have contributed to the generation of novel scientific work. Examples of such resources include, for experimental sciences, mouse mutant lines and large communally used X-ray or neutron sources, and, for computer sciences, datasets, ontologies, vocabularies, ontology design patterns, evaluation benchmarks or methods, services, APIs and software frameworks, workflows, crowdsourcing task designs, protocols and metrics. - -E.g. see http://iswc2018.semanticweb.org/call-for-resources-track-papers/).freeze, + comment: "A scholarly work that describes resources developed to provide experimental materials or facilities, support a research hypothesis, to provide answers to a research question, or that have contributed to the generation of novel scientific work. Examples of such resources include, for experimental sciences, mouse mutant lines and large communally used X-ray or neutron sources, and, for computer sciences, datasets, ontologies, vocabularies, ontology design patterns, evaluation benchmarks or methods, services, APIs and software frameworks, workflows, crowdsourcing task designs, protocols and metrics.\n\nE.g. see http://iswc2018.semanticweb.org/call-for-resources-track-papers/".freeze, label: "resource paper".freeze, - subClassOf: "fabio:ScholarlyWork".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ScholarlyWork".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Retraction, - comment: %(A formal statement retracting a statement or publication -A retraction is a public statement made about an earlier statement that withdraws, cancels, refutes, diametrically reverses the original statement or ceases and desists from publishing the original statement. ).freeze, + comment: "A formal statement retracting a statement or publication\nA retraction is a public statement made about an earlier statement that withdraws, cancels, refutes, diametrically reverses the original statement or ceases and desists from publishing the original statement. ".freeze, label: "retraction".freeze, - subClassOf: "fabio:Announcement".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Announcement".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Review, - comment: %(A review of others' work.).freeze, + comment: "A review of others' work.".freeze, label: "review".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReviewArticle, - comment: %(An article that contains a review.).freeze, + comment: "An article that contains a review.".freeze, label: "review article".freeze, - subClassOf: ["fabio:Article".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Article".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:Review".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Review".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 :ReviewPaper, - comment: %(A scholarly work that surveys the state of the art of topics central to a particular subject or relating to a specific domain \(e.g. the scope of a certain journal or conference\). Papers of this kind may contain a selective bibliography listing key papers related to the subject or providing advice on information sources, or they may strive to be comprehensive, covering all contributions to the development of a topic and exploring their different findings or views. - -E.g. see http://www.emeraldgrouppublishing.com/products/journals/author_guidelines.htm?id=JD).freeze, + comment: "A scholarly work that surveys the state of the art of topics central to a particular subject or relating to a specific domain (e.g. the scope of a certain journal or conference). Papers of this kind may contain a selective bibliography listing key papers related to the subject or providing advice on information sources, or they may strive to be comprehensive, covering all contributions to the development of a topic and exploring their different findings or views.\n\nE.g. see http://www.emeraldgrouppublishing.com/products/journals/author_guidelines.htm?id=JD".freeze, label: "review paper".freeze, - subClassOf: ["fabio:Review".freeze, "fabio:ScholarlyWork".freeze], - type: "owl:Class".freeze + subClassOf: ["http://purl.org/spar/fabio/Review".freeze, "http://purl.org/spar/fabio/ScholarlyWork".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ScholarlyWork, - comment: %(A work that reports scholarly activity on a particular topic, either published in written form, or delivered orally at a meeting.).freeze, + comment: "A work that reports scholarly activity on a particular topic, either published in written form, or delivered orally at a meeting.".freeze, label: "scholarly work".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Screenplay, - comment: %(A written work made especially for a film or television program. Screenplays can be original works or adaptations from existing pieces of writing, for example novels. ).freeze, + comment: "A written work made especially for a film or television program. Screenplays can be original works or adaptations from existing pieces of writing, for example novels. ".freeze, label: "screenplay".freeze, - subClassOf: "fabio:LiteraryArtisticWork".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/LiteraryArtisticWork".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Script, - comment: %(A small computer program written in a scripting language such as JavaScript, PHP or Perl that allows control of one or more software applications.).freeze, + comment: "A small computer program written in a scripting language such as JavaScript, PHP or Perl that allows control of one or more software applications.".freeze, label: "script".freeze, - subClassOf: "fabio:ComputerProgram".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ComputerProgram".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Series, - comment: %(A sequence of expressions having certain characteristics in common that are formally identified together as a group.).freeze, + comment: "A sequence of expressions having certain characteristics in common that are formally identified together as a group.".freeze, label: "series".freeze, - subClassOf: "fabio:ExpressionCollection".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ExpressionCollection".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ShortStory, - comment: %(A work of fiction that is usually written in prose, often in narrative format. This format tends to be more focused and less elaborate than longer works of fiction such as novels.).freeze, + comment: "A work of fiction that is usually written in prose, often in narrative format. This format tends to be more focused and less elaborate than longer works of fiction such as novels.".freeze, label: "short story".freeze, - subClassOf: "fabio:LiteraryArtisticWork".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/LiteraryArtisticWork".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Song, - comment: %(A musical composition that contains vocal parts \('lyrics'\) that are performed \('sung'\).).freeze, + comment: "A musical composition that contains vocal parts ('lyrics') that are performed ('sung').".freeze, label: "song".freeze, - subClassOf: "fabio:MusicalComposition".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/MusicalComposition".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SoundRecording, - comment: %(The creative work of making an electrical or mechanical recording of sounds, such as the spoken voice, singing, instrumental music, animal vocalizations or sound effects. ).freeze, + comment: "The creative work of making an electrical or mechanical recording of sounds, such as the spoken voice, singing, instrumental music, animal vocalizations or sound effects. ".freeze, label: "sound recording".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Specification, - comment: %(An explicit description of, or set of requirements to be satisfied by, a material, product, resource, service or standard.).freeze, + comment: "An explicit description of, or set of requirements to be satisfied by, a material, product, resource, service or standard.".freeze, label: "specification".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SpecificationDocument, - comment: %(The realization of a specification \(a standard, a workflow, etc.\).).freeze, + comment: "The realization of a specification (a standard, a workflow, etc.).".freeze, label: "specification document".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:Specification".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Specification".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 :Spreadsheet, - comment: %(An electronic form of data storage that displays a grid of rows and columns, in which each editable cell can contain alphanumeric text, a numeric value, or a formula that defines how the content of that cell is to be calculated from the content of another cell or cells.).freeze, + comment: "An electronic form of data storage that displays a grid of rows and columns, in which each editable cell can contain alphanumeric text, a numeric value, or a formula that defines how the content of that cell is to be calculated from the content of another cell or cells.".freeze, label: "spreadsheet".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :StandardOperatingProcedure, - comment: %(Clear and detailed written instructions of a prescribed step-by-step procedure to be routinely followed, and decisions to be made when undertaking a specific task, process or function, to achieve consistent performance, ensure safety and/or assure data quality. \(Commonly abbreviated 'SOP'.\)).freeze, + comment: "Clear and detailed written instructions of a prescribed step-by-step procedure to be routinely followed, and decisions to be made when undertaking a specific task, process or function, to achieve consistent performance, ensure safety and/or assure data quality. (Commonly abbreviated 'SOP'.)".freeze, label: "standard operating procedure".freeze, - subClassOf: "fabio:Specification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Specification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :StillImage, - comment: %(A recorded static visual representation. This class of image includes diagrams, drawings, graphs, graphic designs, plans, maps, photographs and prints.).freeze, + comment: "A recorded static visual representation. This class of image includes diagrams, drawings, graphs, graphic designs, plans, maps, photographs and prints.".freeze, label: "still image".freeze, - subClassOf: "fabio:Image".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Image".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :StorageMedium, - comment: %(A device for recording information or storing data.).freeze, + comment: "A device for recording information or storing data.".freeze, label: "storage medium".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :StructuredSummary, - comment: %(A structured summary containing essential metadata describing a research investigation and/or the research outputs that have resulted from it, for example datasets and journal articles, structured according to some minimal information standard. Such a structured summary can be embodied in both human-readable and machine-readable manifestations, e.g. HTML and RDF. Such a structured summary differs from the Abstract of a journal article, in that the latter is written as a piece of continuous prose, but typically omits vital factual information about the investigation, such as when and where it was conducted, by whom, and on now many specimens or subjects.).freeze, + comment: "A structured summary containing essential metadata describing a research investigation and/or the research outputs that have resulted from it, for example datasets and journal articles, structured according to some minimal information standard. Such a structured summary can be embodied in both human-readable and machine-readable manifestations, e.g. HTML and RDF. Such a structured summary differs from the Abstract of a journal article, in that the latter is written as a piece of continuous prose, but typically omits vital factual information about the investigation, such as when and where it was conducted, by whom, and on now many specimens or subjects.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/spar/fabio/Abstract".freeze, label: "structured summary".freeze, - "rdfs:seeAlso": "fabio:Abstract".freeze, - subClassOf: ["fabio:SpecificationDocument".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/SpecificationDocument".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:MinimalInformationStandard".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/MinimalInformationStandard".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 :SubjectDiscipline, - comment: %(A concept that identifies a field of knowledge or human activity defined in a controlled vocabulary, such as Computer Science, Biology, Economics, Cookery or Swimming.).freeze, + comment: "A concept that identifies a field of knowledge or human activity defined in a controlled vocabulary, such as Computer Science, Biology, Economics, Cookery or Swimming.".freeze, label: "subject discipline".freeze, - subClassOf: ["skos:Concept".freeze, term( - onProperty: "skos:inScheme".freeze, - someValuesFrom: "fabio:DisciplineDictionary".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.w3.org/2004/02/skos/core#Concept".freeze, term( + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + someValuesFrom: "http://purl.org/spar/fabio/DisciplineDictionary".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 :SubjectTerm, - comment: %(A concept that defines a term within the controlled vocabulary of a particular classification system, such as the ACM Computing Classification System or MeSH, the Medical Subject Headings, used as an annotation to describe the subject, meaning or content of an entity.).freeze, + comment: "A concept that defines a term within the controlled vocabulary of a particular classification system, such as the ACM Computing Classification System or MeSH, the Medical Subject Headings, used as an annotation to describe the subject, meaning or content of an entity.".freeze, label: "subject term".freeze, - subClassOf: ["skos:Concept".freeze, term( - onProperty: "skos:inScheme".freeze, - someValuesFrom: "fabio:TermDictionary".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.w3.org/2004/02/skos/core#Concept".freeze, term( + onProperty: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, + someValuesFrom: "http://purl.org/spar/fabio/TermDictionary".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 :Supplement, - comment: %(A supplement to a publication such as a book, journal, magazine or newspaper, additional to the main publication. For example, a colour supplement to a sunday newspaper, or a special supplementary issue of a journal or a journal volume containing invited articles on a special topic, or abstracts or papers presented at a scientific conference.).freeze, + comment: "A supplement to a publication such as a book, journal, magazine or newspaper, additional to the main publication. For example, a colour supplement to a sunday newspaper, or a special supplementary issue of a journal or a journal volume containing invited articles on a special topic, or abstracts or papers presented at a scientific conference.".freeze, label: "supplement".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SupplementaryInformation, - comment: %(A file accompanying a published journal article, containing additional information of relevance to the article, typically available from the publisher's web site via a hyperlink from the journal article itself.).freeze, + comment: "A file accompanying a published journal article, containing additional information of relevance to the article, typically available from the publisher's web site via a hyperlink from the journal article itself.".freeze, label: "supplementary information file".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SystematicReview, - comment: %(A literature review focused on a single question that tries to identify, appraise, select and synthesize all high quality research evidence relevant to that question. Systematic reviews of high-quality randomized controlled trials are crucial to evidence-based medicine. An understanding of systematic reviews and how to implement them in practice is becoming mandatory for all professionals involved in the delivery of health care. Systematic reviews are not limited to medicine, and are quite common in other sciences such as psychology, educational research and sociology.).freeze, + comment: "A literature review focused on a single question that tries to identify, appraise, select and synthesize all high quality research evidence relevant to that question. Systematic reviews of high-quality randomized controlled trials are crucial to evidence-based medicine. An understanding of systematic reviews and how to implement them in practice is becoming mandatory for all professionals involved in the delivery of health care. Systematic reviews are not limited to medicine, and are quite common in other sciences such as psychology, educational research and sociology.".freeze, label: "systematic review".freeze, - subClassOf: "fabio:Review".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Review".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Table, - comment: %(A graphical means of presenting data in a grid of rows and columns, within which the cells usually contain alphanumeric text or numeric values. If included within a publication, a table typically appearing unaligned with the main body of text, with its own descriptive title.).freeze, + comment: "A graphical means of presenting data in a grid of rows and columns, within which the cells usually contain alphanumeric text or numeric values. If included within a publication, a table typically appearing unaligned with the main body of text, with its own descriptive title.".freeze, label: "table".freeze, - subClassOf: "fabio:Expression".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Expression".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TableOfContents, - comment: %(A table listing the parts of publication such as a book or technical specification, and the pages on which these content elements start \(if the publication is printed or otherwise organized into pages\), usually listed in order of appearance. The Table of Contents typically includes first-level headers, such as the chapter titles of a book, and may also include second- and even third-level headers. In electronic works, the Table of Contents entries are often internally hyperlinked to the content items, so that clicking on the entry takes the reader to that item.).freeze, + comment: "A table listing the parts of publication such as a book or technical specification, and the pages on which these content elements start (if the publication is printed or otherwise organized into pages), usually listed in order of appearance. The Table of Contents typically includes first-level headers, such as the chapter titles of a book, and may also include second- and even third-level headers. In electronic works, the Table of Contents entries are often internally hyperlinked to the content items, so that clicking on the entry takes the reader to that item.".freeze, label: "table of contents".freeze, - subClassOf: "fabio:Table".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Table".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Taxonomy, - comment: %(A classification arranged in a hierarchical structure of classes and subclasses, showing parent-child isA relationships, or broader_than - narrower_than relationships.).freeze, + comment: "A classification arranged in a hierarchical structure of classes and subclasses, showing parent-child isA relationships, or broader_than - narrower_than relationships.".freeze, label: "taxonomy".freeze, - subClassOf: "fabio:ControlledVocabulary".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ControlledVocabulary".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TechnicalReport, - comment: %(A report of a technical nature.).freeze, + comment: "A report of a technical nature.".freeze, label: "technical report".freeze, - subClassOf: "fabio:Report".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Report".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TechnicalStandard, - comment: %(An official or public specification of, or requirement for, a technical method, practice, process or protocol that is involved in, for example, manufacturing, computation, electronic communication, or digital media.).freeze, + comment: "An official or public specification of, or requirement for, a technical method, practice, process or protocol that is involved in, for example, manufacturing, computation, electronic communication, or digital media.".freeze, label: "technical standard".freeze, - subClassOf: "fabio:Specification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Specification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TermDictionary, - comment: %(A controlled vocabulary, usually referring to terms within a particular classification system, such as the ACM Computing Classification System or MeSH, the Medical Subject Headings, or a controlled vocabulary of disciplines.).freeze, - "dc11:description": "A term dictionary is a collection of subject terms.".freeze, + comment: "A controlled vocabulary, usually referring to terms within a particular classification system, such as the ACM Computing Classification System or MeSH, the Medical Subject Headings, or a controlled vocabulary of disciplines.".freeze, + "http://purl.org/dc/elements/1.1/description": "A term dictionary is a collection of subject terms.".freeze, label: "term dictionary".freeze, - subClassOf: ["skos:ConceptScheme".freeze, term( - allValuesFrom: "fabio:SubjectTerm".freeze, - onProperty: "fabio:isSchemeOf".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, term( + allValuesFrom: "http://purl.org/spar/fabio/SubjectTerm".freeze, + onProperty: "http://purl.org/spar/fabio/isSchemeOf".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 :Textbook, - comment: %(A book containing instructional material relating to a particular topic of academic study, designed to be read by students.).freeze, + comment: "A book containing instructional material relating to a particular topic of academic study, designed to be read by students.".freeze, label: "textbook".freeze, - subClassOf: ["fabio:Book".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Book".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:InstructionalWork".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/InstructionalWork".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 :Thesaurus, - comment: %(A type of controlled vocabulary used in information retrieval applications for indexing or tagging purposes, in which relationships between terms are made explicit. These are normally hierarchical relationships \(is-a, subsumption; e.g. a cow is a mammal\), equivalency relationships relating non-preferred terms to preferred terms \(e.g. pitch and frequency\), or associative relationships, in which the relationship that exists is neither one of hierarchy or equivalence, but rather one of similarity \(e.g. sports and leisure pursuits\).).freeze, + comment: "A type of controlled vocabulary used in information retrieval applications for indexing or tagging purposes, in which relationships between terms are made explicit. These are normally hierarchical relationships (is-a, subsumption; e.g. a cow is a mammal), equivalency relationships relating non-preferred terms to preferred terms (e.g. pitch and frequency), or associative relationships, in which the relationship that exists is neither one of hierarchy or equivalence, but rather one of similarity (e.g. sports and leisure pursuits).".freeze, label: "thesaurus".freeze, - subClassOf: "fabio:ControlledVocabulary".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ControlledVocabulary".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Thesis, - comment: %(A book authored by a student containing a formal presentations of research outputs submitted for examination in completion of a course of study at an institution of higher education, to fulfil the requirements for an academic degree. Also know as a dissertation. [For the alternative meaning of the word 'thesis', namely the formulation of a concept, hypothesis, idea, point of view or theory presented for review and/or discussion, use fabio:Proposition.]).freeze, + comment: "A book authored by a student containing a formal presentations of research outputs submitted for examination in completion of a course of study at an institution of higher education, to fulfil the requirements for an academic degree. Also know as a dissertation. [For the alternative meaning of the word 'thesis', namely the formulation of a concept, hypothesis, idea, point of view or theory presented for review and/or discussion, use fabio:Proposition.]".freeze, label: "thesis".freeze, - subClassOf: "fabio:Book".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Book".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Timetable, - comment: %(A tabular dataset providing information about the times and locations of a planned series of events.).freeze, + comment: "A tabular dataset providing information about the times and locations of a planned series of events.".freeze, label: "timetable".freeze, - subClassOf: "fabio:Dataset".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Dataset".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TrialReport, - comment: %(The report of a trial, for example an experimental trial or a legal trial.).freeze, + comment: "The report of a trial, for example an experimental trial or a legal trial.".freeze, label: "trial report".freeze, - subClassOf: "fabio:Report".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Report".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Triplestore, - comment: %(A database specifically designed for the storage and retrieval of Resource Description Framework \(RDF\) data consisting of subject-predicate-object triples. A triple store is queried using the RDF query language SPARQL.).freeze, + comment: "A database specifically designed for the storage and retrieval of Resource Description Framework (RDF) data consisting of subject-predicate-object triples. A triple store is queried using the RDF query language SPARQL.".freeze, label: "triplestore".freeze, - subClassOf: "fabio:Database".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Database".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Tweet, - comment: %(A posting made on the social networking site Twitter. A tweet is a text message limited to 140 characters in length, that is broadcast and readable by anyone who accesses Twitter.).freeze, + comment: "A posting made on the social networking site Twitter. A tweet is a text message limited to 140 characters in length, that is broadcast and readable by anyone who accesses Twitter.".freeze, label: "tweet".freeze, - subClassOf: "fabio:Micropost".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Micropost".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :UncontrolledVocabulary, - comment: %(A non-defined collection of words and phrases relating to a particular domain of knowledge, usually added freely by a community, in which homonyms, synonyms and similar ambiguities of meaning present in natural language are not formally disambiguated.).freeze, + comment: "A non-defined collection of words and phrases relating to a particular domain of knowledge, usually added freely by a community, in which homonyms, synonyms and similar ambiguities of meaning present in natural language are not formally disambiguated.".freeze, label: "uncontrolled vocabulary".freeze, - subClassOf: "fabio:Vocabulary".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Vocabulary".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Vocabulary, - comment: %(A set of words, either constituting a language, or more specifically used to describe a particular domain of knowledge.).freeze, + comment: "A set of words, either constituting a language, or more specifically used to describe a particular domain of knowledge.".freeze, label: "vocabulary".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :VocabularyDocument, - comment: %(A document containing a vocabulary).freeze, + comment: "A document containing a vocabulary".freeze, label: "vocabulary document".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:Vocabulary".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Vocabulary".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 :VocabularyMapping, - comment: %(A mapping of correspondences between two vocabularies. For controlled vocabularies, such mappings may be expressed using SKOS \(http://www.w3.org/2004/02/skos/\).).freeze, + comment: "A mapping of correspondences between two vocabularies. For controlled vocabularies, such mappings may be expressed using SKOS (http://www.w3.org/2004/02/skos/).".freeze, label: "vocabulary mapping".freeze, - subClassOf: "fabio:Specification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Specification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :VocabularyMappingDocument, - comment: %(A document containing a vocabulary mapping).freeze, + comment: "A document containing a vocabulary mapping".freeze, label: "vocabulary mapping document".freeze, - subClassOf: ["fabio:SpecificationDocument".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/SpecificationDocument".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#realizationOf".freeze, - someValuesFrom: "fabio:VocabularyMapping".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/VocabularyMapping".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 :WebArchive, - comment: %(A snapshots of \(part of\) the World Wide Web.).freeze, + comment: "A snapshots of (part of) the World Wide Web.".freeze, label: "web archive".freeze, - subClassOf: "fabio:Repository".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Repository".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WebContent, - comment: %(Information prepared specifically and primarily for manifestation in a web page, comprising text, images, datasets and/or other works.).freeze, + comment: "Information prepared specifically and primarily for manifestation in a web page, comprising text, images, datasets and/or other works.".freeze, label: "web content".freeze, - subClassOf: ["fabio:Expression".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Expression".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#embodiment".freeze, - someValuesFrom: "fabio:WebManifestation".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/WebManifestation".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 :WebManifestation, - comment: %(A digital manifestation on the Web, such as a wiki, a web site, a web page or a blog.).freeze, + comment: "A digital manifestation on the Web, such as a wiki, a web site, a web page or a blog.".freeze, label: "web manifestation".freeze, - subClassOf: "fabio:DigitalManifestation".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/DigitalManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WebPage, - comment: %(A Web manifestation usually identified by a Uniform Resource Identifier \(URI\), and made accessible to a user by means of the Hypertext Transport Protocol \(HTTP\) in a Web browser window. Several interlinked web pages hosted together on a Web server and accessed through a single domain name or IP address constitute a web site.).freeze, + comment: "A Web manifestation usually identified by a Uniform Resource Identifier (URI), and made accessible to a user by means of the Hypertext Transport Protocol (HTTP) in a Web browser window. Several interlinked web pages hosted together on a Web server and accessed through a single domain name or IP address constitute a web site.".freeze, label: "web page".freeze, - subClassOf: ["fabio:Page".freeze, "fabio:WebManifestation".freeze], - type: "owl:Class".freeze + subClassOf: ["http://purl.org/spar/fabio/Page".freeze, "http://purl.org/spar/fabio/WebManifestation".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WebSite, - comment: %(A collection of related web pages containing text, images, videos and/or other digital assets that are addressed relative to a common Uniform Resource Locator \(URL\). A web site is hosted on at least one web server, accessible via a network such as the Internet or a private local area network.).freeze, + comment: "A collection of related web pages containing text, images, videos and/or other digital assets that are addressed relative to a common Uniform Resource Locator (URL). A web site is hosted on at least one web server, accessible via a network such as the Internet or a private local area network.".freeze, label: "web site".freeze, - subClassOf: "fabio:WebManifestation".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/WebManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WhitePaper, - comment: %(An authoritative report or guide designed to educate readers and help people make decisions, or to explain technical problems and how to solve them. White papers are typically published by governments to propose new legislation for discussion, and by commercial companies to inform readers about products or services, as aids to marketing.).freeze, + comment: "An authoritative report or guide designed to educate readers and help people make decisions, or to explain technical problems and how to solve them. White papers are typically published by governments to propose new legislation for discussion, and by commercial companies to inform readers about products or services, as aids to marketing.".freeze, label: "white paper".freeze, - subClassOf: "fabio:ReportDocument".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ReportDocument".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Wiki, - comment: %(A collaborative Web manifestation, usually maintained by a project team or group, providing easy-to-edit pages that can be used to accumulate related information for shared use by the group and/or publication.).freeze, + comment: "A collaborative Web manifestation, usually maintained by a project team or group, providing easy-to-edit pages that can be used to accumulate related information for shared use by the group and/or publication.".freeze, label: "wiki".freeze, - subClassOf: "fabio:WebManifestation".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/WebManifestation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WikiEntry, - comment: %(Information manifested in a wiki. ).freeze, + comment: "Information manifested in a wiki. ".freeze, label: "wiki entry".freeze, - subClassOf: ["fabio:Entry".freeze, "fabio:WebContent".freeze], - type: "owl:Class".freeze + subClassOf: ["http://purl.org/spar/fabio/Entry".freeze, "http://purl.org/spar/fabio/WebContent".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WikipediaEntry, - comment: %(Information about a particular topic in one of the versions of Wikipedia, the online encyclopedia \(http://www.wikipedia.org/\). -).freeze, + comment: "Information about a particular topic in one of the versions of Wikipedia, the online encyclopedia (http://www.wikipedia.org/).\n".freeze, label: "wikipedia entry".freeze, - subClassOf: "fabio:WikiEntry".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/WikiEntry".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Work, - comment: %(A subclass of FRBR work, restricted to works that are published or potentially publishable, and that contain or are referred to by bibliographic references, or entities used to define bibliographic references. FaBiO works, and their expressions and manifestations, are primarily textual publications such as books, magazines, newspapers and journals, and items of their content. However, they also include datasets, computer algorithms, experimental protocols, formal specifications and vocabularies, legal records, governmental papers, technical and commercial reports and similar publications, and also bibliographies, reference lists, library catalogues and similar collections. For this reason, fabio:Work is not an equivalent class to frbr:ScholarlyWork. An example of a fabio:Work is your latest research paper.).freeze, - "dc11:description": "A fabio:Work can only have part or be part of another fabio:Work. Moreover, it can be realized only by fabio:Expression(s).".freeze, + comment: "A subclass of FRBR work, restricted to works that are published or potentially publishable, and that contain or are referred to by bibliographic references, or entities used to define bibliographic references. FaBiO works, and their expressions and manifestations, are primarily textual publications such as books, magazines, newspapers and journals, and items of their content. However, they also include datasets, computer algorithms, experimental protocols, formal specifications and vocabularies, legal records, governmental papers, technical and commercial reports and similar publications, and also bibliographies, reference lists, library catalogues and similar collections. For this reason, fabio:Work is not an equivalent class to frbr:ScholarlyWork. An example of a fabio:Work is your latest research paper.".freeze, + "http://purl.org/dc/elements/1.1/description": "A fabio:Work can only have part or be part of another fabio:Work. Moreover, it can be realized only by fabio:Expression(s).".freeze, label: "work".freeze, subClassOf: ["http://purl.org/vocab/frbr/core#Work".freeze, term( - allValuesFrom: "fabio:Expression".freeze, + allValuesFrom: "http://purl.org/spar/fabio/Expression".freeze, onProperty: "http://purl.org/vocab/frbr/core#realization".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( intersectionOf: list(term( allValuesFrom: "http://purl.org/vocab/frbr/core#Work".freeze, onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( allValuesFrom: "http://purl.org/vocab/frbr/core#Work".freeze, onProperty: "http://purl.org/vocab/frbr/core#partOf".freeze, - type: "owl:Restriction".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 )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WorkCollection, - "dc11:creator": "A collection of works.".freeze, + "http://purl.org/dc/elements/1.1/creator": "A collection of works.".freeze, label: "work collection".freeze, - subClassOf: ["fabio:Work".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/Work".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:Work".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/Work".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 :WorkPackage, - comment: %(A component of the case for support of a grant application, describing a particular aspect of the work to be undertaken.).freeze, + comment: "A component of the case for support of a grant application, describing a particular aspect of the work to be undertaken.".freeze, label: "work package".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Workflow, - comment: %(A recorded sequence of connected steps, which may be automated, specifying a reliably repeatable sequence of operations to be undertaken when conducting a particular job, for example an in silico investigation that extracts and processes information from a number of bioinformatics databases.).freeze, + comment: "A recorded sequence of connected steps, which may be automated, specifying a reliably repeatable sequence of operations to be undertaken when conducting a particular job, for example an in silico investigation that extracts and processes information from a number of bioinformatics databases.".freeze, label: "workflow".freeze, - subClassOf: "fabio:Specification".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Specification".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WorkingPaper, - comment: %(An unpublished paper, usually circulated privately among a small group of peers, to provide information or with a request for comments or editorial improvement.).freeze, + comment: "An unpublished paper, usually circulated privately among a small group of peers, to provide information or with a request for comments or editorial improvement.".freeze, label: "working paper".freeze, - subClassOf: "fabio:Work".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/Work".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WorkshopPaper, - comment: %(A paper, typically the realization of a research paper reporting original research findings, usually presented at a workshop and published within a workshop proceedings volume.).freeze, + comment: "A paper, typically the realization of a research paper reporting original research findings, usually presented at a workshop and published within a workshop proceedings volume.".freeze, label: "workshop paper".freeze, - subClassOf: "fabio:ProceedingsPaper".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/spar/fabio/ProceedingsPaper".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WorkshopProceedings, - comment: %(A document containing the programme and collected workshop papers, or their abstracts, presented at a workshop or similar event.).freeze, + comment: "A document containing the programme and collected workshop papers, or their abstracts, presented at a workshop or similar event.".freeze, label: "workshop proceedings".freeze, - subClassOf: ["fabio:AcademicProceedings".freeze, term( + subClassOf: ["http://purl.org/spar/fabio/AcademicProceedings".freeze, term( onProperty: "http://purl.org/vocab/frbr/core#part".freeze, - someValuesFrom: "fabio:WorkshopPaper".freeze, - type: "owl:Restriction".freeze + someValuesFrom: "http://purl.org/spar/fabio/WorkshopPaper".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 :dateLastUpdated, - comment: %(The date on which a particular endeavour, such as an ontology, was last updated.).freeze, + comment: "The date on which a particular endeavour, such as an ontology, was last updated.".freeze, label: "date last updated".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "dc:date".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasAccessDate, - comment: %(The date on which a particular digital item, such as a PDF or an HTML file, has been accessed by somebody.).freeze, - domain: "fabio:Item".freeze, + comment: "The date on which a particular digital item, such as a PDF or an HTML file, has been accessed by somebody.".freeze, + domain: "http://purl.org/spar/fabio/Item".freeze, label: "has access date".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "dc:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasArXivId, - comment: %(An identifier used by the preprint repository ArXiv.).freeze, + comment: "An identifier used by the preprint repository ArXiv.".freeze, isDefinedBy: "http://arxiv.org/".freeze, label: "has ArXiv identifier".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 :hasCODEN, - comment: %(A CODEN is a six character, alphanumeric bibliographic identification code, that provides concise, unique and unambiguous identification of the titles of serials and non-serial publications.).freeze, + comment: "A CODEN is a six character, alphanumeric bibliographic identification code, that provides concise, unique and unambiguous identification of the titles of serials and non-serial publications.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://en.wikipedia.org/wiki/CODEN".freeze, label: "has CODEN".freeze, - "rdfs:seeAlso": "http://en.wikipedia.org/wiki/CODEN".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 :hasCharacterCount, - comment: %(The count of the number of characters in a textual resource.).freeze, + comment: "The count of the number of characters in a textual resource.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, label: "has character count".freeze, - range: "xsd:positiveInteger".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#positiveInteger".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasCopyrightYear, - comment: %(The year in which an entity has been copyrighted.).freeze, + comment: "The year in which an entity has been copyrighted.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, label: "has copyright year".freeze, - range: "xsd:gYear".freeze, - subPropertyOf: "dc:date".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#gYear".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasCorrectionDate, - comment: %(The date on which something, for example a document, is corrected.).freeze, + comment: "The date on which something, for example a document, is corrected.".freeze, label: "has correction date".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "dc:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasDateCollected, - comment: %(The date on which some item has been collected, for example the data gathered by means of questionnaires.).freeze, + comment: "The date on which some item has been collected, for example the data gathered by means of questionnaires.".freeze, label: "has date collected".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "dc:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasDateReceived, - comment: %(The date on which some item is received, for example a document being received by a publisher.).freeze, + comment: "The date on which some item is received, for example a document being received by a publisher.".freeze, label: "has date received".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "dc:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasDeadline, - comment: %(A date by which something has to be done.).freeze, + comment: "A date by which something has to be done.".freeze, label: "has deadline".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "dc:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasDecisionDate, - comment: %(The date on which a particular endeavour, such as a grant application, has been or will be approved or rejected by somebody.).freeze, + comment: "The date on which a particular endeavour, such as a grant application, has been or will be approved or rejected by somebody.".freeze, label: "has decision date".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "dc:date".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasDepositDate, - comment: %(The date on which an entity has been deposited, for example in a library, repository, supplementary information archive, database or similar place of document or information storage.).freeze, - domain: "fabio:Item".freeze, + comment: "The date on which an entity has been deposited, for example in a library, repository, supplementary information archive, database or similar place of document or information storage.".freeze, + domain: "http://purl.org/spar/fabio/Item".freeze, label: "has deposit date".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "dc:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasDiscipline, - comment: %(The discipline to which a subject vocabulary belongs.).freeze, + comment: "The discipline to which a subject vocabulary belongs.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("fabio:TermDictionary".freeze, term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/fabio/TermDictionary".freeze, term( + type: "http://www.w3.org/2002/07/owl#Class".freeze )) ), - inverseOf: "fabio:isDisciplineOf".freeze, + "http://www.w3.org/2002/07/owl#propertyDisjointWith": "http://purl.org/spar/fabio/isSchemeOf".freeze, + inverseOf: "http://purl.org/spar/fabio/isDisciplineOf".freeze, label: "has discipline".freeze, - "owl:propertyDisjointWith": "fabio:isSchemeOf".freeze, - range: "fabio:SubjectDiscipline".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/spar/fabio/SubjectDiscipline".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasDistributionDate, - comment: %(The date on which something is distributed, for example the date on which a preprint of a document is e-mailed to colleagues and other academics by the author\(s\), or the date on which a printed announcement of forthcoming theatre events is mailed to those those on the theatre's mailing list.).freeze, + comment: "The date on which something is distributed, for example the date on which a preprint of a document is e-mailed to colleagues and other academics by the author(s), or the date on which a printed announcement of forthcoming theatre events is mailed to those those on the theatre's mailing list.".freeze, label: "has preprint dissemination date".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "dc:date".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasElectronicArticleIdentifier, - comment: %(A local identifier for an article within an electronic \(i.e. on line, in HTML format\) periodical issue. Use in preference to prism:startingPage when the article lacks page numbers).freeze, + comment: "A local identifier for an article within an electronic (i.e. on line, in HTML format) periodical issue. Use in preference to prism:startingPage when the article lacks page numbers".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, label: "has electronic article identifier".freeze, - 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 :hasEmbargoDate, - comment: %(The date before which an entity should not be published, or before which a press release should not be reported on. For open-access journal articles, the embargo date is the date before which availability of the open-access version of the article is restricted by the publisher, following subscription-access availability of the published work. The duration of the embargo period can be specified by fabio:hasEmbargoDuration.).freeze, + comment: "The date before which an entity should not be published, or before which a press release should not be reported on. For open-access journal articles, the embargo date is the date before which availability of the open-access version of the article is restricted by the publisher, following subscription-access availability of the published work. The duration of the embargo period can be specified by fabio:hasEmbargoDuration.".freeze, label: "has embargo date".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "dc:date".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasEmbargoDuration, - comment: %(The time period for which an entity is embargoed. During this period, the entity should not be published or, in the case of a press release, should not be reported on. For open-access journal articles, the embargo duration specifies that period of time during which availability of the open-access version of the article is delayed by the publisher, following subscription-access availability of the published work. The end of the embargo period can be specified by fabio:hasEmbargoDate.).freeze, + comment: "The time period for which an entity is embargoed. During this period, the entity should not be published or, in the case of a press release, should not be reported on. For open-access journal articles, the embargo duration specifies that period of time during which availability of the open-access version of the article is delayed by the publisher, following subscription-access availability of the published work. The end of the embargo period can be specified by fabio:hasEmbargoDate.".freeze, label: "has embargo period".freeze, - subPropertyOf: "dc:date".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasHandle, - comment: %(A persistent identifier of the Handel system for digital objects and other resources on the Internet.).freeze, + comment: "A persistent identifier of the Handel system for digital objects and other resources on the Internet.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, isDefinedBy: "http://www.handle.net/".freeze, label: "has handle".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasIssnL, - comment: %(A linking International Standard Serial Number.).freeze, + comment: "A linking International Standard Serial Number.".freeze, isDefinedBy: "http://www.issn.org/2-22637-What-is-an-ISSN-L.php".freeze, label: "has ISSN-L".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 :hasManifestation, - comment: %(A property linking a particular work to its manifestations. This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model.).freeze, + comment: "A property linking a particular work to its manifestations. This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model.".freeze, domain: "http://purl.org/vocab/frbr/core#Work".freeze, - inverseOf: "fabio:isManifestationOf".freeze, - label: "has manifestation".freeze, - "owl:propertyChainAxiom": list(term( + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list(term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#realization\), a property representing an expression that is an intellectual or artistic realization of a work.).freeze, label: "has realization".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze ), term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#embodiment\), a property representing a manifestation that embodies an expression.).freeze, label: "has embodiment".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze )), + inverseOf: "http://purl.org/spar/fabio/isManifestationOf".freeze, + label: "has manifestation".freeze, range: "http://purl.org/vocab/frbr/core#Manifestation".freeze, subPropertyOf: "http://purl.org/vocab/frbr/core#relatedEndeavour".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasNLMJournalTitleAbbreviation, - comment: %(An internal identifier for the abbreviation of the title of journals available from the National Library of Medicine repository.).freeze, + comment: "An internal identifier for the abbreviation of the title of journals available from the National Library of Medicine repository.".freeze, label: "has National Library of Medicine journal title abbreviation".freeze, - subPropertyOf: ["dc:identifier".freeze, "fabio:hasShortTitle".freeze], - type: "owl:DatatypeProperty".freeze + subPropertyOf: ["http://purl.org/dc/terms/identifier".freeze, "http://purl.org/spar/fabio/hasShortTitle".freeze], + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasNationalLibraryOfMedicineJournalId, - comment: %(An internal identifier for journals available from the National Library of Medicine repository.).freeze, + comment: "An internal identifier for journals available from the National Library of Medicine repository.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, isDefinedBy: "http://www.nlm.nih.gov/".freeze, label: "has National Library of Medicine journal identifier".freeze, range: term( - "owl:onDatatype": "xsd:string".freeze, - "owl:withRestrictions": list(term( - "xsd:pattern": "[0-9]+".freeze + "http://www.w3.org/2002/07/owl#onDatatype": "http://www.w3.org/2001/XMLSchema#string".freeze, + "http://www.w3.org/2002/07/owl#withRestrictions": list(term( + "http://www.w3.org/2001/XMLSchema#pattern": "[0-9]+".freeze )), - type: "rdfs:Datatype".freeze + type: "http://www.w3.org/2000/01/rdf-schema#Datatype".freeze ), - subPropertyOf: "dc:identifier".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasPII, - comment: %(Has Publisher Item Identifier).freeze, + comment: "Has Publisher Item Identifier".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://en.wikipedia.org/wiki/Publisher_Item_Identifier".freeze, label: "has PII".freeze, - "rdfs:seeAlso": "http://en.wikipedia.org/wiki/Publisher_Item_Identifier".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 :hasPageCount, - comment: %(The count of the number of pages in a textual resource.).freeze, + comment: "The count of the number of pages in a textual resource.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, label: "has page count".freeze, - range: "xsd:positiveInteger".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#positiveInteger".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasPatentNumber, - comment: %(A unique identifing number issued by a patent authority to identify a patent, displayed at the beginning of the patent document.).freeze, + comment: "A unique identifing number issued by a patent authority to identify a patent, displayed at the beginning of the patent document.".freeze, label: "has patent number".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 :hasPlaceOfPublication, - comment: %(The place \(usually, the city\) where the publisher of a particular bibliographic resource is located.).freeze, + comment: "The place (usually, the city) where the publisher of a particular bibliographic resource is located.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, label: "has place of publication".freeze, range: "http://purl.org/vocab/frbr/core#Place".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPortrayal, - comment: %(A property linking a particular work to its items. This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model.).freeze, + comment: "A property linking a particular work to its items. This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model.".freeze, domain: "http://purl.org/vocab/frbr/core#Work".freeze, - inverseOf: "fabio:isPortrayalOf".freeze, - label: "has portrayal".freeze, - "owl:propertyChainAxiom": list(term( + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list(term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#realization\), a property representing an expression that is an intellectual or artistic realization of a work.).freeze, label: "has realization".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze ), term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#embodiment\), a property representing a manifestation that embodies an expression.).freeze, label: "has embodiment".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze ), term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#exemplar\), a property representing an item that exemplifies a manifestation.).freeze, label: "has exemplar".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze )), + inverseOf: "http://purl.org/spar/fabio/isPortrayalOf".freeze, + label: "has portrayal".freeze, range: "http://purl.org/vocab/frbr/core#Item".freeze, subPropertyOf: "http://purl.org/vocab/frbr/core#relatedEndeavour".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPrimarySubjectTerm, - comment: %(This property is used to associate a frbr:Endeavour to a term in a particular classification system - and the term is considered one of the main topics for the endeavour in consideration.).freeze, + comment: "This property is used to associate a frbr:Endeavour to a term in a particular classification system - and the term is considered one of the main topics for the endeavour in consideration.".freeze, label: "has primary subject term".freeze, - subPropertyOf: "fabio:hasSubjectTerm".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/spar/fabio/hasSubjectTerm".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPubMedCentralId, - comment: %(An identifier for bibliographic entities hosted by the PubMed Central repository.).freeze, + comment: "An identifier for bibliographic entities hosted by the PubMed Central repository.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, isDefinedBy: "http://www.ncbi.nlm.nih.gov/pmc/".freeze, label: "has PubMed Central identifier".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dc:identifier".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasPubMedId, - comment: %(An identifier for bibliographic records held by the PubMed repository.).freeze, + comment: "An identifier for bibliographic records held by the PubMed repository.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, isDefinedBy: "http://www.ncbi.nlm.nih.gov/pubmed/".freeze, label: "has PubMed identifier".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dc:identifier".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasPublicationYear, - comment: %(The year in which a resource is published.).freeze, + comment: "The year in which a resource is published.".freeze, label: "has publication year".freeze, - range: "xsd:gYear".freeze, - subPropertyOf: "dc:issued".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#gYear".freeze, + subPropertyOf: "http://purl.org/dc/terms/issued".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasRepresentation, - comment: %(A property linking a particular expression to its items. This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model.).freeze, + comment: "A property linking a particular expression to its items. This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model.".freeze, domain: "http://purl.org/vocab/frbr/core#Expression".freeze, - inverseOf: "fabio:isRepresentationOf".freeze, - label: "has representation".freeze, - "owl:propertyChainAxiom": list(term( + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list(term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#embodiment\), a property representing a manifestation that embodies an expression.).freeze, label: "has embodiment".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze ), term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#exemplar\), a property representing an item that exemplifies a manifestation.).freeze, label: "has exemplar".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze )), + inverseOf: "http://purl.org/spar/fabio/isRepresentationOf".freeze, + label: "has representation".freeze, range: "http://purl.org/vocab/frbr/core#Item".freeze, subPropertyOf: "http://purl.org/vocab/frbr/core#relatedEndeavour".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasRequestDate, - comment: %(The date on which an agent is requested to do something, for example a reviewer is requested to write a review of a paper submitted to a journal for publication, or an author is requested to supply a revised version of the paper in response to the reviews received.).freeze, + comment: "The date on which an agent is requested to do something, for example a reviewer is requested to write a review of a paper submitted to a journal for publication, or an author is requested to supply a revised version of the paper in response to the reviews received.".freeze, label: "has request date".freeze, - subPropertyOf: "dc:date".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasRetractionDate, - comment: %(The date on which something, for example a claim or a journal article, is retracted.).freeze, + comment: "The date on which something, for example a claim or a journal article, is retracted.".freeze, label: "has retraction date".freeze, - range: "xsd:dateTime".freeze, - subPropertyOf: "dc:date".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze, + subPropertyOf: "http://purl.org/dc/terms/date".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasSICI, - comment: %(The Serial Item and Contribution Identifier is a code used to uniquely identify specific volumes, articles or other identifiable parts of a periodical. It is intended primarily for use by those members of the bibliographic community involved in the use or management of serial titles and their contributions.).freeze, + comment: "The Serial Item and Contribution Identifier is a code used to uniquely identify specific volumes, articles or other identifiable parts of a periodical. It is intended primarily for use by those members of the bibliographic community involved in the use or management of serial titles and their contributions.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, isDefinedBy: "http://www.niso.org/apps/group_public/project/details.php?project_id=75".freeze, label: ["has SICI".freeze, "has Serial Item and Contribution Identifier".freeze], - range: "xsd:string".freeze, - subPropertyOf: "dc:identifier".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hasSeason, - comment: %(Permits specification of the season of the year, for example spring, summer, autumn and winter in British English.).freeze, + comment: "Permits specification of the season of the year, for example spring, summer, autumn and winter in British English.".freeze, label: "has season".freeze, - 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 :hasSequenceIdentifier, - comment: %(A literal \(for example a number or a letter\) that identifies the sequence position of a work within a particular context, for example a book in a book series, a chapter in a document, a volume in a journal.).freeze, + comment: "A literal (for example a number or a letter) that identifies the sequence position of a work within a particular context, for example a book in a book series, a chapter in a document, a volume in a journal.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, label: "has number".freeze, - 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 :hasShortTitle, - comment: %(A short version of the title of an entity, typically used to label or refer to a particular entity in an abbreviated form, for example an abbreviated journal title in a reference, or a short title of a document used as the running title in a page header.).freeze, + comment: "A short version of the title of an entity, typically used to label or refer to a particular entity in an abbreviated form, for example an abbreviated journal title in a reference, or a short title of a document used as the running title in a page header.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, label: "has short title".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dc:title".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/dc/terms/title".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasStandardNumber, - comment: %(The number defining an international standard, for example Z39.96 - 201x, identifying NISO JATS, the Journal Article Tag Suite.).freeze, + comment: "The number defining an international standard, for example Z39.96 - 201x, identifying NISO JATS, the Journal Article Tag Suite.".freeze, label: "has standard number".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 :hasSubjectTerm, - comment: %(This property is used to associate a frbr:Endeavour to a term in a particular classification system.).freeze, + comment: "This property is used to associate a frbr:Endeavour to a term in a particular classification system.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, label: "has subject term".freeze, - range: "fabio:SubjectTerm".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/spar/fabio/SubjectTerm".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSubtitle, - comment: %(A secondary title that follows the main title of a work.).freeze, + comment: "A secondary title that follows the main title of a work.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, label: "has subtitle".freeze, - range: "xsd:string".freeze, - subPropertyOf: "dc:title".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: "http://purl.org/dc/terms/title".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasTranslatedSubtitle, - comment: %(A version of the subtitle of an entity translated into another language, which may be specified using the object property dcterms:language.).freeze, + comment: "A version of the subtitle of an entity translated into another language, which may be specified using the object property dcterms:language.".freeze, label: "has translated subtitle".freeze, - subPropertyOf: "dc:title".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://purl.org/dc/terms/title".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasTranslatedTitle, - comment: %(A version of the title of an entity translated into another language, which may be specified using the object property dcterms:language.).freeze, + comment: "A version of the title of an entity translated into another language, which may be specified using the object property dcterms:language.".freeze, label: "has translated title".freeze, - subPropertyOf: "dc:title".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://purl.org/dc/terms/title".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasURL, - comment: %(An identifier, in form of an HTTP Universal Resource Locator \(URL\), for a particular resource on the World Wide Web.).freeze, + comment: "An identifier, in form of an HTTP Universal Resource Locator (URL), for a particular resource on the World Wide Web.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, label: "has URL".freeze, - range: "xsd:anyURI".freeze, - subPropertyOf: "dc:identifier".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze, + subPropertyOf: "http://purl.org/dc/terms/identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasVolumeCount, - comment: %(The count of the number of volumes a work includes.).freeze, + comment: "The count of the number of volumes a work includes.".freeze, domain: "http://purl.org/vocab/frbr/core#Endeavour".freeze, label: "has volume count".freeze, - range: "xsd:nonNegativeInteger".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".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, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :isDisciplineOf, - comment: %(This property relates a subject vocabulary to the discipline to which it belongs.).freeze, - domain: "fabio:SubjectDiscipline".freeze, + comment: "This property relates a subject vocabulary to the discipline to which it belongs.".freeze, + domain: "http://purl.org/spar/fabio/SubjectDiscipline".freeze, + "http://www.w3.org/2002/07/owl#propertyDisjointWith": "http://www.w3.org/2004/02/skos/core#inScheme".freeze, label: "is discipline of".freeze, - "owl:propertyDisjointWith": "skos:inScheme".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("fabio:TermDictionary".freeze, term( - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/spar/fabio/TermDictionary".freeze, term( + type: "http://www.w3.org/2002/07/owl#Class".freeze )) ), - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isManifestationOf, - comment: %(A property linking a particular manifestation to the work it is manifesting. This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model.).freeze, + comment: "A property linking a particular manifestation to the work it is manifesting. This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model.".freeze, domain: "http://purl.org/vocab/frbr/core#Manifestation".freeze, - label: "is manifestation of".freeze, - "owl:propertyChainAxiom": list(term( + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list(term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#embodimentOf\), a property representing an expression that is embodied by a manifestation.).freeze, label: "is embodiment of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze ), term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#realizationOf\), a property representing the work that has been realized by an expression.).freeze, label: "is realization of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze )), + label: "is manifestation of".freeze, range: "http://purl.org/vocab/frbr/core#Work".freeze, subPropertyOf: "http://purl.org/vocab/frbr/core#relatedEndeavour".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isPortrayalOf, - comment: %(A property linking a particular item to the work it portrays. This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model.).freeze, + comment: "A property linking a particular item to the work it portrays. This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model.".freeze, domain: "http://purl.org/vocab/frbr/core#Item".freeze, - label: "is portrayal of".freeze, - "owl:propertyChainAxiom": list(term( + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list(term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#embodimentOf\), a property representing a manifestation that is exemplified by an item.).freeze, label: "is exemplar of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze ), term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#embodimentOf\), a property representing an expression that is embodied by a manifestation.).freeze, label: "is embodiment of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze ), term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#realizationOf\), a property representing the work that has been realized by an expression.).freeze, label: "is realization of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze )), + label: "is portrayal of".freeze, range: "http://purl.org/vocab/frbr/core#Work".freeze, subPropertyOf: "http://purl.org/vocab/frbr/core#relatedEndeavour".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isRepresentationOf, - comment: %(A property linking a particular item to the expression it represents. This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model.).freeze, + comment: "A property linking a particular item to the expression it represents. This property is additional to the relationships between FRBR endeavours present in the classical FRBR data model.".freeze, domain: "http://purl.org/vocab/frbr/core#Item".freeze, - label: "is representation of".freeze, - "owl:propertyChainAxiom": list(term( + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list(term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#embodimentOf\), a property representing a manifestation that is exemplified by an item.).freeze, label: "is exemplar of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze ), term( comment: %(As defined by FRBR \(http://www.ifla.org/VII/s13/frbr/frbr1.htm; http://purl.org/vocab/frbr/core#embodimentOf\), a property representing an expression that is embodied by a manifestation.).freeze, label: "is embodiment of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze )), + label: "is representation of".freeze, range: "http://purl.org/vocab/frbr/core#Expression".freeze, subPropertyOf: "http://purl.org/vocab/frbr/core#relatedEndeavour".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isSchemeOf, - comment: %(This property expresses the fact that a scheme contains a concept.).freeze, - domain: "skos:ConceptScheme".freeze, - inverseOf: "skos:inScheme".freeze, + comment: "This property expresses the fact that a scheme contains a concept.".freeze, + domain: "http://www.w3.org/2004/02/skos/core#ConceptScheme".freeze, + inverseOf: "http://www.w3.org/2004/02/skos/core#inScheme".freeze, label: "is scheme of".freeze, - range: "skos:Concept".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isStoredOn, - comment: %(This property relates a fabio:Item to the medium upon which it is stored.).freeze, - domain: "fabio:Item".freeze, - inverseOf: "fabio:stores".freeze, + comment: "This property relates a fabio:Item to the medium upon which it is stored.".freeze, + domain: "http://purl.org/spar/fabio/Item".freeze, + inverseOf: "http://purl.org/spar/fabio/stores".freeze, label: "is stored on".freeze, - range: "fabio:StorageMedium".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/spar/fabio/StorageMedium".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :stores, - comment: %(This property relates a storage medium to the fabio:Item stored upon it.).freeze, - domain: "fabio:StorageMedium".freeze, + comment: "This property relates a storage medium to the fabio:Item stored upon it.".freeze, + domain: "http://purl.org/spar/fabio/StorageMedium".freeze, label: "stores".freeze, - range: "fabio:Item".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/spar/fabio/Item".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :usesCalendar, - comment: %(A property that identifies the calendar system used to specify a date, for example the Chinese, Gregorian, Hebrew, Islamic or Lunar calendar.).freeze, + comment: "A property that identifies the calendar system used to specify a date, for example the Chinese, Gregorian, Hebrew, Islamic or Lunar calendar.".freeze, label: "uses calendar".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] # Extra definitions term :SupplementaryInformationFile, - comment: %(A file accompanying a published journal article, containing additional information of relevance to the article, typically available from the publisher's web site via a hyperlink from the journal article itself.).freeze + comment: "A file accompanying a published journal article, containing additional information of relevance to the article, typically available from the publisher's web site via a hyperlink from the journal article itself.".freeze term :"analog-magnetic-tape", - comment: %(An analog medium for magnetic recording of audio and video information, made of a thin magnetizable coating on a long, narrow plastic tape, typically wound on a spool. ).freeze, + comment: "An analog medium for magnetic recording of audio and video information, made of a thin magnetizable coating on a long, narrow plastic tape, typically wound on a spool. ".freeze, label: "analog magnetic tape".freeze, - type: ["fabio:AnalogStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/AnalogStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :cd, - comment: %(A non-rewritable optical disc used to store digital data.).freeze, + comment: "A non-rewritable optical disc used to store digital data.".freeze, label: ["CD".freeze, "compact disk".freeze], - type: ["fabio:DigitalStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/DigitalStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :cloud, - comment: %(A distributed and commoditized Internet-based computing resource, whereby shared services, software programs, and information storage facilities are provided to computers and other devices on demand, at locations of which the user may be unaware, like the electricity grid.).freeze, + comment: "A distributed and commoditized Internet-based computing resource, whereby shared services, software programs, and information storage facilities are provided to computers and other devices on demand, at locations of which the user may be unaware, like the electricity grid.".freeze, label: "cloud".freeze, - type: ["fabio:DigitalStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/DigitalStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :"digital-magnetic-tape", - comment: %(A rewritable digital medium for magnetic recording of audio, video and other data, made of a thin magnetizable coating on a long, narrow strip of plastic, usually wound on a spool.).freeze, + comment: "A rewritable digital medium for magnetic recording of audio, video and other data, made of a thin magnetizable coating on a long, narrow strip of plastic, usually wound on a spool.".freeze, label: "digital magnetic tape".freeze, - type: ["fabio:DigitalStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/DigitalStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :dvd, - comment: %(A non-rewritable optical disc storage medium resembling a compact disc \(CD\), usually used for video and data storage. A DVD has the same physical dimensions as a CD, but is capable of storing more than six times as much data.).freeze, + comment: "A non-rewritable optical disc storage medium resembling a compact disc (CD), usually used for video and data storage. A DVD has the same physical dimensions as a CD, but is capable of storing more than six times as much data.".freeze, label: ["DVD".freeze, "digital versatile disc".freeze, "digital video disc".freeze], - type: ["fabio:DigitalStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/DigitalStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :film, - comment: %(A thin flexible strip of plastic or other material coated with light-sensitive emulsion upon which images can be recorded, typically using a camera, usually used to record photographic images or motion pictures.).freeze, + comment: "A thin flexible strip of plastic or other material coated with light-sensitive emulsion upon which images can be recorded, typically using a camera, usually used to record photographic images or motion pictures.".freeze, label: "film".freeze, - type: ["fabio:AnalogStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/AnalogStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :"floppy-disk", - comment: %(A rewritable data storage medium that is composed of a disk of thin, flexible \(floppy\) magnetic storage medium encased in a square or rectangular plastic shell. Data are encoded magnetically by a read/write head that float on a cushion of air in close proximity to the surface of the rotated disk.).freeze, + comment: "A rewritable data storage medium that is composed of a disk of thin, flexible (floppy) magnetic storage medium encased in a square or rectangular plastic shell. Data are encoded magnetically by a read/write head that float on a cushion of air in close proximity to the surface of the rotated disk.".freeze, label: "floppy disk".freeze, - type: ["fabio:DigitalStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/DigitalStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :"hard-drive", - comment: %(A non-volatile storage device for digital data, composed of one or more rigid discs \(platters\) mounted side by side on a motor-driven spindle within a metal case. Data are encoded magnetically by read/write heads that float on cushions of air in close proximity to the surfaces of the rotated platters.).freeze, + comment: "A non-volatile storage device for digital data, composed of one or more rigid discs (platters) mounted side by side on a motor-driven spindle within a metal case. Data are encoded magnetically by read/write heads that float on cushions of air in close proximity to the surfaces of the rotated platters.".freeze, label: ["HD".freeze, "hard drive".freeze], - type: ["fabio:DigitalStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/DigitalStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :internet, - comment: %(A global system of interconnected computer networks that uses the standard Internet Protocol Suite \(TCP/IP\) to serve billions of users worldwide. The internet connects millions of private, public, academic, business and governmental computers, that are individually attached to local networks linked together by a broad array of electronic, radio and optical networking technologies to form the internet. ).freeze, + comment: "A global system of interconnected computer networks that uses the standard Internet Protocol Suite (TCP/IP) to serve billions of users worldwide. The internet connects millions of private, public, academic, business and governmental computers, that are individually attached to local networks linked together by a broad array of electronic, radio and optical networking technologies to form the internet. ".freeze, label: "internet".freeze, - type: ["fabio:DigitalStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/DigitalStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :intranet, - comment: %(A private computer network, unconnected to the internet or separated from it by a firewall, that uses a network operating system and Internet Protocol technologies to permit an organization's information to be shared securely within that organization.).freeze, + comment: "A private computer network, unconnected to the internet or separated from it by a firewall, that uses a network operating system and Internet Protocol technologies to permit an organization's information to be shared securely within that organization.".freeze, label: "intranet".freeze, - type: ["fabio:DigitalStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/DigitalStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :paper, - comment: %(A thin flat material, typically made from wood pulp, mainly used for writing upon, for printing upon or for packaging.).freeze, + comment: "A thin flat material, typically made from wood pulp, mainly used for writing upon, for printing upon or for packaging.".freeze, label: "paper".freeze, - type: ["fabio:AnalogStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/AnalogStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :ram, - comment: %(Abbreviation of Random Access Memory. A form of rewritable computer data storage that takes the form of integrated circuits that allow data to be stored and accessed in any order \(i.e. at random\), thereby achieving greater speed than for access of data stored in linear form on digital magnetic tape.).freeze, + comment: "Abbreviation of Random Access Memory. A form of rewritable computer data storage that takes the form of integrated circuits that allow data to be stored and accessed in any order (i.e. at random), thereby achieving greater speed than for access of data stored in linear form on digital magnetic tape.".freeze, label: ["RAM".freeze, "random access memory".freeze], - type: ["fabio:DigitalStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/DigitalStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :"solid-state-memory", - comment: %(A digital storage device built entirely from solid electronic materials with no moving parts, e.g. a USB flash drive.).freeze, + comment: "A digital storage device built entirely from solid electronic materials with no moving parts, e.g. a USB flash drive.".freeze, label: "solid state memory".freeze, - type: ["fabio:DigitalStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/DigitalStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :"vinyl-disk", - comment: %(An analog sound storage medium consisting of a flat disc made of moulded vinyl plastic with an inscribed, modulated spiral groove.).freeze, + comment: "An analog sound storage medium consisting of a flat disc made of moulded vinyl plastic with an inscribed, modulated spiral groove.".freeze, label: "vinyl disk".freeze, - type: ["fabio:AnalogStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/AnalogStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] term :web, - comment: %(A system of interlinked hypertext documents written in HTML and accessed using the HTTP protocol via the Internet.).freeze, + comment: "A system of interlinked hypertext documents written in HTML and accessed using the HTTP protocol via the Internet.".freeze, label: ["WWW".freeze, "Web".freeze, "World Wide Web".freeze], - type: ["fabio:DigitalStorageMedium".freeze, "owl:NamedIndividual".freeze] + type: ["http://purl.org/spar/fabio/DigitalStorageMedium".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze] end end diff --git a/lib/vocabs/fea.rb b/lib/vocabs/fea.rb index eaacc22c..a2fd64aa 100644 --- a/lib/vocabs/fea.rb +++ b/lib/vocabs/fea.rb @@ -2,305 +2,295 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://vocab.data.gov/def/fea# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class FEA < RDF::StrictVocabulary - # end - class FEA < RDF::StrictVocabulary("http://vocab.data.gov/def/fea#") +module LifePreserver::Vocab + FEA = Class.new(RDF::StrictVocabulary("http://vocab.data.gov/def/fea#")) do # Ontology definition ontology :"http://vocab.data.gov/def/fea#", - "dc11:modified": "2015-06-26".freeze, - "dc11:title": "FEA Vocabulary".freeze, - "foaf:page": "http://vocab.data.gov/def/fea.html".freeze, + "http://purl.org/dc/elements/1.1/modified": "2015-06-26".freeze, + "http://purl.org/dc/elements/1.1/title": "FEA Vocabulary".freeze, "http://purl.org/vocab/vann/preferredNamespacePrefix": "fea".freeze, "http://purl.org/vocab/vann/preferredNamespaceUri": "http://vocab.data.gov/def/fea#".freeze, - type: "owl:Ontology".freeze + "http://xmlns.com/foaf/0.1/page": "http://vocab.data.gov/def/fea.html".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Agency, - comment: %(An agency of the US government).freeze, - isDefinedBy: "fea:".freeze, + comment: "An agency of the US government".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Agency".freeze, - subClassOf: ["fea:GovernmentBody".freeze, "fea:ValuePoint".freeze], - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: ["http://vocab.data.gov/def/fea#GovernmentBody".freeze, "http://vocab.data.gov/def/fea#ValuePoint".freeze], + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Board, - comment: %(US government board).freeze, - isDefinedBy: "fea:".freeze, + comment: "US government board".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Board".freeze, - subClassOf: "fea:GovernmentBody".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#GovernmentBody".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Budget, - isDefinedBy: "fea:".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Budget".freeze, - subClassOf: "fea:FEA_EnterpriseConcept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#FEA_EnterpriseConcept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Citizen, - comment: %(Citizen of the United States of Americe).freeze, - isDefinedBy: "fea:".freeze, + comment: "Citizen of the United States of Americe".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Citizen".freeze, - subClassOf: "fea:Party".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#Party".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :CivilServant, - comment: %(An employee of the US Government).freeze, - isDefinedBy: "fea:".freeze, + comment: "An employee of the US Government".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Civil Servant".freeze, - subClassOf: "fea:Party".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#Party".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Commission, - comment: %(Us government commission).freeze, - isDefinedBy: "fea:".freeze, + comment: "Us government commission".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Commission".freeze, - subClassOf: "fea:GovernmentBody".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#GovernmentBody".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Company, - comment: %(A commercial organization).freeze, - isDefinedBy: "fea:".freeze, + comment: "A commercial organization".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Company".freeze, - subClassOf: "fea:IndustryBody".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#IndustryBody".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Council, - comment: %(US Government council).freeze, - isDefinedBy: "fea:".freeze, + comment: "US Government council".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Council".freeze, - subClassOf: "fea:GovernmentBody".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#GovernmentBody".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Customer, - comment: %(The diverse nature of federal programs means that there are many customers spanning the citizen, business, other government, and internal categories. Some customers -receive direct government services, such as veterans receiving health care from the Veterans Health Administration. Other “customers” are those subject to regulatory activities, such as large businesses conforming to safety regulations administered by the Occupational Safety and Health Administration. Importantly, the citizen is generally considered to be the ultimate “customer” of government activities regardless of the nature of the customer relationship. -PRM volume 1, p.14).freeze, - isDefinedBy: "fea:".freeze, + comment: "The diverse nature of federal programs means that there are many customers spanning the citizen, business, other government, and internal categories. Some customers\nreceive direct government services, such as veterans receiving health care from the Veterans Health Administration. Other “customersâ€\u009D are those subject to regulatory activities, such as large businesses conforming to safety regulations administered by the Occupational Safety and Health Administration. Importantly, the citizen is generally considered to be the ultimate “customerâ€\u009D of government activities regardless of the nature of the customer relationship.\nPRM volume 1, p.14".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Customer".freeze, - subClassOf: "fea:ValuePoint".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#ValuePoint".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :ExecutiveAgency, - comment: %(Executive Agency of the US government).freeze, - isDefinedBy: "fea:".freeze, + comment: "Executive Agency of the US government".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Executive Agency".freeze, - subClassOf: "fea:Agency".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#Agency".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :FEA_ArchitectureConcept, - isDefinedBy: "fea:".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "FEA Architecture Concept".freeze, - subClassOf: "fea:FEA_Concept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#FEA_Concept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :FEA_Concept, - isDefinedBy: "fea:".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "FEA Concept".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 :FEA_EnterpriseConcept, - isDefinedBy: "fea:".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "FEA Enterprise Concept".freeze, - subClassOf: "fea:FEA_Concept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#FEA_Concept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :FEA_Model, - comment: %(1, the FEA is being constructed through a collection of interrelated -“reference models” designed to facilitate cross-agency analysis and the identification of duplicative investments, gaps, and opportunities for collaboration within and across Federal Agencies.).freeze, - isDefinedBy: "fea:".freeze, + comment: "1, the FEA is being constructed through a collection of interrelated\n“reference modelsâ€\u009D designed to facilitate cross-agency analysis and the identification of duplicative investments, gaps, and opportunities for collaboration within and across Federal Agencies.".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "FEA Model".freeze, - subClassOf: "fea:FEA_ArchitectureConcept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#FEA_ArchitectureConcept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :FEA_TechnologyConcept, - isDefinedBy: "fea:".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "FEA Technology Concept".freeze, - subClassOf: "fea:FEA_Concept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#FEA_Concept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :FederalEnterpriseArchitecture, - comment: %(To facilitate efforts to transform the Federal Government to one that is citizen-centered, results-oriented, and market-based, the Office of Management and Budget \(OMB\) is developing the Federal Enterprise Architecture \(FEA\), a business-based framework for Governmentwide improvement.).freeze, - isDefinedBy: "fea:".freeze, + comment: "To facilitate efforts to transform the Federal Government to one that is citizen-centered, results-oriented, and market-based, the Office of Management and Budget (OMB) is developing the Federal Enterprise Architecture (FEA), a business-based framework for Governmentwide improvement.".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Federal Enterprise Architecture".freeze, - subClassOf: "fea:FEA_ArchitectureConcept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#FEA_ArchitectureConcept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :GovernmentBody, - comment: %(Any US government organization).freeze, - isDefinedBy: "fea:".freeze, + comment: "Any US government organization".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Government Body".freeze, - subClassOf: "fea:OrganizationEntity".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#OrganizationEntity".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :HumanResource, - comment: %(This class refers to the workforce).freeze, - isDefinedBy: "fea:".freeze, + comment: "This class refers to the workforce".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Human Resource".freeze, - subClassOf: "fea:Resource".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#Resource".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :IT_Initiative, - comment: %(A program of work that implements information technology based capabilities.).freeze, - isDefinedBy: "fea:".freeze, + comment: "A program of work that implements information technology based capabilities.".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "IT Initiative".freeze, - subClassOf: "fea:FEA_EnterpriseConcept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#FEA_EnterpriseConcept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :IndependentAgency, - comment: %(Independent Agency of the US government).freeze, - isDefinedBy: "fea:".freeze, + comment: "Independent Agency of the US government".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Independent Agency".freeze, - subClassOf: "fea:Agency".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#Agency".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :IndustryBody, - comment: %(Any non government organization).freeze, - isDefinedBy: "fea:".freeze, + comment: "Any non government organization".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Industry Body".freeze, - subClassOf: "fea:OrganizationEntity".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#OrganizationEntity".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Mission, - comment: %(Missions are carried out by the organizational entities).freeze, - isDefinedBy: "fea:".freeze, + comment: "Missions are carried out by the organizational entities".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Mission".freeze, - subClassOf: "fea:FEA_EnterpriseConcept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#FEA_EnterpriseConcept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Office, - comment: %(US government office).freeze, - isDefinedBy: "fea:".freeze, + comment: "US government office".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Office".freeze, - subClassOf: "fea:GovernmentBody".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#GovernmentBody".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :OrganizationEntity, - isDefinedBy: "fea:".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Organization Entity".freeze, - subClassOf: "fea:Party".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#Party".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :OtherFixedAsset, - comment: %(This class includes any fixed assets such as vehicle fleets, facilities and other equipment.).freeze, - isDefinedBy: "fea:".freeze, + comment: "This class includes any fixed assets such as vehicle fleets, facilities and other equipment.".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Other Fixed Asset".freeze, - subClassOf: "fea:Resource".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#Resource".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Partition, - comment: %(Each reference model has an extensional property based on partitioning. This reveals implicit semantics in each reference model. -).freeze, - isDefinedBy: "fea:".freeze, + comment: "Each reference model has an extensional property based on partitioning. This reveals implicit semantics in each reference model.\n".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Partition".freeze, - subClassOf: "fea:FEA_ArchitectureConcept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#FEA_ArchitectureConcept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Party, - isDefinedBy: "fea:".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Party".freeze, - subClassOf: ["fea:Customer".freeze, "fea:FEA_EnterpriseConcept".freeze], - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: ["http://vocab.data.gov/def/fea#Customer".freeze, "http://vocab.data.gov/def/fea#FEA_EnterpriseConcept".freeze], + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Process, - comment: %(The BRM includes a Mode of Delivery Business Area that is designed to identify at a very high level the process that is being used to achieve an intended purpose. -PRM volume 1, p.16).freeze, - isDefinedBy: "fea:".freeze, + comment: "The BRM includes a Mode of Delivery Business Area that is designed to identify at a very high level the process that is being used to achieve an intended purpose.\nPRM volume 1, p.16".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Process".freeze, - subClassOf: "fea:ValuePoint".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#ValuePoint".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :QuasiOfficialAgency, - comment: %(Quasi Official Agency of the US government).freeze, - isDefinedBy: "fea:".freeze, + comment: "Quasi Official Agency of the US government".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Quasi Official Agency".freeze, - subClassOf: "fea:Agency".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#Agency".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Resource, - isDefinedBy: "fea:".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Resource".freeze, - subClassOf: "fea:ValuePoint".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#ValuePoint".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Standard, - comment: %(Technology standard).freeze, - isDefinedBy: "fea:".freeze, + comment: "Technology standard".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Standard".freeze, - subClassOf: "fea:FEA_TechnologyConcept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#FEA_TechnologyConcept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :StrategicOutcome, - comment: %(Strategic Outcomes represent broad, policy priorities that drive the direction of government \(such as to Secure the Homeland or Expand E-Government\). -PRM volume 1, p.13).freeze, - isDefinedBy: "fea:".freeze, + comment: "Strategic Outcomes represent broad, policy priorities that drive the direction of government (such as to Secure the Homeland or Expand E-Government).\nPRM volume 1, p.13".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Strategic Outcome".freeze, - subClassOf: "fea:ValuePoint".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#ValuePoint".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :Technology, - comment: %(Technology means Information Technology).freeze, - isDefinedBy: "fea:".freeze, + comment: "Technology means Information Technology".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "Technology".freeze, - subClassOf: ["fea:FEA_TechnologyConcept".freeze, "fea:ValuePoint".freeze], - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: ["http://vocab.data.gov/def/fea#FEA_TechnologyConcept".freeze, "http://vocab.data.gov/def/fea#ValuePoint".freeze], + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] term :ValuePoint, - comment: %(The point at which value is measured.).freeze, - isDefinedBy: "fea:".freeze, + comment: "The point at which value is measured.".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "ValuePoint".freeze, - subClassOf: "fea:FEA_EnterpriseConcept".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://vocab.data.gov/def/fea#FEA_EnterpriseConcept".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] # Property definitions property :allignedWith, - isDefinedBy: "fea:".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "allignedWith".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :buildsOn, - domain: "fea:Partition".freeze, - isDefinedBy: "fea:".freeze, + domain: "http://vocab.data.gov/def/fea#Partition".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "buildsOn".freeze, - range: "fea:Partition".freeze, - type: "rdf:Property".freeze + range: "http://vocab.data.gov/def/fea#Partition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :comprises, - isDefinedBy: "fea:".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "comprises".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :date, - isDefinedBy: "fea:".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "date".freeze, - range: "xsd:date".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".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, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :dependsOn, - domain: "fea:Partition".freeze, - isDefinedBy: "fea:".freeze, + domain: "http://vocab.data.gov/def/fea#Partition".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "dependsOn".freeze, - range: "fea:Partition".freeze, - type: "rdf:Property".freeze + range: "http://vocab.data.gov/def/fea#Partition".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :description, - domain: "fea:FEA_Concept".freeze, - isDefinedBy: "fea:".freeze, + domain: "http://vocab.data.gov/def/fea#FEA_Concept".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "description".freeze, - range: "xsd:string".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".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, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :drawsUpon, - domain: "fea:FEA_Model".freeze, - isDefinedBy: "fea:".freeze, + domain: "http://vocab.data.gov/def/fea#FEA_Model".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "drawsUpon".freeze, - range: "fea:FEA_Model".freeze, - type: "rdf:Property".freeze + range: "http://vocab.data.gov/def/fea#FEA_Model".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :hasIntent, - domain: "fea:OrganizationEntity".freeze, - isDefinedBy: "fea:".freeze, + domain: "http://vocab.data.gov/def/fea#OrganizationEntity".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "hasIntent".freeze, - range: "fea:Mission".freeze, - type: ["owl:FunctionalProperty".freeze, "rdf:Property".freeze] + range: "http://vocab.data.gov/def/fea#Mission".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :intentOf, - domain: "fea:Mission".freeze, - isDefinedBy: "fea:".freeze, + domain: "http://vocab.data.gov/def/fea#Mission".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "intentOf".freeze, - range: "fea:OrganizationEntity".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze] + range: "http://vocab.data.gov/def/fea#OrganizationEntity".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze] property :isComprisedOf, - isDefinedBy: "fea:".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "isComprisedOf".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :isPartOf, - comment: %(used to describe part of relationships, such as, for example, the fact that one organization is part of another \(departmental hierarchy\).).freeze, - isDefinedBy: "fea:".freeze, + comment: "used to describe part of relationships, such as, for example, the fact that one organization is part of another (departmental hierarchy).".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "is part of".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :mnemonic, - domain: "fea:FEA_Concept".freeze, - isDefinedBy: "fea:".freeze, + domain: "http://vocab.data.gov/def/fea#FEA_Concept".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "mnemonic".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 :supportedBy, - isDefinedBy: "fea:".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "supportedBy".freeze, - type: "rdf:Property".freeze + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :undertakenBy, - domain: "fea:IT_Initiative".freeze, - isDefinedBy: "fea:".freeze, + domain: "http://vocab.data.gov/def/fea#IT_Initiative".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "undertakenBy".freeze, - range: "fea:Agency".freeze, - type: "rdf:Property".freeze + range: "http://vocab.data.gov/def/fea#Agency".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :undertakes, - domain: "fea:Agency".freeze, - isDefinedBy: "fea:".freeze, + domain: "http://vocab.data.gov/def/fea#Agency".freeze, + isDefinedBy: "http://vocab.data.gov/def/fea#".freeze, label: "undertakes".freeze, - range: "fea:IT_Initiative".freeze, - type: "rdf:Property".freeze + range: "http://vocab.data.gov/def/fea#IT_Initiative".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze end end diff --git a/lib/vocabs/ipo.rb b/lib/vocabs/ipo.rb index c280dc41..763a4c3f 100644 --- a/lib/vocabs/ipo.rb +++ b/lib/vocabs/ipo.rb @@ -2,580 +2,537 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/ipo/core# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class IPO < RDF::StrictVocabulary - # end - class IPO < RDF::StrictVocabulary("http://purl.org/ipo/core#") +module LifePreserver::Vocab + IPO = Class.new(RDF::StrictVocabulary("http://purl.org/ipo/core#")) do # Ontology definition ontology :"http://purl.org/ipo/core#", - "cc:license": "http://creativecommons.org/licenses/by/3.0/".freeze, - comment: %(Vocabulary for describing issues \(or problems\) and corresponding symptoms and solutions to a broad variety of contexts. It is intended to provide a generic, reusable core ontology that can be extended or specialized for use in domain-specific situations, aimed at supporting linked data publishing. The solutions are represented by procedures, which are possible workflows for solving corresponding issues.).freeze, - "dc11:creator": ["Mark Douglas de Azevedo Jacyntho".freeze, "Matheus Dimas de Morais".freeze], - "dc11:description": ["The conceptual model of the Issue Procedure Ontology can be seen below, where their classes and properties are presented by means of a UML class diagram.\nFor better understanding, the ontology can be divided into four modules:\nIssueEntity\nClasses: IssueEntity, Asset, Image, skos:Concept.\n\nProperties: directCategoryOf, hasDirectCategory, categoryOf, hasCategory, hasMaker, makerOf, hasAsset, assetOf, hasDepiction, depictionOf, title, description.\n\nPersons and Organizations\nClasses: Party, Person e Organization\n\nProperties: hasMember, memberOf, name.\n\nProblems and Symptoms\nClasses: Symptom, Issue.\n\nProperties: directlyCauses, directlyCausedBy, causes, causedBy, dependenceOf, dependsOn, directDependenceOf, directlyDependsOn, canDirectlyCause, canBeDirectlyCausedBy, canCause, canBeCausedBy, canBeDependenceOf, canDependOn, canBeDirectDependenceOf, canDirectlyDependOn, indicatedBy, indicates, hasCausativeAsset, causativeAssetOf, hasHostAsset, hostAssetOf.\n\nProblems and Solutions\nClasses: Action, Task, CompoundAction, Procedure, Activity, Step, Transition, BooleanExpression.\n\nProperties: solves, solvedBy, hasFirstStep, hasStep, activates, hasSource, hasTarget, hasIncoming, hasOutcoming, hasGuardCondition, hasPostCondition, hasPreCondition, goal.\n\nClassifying a IssueEntity\nThere are two ways of classifying a IssueEntity:\n1 - A non-intrinsic classification, ie, a classification aiming a simple grouping of IssueEntities, where the IPO ontology provides ipo use of the property \"ipo:hasCategory\" linking to \"skos:Concept\", enabling the creation of schemes of categories and subcategories.\n2 - A classification that is intrinsic to a IssueEntity, so that classification implies the creation of subclasses of IssueEntity with specific restrictions. For example, the \"Hard Disk Problem\" class being defined by a specific restriction that is being linked to at least one of the symptoms \"Error Reading File\" or \"Error Writing File\" (instances of Symptom class). Thus, resources can be classified based on the description of their symptoms, as an instance of the new class of \"Hard Disk Problem\" (HD).".freeze, "http://ipocore.sourceforge.net/1.2.0/ipo.png".freeze], - "dc11:language": "en".freeze, - "dc11:modified": "2015-07-30".freeze, - "dc11:title": "IPO - Issue Procedure Ontology".freeze, - "dc:issued": "2014-11-21".freeze, - "dc:license": "http://creativecommons.org/licenses/by/3.0/".freeze, - "dc:rights": "This work is distributed under a Creative Commons Attribution License (http://creativecommons.org/licenses/by/3.0/).".freeze, + comment: "Vocabulary for describing issues (or problems) and corresponding symptoms and solutions to a broad variety of contexts. It is intended to provide a generic, reusable core ontology that can be extended or specialized for use in domain-specific situations, aimed at supporting linked data publishing. The solutions are represented by procedures, which are possible workflows for solving corresponding issues.".freeze, + "http://creativecommons.org/ns#license": "http://creativecommons.org/licenses/by/3.0/".freeze, + "http://purl.org/dc/elements/1.1/creator": ["Mark Douglas de Azevedo Jacyntho".freeze, "Matheus Dimas de Morais".freeze], + "http://purl.org/dc/elements/1.1/description": ["The conceptual model of the Issue Procedure Ontology can be seen below, where their classes and properties are presented by means of a UML class diagram.\nFor better understanding, the ontology can be divided into four modules:\nIssueEntity\nClasses: IssueEntity, Asset, Image, skos:Concept.\n\nProperties: directCategoryOf, hasDirectCategory, categoryOf, hasCategory, hasMaker, makerOf, hasAsset, assetOf, hasDepiction, depictionOf, title, description.\n\nPersons and Organizations\nClasses: Party, Person e Organization\n\nProperties: hasMember, memberOf, name.\n\nProblems and Symptoms\nClasses: Symptom, Issue.\n\nProperties: directlyCauses, directlyCausedBy, causes, causedBy, dependenceOf, dependsOn, directDependenceOf, directlyDependsOn, canDirectlyCause, canBeDirectlyCausedBy, canCause, canBeCausedBy, canBeDependenceOf, canDependOn, canBeDirectDependenceOf, canDirectlyDependOn, indicatedBy, indicates, hasCausativeAsset, causativeAssetOf, hasHostAsset, hostAssetOf.\n\nProblems and Solutions\nClasses: Action, Task, CompoundAction, Procedure, Activity, Step, Transition, BooleanExpression.\n\nProperties: solves, solvedBy, hasFirstStep, hasStep, activates, hasSource, hasTarget, hasIncoming, hasOutcoming, hasGuardCondition, hasPostCondition, hasPreCondition, goal.\n\nClassifying a IssueEntity\nThere are two ways of classifying a IssueEntity:\n1 - A non-intrinsic classification, ie, a classification aiming a simple grouping of IssueEntities, where the IPO ontology provides ipo use of the property \"ipo:hasCategory\" linking to \"skos:Concept\", enabling the creation of schemes of categories and subcategories.\n2 - A classification that is intrinsic to a IssueEntity, so that classification implies the creation of subclasses of IssueEntity with specific restrictions. For example, the \"Hard Disk Problem\" class being defined by a specific restriction that is being linked to at least one of the symptoms \"Error Reading File\" or \"Error Writing File\" (instances of Symptom class). Thus, resources can be classified based on the description of their symptoms, as an instance of the new class of \"Hard Disk Problem\" (HD).".freeze, "http://ipocore.sourceforge.net/1.2.0/ipo.png".freeze], + "http://purl.org/dc/elements/1.1/language": "en".freeze, + "http://purl.org/dc/elements/1.1/modified": "2015-07-30".freeze, + "http://purl.org/dc/elements/1.1/title": "IPO - Issue Procedure Ontology".freeze, + "http://purl.org/dc/terms/issued": "2014-11-21".freeze, + "http://purl.org/dc/terms/license": "http://creativecommons.org/licenses/by/3.0/".freeze, + "http://purl.org/dc/terms/rights": "This work is distributed under a Creative Commons Attribution License (http://creativecommons.org/licenses/by/3.0/).".freeze, "http://purl.org/vocab/vann/preferredNamespacePrefix": "ipo".freeze, "http://purl.org/vocab/vann/preferredNamespaceUri": "http://purl.org/ipo/core#".freeze, + "http://www.w3.org/2002/07/owl#versionIRI": "http://purl.org/ipo/core/1.2.0".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "1.2.0".freeze, label: "IPO - Issue Procedure Ontology".freeze, - "owl:versionIRI": "http://purl.org/ipo/core/1.2.0".freeze, - "owl:versionInfo": "1.2.0".freeze, - type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "owl:NamedIndividual".freeze, "owl:Ontology".freeze] + type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "http://www.w3.org/2002/07/owl#NamedIndividual".freeze, "http://www.w3.org/2002/07/owl#Ontology".freeze] # Class definitions term :Action, - comment: %(Represents an action to be performed. An Action can only be a primitive action \(Task\) or a set of actions \(CompoundAction\). -An Action has a precondition that will enable the execution of the Action, and a postcondition \(effect\) which will be validated after running the Action.).freeze, + comment: "Represents an action to be performed. An Action can only be a primitive action (Task) or a set of actions (CompoundAction).\nAn Action has a precondition that will enable the execution of the Action, and a postcondition (effect) which will be validated after running the Action.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "Action".freeze, - subClassOf: ["ipo:IssueEntity".freeze, term( - onProperty: "ipo:hasPostCondition".freeze, - someValuesFrom: "ipo:BooleanExpression".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ipo/core#IssueEntity".freeze, term( + onProperty: "http://purl.org/ipo/core#hasPostCondition".freeze, + someValuesFrom: "http://purl.org/ipo/core#BooleanExpression".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "ipo:hasPreCondition".freeze, - someValuesFrom: "ipo:BooleanExpression".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/ipo/core#hasPreCondition".freeze, + someValuesFrom: "http://purl.org/ipo/core#BooleanExpression".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 :Activity, - comment: %(A set of steps that perform an activity, but does not aim to solve a particular Issue. -Can be used to group multiple steps that are repeated in various Procedures to facilitate reuse.).freeze, + comment: "A set of steps that perform an activity, but does not aim to solve a particular Issue.\nCan be used to group multiple steps that are repeated in various Procedures to facilitate reuse.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/ipo/core#Procedure".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "Activity".freeze, - "owl:disjointWith": "ipo:Procedure".freeze, - subClassOf: "ipo:CompoundAction".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ipo/core#CompoundAction".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Asset, - comment: %(Any "thing" that a IssueEntity is related. -For example, a problem \(disease\) diagnosed in a patient, can have a virus and the patient as Asset, since the virus is the causative agent of the problem and the patient is the host in which the problem manifests itself. -An Asset can be a person, an object, a report, a document, etc.).freeze, + comment: "Any \"thing\" that a IssueEntity is related. \nFor example, a problem (disease) diagnosed in a patient, can have a virus and the patient as Asset, since the virus is the causative agent of the problem and the patient is the host in which the problem manifests itself.\nAn Asset can be a person, an object, a report, a document, etc.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "Asset".freeze, subClassOf: term( - onProperty: "ipo:title".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/ipo/core#title".freeze, + someValuesFrom: "http://www.w3.org/2001/XMLSchema#string".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 :BooleanExpression, - comment: %(A logical expression whose value is true or false, aiming to validate a Transition between two Steps, or serve with a pre-condition for the execution of a Action or serve as a post-condition to validate the execution of an Action. - ).freeze, + comment: "A logical expression whose value is true or false, aiming to validate a Transition between two Steps, or serve with a pre-condition for the execution of a Action or serve as a post-condition to validate the execution of an Action.\n\t ".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "BooleanExpression".freeze, subClassOf: term( - onProperty: "ipo:description".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/ipo/core#description".freeze, + someValuesFrom: "http://www.w3.org/2001/XMLSchema#string".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 :CompoundAction, - comment: %(An action composed of several other actions. A CompoundAction may have the goal of solving one or more Issues, representing a Procedure or not having an explicit goal, just be a group of Actions to be reused, behaving as an Activity. A CompoundAction has one or more execution steps that activate one Action \(Task or other CompoundAction\), thus allowing, that a compoundAction reuse another. -A CompoundAction can be used to create a workflow structure, aimed at better structuring of actions that compose it.).freeze, + comment: "An action composed of several other actions. A CompoundAction may have the goal of solving one or more Issues, representing a Procedure or not having an explicit goal, just be a group of Actions to be reused, behaving as an Activity. A CompoundAction has one or more execution steps that activate one Action (Task or other CompoundAction), thus allowing, that a compoundAction reuse another.\nA CompoundAction can be used to create a workflow structure, aimed at better structuring of actions that compose it.".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/ipo/core#Task".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "CompoundAction".freeze, - "owl:disjointWith": "ipo:Task".freeze, - subClassOf: ["ipo:Action".freeze, term( - onProperty: "ipo:hasFirstStep".freeze, - someValuesFrom: "ipo:Step".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ipo/core#Action".freeze, term( + onProperty: "http://purl.org/ipo/core#hasFirstStep".freeze, + someValuesFrom: "http://purl.org/ipo/core#Step".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "ipo:hasStep".freeze, - someValuesFrom: "ipo:Step".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/ipo/core#hasStep".freeze, + someValuesFrom: "http://purl.org/ipo/core#Step".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 :Image, - comment: %(An artifact that illustrates or records a visual perception. - -It can be used to illustrate a IssueEntity seeking a better understanding of it.).freeze, - equivalentClass: "foaf:Image".freeze, + comment: "An artifact that illustrates or records a visual perception.\n\nIt can be used to illustrate a IssueEntity seeking a better understanding of it.".freeze, + equivalentClass: "http://xmlns.com/foaf/0.1/Image".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "Image".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Issue, - comment: %(A problem or issue to be resolved. For example, something that is not operating normally or a hindrance to performing some task. -A Issue can be cause and/or caused, directly or indirectly, by another Issue, the same that the Issue A can depend on the Issue B, needing that the Issue B be solved before solving Issue A. -The Issue can have a set of Actions \(Procedures\) that will fix it and also a Issue can be indicated by several Symptoms, where a set of Symptoms can identify a Issue.).freeze, + comment: "A problem or issue to be resolved. For example, something that is not operating normally or a hindrance to performing some task.\nA Issue can be cause and/or caused, directly or indirectly, by another Issue, the same that the Issue A can depend on the Issue B, needing that the Issue B be solved before solving Issue A.\nThe Issue can have a set of Actions (Procedures) that will fix it and also a Issue can be indicated by several Symptoms, where a set of Symptoms can identify a Issue.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "Issue".freeze, - subClassOf: ["ipo:IssueEntity".freeze, term( - onProperty: "ipo:indicatedBy".freeze, - someValuesFrom: "ipo:Symptom".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ipo/core#IssueEntity".freeze, term( + onProperty: "http://purl.org/ipo/core#indicatedBy".freeze, + someValuesFrom: "http://purl.org/ipo/core#Symptom".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 :IssueEntity, - comment: %(A generic class representing the three main concepts within the domain of ontology: Symptom, Problem and Action.).freeze, + comment: "A generic class representing the three main concepts within the domain of ontology: Symptom, Problem and Action.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "IssueEntity".freeze, subClassOf: [term( - onProperty: "ipo:description".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/ipo/core#description".freeze, + someValuesFrom: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "ipo:title".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/ipo/core#title".freeze, + someValuesFrom: "http://www.w3.org/2001/XMLSchema#string".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 :Organization, - comment: %(Represents a group of people organized aiming at a common goal: social, commercial or political. -Can be used, for example, to represent a company that manufactures an Asset.).freeze, - equivalentClass: "foaf:Organization".freeze, + comment: "Represents a group of people organized aiming at a common goal: social, commercial or political.\nCan be used, for example, to represent a company that manufactures an Asset.".freeze, + equivalentClass: "http://xmlns.com/foaf/0.1/Organization".freeze, + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.org/ipo/core#Person".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "Organization".freeze, - "owl:disjointWith": "ipo:Person".freeze, - subClassOf: "ipo:Party".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ipo/core#Party".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Party, - comment: %(A class representing a Person or an Organization, and it assumes a role of agent within the treated domain.).freeze, + comment: "A class representing a Person or an Organization, and it assumes a role of agent within the treated domain.".freeze, equivalentClass: term( - type: "owl:Class".freeze, - unionOf: list("ipo:Organization".freeze, "ipo:Person".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ipo/core#Organization".freeze, "http://purl.org/ipo/core#Person".freeze) ), isDefinedBy: "http://purl.org/ipo/core".freeze, label: "Party".freeze, - subClassOf: ["foaf:Agent".freeze, term( - onProperty: "ipo:name".freeze, - someValuesFrom: "xsd:string".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://xmlns.com/foaf/0.1/Agent".freeze, term( + onProperty: "http://purl.org/ipo/core#name".freeze, + someValuesFrom: "http://www.w3.org/2001/XMLSchema#string".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 :Person, - comment: %(This class represents a person. -Can be used, for example, to represent a person who works in an Organization, produces some Asset or records an IssueEntity.).freeze, - equivalentClass: "foaf:Person".freeze, + comment: "This class represents a person.\nCan be used, for example, to represent a person who works in an Organization, produces some Asset or records an IssueEntity.".freeze, + equivalentClass: "http://xmlns.com/foaf/0.1/Person".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "Person".freeze, - subClassOf: "ipo:Party".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ipo/core#Party".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Procedure, - comment: %(A sequence of steps which, after executed solve one or more Issues. -A procedure has a number of steps that are executed in a specific sequence, one seeking to solve Issue.).freeze, + comment: "A sequence of steps which, after executed solve one or more Issues.\nA procedure has a number of steps that are executed in a specific sequence, one seeking to solve Issue.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "Procedure".freeze, - subClassOf: ["ipo:CompoundAction".freeze, term( - onProperty: "ipo:solves".freeze, - someValuesFrom: "ipo:Issue".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ipo/core#CompoundAction".freeze, term( + onProperty: "http://purl.org/ipo/core#solves".freeze, + someValuesFrom: "http://purl.org/ipo/core#Issue".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 :Step, - comment: %(A step to be performed within a CompoundAction. Every Step has an Action to be performed and a Transition to another Step to be performed after completing the execution of the Action. -With Steps is possible to establish an order for the execution of Actions, as each Step has a Transition that sets the Step of origin and destination. Once a CompoundAction has an initial Step \(IPO: hasFirstStep\), from this Step can be run all other steps that composes the compoundAction following the Transition between them.).freeze, + comment: "A step to be performed within a CompoundAction. Every Step has an Action to be performed and a Transition to another Step to be performed after completing the execution of the Action. \nWith Steps is possible to establish an order for the execution of Actions, as each Step has a Transition that sets the Step of origin and destination. Once a CompoundAction has an initial Step (IPO: hasFirstStep), from this Step can be run all other steps that composes the compoundAction following the Transition between them.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "Step".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Symptom, - comment: %(Represents a sign or indication of one or more Issues. Something that is perceived when a problem occurs. -).freeze, + comment: "Represents a sign or indication of one or more Issues. Something that is perceived when a problem occurs.\n".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "Symptom".freeze, - subClassOf: ["ipo:IssueEntity".freeze, term( - onProperty: "ipo:indicates".freeze, - someValuesFrom: "ipo:Issue".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ipo/core#IssueEntity".freeze, term( + onProperty: "http://purl.org/ipo/core#indicates".freeze, + someValuesFrom: "http://purl.org/ipo/core#Issue".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 :Task, - comment: %(One elementary and single action. -Being an elementary task, it can not be decomposed into simpler actions.).freeze, + comment: "One elementary and single action.\nBeing an elementary task, it can not be decomposed into simpler actions.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "Task".freeze, - subClassOf: "ipo:Action".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ipo/core#Action".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Transition, - comment: %(An Transition represents a transition \(passage\) between two Steps. Each Transition has a Step of origin \(source\) and a Step of destination \(target\). A Transition has a guard condition that specifies a boolean condition for that the Transition to occur. -Through the guard condition, can be implemented, in a simplified way, a workflow, establishing decision structures, repetition, choice, etc.).freeze, + comment: "An Transition represents a transition (passage) between two Steps. Each Transition has a Step of origin (source) and a Step of destination (target). A Transition has a guard condition that specifies a boolean condition for that the Transition to occur.\nThrough the guard condition, can be implemented, in a simplified way, a workflow, establishing decision structures, repetition, choice, etc.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "Transition".freeze, subClassOf: [term( - onProperty: "ipo:hasGuardCondition".freeze, - someValuesFrom: "ipo:BooleanExpression".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/ipo/core#hasGuardCondition".freeze, + someValuesFrom: "http://purl.org/ipo/core#BooleanExpression".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "ipo:hasSource".freeze, - someValuesFrom: "ipo:Step".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/ipo/core#hasSource".freeze, + someValuesFrom: "http://purl.org/ipo/core#Step".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "ipo:hasTarget".freeze, - someValuesFrom: "ipo:Step".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/ipo/core#hasTarget".freeze, + someValuesFrom: "http://purl.org/ipo/core#Step".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 :activates, - comment: %(Indicates the action to be activated by a Step.).freeze, - domain: "ipo:Step".freeze, + comment: "Indicates the action to be activated by a Step.".freeze, + domain: "http://purl.org/ipo/core#Step".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "activates".freeze, - range: "ipo:Action".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://purl.org/ipo/core#Action".freeze, + type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :assetOf, - comment: %(Indicates a IssueEntity that is related to the Asset. -This property can be used to facilitate retrieval records of problems related to the Asset.).freeze, - inverseOf: "ipo:hasAsset".freeze, + comment: "Indicates a IssueEntity that is related to the Asset.\nThis property can be used to facilitate retrieval records of problems related to the Asset.".freeze, + inverseOf: "http://purl.org/ipo/core#hasAsset".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "assetOf".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :canBeCausedBy, - comment: %(The Issue can be caused by another Issue directly or indirectly. -This property is transitive, i.e., if the issue "A" can be caused by the issue "B" and the issue "B" can be caused by the issue "C", then the issue "A" can be caused by the issue "C".).freeze, + comment: "The Issue can be caused by another Issue directly or indirectly.\nThis property is transitive, i.e., if the issue \"A\" can be caused by the issue \"B\" and the issue \"B\" can be caused by the issue \"C\", then the issue \"A\" can be caused by the issue \"C\".".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "canBeCausedBy".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :canBeDependenceOf, - comment: %(Indicates that an Issue can be a dependence of another Issue directly or indirectly. -This property is also transitive, i.e., if the issue "A" can be dependence of the issue "B" and the issue "B" can be dependence of the issue "C", then the issue "A" can be dependence of the issue "C".).freeze, + comment: "Indicates that an Issue can be a dependence of another Issue directly or indirectly.\nThis property is also transitive, i.e., if the issue \"A\" can be dependence of the issue \"B\" and the issue \"B\" can be dependence of the issue \"C\", then the issue \"A\" can be dependence of the issue \"C\".".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "canBeDependenceOf".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :canBeDirectDependenceOf, - comment: %(This property indicates an Issue that can be direct dependence of another Issue.).freeze, + comment: "This property indicates an Issue that can be direct dependence of another Issue.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "canBeDirectDependenceOf".freeze, - subPropertyOf: "ipo:canBeDependenceOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#canBeDependenceOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :canBeDirectlyCausedBy, - comment: %(An Issue can be directly caused by another Issue.).freeze, + comment: "An Issue can be directly caused by another Issue.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "canBeDirectlyCausedBy".freeze, - subPropertyOf: "ipo:canBeCausedBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#canBeCausedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :canCause, - comment: %(An Issue can cause another Issue directly or indirectly. -This property aims to express a possible causal relationship and has the characteristic of transitivity, i.e., the Issue "A" can cause the Issue "B" and the Issue "B" can cause the Issue "C", then the Issue "A" can cause the Issue "C".).freeze, - domain: "ipo:Issue".freeze, - inverseOf: "ipo:canBeCausedBy".freeze, + comment: "An Issue can cause another Issue directly or indirectly. \nThis property aims to express a possible causal relationship and has the characteristic of transitivity, i.e., the Issue \"A\" can cause the Issue \"B\" and the Issue \"B\" can cause the Issue \"C\", then the Issue \"A\" can cause the Issue \"C\".".freeze, + domain: "http://purl.org/ipo/core#Issue".freeze, + inverseOf: "http://purl.org/ipo/core#canBeCausedBy".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "canCause".freeze, - range: "ipo:Issue".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://purl.org/ipo/core#Issue".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :canDependOn, - comment: %(Indicates that an Issue can depend on another Issue directly or indirectly. -This property can express a dependency relationship between Issues and has the characteristic of transitivity, i.e., the Issue "A" can depend on the Issue "B" and the Issue "B" can depend on "C", then the Issue "A" can depend on the Issue "C".).freeze, - domain: "ipo:Issue".freeze, - inverseOf: "ipo:canBeDependenceOf".freeze, + comment: "Indicates that an Issue can depend on another Issue directly or indirectly.\nThis property can express a dependency relationship between Issues and has the characteristic of transitivity, i.e., the Issue \"A\" can depend on the Issue \"B\" and the Issue \"B\" can depend on \"C\", then the Issue \"A\" can depend on the Issue \"C\".".freeze, + domain: "http://purl.org/ipo/core#Issue".freeze, + inverseOf: "http://purl.org/ipo/core#canBeDependenceOf".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "canDependOn".freeze, - range: "ipo:Issue".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://purl.org/ipo/core#Issue".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :canDirectlyCause, - comment: %(An Issue can directly cause another Issue. -This property aims to express a possible causal relationship, where an Issue can be direct cause of another Issue. For example, flu disease can cause pneumonia, i.e., in some cases, flu causes pneumonia and in another cases not.).freeze, - inverseOf: "ipo:canBeDirectlyCausedBy".freeze, + comment: "An Issue can directly cause another Issue.\nThis property aims to express a possible causal relationship, where an Issue can be direct cause of another Issue. For example, flu disease can cause pneumonia, i.e., in some cases, flu causes pneumonia and in another cases not.".freeze, + inverseOf: "http://purl.org/ipo/core#canBeDirectlyCausedBy".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "canDirectlyCause".freeze, - subPropertyOf: "ipo:canCause".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#canCause".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :canDirectlyDependOn, - comment: %(Indicates that an Issue can directly depend on another Issue. -For example, pneumonia can directly depend that the flu is cured to finally be treated.).freeze, - inverseOf: "ipo:canBeDirectDependenceOf".freeze, + comment: "Indicates that an Issue can directly depend on another Issue.\nFor example, pneumonia can directly depend that the flu is cured to finally be treated.".freeze, + inverseOf: "http://purl.org/ipo/core#canBeDirectDependenceOf".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "canDirectlyDependOn".freeze, - subPropertyOf: "ipo:canDependOn".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#canDependOn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :categoryOf, - comment: %(Indicates a IssueEntity classified in a skos:Concept.).freeze, - inverseOf: "ipo:hasCategory".freeze, + comment: "Indicates a IssueEntity classified in a skos:Concept.".freeze, + inverseOf: "http://purl.org/ipo/core#hasCategory".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "categoryOf".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :causativeAssetOf, - comment: %(This property relates a Asset with a Issue caused by this Asset. For example, a virus associated with a disease caused by it.).freeze, - inverseOf: "ipo:hasCausativeAsset".freeze, + comment: "This property relates a Asset with a Issue caused by this Asset. For example, a virus associated with a disease caused by it.".freeze, + inverseOf: "http://purl.org/ipo/core#hasCausativeAsset".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "causativeAssetOf".freeze, - subPropertyOf: "ipo:assetOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#assetOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :causedBy, - comment: %(Indicates that an Issue is caused by another Issue directly or indirectly. -This property also has a transitive characteristic, i.e., if the Issue "A" is caused by Issue "B" and the Issue "B" is caused by Issue "C", then the Issue "A" is caused by Issue "C".).freeze, + comment: "Indicates that an Issue is caused by another Issue directly or indirectly.\nThis property also has a transitive characteristic, i.e., if the Issue \"A\" is caused by Issue \"B\" and the Issue \"B\" is caused by Issue \"C\", then the Issue \"A\" is caused by Issue \"C\".".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "causedBy".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :causes, - comment: %(Indicates that an Issue causes another Issue directly or indirectly. -This property expresses a causal relationship between Issues and have the characteristic of transitivity, i.e., if the Issue "A" causes Issue "B" and the Issue "B" causes Issue "C", then the Issue "A" causes Issue "C".).freeze, - domain: "ipo:Issue".freeze, - inverseOf: "ipo:causedBy".freeze, + comment: "Indicates that an Issue causes another Issue directly or indirectly.\nThis property expresses a causal relationship between Issues and have the characteristic of transitivity, i.e., if the Issue \"A\" causes Issue \"B\" and the Issue \"B\" causes Issue \"C\", then the Issue \"A\" causes Issue \"C\".".freeze, + domain: "http://purl.org/ipo/core#Issue".freeze, + inverseOf: "http://purl.org/ipo/core#causedBy".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "causes".freeze, - range: "ipo:Issue".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://purl.org/ipo/core#Issue".freeze, + subPropertyOf: "http://www.w3.org/2002/07/owl#topObjectProperty".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :dependenceOf, - comment: %(Indicates that an Issue is a dependence of another Issue directly or indirectly. -This property also has a transitive characteristic, i.e. , if Issue "A" is dependence of the Issue "B", and the Issue "B" is dependence of Issue "C", then the Issue "A" is dependence of Issue "C".).freeze, + comment: "Indicates that an Issue is a dependence of another Issue directly or indirectly. \nThis property also has a transitive characteristic, i.e. , if Issue \"A\" is dependence of the Issue \"B\", and the Issue \"B\" is dependence of Issue \"C\", then the Issue \"A\" is dependence of Issue \"C\".".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "dependenceOf".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :dependsOn, - comment: %(This property indicates that an Issue depends on another Issue directly or indirectly. -This property expresses a dependence relationship between Issues and has the characteristic of transitivity, i.e. , if Issue "A" depends on the Issue "B", and the Issue "B" depends on Issue "C", then the Issue "A" depends on Issue "C".).freeze, - domain: "ipo:Issue".freeze, - inverseOf: "ipo:dependenceOf".freeze, + comment: "This property indicates that an Issue depends on another Issue directly or indirectly.\nThis property expresses a dependence relationship between Issues and has the characteristic of transitivity, i.e. , if Issue \"A\" depends on the Issue \"B\", and the Issue \"B\" depends on Issue \"C\", then the Issue \"A\" depends on Issue \"C\".".freeze, + domain: "http://purl.org/ipo/core#Issue".freeze, + inverseOf: "http://purl.org/ipo/core#dependenceOf".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "dependsOn".freeze, - range: "ipo:Issue".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + range: "http://purl.org/ipo/core#Issue".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :depictionOf, - comment: %(Indicates a IssueEntity illustrated by the image. -This property is functional, i.e., an Image is related by this property with only one IssueEntity.).freeze, - inverseOf: "ipo:hasDepiction".freeze, + comment: "Indicates a IssueEntity illustrated by the image.\nThis property is functional, i.e., an Image is related by this property with only one IssueEntity.".freeze, + inverseOf: "http://purl.org/ipo/core#hasDepiction".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "depictionOf".freeze, - subPropertyOf: "foaf:depicts".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://xmlns.com/foaf/0.1/depicts".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :description, - comment: %(Indicates text that describes something in detail.).freeze, + comment: "Indicates text that describes something in detail.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "description".freeze, - range: "xsd:string".freeze, - subPropertyOf: ["dc:description".freeze, "rdfs:comment".freeze], - type: ["owl:AnnotationProperty".freeze, "owl:DatatypeProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: ["http://purl.org/dc/terms/description".freeze, "http://www.w3.org/2000/01/rdf-schema#comment".freeze], + type: ["http://www.w3.org/2002/07/owl#AnnotationProperty".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] property :directCategoryOf, - comment: %(Indicates a IssueEntity directly classified in a skos:Concept.).freeze, + comment: "Indicates a IssueEntity directly classified in a skos:Concept.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "directCategoryOf".freeze, - subPropertyOf: "ipo:categoryOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#categoryOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :directDependenceOf, - comment: %(Indicates that a Issue is direct dependence of another Issue.).freeze, + comment: "Indicates that a Issue is direct dependence of another Issue.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "directDependenceOf".freeze, - subPropertyOf: "ipo:dependenceOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#dependenceOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :directlyCausedBy, - comment: %(Indicates that an Issue is directly caused by another Issue.).freeze, + comment: "Indicates that an Issue is directly caused by another Issue.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "directlyCausedBy".freeze, - subPropertyOf: "ipo:causedBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#causedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :directlyCauses, - comment: %(This property indicates that an Issue directly causes another Issue.).freeze, - inverseOf: "ipo:directlyCausedBy".freeze, + comment: "This property indicates that an Issue directly causes another Issue.".freeze, + inverseOf: "http://purl.org/ipo/core#directlyCausedBy".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "directlyCauses".freeze, - subPropertyOf: "ipo:causes".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#causes".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :directlyDependsOn, - comment: %(This relation indicates that a issue directly depends on another Issue.).freeze, - inverseOf: "ipo:directDependenceOf".freeze, + comment: "This relation indicates that a issue directly depends on another Issue.".freeze, + inverseOf: "http://purl.org/ipo/core#directDependenceOf".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "directlyDependsOn".freeze, - subPropertyOf: "ipo:dependsOn".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#dependsOn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :goal, - comment: %(Indicates the description of the goal to be reached after the execution of Procedure.).freeze, - domain: "ipo:Procedure".freeze, + comment: "Indicates the description of the goal to be reached after the execution of Procedure.".freeze, + domain: "http://purl.org/ipo/core#Procedure".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "goal".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 :hasAsset, - comment: %(Indicates an Asset to IssueEntity, i.e., any "thing" which is related to IssueEntity.).freeze, - domain: "ipo:IssueEntity".freeze, + comment: "Indicates an Asset to IssueEntity, i.e., any \"thing\" which is related to IssueEntity.".freeze, + domain: "http://purl.org/ipo/core#IssueEntity".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasAsset".freeze, - range: "ipo:Asset".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/ipo/core#Asset".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCategory, - comment: %(Indicates a category \(skos: Concept\) directly or indirectly related to a IssueEntity. -The Concept class of SKOS ontology has properties that allow you to create hierarchies of categories \(Concepts\), still allowing express transitivity between categories. This approach should be used as an alternative to classification by subclass of IssueEntity when it are not intrinsic classifications, just grouping. For example, in the field of medicine, disease can be grouped as viral diseases, bacterial diseases, etc.).freeze, - domain: "ipo:IssueEntity".freeze, + comment: "Indicates a category (skos: Concept) directly or indirectly related to a IssueEntity.\nThe Concept class of SKOS ontology has properties that allow you to create hierarchies of categories (Concepts), still allowing express transitivity between categories. This approach should be used as an alternative to classification by subclass of IssueEntity when it are not intrinsic classifications, just grouping. For example, in the field of medicine, disease can be grouped as viral diseases, bacterial diseases, etc.".freeze, + domain: "http://purl.org/ipo/core#IssueEntity".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://purl.org/ipo/core#hasCategory".freeze, term( + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze + )), isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasCategory".freeze, - "owl:propertyChainAxiom": list("ipo:hasCategory".freeze, term( - type: "owl:ObjectProperty".freeze - )), - range: "skos:Concept".freeze, - type: "owl:ObjectProperty".freeze + range: "http://www.w3.org/2004/02/skos/core#Concept".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCausativeAsset, - comment: %(Indicates an Asset that is the causer of the Issue.).freeze, - domain: "ipo:Issue".freeze, + comment: "Indicates an Asset that is the causer of the Issue.".freeze, + domain: "http://purl.org/ipo/core#Issue".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasCausativeAsset".freeze, - subPropertyOf: "ipo:hasAsset".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#hasAsset".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasDepiction, - comment: %(Indicates an image that illustrates the IssueEntity. -Seeking a better description of IssueEntity, one can make use of this property to relate an illustrative image. For example, an image of a software screen containing an error occurred can help describe the problem.).freeze, - domain: "ipo:IssueEntity".freeze, + comment: "Indicates an image that illustrates the IssueEntity.\nSeeking a better description of IssueEntity, one can make use of this property to relate an illustrative image. For example, an image of a software screen containing an error occurred can help describe the problem.".freeze, + domain: "http://purl.org/ipo/core#IssueEntity".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasDepiction".freeze, - range: "ipo:Image".freeze, - subPropertyOf: "foaf:depiction".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://purl.org/ipo/core#Image".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/depiction".freeze, + type: ["http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasDirectCategory, - comment: %(Indicates a category \(skos: Concept\) directly related to a IssueEntity.).freeze, - inverseOf: "ipo:directCategoryOf".freeze, + comment: "Indicates a category (skos: Concept) directly related to a IssueEntity.".freeze, + inverseOf: "http://purl.org/ipo/core#directCategoryOf".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasDirectCategory".freeze, - subPropertyOf: "ipo:hasCategory".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#hasCategory".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasFirstStep, - comment: %(A CompoundAction has one or more steps, so this property indicates the first step should be executed.).freeze, + comment: "A CompoundAction has one or more steps, so this property indicates the first step should be executed.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasFirstStep".freeze, - subPropertyOf: "ipo:hasStep".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze] + subPropertyOf: "http://purl.org/ipo/core#hasStep".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 :hasGuardCondition, - comment: %(Indicates a BooleanExpression for that a Transition occurs. -For example, a Transition can have as guardCondition that the Step of origin be executed 10 times. So while this Step does is not executes 10 times, will not be started the Step of destination. This example illustrates a repeating structure within the workflow.).freeze, - domain: "ipo:Transition".freeze, + comment: "Indicates a BooleanExpression for that a Transition occurs.\nFor example, a Transition can have as guardCondition that the Step of origin be executed 10 times. So while this Step does is not executes 10 times, will not be started the Step of destination. This example illustrates a repeating structure within the workflow.".freeze, + domain: "http://purl.org/ipo/core#Transition".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasGuardCondition".freeze, - range: "ipo:BooleanExpression".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://purl.org/ipo/core#BooleanExpression".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 :hasHostAsset, - comment: %(Indicates an Asset that is the host \(harbourer\) of the Issue.).freeze, - domain: "ipo:Issue".freeze, + comment: "Indicates an Asset that is the host (harbourer) of the Issue.".freeze, + domain: "http://purl.org/ipo/core#Issue".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasHostAsset".freeze, - subPropertyOf: "ipo:hasAsset".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#hasAsset".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasIncoming, - comment: %(Indicates the Transition that starts the execution of this Step.).freeze, - domain: "ipo:Step".freeze, - inverseOf: "ipo:hasTarget".freeze, + comment: "Indicates the Transition that starts the execution of this Step.".freeze, + domain: "http://purl.org/ipo/core#Step".freeze, + inverseOf: "http://purl.org/ipo/core#hasTarget".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasIncoming".freeze, - range: "ipo:Transition".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://purl.org/ipo/core#Transition".freeze, + type: ["http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasMaker, - comment: %(Indicates a Person or Organization \(Party\) who created or registered the IssueEntity. This property is also used by Asset class to relate to its manufacturer, developer, inventor, etc.).freeze, + comment: "Indicates a Person or Organization (Party) who created or registered the IssueEntity. This property is also used by Asset class to relate to its manufacturer, developer, inventor, etc.".freeze, domain: term( - type: "owl:Class".freeze, - unionOf: list("ipo:Asset".freeze, "ipo:IssueEntity".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://purl.org/ipo/core#Asset".freeze, "http://purl.org/ipo/core#IssueEntity".freeze) ), - inverseOf: "ipo:makerOf".freeze, + inverseOf: "http://purl.org/ipo/core#makerOf".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasMaker".freeze, - range: "ipo:Party".freeze, - subPropertyOf: "foaf:maker".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/ipo/core#Party".freeze, + subPropertyOf: "http://xmlns.com/foaf/0.1/maker".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasMember, - comment: %(Indicates a Person who is a member of this Organization or another Organization that is member of this Organization, representing here a department or business unit. -).freeze, - domain: "ipo:Organization".freeze, - inverseOf: "ipo:memberOf".freeze, + comment: "Indicates a Person who is a member of this Organization or another Organization that is member of this Organization, representing here a department or business unit.\n".freeze, + domain: "http://purl.org/ipo/core#Organization".freeze, + inverseOf: "http://purl.org/ipo/core#memberOf".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasMember".freeze, - range: "ipo:Party".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/ipo/core#Party".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasOutcoming, - comment: %(Indicates the Transition that occurs after execution of this Step and that activates the next Step to be executed.).freeze, - domain: "ipo:Step".freeze, - inverseOf: "ipo:hasSource".freeze, + comment: "Indicates the Transition that occurs after execution of this Step and that activates the next Step to be executed.".freeze, + domain: "http://purl.org/ipo/core#Step".freeze, + inverseOf: "http://purl.org/ipo/core#hasSource".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasOutcoming".freeze, - range: "ipo:Transition".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://purl.org/ipo/core#Transition".freeze, + type: ["http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :hasPostCondition, - comment: %(Indicates a postcondition \(effect\) will be reached after executing the Action.).freeze, - domain: "ipo:Action".freeze, + comment: "Indicates a postcondition (effect) will be reached after executing the Action.".freeze, + domain: "http://purl.org/ipo/core#Action".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasPostCondition".freeze, - range: "ipo:BooleanExpression".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://purl.org/ipo/core#BooleanExpression".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 :hasPreCondition, - comment: %(Indicates a precondition for the Action be executed. - -A precondition may represent a prerequisite for execution of the Action, without which it is not guaranteed correct execution.).freeze, - domain: "ipo:Action".freeze, + comment: "Indicates a precondition for the Action be executed.\n\nA precondition may represent a prerequisite for execution of the Action, without which it is not guaranteed correct execution.".freeze, + domain: "http://purl.org/ipo/core#Action".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasPreCondition".freeze, - range: "ipo:BooleanExpression".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze] + range: "http://purl.org/ipo/core#BooleanExpression".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 :hasSource, - comment: %(Indicates the Step of origin of this Transition.).freeze, + comment: "Indicates the Step of origin of this Transition.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasSource".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 :hasStep, - comment: %(Indicates a Step that composes the compoundAction.).freeze, - domain: "ipo:CompoundAction".freeze, + comment: "Indicates a Step that composes the compoundAction.".freeze, + domain: "http://purl.org/ipo/core#CompoundAction".freeze, + "http://www.w3.org/2002/07/owl#propertyChainAxiom": list("http://purl.org/ipo/core#hasStep".freeze, "http://purl.org/ipo/core#hasOutcoming".freeze, "http://purl.org/ipo/core#hasTarget".freeze), isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasStep".freeze, - "owl:propertyChainAxiom": list("ipo:hasStep".freeze, "ipo:hasOutcoming".freeze, "ipo:hasTarget".freeze), - range: "ipo:Step".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/ipo/core#Step".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasTarget, - comment: %(Indicates the Step of destination of this Transition.).freeze, + comment: "Indicates the Step of destination of this Transition.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hasTarget".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 :hostAssetOf, - comment: %(Relates an Asset with a Issue that occurs in it. -This property can be used to relate a person with a disease whose the person is where the disease occurs.).freeze, - inverseOf: "ipo:hasHostAsset".freeze, + comment: "Relates an Asset with a Issue that occurs in it.\nThis property can be used to relate a person with a disease whose the person is where the disease occurs.".freeze, + inverseOf: "http://purl.org/ipo/core#hasHostAsset".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "hostAssetOf".freeze, - subPropertyOf: "ipo:assetOf".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/ipo/core#assetOf".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :indicatedBy, - comment: %(Indicates a Symptom of this Issue.).freeze, + comment: "Indicates a Symptom of this Issue.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "indicatedBy".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :indicates, - comment: %(This property relates a Issue indicated by this Symptom. -A Symptom may indicate many Issues, such as a Symptom of fever can indicate many diseases.).freeze, - domain: "ipo:Symptom".freeze, - inverseOf: "ipo:indicatedBy".freeze, + comment: "This property relates a Issue indicated by this Symptom.\nA Symptom may indicate many Issues, such as a Symptom of fever can indicate many diseases.".freeze, + domain: "http://purl.org/ipo/core#Symptom".freeze, + inverseOf: "http://purl.org/ipo/core#indicatedBy".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "indicates".freeze, - range: "ipo:Issue".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/ipo/core#Issue".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :makerOf, - comment: %(This property can be used to indicates an Asset created/manufactured by Party or a IssueEntity created/registered by the Party.).freeze, + comment: "This property can be used to indicates an Asset created/manufactured by Party or a IssueEntity created/registered by the Party.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "makerOf".freeze, - subPropertyOf: "foaf:made".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://xmlns.com/foaf/0.1/made".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :memberOf, - comment: %(Indicates a organization that the Party is participant. -This property can be used to indicates that an employee is a member of an organization. -Another approach is to use this property to relate two organizations thus representing a department that is a member of his company.).freeze, + comment: "Indicates a organization that the Party is participant.\nThis property can be used to indicates that an employee is a member of an organization.\nAnother approach is to use this property to relate two organizations thus representing a department that is a member of his company.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "memberOf".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :name, - comment: %(Indicates a name to identify something.).freeze, + comment: "Indicates a name to identify something.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "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 :solvedBy, - comment: %(Indicates a solution \(Procedure\) for this Issue.).freeze, + comment: "Indicates a solution (Procedure) for this Issue.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "solvedBy".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :solves, - comment: %(Indicates a Issue that this Procedure solves.).freeze, - domain: "ipo:Procedure".freeze, - inverseOf: "ipo:solvedBy".freeze, + comment: "Indicates a Issue that this Procedure solves.".freeze, + domain: "http://purl.org/ipo/core#Procedure".freeze, + inverseOf: "http://purl.org/ipo/core#solvedBy".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "solves".freeze, - range: "ipo:Issue".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/ipo/core#Issue".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :title, - comment: %(Title \(word or phrase\) that briefly describes something.).freeze, + comment: "Title (word or phrase) that briefly describes something.".freeze, isDefinedBy: "http://purl.org/ipo/core".freeze, label: "title".freeze, - range: "xsd:string".freeze, - subPropertyOf: ["dc:title".freeze, "rdfs:label".freeze], - type: ["owl:AnnotationProperty".freeze, "owl:DatatypeProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + subPropertyOf: ["http://purl.org/dc/terms/title".freeze, "http://www.w3.org/2000/01/rdf-schema#label".freeze], + type: ["http://www.w3.org/2002/07/owl#AnnotationProperty".freeze, "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze] end end diff --git a/lib/vocabs/mp.rb b/lib/vocabs/mp.rb index 117b82d2..571fcf7b 100644 --- a/lib/vocabs/mp.rb +++ b/lib/vocabs/mp.rb @@ -2,381 +2,7 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/mp/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class MP < RDF::StrictVocabulary - # end - class MP < RDF::StrictVocabulary("http://purl.org/mp/") - - # Ontology definition - ontology :"http://purl.org/mp/", - comment: %(Micropublications: a Semantic Model for Claims, Evidence, Arguments and Annotations in Biomedical Communications. - -Author: Tim Clark \(1,2,3\) -Contributors: Paolo Ciccarese \(1,2\), Carole Goble \(3\) - -Version 1.17, May 12, 2016. - -\(1\) Massachusetts General Hospital, Dept. of Neurology -\(2\) Harvard Medical School -\(3\) University of Manchester, School of Computer Science - -).freeze, - :"owl:priorVersion" => %(1.17).freeze, - :"owl:versionInfo" => %(1.18).freeze, - type: "owl:Ontology".freeze - - # Class definitions - term :ArticleText, - label: "ArticleText".freeze, - subClassOf: "mp:Representation".freeze, - type: "owl:Class".freeze - term :Artifact, - label: "Artifact".freeze, - subClassOf: "prov:Entity".freeze, - type: "owl:Class".freeze - term :Attribution, - label: "Attribution".freeze, - subClassOf: "mp:Representation".freeze, - type: "owl:Class".freeze - term :Claim, - label: "Claim".freeze, - subClassOf: "mp:Statement".freeze, - type: "owl:Class".freeze - term :Data, - label: "Data".freeze, - subClassOf: "mp:Representation".freeze, - type: "owl:Class".freeze - term :Holotype, - label: "Holotype".freeze, - subClassOf: "mp:Statement".freeze, - type: "owl:Class".freeze - term :Material, - label: "Material".freeze, - subClassOf: "mp:Method".freeze, - type: "owl:Class".freeze - term :Method, - label: "Method".freeze, - subClassOf: "mp:Representation".freeze, - type: "owl:Class".freeze - term :Micropublication, - label: "Micropublication".freeze, - subClassOf: "mp:Representation".freeze, - type: "owl:Class".freeze - term :Procedure, - label: "Procedure".freeze, - subClassOf: "mp:Method".freeze, - type: "owl:Class".freeze - term :QualifiedStatement, - label: "QualifiedStatement".freeze, - subClassOf: "mp:Statement".freeze, - type: "owl:Class".freeze - term :Qualifier, - label: "Qualifier".freeze, - subClassOf: "mp:Sentence".freeze, - type: "owl:Class".freeze - term :Reference, - label: "Reference".freeze, - subClassOf: "mp:Qualifier".freeze, - type: "owl:Class".freeze - term :ReferencedStatement, - label: "ReferencedStatement".freeze, - subClassOf: "mp:QualifiedStatement".freeze, - type: "owl:Class".freeze - term :Representation, - label: "Representation".freeze, - subClassOf: "mp:Artifact".freeze, - type: "owl:Class".freeze - term :SemanticQualifier, - label: "SemanticQualifier".freeze, - subClassOf: "mp:Qualifier".freeze, - type: "owl:Class".freeze - term :Sentence, - label: "Sentence".freeze, - subClassOf: "mp:Representation".freeze, - type: "owl:Class".freeze - term :Statement, - label: "Statement".freeze, - subClassOf: "mp:Sentence".freeze, - type: "owl:Class".freeze - term :TaggedStatement, - label: "TaggedStatement".freeze, - subClassOf: "mp:QualifiedStatement".freeze, - type: "owl:Class".freeze - - # Property definitions - property :arguedBy, - label: "arguedBy".freeze, - subPropertyOf: "mp:supports".freeze, - type: "owl:ObjectProperty".freeze - property :argues, - domain: "mp:Micropublication".freeze, - label: "argues".freeze, - :"owl:inverseOf" => %(mp:arguedBy).freeze, - range: "mp:Claim".freeze, - subPropertyOf: "mp:supportedBy".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] - property :assertedBy, - domain: "mp:Representation".freeze, - label: "assertedBy".freeze, - :"owl:inverseOf" => %(mp:asserts).freeze, - :"owl:propertyDisjointWith" => %(mp:quotedBy).freeze, - range: "mp:Micropublication".freeze, - subPropertyOf: "mp:elementOf".freeze, - type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze] - property :asserts, - domain: "mp:Micropublication".freeze, - label: "asserts".freeze, - :"owl:propertyDisjointWith" => %(mp:quotes).freeze, - range: "mp:Representation".freeze, - subPropertyOf: "mp:hasElement".freeze, - type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze] - property :atTime, - domain: "mp:Attribution".freeze, - label: "atTime".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze - property :attributedTo, - domain: "mp:Artifact".freeze, - label: "attributedTo".freeze, - range: "prov:Agent".freeze, - subPropertyOf: ["owl:topObjectProperty".freeze, "prov:wasAttributedTo".freeze], - type: "owl:ObjectProperty".freeze - property :attributionAsAuthor, - label: "attributionAsAuthor".freeze, - subPropertyOf: "prov:hasAttribution".freeze, - type: "owl:ObjectProperty".freeze - property :attributionAsCurator, - label: "attributionAsCurator".freeze, - subPropertyOf: "prov:hasAttribution".freeze, - type: "owl:ObjectProperty".freeze - property :attributionAsEditor, - label: "attributionAsEditor".freeze, - subPropertyOf: "prov:hasAttribution".freeze, - type: "owl:ObjectProperty".freeze - property :attributionAsPublisher, - label: "attributionAsPublisher".freeze, - subPropertyOf: "prov:hasAttribution".freeze, - type: "owl:ObjectProperty".freeze - property :attributionOfAgent, - domain: "mp:Attribution".freeze, - label: "attributionOfAgent".freeze, - range: "prov:Agent".freeze, - subPropertyOf: "prov:agent".freeze, - type: "owl:ObjectProperty".freeze - property :authoredBy, - label: "authoredBy".freeze, - subPropertyOf: "mp:attributedTo".freeze, - type: "owl:ObjectProperty".freeze - property :authoredOn, - domain: "mp:Artifact".freeze, - label: "authoredOn".freeze, - subPropertyOf: "owl:topDataProperty".freeze, - type: "owl:DatatypeProperty".freeze - property :challengeGraphElementOf, - domain: "mp:Micropublication".freeze, - label: "challengeGraphElementOf".freeze, - :"owl:inverseOf" => %(mp:hasChallengeGraphElement).freeze, - range: "mp:Representation".freeze, - type: "owl:ObjectProperty".freeze - property :challengedBy, - domain: "mp:Representation".freeze, - label: "challengedBy".freeze, - :"owl:inverseOf" => %(mp:challenges).freeze, - range: "mp:Representation".freeze, - type: "owl:ObjectProperty".freeze - property :challenges, - label: "challenges".freeze, - type: "owl:ObjectProperty".freeze - property :citation, - domain: "mp:Reference".freeze, - label: "citation".freeze, - range: "xsd:string".freeze, - subPropertyOf: ["http://dublincore.org/documents/2012/06/14/dcmi-terms/bibliographicCitation".freeze, "mp:value".freeze], - type: "owl:DatatypeProperty".freeze - property :curatedBy, - label: "curatedBy".freeze, - subPropertyOf: "mp:attributedTo".freeze, - type: "owl:ObjectProperty".freeze - property :curatedOn, - label: "curatedOn".freeze, - type: "owl:DatatypeProperty".freeze - property :dataSupports, - domain: "mp:Data".freeze, - label: "dataSupports".freeze, - :"owl:inverseOf" => %(mp:supportedByData).freeze, - range: "mp:Representation".freeze, - subPropertyOf: "mp:evidenceSupports".freeze, - type: "owl:ObjectProperty".freeze - property :directlyChallengedBy, - label: "directlyChallengedBy".freeze, - :"owl:inverseOf" => %(mp:directlyChallenges).freeze, - subPropertyOf: "mp:challengedBy".freeze, - type: "owl:ObjectProperty".freeze - property :directlyChallenges, - label: "directlyChallenges".freeze, - subPropertyOf: "mp:challenges".freeze, - type: "owl:ObjectProperty".freeze - property :editedBy, - label: "editedBy".freeze, - subPropertyOf: "mp:attributedTo".freeze, - type: "owl:ObjectProperty".freeze - property :editedOn, - label: "editedOn".freeze, - type: "owl:DatatypeProperty".freeze - property :elementOf, - domain: "mp:Representation".freeze, - label: "elementOf".freeze, - range: "mp:Micropublication".freeze, - subPropertyOf: "owl:topObjectProperty".freeze, - type: "owl:ObjectProperty".freeze - property :evidenceSupports, - label: "evidenceSupports".freeze, - :"owl:inverseOf" => %(mp:supportedByEvidence).freeze, - subPropertyOf: "mp:supports".freeze, - type: "owl:ObjectProperty".freeze - property :hasAttribution, - domain: "mp:Artifact".freeze, - label: "hasAttribution".freeze, - range: "mp:Attribution".freeze, - subPropertyOf: ["mp:supportedBy".freeze, "prov:qualifiedAttribution".freeze], - type: "owl:ObjectProperty".freeze - property :hasChallengeGraphElement, - domain: "mp:Micropublication".freeze, - label: "hasChallengeGraphElement".freeze, - range: "mp:Representation".freeze, - type: "owl:ObjectProperty".freeze - property :hasElement, - domain: "mp:Micropublication".freeze, - label: "hasElement".freeze, - range: "mp:Representation".freeze, - type: "owl:ObjectProperty".freeze - property :hasHolotype, - domain: "mp:Statement".freeze, - label: "hasHolotype".freeze, - :"owl:inverseOf" => %(mp:holotypeFor).freeze, - range: "mp:Statement".freeze, - subPropertyOf: "mp:representedBy".freeze, - type: "owl:ObjectProperty".freeze - property :hasSupportGraphElement, - domain: "mp:Micropublication".freeze, - label: "hasSupportGraphElement".freeze, - :"owl:inverseOf" => %(mp:supportGraphElementOf).freeze, - range: "mp:Representation".freeze, - type: "owl:ObjectProperty".freeze - property :holotypeFor, - label: "holotypeFor".freeze, - subPropertyOf: "mp:represents".freeze, - type: "owl:ObjectProperty".freeze - property :indirectlyChallengedBy, - label: "indirectlyChallengedBy".freeze, - :"owl:inverseOf" => %(mp:indirectlyChallenges).freeze, - subPropertyOf: "mp:challengedBy".freeze, - type: "owl:ObjectProperty".freeze - property :indirectlyChallenges, - label: "indirectlyChallenges".freeze, - subPropertyOf: "mp:challenges".freeze, - type: "owl:ObjectProperty".freeze - property :methodSupports, - domain: "mp:Method".freeze, - label: "methodSupports".freeze, - :"owl:inverseOf" => %(mp:supportedByMethod).freeze, - range: "mp:Representation".freeze, - subPropertyOf: "mp:evidenceSupports".freeze, - type: "owl:ObjectProperty".freeze - property :publishedBy, - label: "publishedBy".freeze, - subPropertyOf: "mp:attributedTo".freeze, - type: "owl:ObjectProperty".freeze - property :publishedOn, - domain: "mp:Attribution".freeze, - label: "publishedOn".freeze, - type: "owl:DatatypeProperty".freeze - property :qualifiedBy, - domain: "prov:Entity".freeze, - label: "qualifiedBy".freeze, - :"owl:inverseOf" => %(mp:qualifies).freeze, - range: "mp:Sentence".freeze, - type: "owl:ObjectProperty".freeze - property :qualifies, - label: "qualifies".freeze, - range: "prov:Entity".freeze, - type: "owl:ObjectProperty".freeze - property :quotedBy, - domain: "mp:Claim".freeze, - label: "quotedBy".freeze, - :"owl:inverseOf" => %(mp:quotes).freeze, - range: "mp:Representation".freeze, - subPropertyOf: "mp:elementOf".freeze, - type: "owl:ObjectProperty".freeze - property :quotes, - label: "quotes".freeze, - subPropertyOf: "mp:hasElement".freeze, - type: "owl:ObjectProperty".freeze - property :referencedBy, - label: "referencedBy".freeze, - range: "mp:Reference".freeze, - subPropertyOf: "mp:qualifiedBy".freeze, - type: "owl:ObjectProperty".freeze - property :references, - label: "references".freeze, - :"owl:inverseOf" => %(mp:referencedBy).freeze, - subPropertyOf: "mp:qualifies".freeze, - type: "owl:ObjectProperty".freeze - property :representedBy, - label: "representedBy".freeze, - :"owl:inverseOf" => %(mp:represents).freeze, - type: "owl:ObjectProperty".freeze - property :represents, - domain: "mp:Representation".freeze, - label: "represents".freeze, - range: "prov:Entity".freeze, - type: "owl:ObjectProperty".freeze - property :semtaggedBy, - label: "semtaggedBy".freeze, - range: "mp:SemanticQualifier".freeze, - subPropertyOf: "mp:qualifiedBy".freeze, - type: "owl:ObjectProperty".freeze - property :semtags, - label: "semtags".freeze, - :"owl:inverseOf" => %(mp:semtaggedBy).freeze, - subPropertyOf: "mp:qualifies".freeze, - type: "owl:ObjectProperty".freeze - property :statement, - domain: "mp:Sentence".freeze, - label: "statement".freeze, - range: "xsd:string".freeze, - subPropertyOf: "mp:value".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] - property :supportGraphElementOf, - domain: "mp:Representation".freeze, - label: "supportGraphElementOf".freeze, - range: "mp:Micropublication".freeze, - type: "owl:ObjectProperty".freeze - property :supportedBy, - domain: "mp:Representation".freeze, - label: "supportedBy".freeze, - :"owl:inverseOf" => %(mp:supports).freeze, - range: "mp:Representation".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] - property :supportedByData, - label: "supportedByData".freeze, - subPropertyOf: "mp:supportedByEvidence".freeze, - type: "owl:ObjectProperty".freeze - property :supportedByEvidence, - label: "supportedByEvidence".freeze, - subPropertyOf: "mp:supportedBy".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] - property :supportedByMethod, - label: "supportedByMethod".freeze, - subPropertyOf: "mp:supportedByEvidence".freeze, - type: "owl:ObjectProperty".freeze - property :supports, - label: "supports".freeze, - type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] - property :value, - label: "value".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] +module LifePreserver::Vocab + MP = Class.new(RDF::StrictVocabulary("http://purl.org/mp/")) do end end diff --git a/lib/vocabs/pav.rb b/lib/vocabs/pav.rb index 8afc2335..68552aff 100644 --- a/lib/vocabs/pav.rb +++ b/lib/vocabs/pav.rb @@ -2,475 +2,255 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/pav/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class PAV < RDF::StrictVocabulary - # end - class PAV < RDF::StrictVocabulary("http://purl.org/pav/") +module LifePreserver::Vocab + PAV = Class.new(RDF::StrictVocabulary("http://purl.org/pav/")) do # Ontology definition ontology :"http://purl.org/pav/", - comment: %(PAV is a lightweight ontology for tracking Provenance, Authoring and Versioning. PAV specializes the W3C provenance ontology PROV-O in order to describe authorship, curation and digital creation of online resources. - - This ontology describes the defined PAV properties and their usage. Note that PAV does not define any explicit classes or domain/ranges, as every property is meant to be used directly on the described online resource. - - Cite as: Paolo Ciccarese, Stian Soiland-Reyes, Khalid Belhajjame, Alasdair JG Gray, Carole Goble, Tim Clark \(2013\): PAV ontology: provenance, authoring and versioning. Journal of biomedical semantics 4 \(1\), 37. doi:10.1186/2041-1480-4-37 - ).freeze, - "dc11:contributor": ["Alasdair J G Gray".freeze, "Khalid Belhajjame".freeze, "Marco Ocana".freeze, "Simon Jupp".freeze], - "dc11:creator": ["Paolo Ciccarese".freeze, "Stian Soiland-Reyes".freeze], - "dc11:description": ["PAV supplies terms for distinguishing between the different roles of the agents contributing content in current web based systems: contributors, authors, curators and digital artifact creators. The ontology also provides terms for tracking provenance of digital entities that are published on the web and then accessed, transformed and consumed. In order to support broader interoperability, PAV specializes the general purpose W3C PROV provenance model (PROV-O).\n\nPAV distinguishes between the data related to the digital artifact - named Provenance - and those related to the actual knowledge creation and therefore to the intellectual property aspects – named Authoring. The Versioning axis describes the evolution of digital entities in time.\n\nUsing PAV, descriptions can define the authors that originate or gave existence to the work that is expressed in the digital resource (pav:authoredBy); curators (pav:curatedBy) who are content specialists responsible for shaping the expression in an appropriate format, and contributors (super-property pav:contributedBy) that provided some help in conceiving the resource or in the expressed knowledge creation/extraction.\n\nThese provenance aspects can be detailed with dates using pav:curatedOn, pav:authoredOn, etc. Further details about the creation activities, such as different authors contributing specific parts of the resource at different dates are out of scope for PAV and should be defined using vocabularies like PROV-O and additional intermediate entities to describe the different states.\n\nFor resources based on other resources, PAV allows specification of direct retrieval (pav:retrievedFrom), import through transformations (pav:importedFrom) and sources that were merely consulted (pav:sourceAccessedAt). These aspects can also define the agents responsible using pav:retrievedBy, pav:importedBy and pav:sourceAccessedBy.\n\nVersion number of a resource can be given with pav:version, the previous version of the resource with pav:previousVersion, and any other earlier versions with pav:hasEarlierVersion. Unversioned, 'mutable' resources can specify their current version as a snapshot resource using pav:hasCurrentVersion and list the earlier versions using pav:hasVersion.\n\nThe creation of the digital representation (e.g. an RDF graph or a .docx file) can in many cases be different from the authorship of the content/knowledge, and in PAV this digital creation is specified using pav:createdBy, pav:createdWith and pav:createdOn.\n\nPAV specializes terms from W3C PROV-O (prov:) and DC Terms (dcterms:), however these ontologies are not OWL imported as PAV can be used independently. The \"is defined by\" links indicate where those terms are included from. See http://www.w3.org/TR/prov-o and http://dublincore.org/documents/2012/06/14/dcmi-terms/ for more details. See http://purl.org/pav/mapping/dcterms For a comprehensive SKOS mapping to DC Terms.\n\nPAV 2 is based on PAV 1.2 but in a different namespace ( http://purl.org/pav/ ). Terms compatible with 1.2 are indicated in this ontology using owl:equivalentProperty.\n\nThe ontology IRI http://purl.org/pav/ always resolve to the latest version of PAV 2. Particular versionIRIs such as http://purl.org/pav/2.1 can be used by clients to force imports of a particular version - note however that all terms are defined directly in the http://purl.org/pav/ namespace.\n\nThe goal of PAV is to provide a lightweight, straight forward way to give the essential information about authorship, provenance and versioning, and therefore these properties are described directly on the published resource. As such, PAV does not define any classes or restrict domain/ranges, as all properties are applicable to any online resource.\n\n--\n\nCopyright 2008-2014 Massachusetts General Hospital; Harvard Medical School; Balboa Systems; University of Manchester\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.\n".freeze, "http://pav-ontology.googlecode.com/svn/branches/2.3/images/pav-overview.svg".freeze], - "dc:contributor": ["http://orcid.org/0000-0001-6938-0820".freeze, "http://orcid.org/0000-0002-0643-3144".freeze, "http://orcid.org/0000-0002-5711-4872".freeze, "http://www.paolociccarese.info/foaf.rdf#marco-ocana".freeze], - "dc:creator": ["http://orcid.org/0000-0001-9842-9718".freeze, "http://orcid.org/0000-0002-5156-2703".freeze], - "dc:format": "application/rdf+xml".freeze, - "dc:issued": "2014-08-28T15:00:00Z".freeze, - "dc:language": "en".freeze, - "dc:license": "http://www.apache.org/licenses/LICENSE-2.0".freeze, - "dc:modified": "2014-08-28T14:41:00Z".freeze, - "dc:publisher": "http://www.mindinformatics.org/".freeze, - "dc:title": "PAV - Provenance, Authoring and Versioning".freeze, - "foaf:homepage": "pav:home".freeze, - "foaf:isPrimaryTopicOf": ["http://arxiv.org/abs/1304.7224".freeze, "http://dx.doi.org/10.1186/2041-1480-4-37".freeze], + comment: "PAV is a lightweight ontology for tracking Provenance, Authoring and Versioning. PAV specializes the W3C provenance ontology PROV-O in order to describe authorship, curation and digital creation of online resources.\n\n This ontology describes the defined PAV properties and their usage. Note that PAV does not define any explicit classes or domain/ranges, as every property is meant to be used directly on the described online resource.\n\n Cite as: Paolo Ciccarese, Stian Soiland-Reyes, Khalid Belhajjame, Alasdair JG Gray, Carole Goble, Tim Clark (2013): PAV ontology: provenance, authoring and versioning. Journal of biomedical semantics 4 (1), 37. doi:10.1186/2041-1480-4-37\n ".freeze, + "http://purl.org/dc/elements/1.1/contributor": ["Alasdair J G Gray".freeze, "Khalid Belhajjame".freeze, "Marco Ocana".freeze, "Simon Jupp".freeze], + "http://purl.org/dc/elements/1.1/creator": ["Paolo Ciccarese".freeze, "Stian Soiland-Reyes".freeze], + "http://purl.org/dc/elements/1.1/description": ["PAV supplies terms for distinguishing between the different roles of the agents contributing content in current web based systems: contributors, authors, curators and digital artifact creators. The ontology also provides terms for tracking provenance of digital entities that are published on the web and then accessed, transformed and consumed. In order to support broader interoperability, PAV specializes the general purpose W3C PROV provenance model (PROV-O).\n\nPAV distinguishes between the data related to the digital artifact - named Provenance - and those related to the actual knowledge creation and therefore to the intellectual property aspects – named Authoring. The Versioning axis describes the evolution of digital entities in time.\n\nUsing PAV, descriptions can define the authors that originate or gave existence to the work that is expressed in the digital resource (pav:authoredBy); curators (pav:curatedBy) who are content specialists responsible for shaping the expression in an appropriate format, and contributors (super-property pav:contributedBy) that provided some help in conceiving the resource or in the expressed knowledge creation/extraction.\n\nThese provenance aspects can be detailed with dates using pav:curatedOn, pav:authoredOn, etc. Further details about the creation activities, such as different authors contributing specific parts of the resource at different dates are out of scope for PAV and should be defined using vocabularies like PROV-O and additional intermediate entities to describe the different states.\n\nFor resources based on other resources, PAV allows specification of direct retrieval (pav:retrievedFrom), import through transformations (pav:importedFrom) and sources that were merely consulted (pav:sourceAccessedAt). These aspects can also define the agents responsible using pav:retrievedBy, pav:importedBy and pav:sourceAccessedBy.\n\nVersion number of a resource can be given with pav:version, the previous version of the resource with pav:previousVersion, and any other earlier versions with pav:hasEarlierVersion. Unversioned, 'mutable' resources can specify their current version as a snapshot resource using pav:hasCurrentVersion and list the earlier versions using pav:hasVersion.\n\nThe creation of the digital representation (e.g. an RDF graph or a .docx file) can in many cases be different from the authorship of the content/knowledge, and in PAV this digital creation is specified using pav:createdBy, pav:createdWith and pav:createdOn.\n\nPAV specializes terms from W3C PROV-O (prov:) and DC Terms (dcterms:), however these ontologies are not OWL imported as PAV can be used independently. The \"is defined by\" links indicate where those terms are included from. See http://www.w3.org/TR/prov-o and http://dublincore.org/documents/2012/06/14/dcmi-terms/ for more details. See http://purl.org/pav/mapping/dcterms For a comprehensive SKOS mapping to DC Terms.\n\nPAV 2 is based on PAV 1.2 but in a different namespace ( http://purl.org/pav/ ). Terms compatible with 1.2 are indicated in this ontology using owl:equivalentProperty.\n\nThe ontology IRI http://purl.org/pav/ always resolve to the latest version of PAV 2. Particular versionIRIs such as http://purl.org/pav/2.1 can be used by clients to force imports of a particular version - note however that all terms are defined directly in the http://purl.org/pav/ namespace.\n\nThe goal of PAV is to provide a lightweight, straight forward way to give the essential information about authorship, provenance and versioning, and therefore these properties are described directly on the published resource. As such, PAV does not define any classes or restrict domain/ranges, as all properties are applicable to any online resource.\n\n--\n\nCopyright 2008-2014 Massachusetts General Hospital; Harvard Medical School; Balboa Systems; University of Manchester\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.\n".freeze, "http://pav-ontology.googlecode.com/svn/branches/2.3/images/pav-overview.svg".freeze], + "http://purl.org/dc/terms/contributor": ["http://orcid.org/0000-0001-6938-0820".freeze, "http://orcid.org/0000-0002-0643-3144".freeze, "http://orcid.org/0000-0002-5711-4872".freeze, "http://www.paolociccarese.info/foaf.rdf#marco-ocana".freeze], + "http://purl.org/dc/terms/creator": ["http://orcid.org/0000-0001-9842-9718".freeze, "http://orcid.org/0000-0002-5156-2703".freeze], + "http://purl.org/dc/terms/format": "application/rdf+xml".freeze, + "http://purl.org/dc/terms/issued": "2014-08-28T15:00:00Z".freeze, + "http://purl.org/dc/terms/language": "en".freeze, + "http://purl.org/dc/terms/license": "http://www.apache.org/licenses/LICENSE-2.0".freeze, + "http://purl.org/dc/terms/modified": "2014-08-28T14:41:00Z".freeze, + "http://purl.org/dc/terms/publisher": "http://www.mindinformatics.org/".freeze, + "http://purl.org/dc/terms/title": "PAV - Provenance, Authoring and Versioning".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://code.google.com/p/pav-ontology/".freeze, "http://pav-ontology.googlecode.com/svn/trunk/1.2/pav.owl".freeze, "http://purl.org/pav/doc".freeze, "http://www.w3.org/ns/prov#".freeze, "https://code.google.com/p/pav-ontology/wiki/Versions".freeze], + "http://www.w3.org/2002/07/owl#backwardCompatibleWith": ["http://purl.org/pav/2.0/".freeze, "http://purl.org/pav/2.1".freeze, "http://purl.org/pav/2.2".freeze, "http://purl.org/pav/authoring/2.0/".freeze, "http://purl.org/pav/provenance/2.0/".freeze, "http://purl.org/pav/versioning/2.0/".freeze], + "http://www.w3.org/2002/07/owl#incompatibleWith": "http://swan.mindinformatics.org/ontologies/1.2/pav.owl".freeze, + "http://www.w3.org/2002/07/owl#priorVersion": "http://purl.org/pav/2.2".freeze, + "http://www.w3.org/2002/07/owl#versionIRI": "http://purl.org/pav/2.3".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "2.3.1".freeze, + "http://www.w3.org/ns/prov#has_provenance": "http://purl.org/pav/provenance.ttl".freeze, + "http://xmlns.com/foaf/0.1/homepage": "http://purl.org/pav/home".freeze, + "http://xmlns.com/foaf/0.1/isPrimaryTopicOf": ["http://arxiv.org/abs/1304.7224".freeze, "http://dx.doi.org/10.1186/2041-1480-4-37".freeze], label: "Provenance, Authoring and Versioning (PAV)".freeze, - "owl:backwardCompatibleWith": ["http://purl.org/pav/2.0/".freeze, "http://purl.org/pav/authoring/2.0/".freeze, "http://purl.org/pav/provenance/2.0/".freeze, "http://purl.org/pav/versioning/2.0/".freeze, "pav:2.1".freeze, "pav:2.2".freeze], - "owl:incompatibleWith": "http://swan.mindinformatics.org/ontologies/1.2/pav.owl".freeze, - "owl:priorVersion": "pav:2.2".freeze, - "owl:versionIRI": "pav:2.3".freeze, - "owl:versionInfo": "2.3.1".freeze, - "prov:has_provenance": "pav:provenance.ttl".freeze, - "rdfs:seeAlso": ["http://code.google.com/p/pav-ontology/".freeze, "http://pav-ontology.googlecode.com/svn/trunk/1.2/pav.owl".freeze, "https://code.google.com/p/pav-ontology/wiki/Versions".freeze, "pav:doc".freeze, "prov:".freeze], - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Property definitions property :authoredBy, - comment: %(An agent that originated or gave existence to the work that is expressed by the digital resource. - -The author of the content of a resource may be different from the creator of the resource representation \(although they are often the same\). See pav:createdBy for a discussion. - -pav:authoredBy is more specific than its superproperty dct:creator - which might or might not be interpreted to also cover the creation of the representation of the artifact. - -The author is usually not a software agent \(which would be indicated with pav:createdWith, pav:createdBy or pav:importedBy\), unless the software actually authored the content itself; for instance an artificial intelligence algorithm which authored a piece of music or a machine learning algorithm that authored a classification of a tumor sample. - -The date of authoring can be expressed using pav:authoredOn - note however in the case of multiple authors that there is no relationship in PAV identifying which agent contributed when or what. If capturing such lineage is desired, it should be additionally expressed using PROV relationships like prov:qualifiedAttribution or prov:wasGeneratedBy.).freeze, + comment: "An agent that originated or gave existence to the work that is expressed by the digital resource.\n\nThe author of the content of a resource may be different from the creator of the resource representation (although they are often the same). See pav:createdBy for a discussion.\n\npav:authoredBy is more specific than its superproperty dct:creator - which might or might not be interpreted to also cover the creation of the representation of the artifact.\n\nThe author is usually not a software agent (which would be indicated with pav:createdWith, pav:createdBy or pav:importedBy), unless the software actually authored the content itself; for instance an artificial intelligence algorithm which authored a piece of music or a machine learning algorithm that authored a classification of a tumor sample.\n\nThe date of authoring can be expressed using pav:authoredOn - note however in the case of multiple authors that there is no relationship in PAV identifying which agent contributed when or what. If capturing such lineage is desired, it should be additionally expressed using PROV relationships like prov:qualifiedAttribution or prov:wasGeneratedBy.".freeze, equivalentProperty: "http://swan.mindinformatics.org/ontologies/1.2/pav/authoredBy".freeze, - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/authoredOn".freeze, "http://purl.org/pav/createdBy".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Authored by".freeze, - "rdfs:seeAlso": ["pav:authoredOn".freeze, "pav:createdBy".freeze], - subPropertyOf: ["dc:creator".freeze, "pav:contributedBy".freeze], - type: "owl:ObjectProperty".freeze + subPropertyOf: ["http://purl.org/dc/terms/creator".freeze, "http://purl.org/pav/contributedBy".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :authoredOn, - comment: %(The date this resource was authored. - -pav:authoredBy gives the authoring agent. - -Note that pav:authoredOn is different from pav:createdOn, although they are often the same. See pav:createdBy for a discussion. - -This property is normally used in a functional way, indicating the last time of authoring, although PAV does not formally restrict this. - -The value is of type xsd:dateTime, for instance "2013-03-26T14:49:00+01:00"^^xsd:dateTime. The timezone information \(Z for UTC, +01:00 for UTC+1, etc\) SHOULD be included unless unknown. If the time \(or parts of time\) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use "1983-09-01T00:00:00Z"^^xsd:dateTime.).freeze, - isDefinedBy: "pav:".freeze, + comment: "The date this resource was authored.\n\npav:authoredBy gives the authoring agent.\n\nNote that pav:authoredOn is different from pav:createdOn, although they are often the same. See pav:createdBy for a discussion.\n\nThis property is normally used in a functional way, indicating the last time of authoring, although PAV does not formally restrict this.\n\nThe value is of type xsd:dateTime, for instance \"2013-03-26T14:49:00+01:00\"^^xsd:dateTime. The timezone information (Z for UTC, +01:00 for UTC+1, etc) SHOULD be included unless unknown. If the time (or parts of time) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use \"1983-09-01T00:00:00Z\"^^xsd:dateTime.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/authoredBy".freeze, "http://purl.org/pav/createdBy".freeze, "http://purl.org/pav/createdOn".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Authored on".freeze, - "rdfs:seeAlso": ["pav:authoredBy".freeze, "pav:createdBy".freeze, "pav:createdOn".freeze], - subPropertyOf: "pav:contributedOn".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://purl.org/pav/contributedOn".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :contributedBy, - comment: %(The resource was contributed to by the given agent. - -Specifies an agent that provided any sort of help in conceiving the work that is expressed by the digital artifact. - -Contributions can take many forms, of which PAV define the subproperties pav:authoredBy and pav:curatedBy; however other specific roles could also be specified by pav:contributedBy or custom subproperties, such as illustrating, investigating or managing the underlying data source. Contributions can additionally be expressed in detail using prov:qualifiedAttribution and prov:hadRole. - -Note that pav:contributedBy identifies only agents that contributed to the work, knowledge or intellectual property, and not agents that made the digital artifact or representation \(pav:createdBy\), thus the considerations for software agents is similar to for pav:authoredBy and pav:curatedBy. - -pav:contributedBy is more specific than its superproperty dct:contributor - which might or might not be interpreted to also cover contributions to making the representation of the artifact. - - -The date of contribution can be expressed using pav:contributedOn - note however in the case of multiple contributors that there is no relationship in PAV identifying which agent contributed when or what. If capturing such lineage is desired, it should be additionally expressed using PROV relationships like prov:qualifiedAttribution or prov:wasGeneratedBy.).freeze, + comment: "The resource was contributed to by the given agent.\n\nSpecifies an agent that provided any sort of help in conceiving the work that is expressed by the digital artifact.\n\nContributions can take many forms, of which PAV define the subproperties pav:authoredBy and pav:curatedBy; however other specific roles could also be specified by pav:contributedBy or custom subproperties, such as illustrating, investigating or managing the underlying data source. Contributions can additionally be expressed in detail using prov:qualifiedAttribution and prov:hadRole.\n\nNote that pav:contributedBy identifies only agents that contributed to the work, knowledge or intellectual property, and not agents that made the digital artifact or representation (pav:createdBy), thus the considerations for software agents is similar to for pav:authoredBy and pav:curatedBy.\n\npav:contributedBy is more specific than its superproperty dct:contributor - which might or might not be interpreted to also cover contributions to making the representation of the artifact.\n\n\nThe date of contribution can be expressed using pav:contributedOn - note however in the case of multiple contributors that there is no relationship in PAV identifying which agent contributed when or what. If capturing such lineage is desired, it should be additionally expressed using PROV relationships like prov:qualifiedAttribution or prov:wasGeneratedBy.".freeze, equivalentProperty: "http://swan.mindinformatics.org/ontologies/1.2/pav/contributedBy".freeze, - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/contributedOn".freeze, "http://purl.org/pav/createdBy".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Contributed by".freeze, - "rdfs:seeAlso": ["pav:contributedOn".freeze, "pav:createdBy".freeze], - subPropertyOf: ["dc:contributor".freeze, "prov:wasAttributedTo".freeze], - type: "owl:ObjectProperty".freeze + subPropertyOf: ["http://purl.org/dc/terms/contributor".freeze, "http://www.w3.org/ns/prov#wasAttributedTo".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :contributedOn, - comment: %(The date this resource was contributed to. - -pav:contributedBy provides the agent\(s\) that contributed. - -The value is of type xsd:dateTime, for instance "2013-03-26T14:49:00+01:00"^^xsd:dateTime. The timezone information \(Z for UTC, +01:00 for UTC+1, etc\) SHOULD be included unless unknown. If the time \(or parts of time\) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use "1983-09-01T00:00:00Z"^^xsd:dateTime.).freeze, - isDefinedBy: "pav:".freeze, + comment: "The date this resource was contributed to.\n\npav:contributedBy provides the agent(s) that contributed.\n\nThe value is of type xsd:dateTime, for instance \"2013-03-26T14:49:00+01:00\"^^xsd:dateTime. The timezone information (Z for UTC, +01:00 for UTC+1, etc) SHOULD be included unless unknown. If the time (or parts of time) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use \"1983-09-01T00:00:00Z\"^^xsd:dateTime.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/pav/contributedBy".freeze, + isDefinedBy: "http://purl.org/pav/".freeze, label: "Contributed on".freeze, - range: "xsd:dateTime".freeze, - "rdfs:seeAlso": "pav:contributedBy".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 :createdAt, - comment: %(The geo-location of the agents when creating the resource \(pav:createdBy\). For instance a photographer takes a picture of the Eiffel Tower while standing in front of it.).freeze, - isDefinedBy: "pav:".freeze, + comment: "The geo-location of the agents when creating the resource (pav:createdBy). For instance a photographer takes a picture of the Eiffel Tower while standing in front of it.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/pav/createdBy".freeze, + isDefinedBy: "http://purl.org/pav/".freeze, label: "Created at".freeze, - "rdfs:seeAlso": "pav:createdBy".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :createdBy, - comment: %(An agent primary responsible for making the digital artifact or resource representation. - -This property is distinct from forming the content, which is indicated with pav:contributedBy or its subproperties; pav:authoredBy, which identifies who authored the knowledge expressed by this resource; and pav:curatedBy, which identifies who curated the knowledge into its current form. - -pav:createdBy is more specific than its superproperty dct:creator - which might or might not be interpreted to cover this creator. - -For instance, the author wrote 'this species has bigger wings than normal' in his log book. The curator, going through the log book and identifying important knowledge, formalizes this as 'locus perculus has wingspan > 0.5m'. The creator enters this knowledge as a digital resource in the knowledge system, thus creating the digital artifact \(say as JSON, RDF, XML or HTML\). - -A different example is a news article. pav:authoredBy indicates the journalist who wrote the article. pav:contributedBy can indicate the artist who added an illustration. pav:curatedBy can indicate the editor who made the article conform to the news paper's style. pav:createdBy can indicate who put the article on the web site. - -The software tool used by the creator to make the digital resource \(say Protege, Wordpress or OpenOffice\) can be indicated with pav:createdWith. - -The date the digital resource was created can be indicated with pav:createdOn. - -The location the agent was at when creating the digital resource can be made using pav:createdAt.).freeze, + comment: "An agent primary responsible for making the digital artifact or resource representation.\n\nThis property is distinct from forming the content, which is indicated with pav:contributedBy or its subproperties; pav:authoredBy, which identifies who authored the knowledge expressed by this resource; and pav:curatedBy, which identifies who curated the knowledge into its current form.\n\npav:createdBy is more specific than its superproperty dct:creator - which might or might not be interpreted to cover this creator.\n\nFor instance, the author wrote 'this species has bigger wings than normal' in his log book. The curator, going through the log book and identifying important knowledge, formalizes this as 'locus perculus has wingspan > 0.5m'. The creator enters this knowledge as a digital resource in the knowledge system, thus creating the digital artifact (say as JSON, RDF, XML or HTML).\n\nA different example is a news article. pav:authoredBy indicates the journalist who wrote the article. pav:contributedBy can indicate the artist who added an illustration. pav:curatedBy can indicate the editor who made the article conform to the news paper's style. pav:createdBy can indicate who put the article on the web site.\n\nThe software tool used by the creator to make the digital resource (say Protege, Wordpress or OpenOffice) can be indicated with pav:createdWith.\n\nThe date the digital resource was created can be indicated with pav:createdOn.\n\nThe location the agent was at when creating the digital resource can be made using pav:createdAt.".freeze, equivalentProperty: "http://swan.mindinformatics.org/ontologies/1.2/pav/createdBy".freeze, - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/authoredBy".freeze, "http://purl.org/pav/createdAt".freeze, "http://purl.org/pav/createdOn".freeze, "http://purl.org/pav/curatedBy".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Created by".freeze, - "rdfs:seeAlso": ["pav:authoredBy".freeze, "pav:createdAt".freeze, "pav:createdOn".freeze, "pav:curatedBy".freeze], - subPropertyOf: ["dc:creator".freeze, "prov:wasAttributedTo".freeze], - type: "owl:ObjectProperty".freeze + subPropertyOf: ["http://purl.org/dc/terms/creator".freeze, "http://www.w3.org/ns/prov#wasAttributedTo".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :createdOn, - comment: %(The date of creation of the resource representation. - -The agents responsible can be indicated with pav:createdBy. - -This property is normally used in a functional way, indicating the time of creation, although PAV does not formally restrict this. pav:lastUpdateOn can be used to indicate minor updates that did not affect the creating date. - -The value is of type xsd:dateTime, for instance "2013-03-26T14:49:00+01:00"^^xsd:dateTime. The timezone information \(Z for UTC, +01:00 for UTC+1, etc\) SHOULD be included unless unknown. If the time \(or parts of time\) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use "1983-09-01T00:00:00Z"^^xsd:dateTime.).freeze, + comment: "The date of creation of the resource representation.\n\nThe agents responsible can be indicated with pav:createdBy.\n\nThis property is normally used in a functional way, indicating the time of creation, although PAV does not formally restrict this. pav:lastUpdateOn can be used to indicate minor updates that did not affect the creating date.\n\nThe value is of type xsd:dateTime, for instance \"2013-03-26T14:49:00+01:00\"^^xsd:dateTime. The timezone information (Z for UTC, +01:00 for UTC+1, etc) SHOULD be included unless unknown. If the time (or parts of time) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use \"1983-09-01T00:00:00Z\"^^xsd:dateTime.".freeze, equivalentProperty: "http://swan.mindinformatics.org/ontologies/1.2/pav/createdOn".freeze, - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/pav/createdBy".freeze, + isDefinedBy: "http://purl.org/pav/".freeze, label: "Created on".freeze, - range: "xsd:dateTime".freeze, - "rdfs:seeAlso": "pav:createdBy".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 :createdWith, - comment: %(The software/tool used by the creator \(pav:createdBy\) when making the digital resource, for instance a word processor or an annotation tool. A more independent software agent that creates the resource without direct interaction by a human creator should instead should instead by indicated using pav:createdBy. -).freeze, - isDefinedBy: "pav:".freeze, + comment: "The software/tool used by the creator (pav:createdBy) when making the digital resource, for instance a word processor or an annotation tool. A more independent software agent that creates the resource without direct interaction by a human creator should instead should instead by indicated using pav:createdBy.\n".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/pav/createdBy".freeze, + isDefinedBy: "http://purl.org/pav/".freeze, label: "Created with".freeze, - "rdfs:seeAlso": "pav:createdBy".freeze, - subPropertyOf: "prov:wasAttributedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/ns/prov#wasAttributedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :curatedBy, - comment: %(Specifies an agent specialist responsible for shaping the expression in an appropriate format. Often the primary agent responsible for ensuring the quality of the representation. - -The curator may be different from the author \(pav:authoredBy\) and creator of the digital resource \(pav:createdBy\). - -The curator may in some cases be a software agent, for instance text mining software which adds hyperlinks for recognized genome names. - -The date of curating can be expressed using pav:curatedOn - note however in the case of multiple curators that there is no relationship in PAV identifying which agent contributed when or what. If capturing such lineage is desired, it should be additionally expressed using PROV relationships like prov:qualifiedAttribution or prov:wasGeneratedBy.).freeze, + comment: "Specifies an agent specialist responsible for shaping the expression in an appropriate format. Often the primary agent responsible for ensuring the quality of the representation.\n\nThe curator may be different from the author (pav:authoredBy) and creator of the digital resource (pav:createdBy).\n\nThe curator may in some cases be a software agent, for instance text mining software which adds hyperlinks for recognized genome names.\n\nThe date of curating can be expressed using pav:curatedOn - note however in the case of multiple curators that there is no relationship in PAV identifying which agent contributed when or what. If capturing such lineage is desired, it should be additionally expressed using PROV relationships like prov:qualifiedAttribution or prov:wasGeneratedBy.".freeze, equivalentProperty: "http://swan.mindinformatics.org/ontologies/1.2/pav/curatedBy".freeze, - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/createdBy".freeze, "http://purl.org/pav/curatedOn".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Curated by".freeze, - "rdfs:seeAlso": ["pav:createdBy".freeze, "pav:curatedOn".freeze], - subPropertyOf: "pav:contributedBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/pav/contributedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :curatedOn, - comment: %(The date this resource was curated. - -pav:curatedBy gives the agent\(s\) that performed the curation. - -This property is normally used in a functional way, indicating the last curation date, although PAV does not formally restrict this. - -The value is of type xsd:dateTime, for instance "2013-03-26T14:49:00+01:00"^^xsd:dateTime. The timezone information \(Z for UTC, +01:00 for UTC+1, etc\) SHOULD be included unless unknown. If the time \(or parts of time\) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use "1983-09-01T00:00:00Z"^^xsd:dateTime.).freeze, - isDefinedBy: "pav:".freeze, + comment: "The date this resource was curated.\n\npav:curatedBy gives the agent(s) that performed the curation.\n\nThis property is normally used in a functional way, indicating the last curation date, although PAV does not formally restrict this.\n\nThe value is of type xsd:dateTime, for instance \"2013-03-26T14:49:00+01:00\"^^xsd:dateTime. The timezone information (Z for UTC, +01:00 for UTC+1, etc) SHOULD be included unless unknown. If the time (or parts of time) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use \"1983-09-01T00:00:00Z\"^^xsd:dateTime.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/pav/curatedBy".freeze, + isDefinedBy: "http://purl.org/pav/".freeze, label: "Curated on".freeze, - "rdfs:seeAlso": "pav:curatedBy".freeze, - subPropertyOf: "pav:contributedOn".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://purl.org/pav/contributedOn".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :curates, - comment: %(Provided for backwards compatibility. Use instead the inverse pav:curatedBy.).freeze, - inverseOf: "pav:curatedBy".freeze, - isDefinedBy: "pav:".freeze, + comment: "Provided for backwards compatibility. Use instead the inverse pav:curatedBy.".freeze, + "http://www.w3.org/2002/07/owl#deprecated": "true".freeze, + inverseOf: "http://purl.org/pav/curatedBy".freeze, + isDefinedBy: "http://purl.org/pav/".freeze, label: "Curates".freeze, - "owl:deprecated": "true".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :derivedFrom, - comment: %(Derived from a different resource. - -Derivation conserns itself with derived knowledge. If this resource has the same content as the other resource, but has simply been transcribed to fit a different model \(like XML -> RDF or SQL -> CVS\), use pav:importedFrom. If a resource was simply retrieved, use pav:retrievedFrom. If the content has however been further refined or modified, pav:derivedFrom should be used. - -Details about who performed the derivation \(e.g. who did the refining or modifications\) may be indicated with pav:contributedBy and its subproperties. -).freeze, - isDefinedBy: "pav:".freeze, + comment: "Derived from a different resource.\n\nDerivation conserns itself with derived knowledge. If this resource has the same content as the other resource, but has simply been transcribed to fit a different model (like XML -> RDF or SQL -> CVS), use pav:importedFrom. If a resource was simply retrieved, use pav:retrievedFrom. If the content has however been further refined or modified, pav:derivedFrom should be used.\n\nDetails about who performed the derivation (e.g. who did the refining or modifications) may be indicated with pav:contributedBy and its subproperties.\n".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/importedFrom".freeze, "http://purl.org/pav/previousVersion".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Derived from".freeze, - "rdfs:seeAlso": ["pav:importedFrom".freeze, "pav:previousVersion".freeze], - subPropertyOf: "prov:wasDerivedFrom".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/ns/prov#wasDerivedFrom".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCurrentVersion, - comment: %(This resource has a more specific, versioned resource with equivalent content. - -This property is intended for relating a non-versioned or abstract resource to a single snapshot that can be used as a permalink to indicate the current version of the content. - -For instance, if today is 2013-12-25, then a News page can indicate a corresponding snapshot resource which will refer to the news as they were of 2013-12-25. - - pav:hasCurrentVersion . - -"Equivalent content" is a loose definition, for instance the snapshot resource might include additional information to indicate it is a snapshot, and is not required to be immutable. - -Other versioned resources indicating the content at earlier times MAY be indicated with the superproperty pav:hasVersion, one of which MAY be related to the current version using pav:hasCurrentVersion: - - pav:previousVersion . - pav:hasVersion . - -Note that it might be confusing to also indicate pav:previousVersion from a resource that has hasCurrentVersion relations, as such a resource is intended to be a long-living "unversioned" resource. The PAV ontology does however not formally restrict this, to cater for more complex scenarios with multiple abstraction levels. - -Similarly, it would normally be incorrect to indicate a pav:hasCurrentVersion from an older version; instead the current version would be found by finding the non-versioned resource that the particular resource is a version of, and then its current version. - -This property is normally used in a functional way, although PAV does not formally restrict this.).freeze, - isDefinedBy: "pav:".freeze, + comment: "This resource has a more specific, versioned resource with equivalent content.\n\nThis property is intended for relating a non-versioned or abstract resource to a single snapshot that can be used as a permalink to indicate the current version of the content.\n\nFor instance, if today is 2013-12-25, then a News page can indicate a corresponding snapshot resource which will refer to the news as they were of 2013-12-25.\n\n pav:hasCurrentVersion .\n\n\"Equivalent content\" is a loose definition, for instance the snapshot resource might include additional information to indicate it is a snapshot, and is not required to be immutable.\n\nOther versioned resources indicating the content at earlier times MAY be indicated with the superproperty pav:hasVersion, one of which MAY be related to the current version using pav:hasCurrentVersion:\n\n pav:previousVersion .\n pav:hasVersion .\n\nNote that it might be confusing to also indicate pav:previousVersion from a resource that has hasCurrentVersion relations, as such a resource is intended to be a long-living \"unversioned\" resource. The PAV ontology does however not formally restrict this, to cater for more complex scenarios with multiple abstraction levels.\n\nSimilarly, it would normally be incorrect to indicate a pav:hasCurrentVersion from an older version; instead the current version would be found by finding the non-versioned resource that the particular resource is a version of, and then its current version.\n\nThis property is normally used in a functional way, although PAV does not formally restrict this.".freeze, + isDefinedBy: "http://purl.org/pav/".freeze, label: "Has current version".freeze, - subPropertyOf: "pav:hasVersion".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://purl.org/pav/hasVersion".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEarlierVersion, - comment: %(This versioned resource has an earlier version. - -Any earlier version of this resource can be indicated with pav:hasEarlierVersion, e.g.: - - pav:hasEarlierVersion ; - pav:hasEarlierVersion . - - -The subproperty pav:previousVersion SHOULD be used if the earlier version is the direct ancestor of this version. - - pav:previousVersion . - - -This property is transitive, so it should not be necessary to repeat the earlier versions of an earlier version. A chain of previous versions can be declared using the subproperty pav:previousVersion, implying that the previous previous version is also an earlier version. It might however still be useful to declare an earlier version explicitly, for instance because it is an earlier version of high relevance or because the complete chain of pav:previousVersion is not available. - - -To indicate that this version is a snapshot of a more general, non-versioned resource, e.g. "Weather Today" vs. "Weather Today on 2013-12-07", see pav:hasVersion.).freeze, - isDefinedBy: "pav:".freeze, + comment: "This versioned resource has an earlier version.\n\nAny earlier version of this resource can be indicated with pav:hasEarlierVersion, e.g.:\n\n pav:hasEarlierVersion ;\n pav:hasEarlierVersion .\n\n\nThe subproperty pav:previousVersion SHOULD be used if the earlier version is the direct ancestor of this version.\n\n pav:previousVersion .\n\n\nThis property is transitive, so it should not be necessary to repeat the earlier versions of an earlier version. A chain of previous versions can be declared using the subproperty pav:previousVersion, implying that the previous previous version is also an earlier version. It might however still be useful to declare an earlier version explicitly, for instance because it is an earlier version of high relevance or because the complete chain of pav:previousVersion is not available.\n\n\nTo indicate that this version is a snapshot of a more general, non-versioned resource, e.g. \"Weather Today\" vs. \"Weather Today on 2013-12-07\", see pav:hasVersion.".freeze, + isDefinedBy: "http://purl.org/pav/".freeze, label: "Has earlier version".freeze, - subPropertyOf: "prov:alternateOf".freeze, - type: ["owl:AsymmetricProperty".freeze, "owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze] + subPropertyOf: "http://www.w3.org/ns/prov#alternateOf".freeze, + type: ["http://www.w3.org/2002/07/owl#AsymmetricProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#TransitiveProperty".freeze] property :hasVersion, - comment: %(This resource has a more specific, versioned resource. - -This property is intended for relating a non-versioned or abstract resource to several versioned resources, e.g. snapshots. For instance, if there are two snapshots of the News page, made on 23rd and 24th of December, then: - - pav:hasVersion ; - pav:hasVersion . - -If one of the versions has somewhat the equivalent content to this resource \(e.g. can be used as a permalink for this resource\), then it should instead be indicated with the subproperty pav:hasCurrentVersion: - - pav:hasCurrentVersion . - -To order the versions, use pav:previousVersion: - - pav:previousVersion . - pav:previousVersion . - -Note that it might be confusing to also indicate pav:previousVersion from a resource that has pav:hasVersion relations, as such a resource is intended to be a long-living "unversioned" resource. The PAV ontology does however not formally restrict this, to cater for more complex scenarios with multiple abstraction levels. - -pav:hasVersion is a subproperty of dcterms:hasVersion to more strongly define this hierarchical pattern. It is therefore also a subproperty of pav:generalizationOf \(inverse of prov:specializationOf\). - -To indicate the existence of other, non-hierarchical kind of editions and adaptations of this resource that are not versioned snapshots \(e.g. Powerpoint slides has a video recording version\), use instead dcterms:hasVersion or prov:alternateOf.).freeze, - isDefinedBy: "pav:".freeze, + comment: "This resource has a more specific, versioned resource.\n\nThis property is intended for relating a non-versioned or abstract resource to several versioned resources, e.g. snapshots. For instance, if there are two snapshots of the News page, made on 23rd and 24th of December, then:\n\n pav:hasVersion ;\n pav:hasVersion .\n\nIf one of the versions has somewhat the equivalent content to this resource (e.g. can be used as a permalink for this resource), then it should instead be indicated with the subproperty pav:hasCurrentVersion:\n\n pav:hasCurrentVersion .\n\nTo order the versions, use pav:previousVersion:\n\n pav:previousVersion .\n pav:previousVersion .\n\nNote that it might be confusing to also indicate pav:previousVersion from a resource that has pav:hasVersion relations, as such a resource is intended to be a long-living \"unversioned\" resource. The PAV ontology does however not formally restrict this, to cater for more complex scenarios with multiple abstraction levels.\n\npav:hasVersion is a subproperty of dcterms:hasVersion to more strongly define this hierarchical pattern. It is therefore also a subproperty of pav:generalizationOf (inverse of prov:specializationOf).\n\nTo indicate the existence of other, non-hierarchical kind of editions and adaptations of this resource that are not versioned snapshots (e.g. Powerpoint slides has a video recording version), use instead dcterms:hasVersion or prov:alternateOf.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/hasCurrentVersion".freeze, "http://purl.org/pav/previousVersion".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Has version".freeze, - "rdfs:seeAlso": ["pav:hasCurrentVersion".freeze, "pav:previousVersion".freeze], - subPropertyOf: ["dc:hasVersion".freeze, "prov:generalizationOf".freeze], - type: "owl:ObjectProperty".freeze + subPropertyOf: ["http://purl.org/dc/terms/hasVersion".freeze, "http://www.w3.org/ns/prov#generalizationOf".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :importedBy, - comment: %(An entity responsible for importing the data. - -The importer is usually a software entity which has done the transcription from the original source. - -Note that pav:importedBy may overlap with pav:createdWith. - -The source for the import should be given with pav:importedFrom. The time of the import should be given with pav:importedOn. - -See pav:importedFrom for a discussion of import vs. retrieve vs. derived.).freeze, + comment: "An entity responsible for importing the data.\n\nThe importer is usually a software entity which has done the transcription from the original source.\n\nNote that pav:importedBy may overlap with pav:createdWith.\n\nThe source for the import should be given with pav:importedFrom. The time of the import should be given with pav:importedOn.\n\nSee pav:importedFrom for a discussion of import vs. retrieve vs. derived.".freeze, equivalentProperty: "http://swan.mindinformatics.org/ontologies/1.2/pav/importedBy".freeze, - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/pav/importedFrom".freeze, + isDefinedBy: "http://purl.org/pav/".freeze, label: "Imported by".freeze, - "rdfs:seeAlso": "pav:importedFrom".freeze, - subPropertyOf: "prov:wasAttributedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/ns/prov#wasAttributedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :importedFrom, - comment: %(The original source of imported information. - -Import means that the content has been preserved, but transcribed somehow, for instance to fit a different representation model by converting formats. Examples of import are when the original was JSON and the current resource is RDF, or where the original was an document scan, and this resource is the plain text found through OCR. - -The imported resource does not have to be complete, but should be consistent with the knowledge conveyed by the original resource. - -If additional knowledge has been contributed, pav:derivedFrom would be more appropriate. - -If the resource has been copied verbatim from the original representation \(e.g. downloaded\), use pav:retrievedFrom. - -To indicate which agent\(s\) performed the import, use pav:importedBy. Use pav:importedOn to indicate when it happened. ).freeze, + comment: "The original source of imported information.\n\nImport means that the content has been preserved, but transcribed somehow, for instance to fit a different representation model by converting formats. Examples of import are when the original was JSON and the current resource is RDF, or where the original was an document scan, and this resource is the plain text found through OCR.\n\nThe imported resource does not have to be complete, but should be consistent with the knowledge conveyed by the original resource.\n\nIf additional knowledge has been contributed, pav:derivedFrom would be more appropriate.\n\nIf the resource has been copied verbatim from the original representation (e.g. downloaded), use pav:retrievedFrom.\n\nTo indicate which agent(s) performed the import, use pav:importedBy. Use pav:importedOn to indicate when it happened. ".freeze, equivalentProperty: "http://swan.mindinformatics.org/ontologies/1.2/pav/importedFromSource".freeze, - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/derivedFrom".freeze, "http://purl.org/pav/importedBy".freeze, "http://purl.org/pav/importedOn".freeze, "http://purl.org/pav/retrievedFrom".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Imported from".freeze, - "rdfs:seeAlso": ["pav:derivedFrom".freeze, "pav:importedBy".freeze, "pav:importedOn".freeze, "pav:retrievedFrom".freeze], - subPropertyOf: "prov:wasDerivedFrom".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/ns/prov#wasDerivedFrom".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :importedOn, - comment: %(The date this resource was imported from a source \(pav:importedFrom\). - -Note that pav:importedOn may overlap with pav:createdOn, but in cases where they differ, the import time indicates the time of the retrieval and transcription of the original source, while the creation time indicates when the final resource was made, for instance after user approval. - -This property is normally used in a functional way, indicating the first import date, although PAV does not formally restrict this. If the resource is later reimported, this should instead be indicated with pav:lastRefreshedOn. - -The source of the import should be given with pav:importedFrom. The agent that performed the import should be given with pav:importedBy. - -See pav:importedFrom for a discussion about import vs. retrieval. - -The value is of type xsd:dateTime, for instance "2013-03-26T14:49:00+01:00"^^xsd:dateTime. The timezone information \(Z for UTC, +01:00 for UTC+1, etc\) SHOULD be included unless unknown. If the time \(or parts of time\) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use "1983-09-01T00:00:00Z"^^xsd:dateTime.).freeze, + comment: "The date this resource was imported from a source (pav:importedFrom).\n\nNote that pav:importedOn may overlap with pav:createdOn, but in cases where they differ, the import time indicates the time of the retrieval and transcription of the original source, while the creation time indicates when the final resource was made, for instance after user approval.\n\nThis property is normally used in a functional way, indicating the first import date, although PAV does not formally restrict this. If the resource is later reimported, this should instead be indicated with pav:lastRefreshedOn.\n\nThe source of the import should be given with pav:importedFrom. The agent that performed the import should be given with pav:importedBy.\n\nSee pav:importedFrom for a discussion about import vs. retrieval.\n\nThe value is of type xsd:dateTime, for instance \"2013-03-26T14:49:00+01:00\"^^xsd:dateTime. The timezone information (Z for UTC, +01:00 for UTC+1, etc) SHOULD be included unless unknown. If the time (or parts of time) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use \"1983-09-01T00:00:00Z\"^^xsd:dateTime.".freeze, equivalentProperty: "http://swan.mindinformatics.org/ontologies/1.2/pav/importedOn".freeze, - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/importedBy".freeze, "http://purl.org/pav/importedFrom".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Imported on".freeze, - range: "xsd:dateTime".freeze, - "rdfs:seeAlso": ["pav:importedBy".freeze, "pav:importedFrom".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 :lastRefreshedOn, - comment: %(The date of the last re-import of the resource. This property is used in addition to pav:importedOn if this version has been updated due to a re-import. If the re-import created a new resource rather than refreshing an existing resource, then instead use pav:importedOn together with pav:previousVersion. - -This property is normally used in a functional way, although PAV does not formally restrict this. - -The value is of type xsd:dateTime, for instance "2013-03-26T14:49:00+01:00"^^xsd:dateTime. The timezone information \(Z for UTC, +01:00 for UTC+1, etc\) SHOULD be included unless unknown. If the time \(or parts of time\) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use "1983-09-01T00:00:00Z"^^xsd:dateTime.).freeze, + comment: "The date of the last re-import of the resource. This property is used in addition to pav:importedOn if this version has been updated due to a re-import. If the re-import created a new resource rather than refreshing an existing resource, then instead use pav:importedOn together with pav:previousVersion.\n\nThis property is normally used in a functional way, although PAV does not formally restrict this.\n\nThe value is of type xsd:dateTime, for instance \"2013-03-26T14:49:00+01:00\"^^xsd:dateTime. The timezone information (Z for UTC, +01:00 for UTC+1, etc) SHOULD be included unless unknown. If the time (or parts of time) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use \"1983-09-01T00:00:00Z\"^^xsd:dateTime.".freeze, equivalentProperty: "http://swan.mindinformatics.org/ontologies/1.2/pav/importedLastOn".freeze, - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/importedBy".freeze, "http://purl.org/pav/importedFrom".freeze, "http://purl.org/pav/importedOn".freeze, "http://purl.org/pav/previousVersion".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Last refreshed on".freeze, - range: "xsd:dateTime".freeze, - "rdfs:seeAlso": ["pav:importedBy".freeze, "pav:importedFrom".freeze, "pav:importedOn".freeze, "pav:previousVersion".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 :lastUpdateOn, - comment: %(The date of the last update of the resource. An update is a change which did not warrant making a new resource related using pav:previousVersion, for instance correcting a spelling mistake. - -This property is normally used in a functional way, although PAV does not formally restrict this. - -The value is of type xsd:dateTime, for instance "2013-03-26T14:49:00+01:00"^^xsd:dateTime. The timezone information \(Z for UTC, +01:00 for UTC+1, etc\) SHOULD be included unless unknown. If the time \(or parts of time\) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use "1983-09-01T00:00:00Z"^^xsd:dateTime.).freeze, + comment: "The date of the last update of the resource. An update is a change which did not warrant making a new resource related using pav:previousVersion, for instance correcting a spelling mistake.\n\nThis property is normally used in a functional way, although PAV does not formally restrict this.\n\nThe value is of type xsd:dateTime, for instance \"2013-03-26T14:49:00+01:00\"^^xsd:dateTime. The timezone information (Z for UTC, +01:00 for UTC+1, etc) SHOULD be included unless unknown. If the time (or parts of time) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use \"1983-09-01T00:00:00Z\"^^xsd:dateTime.".freeze, equivalentProperty: "http://swan.mindinformatics.org/ontologies/1.2/pav/lastUpdateOn".freeze, - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/createdOn".freeze, "http://purl.org/pav/previousVersion".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Last updated on".freeze, - range: "xsd:dateTime".freeze, - "rdfs:seeAlso": ["pav:createdOn".freeze, "pav:previousVersion".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 :previousVersion, - comment: %(The previous version of a resource in a lineage. For instance a news article updated to correct factual information would point to the previous version of the article with pav:previousVersion. If however the content has significantly changed so that the two resources no longer share lineage \(say a new article that talks about the same facts\), they can instead be related using pav:derivedFrom. - -This property is normally used in a functional way, although PAV does not formally restrict this. Earlier versions which are not direct ancestors of this resource may instead be provided using the superproperty pav:hasEarlierVersion. - -A version number of this resource can be provided using the data property pav:version. - -To indicate that this version is a snapshot of a more general, non-versioned resource, e.g. "Weather Today" vs. "Weather Today on 2013-12-07", see pav:hasVersion. - -Note that it might be confusing to indicate pav:previousVersion from a resource that also has pav:hasVersion or pav:hasCurrentVersion relations, as such resources are intended to be a long-living and "unversioned", while pav:previousVersion is intended for use between permalink-like "snapshots" arranged in a linear history. ).freeze, + comment: "The previous version of a resource in a lineage. For instance a news article updated to correct factual information would point to the previous version of the article with pav:previousVersion. If however the content has significantly changed so that the two resources no longer share lineage (say a new article that talks about the same facts), they can instead be related using pav:derivedFrom.\n\nThis property is normally used in a functional way, although PAV does not formally restrict this. Earlier versions which are not direct ancestors of this resource may instead be provided using the superproperty pav:hasEarlierVersion.\n\nA version number of this resource can be provided using the data property pav:version.\n\nTo indicate that this version is a snapshot of a more general, non-versioned resource, e.g. \"Weather Today\" vs. \"Weather Today on 2013-12-07\", see pav:hasVersion.\n\nNote that it might be confusing to indicate pav:previousVersion from a resource that also has pav:hasVersion or pav:hasCurrentVersion relations, as such resources are intended to be a long-living and \"unversioned\", while pav:previousVersion is intended for use between permalink-like \"snapshots\" arranged in a linear history. ".freeze, equivalentProperty: "http://swan.mindinformatics.org/ontologies/1.2/pav/previousVersion".freeze, - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/derivedFrom".freeze, "http://purl.org/pav/hasVersion".freeze, "http://purl.org/pav/version".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Previous version".freeze, - "rdfs:seeAlso": ["pav:derivedFrom".freeze, "pav:hasVersion".freeze, "pav:version".freeze], - subPropertyOf: ["pav:hasEarlierVersion".freeze, "prov:wasRevisionOf".freeze], - type: "owl:ObjectProperty".freeze + subPropertyOf: ["http://purl.org/pav/hasEarlierVersion".freeze, "http://www.w3.org/ns/prov#wasRevisionOf".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :providedBy, - comment: %(The original provider of the encoded information \(e.g. PubMed, UniProt, Science Commons\). - -The provider might not coincide with the dct:publisher, which would describe the current publisher of the resource. For instance if the resource was retrieved, imported or derived from a source, that source was published by the original provider. pav:providedBy provides a shortcut to indicate that original provider on the new resource. ).freeze, - isDefinedBy: "pav:".freeze, + comment: "The original provider of the encoded information (e.g. PubMed, UniProt, Science Commons).\n\nThe provider might not coincide with the dct:publisher, which would describe the current publisher of the resource. For instance if the resource was retrieved, imported or derived from a source, that source was published by the original provider. pav:providedBy provides a shortcut to indicate that original provider on the new resource. ".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/dc/terms/publisher".freeze, + isDefinedBy: "http://purl.org/pav/".freeze, label: "Provided by".freeze, - "rdfs:seeAlso": "dc:publisher".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :retrievedBy, - comment: %(An entity responsible for retrieving the data from an external source. - -The retrieving agent is usually a software entity, which has done the retrieval from the original source without performing any transcription. - -The source that was retrieved should be given with pav:retrievedFrom. The time of the retrieval should be indicated using pav:retrievedOn. - -See pav:importedFrom for a discussion of import vs. retrieve vs. derived.).freeze, - isDefinedBy: "pav:".freeze, + comment: "An entity responsible for retrieving the data from an external source.\n\nThe retrieving agent is usually a software entity, which has done the retrieval from the original source without performing any transcription.\n\nThe source that was retrieved should be given with pav:retrievedFrom. The time of the retrieval should be indicated using pav:retrievedOn.\n\nSee pav:importedFrom for a discussion of import vs. retrieve vs. derived.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/pav/importedFrom".freeze, + isDefinedBy: "http://purl.org/pav/".freeze, label: "Retrieved by".freeze, - "rdfs:seeAlso": "pav:importedFrom".freeze, - subPropertyOf: "prov:wasAttributedTo".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/ns/prov#wasAttributedTo".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :retrievedFrom, - comment: %(The URI where a resource has been retrieved from. - -The retrieving agent is usually a software entity, which has done the retrieval from the original source without performing any transcription. - -Retrieval indicates that this resource has the same representation as the original resource. If the resource has been somewhat transformed, use pav:importedFrom instead. - -The time of the retrieval should be indicated using pav:retrievedOn. The agent may be indicated with pav:retrievedBy.).freeze, - isDefinedBy: "pav:".freeze, + comment: "The URI where a resource has been retrieved from.\n\nThe retrieving agent is usually a software entity, which has done the retrieval from the original source without performing any transcription.\n\nRetrieval indicates that this resource has the same representation as the original resource. If the resource has been somewhat transformed, use pav:importedFrom instead.\n\nThe time of the retrieval should be indicated using pav:retrievedOn. The agent may be indicated with pav:retrievedBy.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/retrievedBy".freeze, "http://purl.org/pav/retrievedOn".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Retrieved from".freeze, - "rdfs:seeAlso": ["pav:retrievedBy".freeze, "pav:retrievedOn".freeze], - subPropertyOf: "prov:wasDerivedFrom".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/ns/prov#wasDerivedFrom".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :retrievedOn, - comment: %(The date the source for this resource was retrieved. - -The source that was retrieved should be indicated with pav:retrievedFrom. The agent that performed the retrieval may be specified with pav:retrievedBy. - -This property is normally used in a functional way, although PAV does not formally restrict this. - -The value is of type xsd:dateTime, for instance "2013-03-26T14:49:00+01:00"^^xsd:dateTime. The timezone information \(Z for UTC, +01:00 for UTC+1, etc\) SHOULD be included unless unknown. If the time \(or parts of time\) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use "1983-09-01T00:00:00Z"^^xsd:dateTime.).freeze, - isDefinedBy: "pav:".freeze, + comment: "The date the source for this resource was retrieved.\n\nThe source that was retrieved should be indicated with pav:retrievedFrom. The agent that performed the retrieval may be specified with pav:retrievedBy.\n\nThis property is normally used in a functional way, although PAV does not formally restrict this.\n\nThe value is of type xsd:dateTime, for instance \"2013-03-26T14:49:00+01:00\"^^xsd:dateTime. The timezone information (Z for UTC, +01:00 for UTC+1, etc) SHOULD be included unless unknown. If the time (or parts of time) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use \"1983-09-01T00:00:00Z\"^^xsd:dateTime.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/retrievedBy".freeze, "http://purl.org/pav/retrievedFrom".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Retrieved on".freeze, - range: "xsd:dateTime".freeze, - "rdfs:seeAlso": ["pav:retrievedBy".freeze, "pav:retrievedFrom".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 :sourceAccessedAt, - comment: %(The resource is related to a given source which was accessed or consulted \(but not retrieved, imported or derived from\). This access can be detailed with pav:sourceAccessedBy and pav:sourceAccessedOn. - -For instance, a curator \(pav:curatedBy\) might have consulted figures in a published paper to confirm that a dataset was correctly pav:importedFrom the paper's supplementary CSV file. - -Another example: I can access the page for tomorrow weather in Boston \(http://www.weather.com/weather/tomorrow/Boston+MA+02143\) and I can blog ‘tomorrow is going to be nice’. The source does not make any claims about the nice weather, that is my interpretation; therefore the blog post has pav:sourceAccessedAt the weather page. ).freeze, - isDefinedBy: "pav:".freeze, + comment: "The resource is related to a given source which was accessed or consulted (but not retrieved, imported or derived from). This access can be detailed with pav:sourceAccessedBy and pav:sourceAccessedOn.\n\nFor instance, a curator (pav:curatedBy) might have consulted figures in a published paper to confirm that a dataset was correctly pav:importedFrom the paper's supplementary CSV file.\n\nAnother example: I can access the page for tomorrow weather in Boston (http://www.weather.com/weather/tomorrow/Boston+MA+02143) and I can blog ‘tomorrow is going to be nice’. The source does not make any claims about the nice weather, that is my interpretation; therefore the blog post has pav:sourceAccessedAt the weather page. ".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/importedFrom".freeze, "http://purl.org/pav/retrievedFrom".freeze, "http://purl.org/pav/sourceAccessedBy".freeze, "http://purl.org/pav/sourceAccessedOn".freeze, "http://purl.org/pav/sourceLastAccessedOn".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Source accessed at".freeze, - "rdfs:seeAlso": ["pav:importedFrom".freeze, "pav:retrievedFrom".freeze, "pav:sourceAccessedBy".freeze, "pav:sourceAccessedOn".freeze, "pav:sourceLastAccessedOn".freeze], - subPropertyOf: "prov:wasInfluencedBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://www.w3.org/ns/prov#wasInfluencedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :sourceAccessedBy, - comment: %(The resource is related to a source which was accessed or consulted -by the given agent. The source\(s\) should be specified using pav:sourceAccessedAt, and the time with pav:sourceAccessedOn. - -For instance, the given agent could be a curator \(also pav:curatedBy\) which consulted figures in a published paper to confirm that a dataset was correctly pav:importedFrom the paper's supplementary CSV file.).freeze, - isDefinedBy: "pav:".freeze, + comment: "The resource is related to a source which was accessed or consulted\nby the given agent. The source(s) should be specified using pav:sourceAccessedAt, and the time with pav:sourceAccessedOn.\n\nFor instance, the given agent could be a curator (also pav:curatedBy) which consulted figures in a published paper to confirm that a dataset was correctly pav:importedFrom the paper's supplementary CSV file.".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/pav/sourceAccessedAt".freeze, + isDefinedBy: "http://purl.org/pav/".freeze, label: "Source accessed by".freeze, - "rdfs:seeAlso": "pav:sourceAccessedAt".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :sourceAccessedOn, - comment: %(The resource is related to a source which was originally accessed or consulted on the given date as part of creating or authoring the resource. The source\(s\) should be specified using pav:sourceAccessedAt. - -For instance, if the source accessed described the weather forecast for the next day, the time of source access can be crucial information. - -This property is normally used in a functional way, although PAV does not formally restrict this. If the source is subsequently checked again \(say to verify validity\), this should be indicated with pav:sourceLastAccessedOn. - -In the case multiple sources being accessed at different times or by different agents, PAV does not distinguish who accessed when what. If such details are required, they may be provided by additionally using prov:qualifiedInfluence. - -The value is of type xsd:dateTime, for instance "2013-03-26T14:49:00+01:00"^^xsd:dateTime. The timezone information \(Z for UTC, +01:00 for UTC+1, etc\) SHOULD be included unless unknown. If the time \(or parts of time\) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use "1983-09-01T00:00:00Z"^^xsd:dateTime.).freeze, + comment: "The resource is related to a source which was originally accessed or consulted on the given date as part of creating or authoring the resource. The source(s) should be specified using pav:sourceAccessedAt.\n\nFor instance, if the source accessed described the weather forecast for the next day, the time of source access can be crucial information.\n\nThis property is normally used in a functional way, although PAV does not formally restrict this. If the source is subsequently checked again (say to verify validity), this should be indicated with pav:sourceLastAccessedOn.\n\nIn the case multiple sources being accessed at different times or by different agents, PAV does not distinguish who accessed when what. If such details are required, they may be provided by additionally using prov:qualifiedInfluence.\n\nThe value is of type xsd:dateTime, for instance \"2013-03-26T14:49:00+01:00\"^^xsd:dateTime. The timezone information (Z for UTC, +01:00 for UTC+1, etc) SHOULD be included unless unknown. If the time (or parts of time) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use \"1983-09-01T00:00:00Z\"^^xsd:dateTime.".freeze, equivalentProperty: ["http://swan.mindinformatics.org/ontologies/1.2/pav/sourceAccessedOn".freeze, "http://swan.mindinformatics.org/ontologies/1.2/pav/sourceFirstAccessedOn".freeze], - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/createdAt".freeze, "http://purl.org/pav/sourceAccessedAt".freeze, "http://purl.org/pav/sourceAccessedBy".freeze, "http://purl.org/pav/sourceLastAccessedOn".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Source accessed on".freeze, - range: "xsd:dateTime".freeze, - "rdfs:seeAlso": ["pav:createdAt".freeze, "pav:sourceAccessedAt".freeze, "pav:sourceAccessedBy".freeze, "pav:sourceLastAccessedOn".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 :sourceLastAccessedOn, - comment: %(The resource is related to a source which was last accessed or consulted on the given date. The source\(s\) should be specified using pav:sourceAccessedAt. Usage of this property indicates that the source has been checked previously, which the initial time should be indicated with pav:sourceAccessedOn. - -This property can be useful together with pav:lastRefreshedOn or pav:lastUpdateOn in order to indicate a re-import or update, but could also be used alone, for instance when a source was simply verified and no further action was taken for the resource. - -This property is normally used in a functional way, although PAV does not formally restrict this. - -The value is of type xsd:dateTime, for instance "2013-03-26T14:49:00+01:00"^^xsd:dateTime. The timezone information \(Z for UTC, +01:00 for UTC+1, etc\) SHOULD be included unless unknown. If the time \(or parts of time\) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use "1983-09-01T00:00:00Z"^^xsd:dateTime.).freeze, + comment: "The resource is related to a source which was last accessed or consulted on the given date. The source(s) should be specified using pav:sourceAccessedAt. Usage of this property indicates that the source has been checked previously, which the initial time should be indicated with pav:sourceAccessedOn.\n\nThis property can be useful together with pav:lastRefreshedOn or pav:lastUpdateOn in order to indicate a re-import or update, but could also be used alone, for instance when a source was simply verified and no further action was taken for the resource.\n\nThis property is normally used in a functional way, although PAV does not formally restrict this.\n\nThe value is of type xsd:dateTime, for instance \"2013-03-26T14:49:00+01:00\"^^xsd:dateTime. The timezone information (Z for UTC, +01:00 for UTC+1, etc) SHOULD be included unless unknown. If the time (or parts of time) is unknown, use 00:00:00Z. If the day/month is unknown, use 01-01, for instance, if we only know September 1983, then use \"1983-09-01T00:00:00Z\"^^xsd:dateTime.".freeze, equivalentProperty: "http://swan.mindinformatics.org/ontologies/1.2/pav/sourceLastAccessedOn".freeze, - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": ["http://purl.org/pav/createdAt".freeze, "http://purl.org/pav/sourceAccessedAt".freeze, "http://purl.org/pav/sourceAccessedBy".freeze], + isDefinedBy: "http://purl.org/pav/".freeze, label: "Source last accessed on".freeze, - range: "xsd:dateTime".freeze, - "rdfs:seeAlso": ["pav:createdAt".freeze, "pav:sourceAccessedAt".freeze, "pav:sourceAccessedBy".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 :version, - comment: %(The version number of a resource. This is a freetext string, typical values are "1.5" or "21". The URI identifying the previous version can be provided using prov:previousVersion. - -This property is normally used in a functional way, although PAV does not formally restrict this.).freeze, + comment: "The version number of a resource. This is a freetext string, typical values are \"1.5\" or \"21\". The URI identifying the previous version can be provided using prov:previousVersion.\n\nThis property is normally used in a functional way, although PAV does not formally restrict this.".freeze, equivalentProperty: "http://swan.mindinformatics.org/ontologies/1.2/pav/versionNumber".freeze, - isDefinedBy: "pav:".freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://purl.org/pav/previousVersion".freeze, + isDefinedBy: "http://purl.org/pav/".freeze, label: "Version".freeze, - range: "xsd:string".freeze, - "rdfs:seeAlso": "pav:previousVersion".freeze, - type: "owl:DatatypeProperty".freeze + range: "http://www.w3.org/2001/XMLSchema#string".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze end end diff --git a/lib/vocabs/pentandra.rb b/lib/vocabs/pentandra.rb index 97adeb9b..66764d69 100644 --- a/lib/vocabs/pentandra.rb +++ b/lib/vocabs/pentandra.rb @@ -2,91 +2,103 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from https://pentandra.com/company# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class PENTANDRA < RDF::Vocabulary - # end - class PENTANDRA < RDF::Vocabulary("https://pentandra.com/company#") +module LifePreserver::Vocab + Pentandra = Class.new(RDF::Vocabulary("https://pentandra.com/company#")) do # Ontology definition ontology :"https://pentandra.com/company#", - "cc:attributionName": "Pentandra Research Solutions, Inc.".freeze, - "cc:attributionURL": "https://pentandra.com".freeze, - "cc:license": "http://creativecommons.org/licenses/by/4.0/".freeze, - "cc:useGuidelines": "https://pentandra.com/policy/".freeze, - "foaf:primaryTopic": "pentandra:company".freeze, - "og:description": "Who we are and what we stand for.".freeze, - "og:locale": "en_US".freeze, - "og:site_name": "Pentandra".freeze, - "og:title": "Company".freeze, - "og:type": "website".freeze, - "og:url": "https://pentandra.com/company/".freeze, - "schema:copyrightHolder": "pentandra:company".freeze, - "schema:copyrightYear": "2011".freeze, - "schema:hasPart": "pentandra-blog:latest-articles".freeze, - "schema:isPartOf": "pentandra-website:website".freeze, - "schema:potentialAction": "pentandra:donating".freeze, - "schema:publisher": "pentandra:company".freeze, - type: ["cc:Work".freeze, "prov:Entity".freeze, "schema:WebPage".freeze] + "http://creativecommons.org/ns#attributionName": "Pentandra Research Solutions, Inc.".freeze, + "http://creativecommons.org/ns#attributionURL": "https://pentandra.com".freeze, + "http://creativecommons.org/ns#license": "http://creativecommons.org/licenses/by/4.0/".freeze, + "http://creativecommons.org/ns#useGuidelines": "https://pentandra.com/policy/".freeze, + "http://ogp.me/ns#description": "Pentandra is a small company of research addicts trying to promote quality research and make collaboration possible throughout the research process.".freeze, + "http://ogp.me/ns#locale": "en".freeze, + "http://ogp.me/ns#site_name": "Pentandra".freeze, + "http://ogp.me/ns#title": "Company".freeze, + "http://ogp.me/ns#type": "website".freeze, + "http://ogp.me/ns#url": "https://pentandra.com/company/".freeze, + "http://schema.org/copyrightHolder": "https://pentandra.com/company#company".freeze, + "http://schema.org/copyrightYear": "2011".freeze, + "http://schema.org/hasPart": "pentandra-blog:latest-articles".freeze, + "http://schema.org/isPartOf": "pentandra-website:website".freeze, + "http://schema.org/potentialAction": "https://pentandra.com/company#donating".freeze, + "http://schema.org/publisher": "https://pentandra.com/company#company".freeze, + "http://xmlns.com/foaf/0.1/primaryTopic": "https://pentandra.com/company#company".freeze, + type: ["http://creativecommons.org/ns#Work".freeze, "http://schema.org/WebPage".freeze, "http://www.w3.org/ns/prov#Entity".freeze] # Extra definitions term :company, - "foaf:homepage": "https://pentandra.com/".freeze, "http://purl.org/essglobal/vocab/economicSector": ["essglobal-activities:A10".freeze, "essglobal-activities:A13".freeze, "essglobal-activities:A16".freeze], "http://purl.org/essglobal/vocab/legalForm": "essglobal-legalform:L5".freeze, "http://purl.org/essglobal/vocab/mission": "\n\n Pentandra’s mission is to open up the knowledge of the world, so that light and understanding will be more accessible to everyone.\n \n\n We hope that the effect of our mission will be to help bring open\n research into the mainstream, so that human, enterprise, and\n organizational silos will be opened and true research collaboration will take\n place, making it easier for anyone to participate in the research\n process, seeking truth in a spirit of mutual cooperation, across\n disciplines, subjects, and skill levels, allowing knowledge to be\n shared with clarity and in context,\n so that the bringing together and organization of the knowledge of the\n world will be accelerated.\n\n \n ".freeze, "http://purl.org/essglobal/vocab/objective": ["Creating, implementing,\n and promoting open standards that further open research and help\n transition research to the World Wide Web.".freeze, "Developing open-source infrastructures\n and tools that preserve the process of knowledge creation and make\n open, transparent, real-time, collaborative, cross-discipline\n research possible.".freeze, "Educating interest groups,\n governments, and the general public about the short- and long-term\n benefits of open research, and supporting their efforts as they work\n to expand the influence of open research on the world.".freeze, "Helping researchers, organizations,\n and funding agencies discover and transition to policies and\n incentives that reward collaborative open research, providing\n consulting services and technical or moral support when needed.".freeze, "Lowering the barrier of entry for the\n common man and practitioners to participate meaningfully in\n high-quality research projects, throughout the entire research\n process.".freeze], "http://purl.org/essglobal/vocab/qualifier": "essglobal-qualifiers:Q07".freeze, - "http://vocab.data.gov/def/fea#hasIntent": "pentandra:mission".freeze, - "http://www.w3.org/ns/regorg#legalName": "Pentandra Research Solutions, Inc.".freeze, - "org:purpose": "Pentandra’s mission is to open up the knowledge of the world, so that light and understanding will be more accessible to everyone.".freeze, - "schema:description": "\n\n We are small company of research addicts trying to promote quality\n research and make collaboration possible throughout the research\n process.\n\n ".freeze, - "schema:email": "mailto:hello@pentandra.com".freeze, - "schema:employee": ["https://pentandra.com/people/chris-chapman/#me".freeze, "https://pentandra.com/people/katie-chapman/#me".freeze], - "schema:legalName": "Pentandra Research Solutions, Inc.".freeze, - "schema:location": term( - "schema:addressCountry": "USA".freeze, - "schema:addressLocality": "Logan".freeze, - "schema:addressRegion": "UT".freeze, - type: ["schema:PostalAddress".freeze,"vcard:Address".freeze], - "vcard:country-name": "USA".freeze, - "vcard:locality": "Logan".freeze, - "vcard:region": "UT".freeze + "http://schema.org/description": "\n\n We are small company of research addicts trying to promote quality\n research and make collaboration possible throughout the research\n process.\n\n ".freeze, + "http://schema.org/email": "mailto:hello@pentandra.com".freeze, + "http://schema.org/employee": ["https://pentandra.com/people/chris-chapman/#me".freeze, "https://pentandra.com/people/katie-chapman/#me".freeze], + "http://schema.org/legalName": "Pentandra Research Solutions, Inc.".freeze, + "http://schema.org/location": term( + "http://schema.org/addressCountry": "US".freeze, + "http://schema.org/addressLocality": "Logan".freeze, + "http://schema.org/addressRegion": "Utah".freeze, + "http://schema.org/postalCode": "84341".freeze, + "http://schema.org/streetAddress": "1475 N 420 W #104".freeze, + "http://www.w3.org/2006/vcard/ns#country-name": "US".freeze, + "http://www.w3.org/2006/vcard/ns#locality": "Logan".freeze, + "http://www.w3.org/2006/vcard/ns#postal-code": "84341".freeze, + "http://www.w3.org/2006/vcard/ns#region": "Utah".freeze, + "http://www.w3.org/2006/vcard/ns#street-address": "1475 N 420 W #104".freeze, + type: ["http://schema.org/PostalAddress".freeze,"http://www.w3.org/2006/vcard/ns#Address".freeze] ), - "schema:logo": "https://pentandra.com/images/pentandra-logo.png".freeze, - "schema:name": "Pentandra Research Solutions, Inc.".freeze, - "schema:sameAs": ["http://www.facebook.com/PentandraInc".freeze, "https://twitter.com/PentandraInc".freeze], - "schema:telephone": "tel:+14352942964".freeze, - "schema:url": "https://pentandra.com/".freeze, - type: ["foaf:Organization".freeze, "http://purl.org/essglobal/vocab/SSEInitiative".freeze, "http://vocab.data.gov/def/fea#Company".freeze, "http://www.w3.org/ns/regorg#RegisteredOrganization".freeze, "org:FormalOrganization".freeze, "schema:Corporation".freeze, "vcard:Organization".freeze], - "vcard:hasAddress": term( - "schema:addressCountry": "USA".freeze, - "schema:addressLocality": "Logan".freeze, - "schema:addressRegion": "UT".freeze, - type: ["schema:PostalAddress".freeze,"vcard:Address".freeze], - "vcard:country-name": "USA".freeze, - "vcard:locality": "Logan".freeze, - "vcard:region": "UT".freeze + "http://schema.org/logo": "https://pentandra.com/images/pentandra-logo.png".freeze, + "http://schema.org/name": "Pentandra Research Solutions, Inc.".freeze, + "http://schema.org/telephone": "tel:+14352942964".freeze, + "http://schema.org/url": "https://pentandra.com/".freeze, + "http://vocab.data.gov/def/fea#hasIntent": "https://pentandra.com/company#mission".freeze, + "http://www.w3.org/2006/vcard/ns#hasAddress": term( + "http://schema.org/addressCountry": "US".freeze, + "http://schema.org/addressLocality": "Logan".freeze, + "http://schema.org/addressRegion": "Utah".freeze, + "http://schema.org/postalCode": "84341".freeze, + "http://schema.org/streetAddress": "1475 N 420 W #104".freeze, + "http://www.w3.org/2006/vcard/ns#country-name": "US".freeze, + "http://www.w3.org/2006/vcard/ns#locality": "Logan".freeze, + "http://www.w3.org/2006/vcard/ns#postal-code": "84341".freeze, + "http://www.w3.org/2006/vcard/ns#region": "Utah".freeze, + "http://www.w3.org/2006/vcard/ns#street-address": "1475 N 420 W #104".freeze, + type: ["http://schema.org/PostalAddress".freeze,"http://www.w3.org/2006/vcard/ns#Address".freeze] ), - "vcard:hasEmail": "mailto:hello@pentandra.com".freeze, - "vcard:hasLogo": "https://pentandra.com/images/pentandra-logo.png".freeze, - "vcard:hasTelephone": "tel:+14352942964".freeze, - "vcard:hasURL": "https://pentandra.com/".freeze, - "vcard:rev": "2019-10-08".freeze + "http://www.w3.org/2006/vcard/ns#hasEmail": "mailto:hello@pentandra.com".freeze, + "http://www.w3.org/2006/vcard/ns#hasLogo": "https://pentandra.com/images/pentandra-logo.png".freeze, + "http://www.w3.org/2006/vcard/ns#hasTelephone": "tel:+14352942964".freeze, + "http://www.w3.org/2006/vcard/ns#hasURL": "https://pentandra.com/".freeze, + "http://www.w3.org/2006/vcard/ns#rev": "2019-11-12T03:43:27Z".freeze, + "http://www.w3.org/ns/org#purpose": "Pentandra’s mission is to open up the knowledge of the world, so that light and understanding will be more accessible to everyone.".freeze, + "http://www.w3.org/ns/regorg#legalName": "Pentandra Research Solutions, Inc.".freeze, + "http://xmlns.com/foaf/0.1/account": [term( + "http://xmlns.com/foaf/0.1/accountName": "PentandraInc".freeze, + "http://xmlns.com/foaf/0.1/accountServiceHomepage": "https://twitter.com/".freeze, + type: "http://xmlns.com/foaf/0.1/OnlineAccount".freeze + ), term( + "http://xmlns.com/foaf/0.1/accountName": "PentandraInc".freeze, + "http://xmlns.com/foaf/0.1/accountServiceHomepage": "https://www.facebook.com/".freeze, + type: "http://xmlns.com/foaf/0.1/OnlineAccount".freeze + )], + "http://xmlns.com/foaf/0.1/homepage": "https://pentandra.com/".freeze, + type: ["http://purl.org/essglobal/vocab/SSEInitiative".freeze, "http://schema.org/Corporation".freeze, "http://vocab.data.gov/def/fea#Company".freeze, "http://www.w3.org/2006/vcard/ns#Organization".freeze, "http://www.w3.org/ns/org#FormalOrganization".freeze, "http://www.w3.org/ns/regorg#RegisteredOrganization".freeze, "http://xmlns.com/foaf/0.1/Organization".freeze] term :contact, - type: "schema:ContactPage".freeze + type: "http://schema.org/ContactPage".freeze term :"core-team", - "foaf:member": ["https://pentandra.com/people/chris-chapman/#me".freeze, "https://pentandra.com/people/katie-chapman/#me".freeze], - "foaf:name": "Core Team".freeze, - type: "foaf:Group".freeze, - "vcard:hasMember": ["https://pentandra.com/people/chris-chapman/#me".freeze, "https://pentandra.com/people/katie-chapman/#me".freeze] + "http://www.w3.org/2006/vcard/ns#hasMember": ["https://pentandra.com/people/chris-chapman/#me".freeze, "https://pentandra.com/people/katie-chapman/#me".freeze], + "http://xmlns.com/foaf/0.1/member": ["https://pentandra.com/people/chris-chapman/#me".freeze, "https://pentandra.com/people/katie-chapman/#me".freeze], + "http://xmlns.com/foaf/0.1/name": "Core Team".freeze, + type: "http://xmlns.com/foaf/0.1/Group".freeze term :donating, - "schema:description": "\n \n\n If you like what we’re doing, but are not\n interested in the technicalities of investing, please consider\n donating. As we’ve started out, we’ve relied on the generous contributions of many to\n keep us going while we work to reach sustained profitability.\n\n \n ".freeze, - "schema:name": "Donating".freeze, - "schema:recipient": "pentandra:company".freeze, - "schema:target": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MP56WPL8KFLH8".freeze, - type: "schema:DonateAction".freeze + "http://schema.org/description": "\n \n\n If you like what we’re doing, but are not\n interested in the technicalities of investing, please consider\n donating. As we’ve started out, we’ve relied on the generous contributions of many to\n keep us going while we work to reach sustained profitability.\n\n \n ".freeze, + "http://schema.org/name": "Donating".freeze, + "http://schema.org/recipient": "https://pentandra.com/company#company".freeze, + "http://schema.org/target": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MP56WPL8KFLH8".freeze, + type: "http://schema.org/DonateAction".freeze term :mission, "http://vocab.data.gov/def/fea#description": "Pentandra’s mission is to open up the knowledge of the world, so that light and understanding will be more accessible to everyone.".freeze, type: "http://vocab.data.gov/def/fea#Mission".freeze diff --git a/lib/vocabs/pentandra_blog.rb b/lib/vocabs/pentandra_blog.rb index 5d1c19fa..c4bc9a9c 100644 --- a/lib/vocabs/pentandra_blog.rb +++ b/lib/vocabs/pentandra_blog.rb @@ -2,30 +2,26 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from https://pentandra.com/blog# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class PENTANDRABlog < RDF::Vocabulary - # end - class PENTANDRABlog < RDF::Vocabulary("https://pentandra.com/blog#") +module LifePreserver::Vocab + PentandraBlog = Class.new(RDF::Vocabulary("https://pentandra.com/blog#")) do # Ontology definition ontology :"https://pentandra.com/blog#", - "cc:attributionName": "Pentandra Research Solutions, Inc.".freeze, - "cc:attributionURL": "https://pentandra.com".freeze, - "cc:license": "http://creativecommons.org/licenses/by/4.0/".freeze, - "cc:useGuidelines": "https://pentandra.com/policy/".freeze, - "og:description": "A collection of our thoughts about Pentandra and the future of research.".freeze, - "og:locale": "en_US".freeze, - "og:site_name": "Pentandra".freeze, - "og:title": "Blog".freeze, - "og:type": "website".freeze, - "og:url": "https://pentandra.com/blog/".freeze, - "schema:copyrightHolder": "https://pentandra.com/company#company".freeze, - "schema:copyrightYear": "2011".freeze, - "schema:hasPart": "pentandra-blog:latest-articles".freeze, - "schema:isPartOf": "pentandra-website:website".freeze, - "schema:publisher": "https://pentandra.com/company#company".freeze, - type: ["cc:Work".freeze, "prov:Entity".freeze, "schema:WebPage".freeze] + "http://creativecommons.org/ns#attributionName": "Pentandra Research Solutions, Inc.".freeze, + "http://creativecommons.org/ns#attributionURL": "https://pentandra.com".freeze, + "http://creativecommons.org/ns#license": "http://creativecommons.org/licenses/by/4.0/".freeze, + "http://creativecommons.org/ns#useGuidelines": "https://pentandra.com/policy/".freeze, + "http://ogp.me/ns#description": "A collection of our thoughts about Pentandra and the future of research.".freeze, + "http://ogp.me/ns#locale": "en".freeze, + "http://ogp.me/ns#site_name": "Pentandra".freeze, + "http://ogp.me/ns#title": "Blog".freeze, + "http://ogp.me/ns#type": "website".freeze, + "http://ogp.me/ns#url": "https://pentandra.com/blog/".freeze, + "http://schema.org/copyrightHolder": "https://pentandra.com/company#company".freeze, + "http://schema.org/copyrightYear": "2011".freeze, + "http://schema.org/hasPart": "pentandra-blog:latest-articles".freeze, + "http://schema.org/isPartOf": "pentandra-website:website".freeze, + "http://schema.org/publisher": "https://pentandra.com/company#company".freeze, + type: ["http://creativecommons.org/ns#Work".freeze, "http://schema.org/WebPage".freeze, "http://www.w3.org/ns/prov#Entity".freeze] end end diff --git a/lib/vocabs/pentandra_website.rb b/lib/vocabs/pentandra_website.rb index 0cb2d81d..98c4e758 100644 --- a/lib/vocabs/pentandra_website.rb +++ b/lib/vocabs/pentandra_website.rb @@ -2,32 +2,28 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from https://pentandra.com# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class PENTANDRAWebsite < RDF::Vocabulary - # end - class PENTANDRAWebsite < RDF::Vocabulary("https://pentandra.com#") +module LifePreserver::Vocab + PentandraWebsite = Class.new(RDF::Vocabulary("https://pentandra.com#")) do # Ontology definition ontology :"https://pentandra.com#", - "cc:attributionName": "Pentandra Research Solutions, Inc.".freeze, - "cc:attributionURL": "https://pentandra.com".freeze, - "cc:license": "http://creativecommons.org/licenses/by/4.0/".freeze, - "cc:useGuidelines": "https://pentandra.com/policy/".freeze, - "og:description": "A high-level overview of who we are and what we do.".freeze, - "og:image": "https://pentandra.com/images/pentandra-logo.png".freeze, - "og:locale": "en_US".freeze, - "og:site_name": "Pentandra".freeze, - "og:title": "Overview".freeze, - "og:type": "website".freeze, - "og:url": "https://pentandra.com/".freeze, - "schema:copyrightHolder": "https://pentandra.com/company#company".freeze, - "schema:copyrightYear": "2011".freeze, - "schema:hasPart": "pentandra-blog:latest-articles".freeze, - "schema:headline": "Breaking Research Barriers".freeze, - "schema:isPartOf": "pentandra-website:website".freeze, - "schema:publisher": "https://pentandra.com/company#company".freeze, - type: ["cc:Work".freeze, "prov:Entity".freeze, "schema:WebPage".freeze] + "http://creativecommons.org/ns#attributionName": "Pentandra Research Solutions, Inc.".freeze, + "http://creativecommons.org/ns#attributionURL": "https://pentandra.com".freeze, + "http://creativecommons.org/ns#license": "http://creativecommons.org/licenses/by/4.0/".freeze, + "http://creativecommons.org/ns#useGuidelines": "https://pentandra.com/policy/".freeze, + "http://ogp.me/ns#description": "Pentandra's mission is to preserve the history of knowledge creation, to help transition research to the World Wide Web, and to open up the knowledge of the world.".freeze, + "http://ogp.me/ns#image": "https://pentandra.com/images/pentandra-logo.png".freeze, + "http://ogp.me/ns#locale": "en".freeze, + "http://ogp.me/ns#site_name": "Pentandra".freeze, + "http://ogp.me/ns#title": "Overview".freeze, + "http://ogp.me/ns#type": "website".freeze, + "http://ogp.me/ns#url": "https://pentandra.com/".freeze, + "http://schema.org/copyrightHolder": "https://pentandra.com/company#company".freeze, + "http://schema.org/copyrightYear": "2011".freeze, + "http://schema.org/hasPart": "pentandra-blog:latest-articles".freeze, + "http://schema.org/headline": "Breaking Research Barriers".freeze, + "http://schema.org/isPartOf": "pentandra-website:website".freeze, + "http://schema.org/publisher": "https://pentandra.com/company#company".freeze, + type: ["http://creativecommons.org/ns#Work".freeze, "http://schema.org/WebPage".freeze, "http://www.w3.org/ns/prov#Entity".freeze] end end diff --git a/lib/vocabs/profile.rb b/lib/vocabs/profile.rb index 01e5abd2..8b6947aa 100644 --- a/lib/vocabs/profile.rb +++ b/lib/vocabs/profile.rb @@ -2,37 +2,33 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://ogp.me/ns/profile# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class PROFILE < RDF::Vocabulary - # end - class PROFILE < RDF::Vocabulary("http://ogp.me/ns/profile#") +module LifePreserver::Vocab + PROFILE = Class.new(RDF::Vocabulary("http://ogp.me/ns/profile#")) do # Property definitions property :first_name, - comment: %(A name normally given to an individual by a parent or self-chosen.).freeze, - isDefinedBy: "profile:".freeze, + comment: "A name normally given to an individual by a parent or self-chosen.".freeze, + isDefinedBy: "http://ogp.me/ns/profile#".freeze, label: "first 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 :gender, - comment: %(Their gender.).freeze, - isDefinedBy: "profile:".freeze, + comment: "Their gender.".freeze, + isDefinedBy: "http://ogp.me/ns/profile#".freeze, label: "gender".freeze, - range: "ogc:gender_str".freeze, - type: "rdf:Property".freeze + range: "http://ogp.me/ns/class#gender_str".freeze, + type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze property :last_name, - comment: %(A name inherited from a family or marriage and by which the individual is commonly known.).freeze, - isDefinedBy: "profile:".freeze, + comment: "A name inherited from a family or marriage and by which the individual is commonly known.".freeze, + isDefinedBy: "http://ogp.me/ns/profile#".freeze, label: "last 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 :username, - comment: %(A short unique string to identify them.).freeze, - isDefinedBy: "profile:".freeze, + comment: "A short unique string to identify them.".freeze, + isDefinedBy: "http://ogp.me/ns/profile#".freeze, label: "username".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 end end diff --git a/lib/vocabs/rov.rb b/lib/vocabs/rov.rb index 55f071fd..0b162984 100644 --- a/lib/vocabs/rov.rb +++ b/lib/vocabs/rov.rb @@ -2,114 +2,99 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://www.w3.org/ns/regorg# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class ROV < RDF::StrictVocabulary - # end - class ROV < RDF::StrictVocabulary("http://www.w3.org/ns/regorg#") +module LifePreserver::Vocab + ROV = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/regorg#")) do # Ontology definition ontology :"http://www.w3.org/ns/regorg#", - comment: %(This file specifies the set of RDF classes and properties used in the Registered Organization Vocabulary vocabulary).freeze, - "dc:abstract": "The Registered Organization Vocabulary is a profile of the Organization Ontology for describing organizations that have gained legal entity status through a formal registration process, typically in a national or regional register.".freeze, - "dc:creator": [term( - "foaf:homepage": "http://andrea-perego.name/".freeze, - "foaf:name": "Andrea Perego".freeze, - "rdfs:seeAlso": "http://andrea-perego.name/foaf/#me".freeze, - "schema:affiliation": term( - "foaf:homepage": "http://ies.jrc.ec.europa.eu/DE".freeze, - "foaf:name": "European Commission, Joint Research Centre ".freeze - ) + comment: "This file specifies the set of RDF classes and properties used in the Registered Organization Vocabulary vocabulary".freeze, + "http://purl.org/dc/terms/abstract": "The Registered Organization Vocabulary is a profile of the Organization Ontology for describing organizations that have gained legal entity status through a formal registration process, typically in a national or regional register.".freeze, + "http://purl.org/dc/terms/creator": [term( + "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": "http://makxdekkers.com/".freeze, - "foaf:name": "Makx Dekkers".freeze, - "rdfs:seeAlso": "http://makxdekkers.com/makxdekkers.rdf#me".freeze + "http://schema.org/affiliation": term( + "http://xmlns.com/foaf/0.1/homepage": "http://ies.jrc.ec.europa.eu/DE".freeze, + "http://xmlns.com/foaf/0.1/name": "European Commission, Joint Research Centre ".freeze + ).freeze, + "http://www.w3.org/2000/01/rdf-schema#seeAlso": "http://andrea-perego.name/foaf/#me".freeze, + "http://xmlns.com/foaf/0.1/homepage": "http://andrea-perego.name/".freeze, + "http://xmlns.com/foaf/0.1/name": "Andrea Perego".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://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 )], - "dc:description": "This is the RDF encoding of the Legal Entity vocabulary, originally developed under the European Commission's ISA Programme.".freeze, - "dc:modified": ["2013-05-24".freeze, "2013-12-21".freeze], - "dc:title": "Registered Organization Vocabulary".freeze, - "foaf:maker": term( - "foaf:homepage": "http://www.w3.org/2011/gld/".freeze, - "foaf:name": "Government Linked Data WG, based on output from the ADMS Working Group".freeze - ), + "http://purl.org/dc/terms/description": "This is the RDF encoding of the Legal Entity vocabulary, originally developed under the European Commission's ISA Programme.".freeze, + "http://purl.org/dc/terms/modified": ["2013-05-24".freeze, "2013-12-21".freeze], + "http://purl.org/dc/terms/title": "Registered Organization Vocabulary".freeze, "http://purl.org/vocab/vann/preferredNamespacePrefix": "rov".freeze, "http://purl.org/vocab/vann/preferredNamespaceUri": "http://www.w3.org/ns/regorg#".freeze, "http://purl.org/vocommons/voaf#specializes": "http://www.w3.org/ns/org".freeze, + "http://www.w3.org/2002/07/owl#versionInfo": "Second version in w3.org/ns".freeze, + "http://www.w3.org/2007/05/powder-s#describedby": "http://www.w3.org/TR/vocab-regorg/".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, based on output from the ADMS Working Group".freeze + ), label: "Registered Organization Vocabulary".freeze, - "owl:versionInfo": "Second version in w3.org/ns".freeze, - type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "owl:Ontology".freeze], - "wdrs:describedby": "http://www.w3.org/TR/vocab-regorg/".freeze + type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "http://www.w3.org/2002/07/owl#Ontology".freeze] # Class definitions term :RegisteredOrganization, - comment: %(rov:RegisteredOrganization is the key class for the Registered Organization vocabulary and represents - an organization that is legally registered. In many countries there is a single registry although in others, such - as Spain and Germany, multiple registries exist. A Registered Organization is able to trade, is legally liable for - its actions, accounts, tax affairs etc. Legal entity status is conferred by the act of registration cf. - org:FormalOrganization that applies to any legal entity, including those created by other legal means. - This makes registered organizations distinct from the broader concept of organizations, groups or, in - some jurisdictions, sole traders. Many organizations exist that are not legal entities yet to the outside world - they have staff, hierarchies, locations etc. Other organizations exist that are an umbrella for several legal entities - \(universities are often good examples of this\). This vocabulary is concerned solely with registered organizations. - In RDF, Registered Organization is a sub class of the Organization Ontology's org:FormalOrganization which is itself a - sub class of the more general 'Agent' class found in FOAF and Dublin Core that does encompass organizations, - natural persons, groups etc. - i.e. an Agent is any entity that is able to carry out actions.

    ).freeze, - "dc:identifier": "rov:RegisteredOrganization".freeze, + comment: "rov:RegisteredOrganization is the key class for the Registered Organization vocabulary and represents \n an organization that is legally registered. In many countries there is a single registry although in others, such \n as Spain and Germany, multiple registries exist. A Registered Organization is able to trade, is legally liable for \n its actions, accounts, tax affairs etc. Legal entity status is conferred by the act of registration cf. \n org:FormalOrganization that applies to any legal entity, including those created by other legal means.\n This makes registered organizations distinct from the broader concept of organizations, groups or, in \n some jurisdictions, sole traders. Many organizations exist that are not legal entities yet to the outside world \n they have staff, hierarchies, locations etc. Other organizations exist that are an umbrella for several legal entities \n (universities are often good examples of this). This vocabulary is concerned solely with registered organizations.\n In RDF, Registered Organization is a sub class of the Organization Ontology's org:FormalOrganization which is itself a \n sub class of the more general 'Agent' class found in FOAF and Dublin Core that does encompass organizations, \n natural persons, groups etc. - i.e. an Agent is any entity that is able to carry out actions.

    ".freeze, + "http://purl.org/dc/terms/identifier": "rov:RegisteredOrganization".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-regorg/".freeze, label: "Registered Organization".freeze, - subClassOf: "org:FormalOrganization".freeze, - type: ["owl:Class".freeze, "rdfs:Class".freeze] + subClassOf: "http://www.w3.org/ns/org#FormalOrganization".freeze, + type: ["http://www.w3.org/2000/01/rdf-schema#Class".freeze, "http://www.w3.org/2002/07/owl#Class".freeze] # Property definitions property :hasRegisteredOrganization, - comment: %(The has registered organization relationship can be used to link any dcterms:Agent \(equivalent class foaf:Agent\) to a Registered Organization that in some way acts as a registered legal entity for it. This is useful, for example, where an organization includes one or more legal entities, or where a natural person is also registered as a legal entity. rov:hasRegisteredOrganization has a range of rov:RegisteredOrganization.).freeze, - "dc:identifier": "rov:hasRegisteredOrganization".freeze, - domain: "dc:Agent".freeze, + comment: "The has registered organization relationship can be used to link any dcterms:Agent (equivalent class foaf:Agent) to a Registered Organization that in some way acts as a registered legal entity for it. This is useful, for example, where an organization includes one or more legal entities, or where a natural person is also registered as a legal entity. rov:hasRegisteredOrganization has a range of rov:RegisteredOrganization.".freeze, + domain: "http://purl.org/dc/terms/Agent".freeze, + "http://purl.org/dc/terms/identifier": "rov:hasRegisteredOrganization".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-regorg/".freeze, label: "registered organization".freeze, - range: "rov:RegisteredOrganization".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + range: "http://www.w3.org/ns/regorg#RegisteredOrganization".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :legalName, - comment: %(The legal name of the business. A business might have more than one legal name, particularly in countries with more than one official language. In such cases the language of the string should be identified.).freeze, - "dc:identifier": "rov:legalName".freeze, + comment: "The legal name of the business. A business might have more than one legal name, particularly in countries with more than one official language. In such cases the language of the string should be identified.".freeze, + "http://purl.org/dc/terms/identifier": "rov:legalName".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-regorg/".freeze, label: "legal name".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 :orgActivity, - comment: %(The activity of a company should be recorded using a controlled vocabulary expressed as a SKOS concept scheme. Several such vocabularies exist, many of which map to the UN's ISIC codes. Where a particular controlled vocabulary is in use within a given context, such as SIC codes in the UK, it is acceptable to use these, however, the preferred choice for European interoperability is NACE. rov:orgActivity is a sub class of org:classification which has a range of skos:Concept.).freeze, - "dc:identifier": "rov:orgActivity".freeze, + comment: "The activity of a company should be recorded using a controlled vocabulary expressed as a SKOS concept scheme. Several such vocabularies exist, many of which map to the UN's ISIC codes. Where a particular controlled vocabulary is in use within a given context, such as SIC codes in the UK, it is acceptable to use these, however, the preferred choice for European interoperability is NACE. rov:orgActivity is a sub class of org:classification which has a range of skos:Concept.".freeze, + "http://purl.org/dc/terms/identifier": "rov:orgActivity".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-regorg/".freeze, label: "company activity".freeze, - subPropertyOf: "org:classification".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/ns/org#classification".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :orgStatus, - comment: %(Terms like insolvent, bankrupt and in receivership are likely to have different legal implications in different jurisdictions. Best Practice for recording various other status levels is to use the relevant jurisdiction's terms and to do so in a consistent manner using a SKOS Concept Scheme. rov:orgStatus is a sub class of org:classification which has a range of skos:Concept.).freeze, - "dc:identifier": "rov:orgStatus".freeze, + comment: "Terms like insolvent, bankrupt and in receivership are likely to have different legal implications in different jurisdictions. Best Practice for recording various other status levels is to use the relevant jurisdiction's terms and to do so in a consistent manner using a SKOS Concept Scheme. rov:orgStatus is a sub class of org:classification which has a range of skos:Concept.".freeze, + "http://purl.org/dc/terms/identifier": "rov:orgStatus".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-regorg/".freeze, label: "company status".freeze, - subPropertyOf: "org:classification".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/ns/org#classification".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :orgType, - comment: %(This property records the type of organization. Familiar types are SA, PLC, LLC, GmbH etc. Each jurisdiction will have a limited set of recognized company types and these should be used in a consistent manner using a SKOS Concept Scheme. rov:orgType is a sub class of org:classification which has a range of skos:Concept.).freeze, - "dc:identifier": "rov:orgType".freeze, + comment: "This property records the type of organization. Familiar types are SA, PLC, LLC, GmbH etc. Each jurisdiction will have a limited set of recognized company types and these should be used in a consistent manner using a SKOS Concept Scheme. rov:orgType is a sub class of org:classification which has a range of skos:Concept.".freeze, + "http://purl.org/dc/terms/identifier": "rov:orgType".freeze, isDefinedBy: "http://www.w3.org/TR/vocab-regorg/".freeze, label: "company type".freeze, - subPropertyOf: "org:classification".freeze, - type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze] + subPropertyOf: "http://www.w3.org/ns/org#classification".freeze, + type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze] property :registration, - comment: %(The registration is a fundamental relationship between a legal entity and the authority with which it is registered and that confers legal status upon it. rov:registration is a sub property of adms:identifier which has a range of adms:Identifier. rov:registration has a domain of rov:RegisteredOrganization.).freeze, - "dc:identifier": "rov:registration".freeze, - domain: "rov:RegisteredOrganization".freeze, - isDefinedBy: "rov:".freeze, + comment: "The registration is a fundamental relationship between a legal entity and the authority with which it is registered and that confers legal status upon it. rov:registration is a sub property of adms:identifier which has a range of adms:Identifier. rov:registration has a domain of rov:RegisteredOrganization.".freeze, + domain: "http://www.w3.org/ns/regorg#RegisteredOrganization".freeze, + "http://purl.org/dc/terms/identifier": "rov:registration".freeze, + isDefinedBy: "http://www.w3.org/ns/regorg#".freeze, label: "registration".freeze, subPropertyOf: "http://www.w3.org/ns/adms#identifier".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/vocabs/sioct.rb b/lib/vocabs/sioct.rb deleted file mode 100644 index a4607871..00000000 --- a/lib/vocabs/sioct.rb +++ /dev/null @@ -1,277 +0,0 @@ -# -*- encoding: utf-8 -*- -# frozen_string_literal: true -# This file generated automatically using rdf vocabulary format from http://rdfs.org/sioc/types# -require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class SIOCT < RDF::StrictVocabulary - # end - class SIOCT < RDF::StrictVocabulary("http://rdfs.org/sioc/types#") - - # 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] - - # Class definitions - term :AddressBook, - comment: %(Describes a collection of personal or organisational addresses.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Address Book".freeze, - "rdfs:seeAlso": "foaf:Agent".freeze, - subClassOf: "sioc:Container".freeze, - type: "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: "sioct:".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 - term :Answer, - comment: %(A Post that provides an answer in reply to a Question.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Answer".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze - term :ArgumentativeDiscussion, - comment: %(Describes a discussion area where logical arguments can take place.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Argumentative Discussion".freeze, - "rdfs:seeAlso": "http://purl.org/ibis#Idea".freeze, - subClassOf: "sioc:Forum".freeze, - type: "owl:Class".freeze - term :AudioChannel, - comment: %(Describes a channel for distributing audio or sound files, for example, a podcast.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Audio Channel".freeze, - "rdfs:seeAlso": "dcmitype:Sound".freeze, - subClassOf: "sioc:Container".freeze, - type: "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: "sioct:".freeze, - label: "Best Answer".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze - term :BlogPost, - comment: %(Describes a post that is specifically made on a weblog.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Blog Post".freeze, - "rdfs:seeAlso": "sioct:Weblog".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze - term :BoardPost, - comment: %(Describes a post that is specifically made on a message board.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Board Post".freeze, - "rdfs:seeAlso": "sioct:MessageBoard".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze - term :BookmarkFolder, - comment: %(Describes a shared collection of bookmarks.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Bookmark Folder".freeze, - "rdfs:seeAlso": "http://www.w3.org/2002/01/bookmark#Bookmark".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze - term :Briefcase, - comment: %(Describes a briefcase or file service.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Briefcase".freeze, - "rdfs:seeAlso": "foaf:Document".freeze, - subClassOf: "sioc:Container".freeze, - type: "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: "sioct:".freeze, - label: "Category".freeze, - subClassOf: "http://www.w3.org/2008/05/skos#Concept".freeze, - type: "owl:Class".freeze - term :ChatChannel, - comment: %(Describes a channel for chat or instant messages, for example, via IRC or IM.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Chat Channel".freeze, - "rdfs:seeAlso": "sioct:InstantMessage".freeze, - subClassOf: "sioc:Forum".freeze, - type: "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: "sioct:".freeze, - label: "Comment".freeze, - "rdfs:seeAlso": "sioct:Forum".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze - term :EventCalendar, - comment: %(Describes a calendar of events.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Event Calendar".freeze, - "rdfs:seeAlso": "ical:VEVENT".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze - term :FavouriteThings, - comment: %(Describes a list or a collection of one's favourite things.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Favourite Things".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze - term :ImageGallery, - comment: %(Describes an image gallery, for example, a photo album.).freeze, - isDefinedBy: "sioct:".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 - term :InstantMessage, - comment: %(Describes an instant message, e.g. sent via Jabber.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Instant Message".freeze, - "rdfs:seeAlso": "sioct:ChatChannel".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze - term :MailMessage, - comment: %(Describes an electronic mail message, e.g. a post sent to a mailing list.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Mail Message".freeze, - "rdfs:seeAlso": "sioct:MailingList".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze - term :MailingList, - comment: %(Describes an electronic mailing list.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Mailing List".freeze, - "rdfs:seeAlso": "sioct:MailMessage".freeze, - subClassOf: "sioc:Forum".freeze, - type: "owl:Class".freeze - term :MessageBoard, - comment: %(Describes a message board, also known as an online bulletin board or discussion forum.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Message Board".freeze, - "rdfs:seeAlso": "sioct:BoardPost".freeze, - subClassOf: "sioc:Forum".freeze, - type: "owl:Class".freeze - term :Microblog, - comment: %(Describes a microblog, i.e. a blog consisting of short text messages.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Microblog".freeze, - "rdfs:seeAlso": "sioct:MicroblogPost".freeze, - subClassOf: "sioc:Forum".freeze, - type: "owl:Class".freeze - term :MicroblogPost, - comment: %(Describes a post that is specifically made on a microblog.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Microblog Post".freeze, - "rdfs:seeAlso": "sioct:Microblog".freeze, - subClassOf: "sioc:Post".freeze, - type: "owl:Class".freeze - term :OfferList, - comment: %(Describes a list of the items someone has available to offer.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Offer List".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze - term :Playlist, - comment: %(Describes a list of media items that have been played or can be played.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Playlist".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze - term :Poll, - comment: %(Describes a posted item that contains a poll or survey content.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Poll".freeze, - "rdfs:seeAlso": "sioct:SurveyCollection".freeze, - subClassOf: "sioc:Item".freeze, - type: "owl:Class".freeze - term :ProjectDirectory, - comment: %(Describes a project directory.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Project Directory".freeze, - "rdfs:seeAlso": "doap:Project".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze - term :Question, - comment: %(A Post that asks a Question.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Question".freeze, - subClassOf: "sioc:Post".freeze, - type: "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: "sioct:".freeze, - label: "Reading List".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze - term :ResumeBank, - comment: %(Describes a collection of resumes.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Resume Bank".freeze, - "rdfs:seeAlso": "http://captsolo.net/semweb/resume/cv.rdfs#Resume".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze - term :ReviewArea, - comment: %(Describes an area where reviews are posted.).freeze, - isDefinedBy: "sioct:".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 - term :SubscriptionList, - comment: %(Describes a shared set of feed subscriptions.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Subscription List".freeze, - "rdfs:seeAlso": "http://atomowl.org/ontologies/atomrdf#Feed".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze - term :SurveyCollection, - comment: %(Describes an area where survey data can be collected, e.g. from polls.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Survey Collection".freeze, - "rdfs:seeAlso": "sioct:Poll".freeze, - subClassOf: "sioc:Container".freeze, - type: "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: "sioct:".freeze, - label: "Tag".freeze, - type: "owl:Class".freeze - term :VideoChannel, - comment: %(Describes a channel for distributing videos \(moving image\) files, for example, a video podcast.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Video Channel".freeze, - "rdfs:seeAlso": "dcmitype:MovingImage".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze - term :Weblog, - comment: %(Describes a weblog \(blog\), i.e. an online journal.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Weblog".freeze, - "rdfs:seeAlso": "sioct:BlogPost".freeze, - subClassOf: "sioc:Forum".freeze, - type: "owl:Class".freeze - term :Wiki, - comment: %(Describes a wiki space.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Wiki".freeze, - "rdfs:seeAlso": "sioct:WikiArticle".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze - term :WikiArticle, - comment: %(Describes a wiki article.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Wiki Article".freeze, - "rdfs:seeAlso": "sioct:Wiki".freeze, - subClassOf: "sioc:Item".freeze, - type: "owl:Class".freeze - term :WishList, - comment: %(Describes a list of the items someone wishes to get.).freeze, - isDefinedBy: "sioct:".freeze, - label: "Wish List".freeze, - subClassOf: "sioc:Container".freeze, - type: "owl:Class".freeze - end -end diff --git a/lib/vocabs/vann.rb b/lib/vocabs/vann.rb index d4cbf549..244c9770 100644 --- a/lib/vocabs/vann.rb +++ b/lib/vocabs/vann.rb @@ -2,60 +2,56 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/vocab/vann/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class VANN < RDF::StrictVocabulary - # end - class VANN < RDF::StrictVocabulary("http://purl.org/vocab/vann/") +module LifePreserver::Vocab + VANN = Class.new(RDF::StrictVocabulary("http://purl.org/vocab/vann/")) do # Ontology definition ontology :"http://purl.org/vocab/vann/", - "dc:creator": "http://iandavis.com/id/me".freeze, - "dc:date": "2010-06-07".freeze, - "dc:description": "This document describes a vocabulary for annotating descriptions of vocabularies with examples and usage notes.".freeze, - "dc:identifier": "http://purl.org/vocab/vann/vann-vocab-20050401".freeze, - "dc:isVersionOf": "vann:".freeze, - "dc:replaces": "vann:vann-vocab-20040305".freeze, - "dc:rights": "Copyright © 2005 Ian Davis".freeze, - "dc:title": "VANN: A vocabulary for annotating vocabulary descriptions".freeze, - type: "owl:Ontology".freeze, - "vann:preferredNamespacePrefix": "vann".freeze, - "vann:preferredNamespaceUri": "http://purl.org/vocab/vann/".freeze + "http://purl.org/dc/terms/creator": "http://iandavis.com/id/me".freeze, + "http://purl.org/dc/terms/date": "2010-06-07".freeze, + "http://purl.org/dc/terms/description": "This document describes a vocabulary for annotating descriptions of vocabularies with examples and usage notes.".freeze, + "http://purl.org/dc/terms/identifier": "http://purl.org/vocab/vann/vann-vocab-20050401".freeze, + "http://purl.org/dc/terms/isVersionOf": "http://purl.org/vocab/vann/".freeze, + "http://purl.org/dc/terms/replaces": "http://purl.org/vocab/vann/vann-vocab-20040305".freeze, + "http://purl.org/dc/terms/rights": "Copyright © 2005 Ian Davis".freeze, + "http://purl.org/dc/terms/title": "VANN: A vocabulary for annotating vocabulary descriptions".freeze, + "http://purl.org/vocab/vann/preferredNamespacePrefix": "vann".freeze, + "http://purl.org/vocab/vann/preferredNamespaceUri": "http://purl.org/vocab/vann/".freeze, + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Property definitions property :changes, - comment: %(A reference to a resource that describes changes between this version of a vocabulary and the previous.).freeze, - isDefinedBy: "vann:".freeze, + comment: "A reference to a resource that describes changes between this version of a vocabulary and the previous.".freeze, + isDefinedBy: "http://purl.org/vocab/vann/".freeze, label: "Changes".freeze, - subPropertyOf: "rdfs:seeAlso".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#seeAlso".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :example, - comment: %(A reference to a resource that provides an example of how this resource can be used.).freeze, - isDefinedBy: "vann:".freeze, + comment: "A reference to a resource that provides an example of how this resource can be used.".freeze, + isDefinedBy: "http://purl.org/vocab/vann/".freeze, label: "Example".freeze, - subPropertyOf: "rdfs:seeAlso".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#seeAlso".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :preferredNamespacePrefix, - comment: %(The preferred namespace prefix to use when using terms from this vocabulary in an XML document.).freeze, - isDefinedBy: "vann:".freeze, + comment: "The preferred namespace prefix to use when using terms from this vocabulary in an XML document.".freeze, + isDefinedBy: "http://purl.org/vocab/vann/".freeze, label: "Preferred Namespace Prefix".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :preferredNamespaceUri, - comment: %(The preferred namespace URI to use when using terms from this vocabulary in an XML document.).freeze, - isDefinedBy: "vann:".freeze, + comment: "The preferred namespace URI to use when using terms from this vocabulary in an XML document.".freeze, + isDefinedBy: "http://purl.org/vocab/vann/".freeze, label: "Preferred Namespace Uri".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :termGroup, - comment: %(A group of related terms in a vocabulary.).freeze, - isDefinedBy: "vann:".freeze, + comment: "A group of related terms in a vocabulary.".freeze, + isDefinedBy: "http://purl.org/vocab/vann/".freeze, label: "Term Group".freeze, - type: "owl:AnnotationProperty".freeze + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze property :usageNote, - comment: %(A reference to a resource that provides information on how this resource is to be used.).freeze, - isDefinedBy: "vann:".freeze, + comment: "A reference to a resource that provides information on how this resource is to be used.".freeze, + isDefinedBy: "http://purl.org/vocab/vann/".freeze, label: "Usage Note".freeze, - subPropertyOf: "rdfs:seeAlso".freeze, - type: "owl:AnnotationProperty".freeze + subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#seeAlso".freeze, + type: "http://www.w3.org/2002/07/owl#AnnotationProperty".freeze end end diff --git a/lib/vocabs/vivo.rb b/lib/vocabs/vivo.rb index 946ec456..c0874745 100644 --- a/lib/vocabs/vivo.rb +++ b/lib/vocabs/vivo.rb @@ -2,548 +2,559 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://vivoweb.org/ontology/core# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class VIVO < RDF::StrictVocabulary - # end - class VIVO < RDF::StrictVocabulary("http://vivoweb.org/ontology/core#") +module LifePreserver::Vocab + VIVO = Class.new(RDF::StrictVocabulary("http://vivoweb.org/ontology/core#")) do # Ontology definition ontology :"http://vivoweb.org/ontology/core#", label: "VIVO Core Ontology".freeze, - type: "owl:Ontology".freeze + type: "http://www.w3.org/2002/07/owl#Ontology".freeze # Class definitions term :Abstract, "http://purl.obolibrary.org/obo/IAO_0000115": "An abstract that is published as a standalone document or in a journal of abstracts".freeze, label: "Abstract".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AcademicDegree, - "http://purl.obolibrary.org/obo/IAO_0000112": ["B.A. Bachelor of Arts".freeze, "This list may have multiple abbreviations for some degrees.".freeze], - "http://purl.obolibrary.org/obo/IAO_0000115": "An academic degree at any level, both as reported by individuals for employment and as offered by academic degree programs.".freeze, + "http://purl.obolibrary.org/obo/IAO_0000112": "B.A. Bachelor of Arts".freeze, + "http://purl.obolibrary.org/obo/IAO_0000114": "http://purl.obolibrary.org/obo/IAO_0000120".freeze, + "http://purl.obolibrary.org/obo/IAO_0000115": "An academic degree at any level, both as \n reported by individuals for employment and as offered by academic degree programs.".freeze, + "http://purl.obolibrary.org/obo/IAO_0000116": "The ObjectProperty relates is used to associate an AcademicDegree with an AwardedDegree. A preferred\n approach would be to recognize the AwardedDegree as an information artifact which is the output of an AcademicDegree process.\n This would eliminate the use of relates and relatedBy in the\n representation of Academic Degrees and Awarded Degrees, provide correct subsumption, and avoid the use of vivo:Relationship. Further, we could\n rename AwardedDegree AcademicDegree (!) and rename AcademicDegree to AcademicDegreeProcess and eliminate the need for\n the EducationalProcess currently in the model.\n ".freeze, + "http://purl.obolibrary.org/obo/IAO_0000117": "PERSON: Michael Conlon".freeze, + "http://purl.obolibrary.org/obo/IAO_0000119": "Merriam Webster (https://www.merriam-webster.com/dictionary/degree)".freeze, label: "Academic Degree".freeze, - subClassOf: ["skos:Concept".freeze, term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "vivo:abbreviation".freeze, - type: "owl:Restriction".freeze + subClassOf: [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#nonNegativeInteger".freeze, + onProperty: "http://vivoweb.org/ontology/core#abbreviation".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:abbreviation".freeze, - "owl:minQualifiedCardinality": "1".freeze, - "owl:onDataRange": "xsd:nonNegativeInteger".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://vivoweb.org/ontology/core#abbreviation".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 :AcademicDepartment, "http://purl.obolibrary.org/obo/IAO_0000112": "Endodontics (department within a College of Dentistry); English (department within a College of Liberal Arts)".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A distinct, usually specialized educational unit within an educational organization.".freeze, label: "Academic Department".freeze, - subClassOf: "vivo:Department".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Department".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AcademicTerm, "http://purl.obolibrary.org/obo/IAO_0000115": "An explicit individual academic term, quarter, or semester rather than the generic fall, spring or summer semester.".freeze, label: "Academic Term".freeze, - subClassOf: "vivo:DateTimeInterval".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#DateTimeInterval".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AcademicYear, "http://purl.obolibrary.org/obo/IAO_0000115": "An explicit individual period considered by an academic institution to be its primary academic cycle.".freeze, label: "Academic Year".freeze, - subClassOf: "vivo:DateTimeInterval".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#DateTimeInterval".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AdministratorRole, label: "Administrator Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AdviseeRole, label: "Advisee Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AdvisingProcess, label: "Advising Process".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000015".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AdvisingRelationship, "http://purl.obolibrary.org/obo/IAO_0000115": "A dual relationship of one person being advised or mentored by another person, typically including start and end dates".freeze, label: "Advising Relationship".freeze, - subClassOf: ["vivo:Relationship".freeze, term( - allValuesFrom: "owl:Thing".freeze, - onProperty: "vivo:hasSubjectArea".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://vivoweb.org/ontology/core#Relationship".freeze, term( + allValuesFrom: "http://vivoweb.org/ontology/core#DateTimeInterval".freeze, + onProperty: "http://vivoweb.org/ontology/core#dateTimeInterval".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:DateTimeInterval".freeze, - onProperty: "vivo:dateTimeInterval".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2002/07/owl#Thing".freeze, + onProperty: "http://vivoweb.org/ontology/core#hasSubjectArea".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "foaf:Person".freeze, - type: "owl:Restriction".freeze + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://vivoweb.org/ontology/core#AdviseeRole".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "vivo:AdviseeRole".freeze, - type: "owl:Restriction".freeze + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://vivoweb.org/ontology/core#AdvisorRole".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "vivo:AdvisorRole".freeze, - type: "owl:Restriction".freeze + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://xmlns.com/foaf/0.1/Person".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 :AdvisorRole, label: "Advisor Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Association, "http://purl.obolibrary.org/obo/IAO_0000112": "Special Libraries Association; Association for Computing Machinery(ACM); American Medical Informatics Association(AMIA)".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": ["A formal organization of people or groups of people around a subject or practice.".freeze, "A group of persons or organizations organized for a common purpose.".freeze], label: "Association".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AttendeeRole, "http://purl.obolibrary.org/obo/IAO_0000115": "A role of attending an Event or EventSeries".freeze, label: "Attendee Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AttendingProcess, label: "Attending Process".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000015".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Authorship, - comment: %().freeze, + comment: "".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": ["Authorship of journal articles, books and other original works is a means by which academics communicate the results of their scholarly work, establish priority for their discoveries, and build their reputation among their peers.\nThis class allows for linking an author to a publication while indicating information about that author's authorship.".freeze, "Currently any abstract name is given to members of this class. This could change in the future.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "Contains the authors name, their rank in the publication, and whether or not they are a corresponding author on the publication.".freeze, label: "Authorship".freeze, - subClassOf: ["vivo:Relationship".freeze, term( - allValuesFrom: "xsd:boolean".freeze, - onProperty: "vivo:hideFromDisplay".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://vivoweb.org/ontology/core#Relationship".freeze, term( + allValuesFrom: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + onProperty: "http://vivoweb.org/ontology/core#hideFromDisplay".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "foaf:Agent".freeze, - type: "owl:Restriction".freeze - ), term( - onProperty: "vivo:relates".freeze, + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, someValuesFrom: "http://purl.obolibrary.org/obo/IAO_0000030".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ), term( + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://xmlns.com/foaf/0.1/Agent".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 :Award, - "http://purl.obolibrary.org/obo/IAO_0000112": ["An Award or Honor".freeze, "Wiley Prize in Biomedical Sciences".freeze], - "http://purl.obolibrary.org/obo/IAO_0000115": "An Award or Honor".freeze, + "http://purl.obolibrary.org/obo/IAO_0000112": "The Wiley Prize in Biomedicine is awarded each year to a researcher for outstanding\n contributions to biomedicine.".freeze, + "http://purl.obolibrary.org/obo/IAO_0000114": "http://purl.obolibrary.org/obo/IAO_0000120".freeze, + "http://purl.obolibrary.org/obo/IAO_0000115": "A recognition of outstanding work or action.".freeze, + "http://purl.obolibrary.org/obo/IAO_0000116": "The ObjectProperty relates is used to associate an Award with an AwardReceipt. A preferred\n approach would be to recognize the AwardReceipt as an information artifact which is the output of the Award process.\n The award receipt is about the recipient of the award. This would eliminate the use of relates and relatedBy in the\n representation of Awards and AwardReceipts, provide correct subsumption, and avoid the use of vivo:Relationship. We\n could then rename AwardReceipt to Award (!) and Award to AwardProcess to reflect their natures (this is why ontologies use numbered \n class names -- to avoid renaming)\n ".freeze, + "http://purl.obolibrary.org/obo/IAO_0000117": "PERSON: Michael Conlon".freeze, + "http://purl.obolibrary.org/obo/IAO_0000119": "Merriam Webster (https://www.merriam-webster.com/dictionary/award)".freeze, label: "Award or Honor".freeze, - subClassOf: "skos:Concept".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :AwardReceipt, "http://purl.obolibrary.org/obo/IAO_0000112": "The award bestowed may be represented with the Award class.".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "The bestowal of an award, honor, or distinction to a person or person's at a particular time. ".freeze, label: "Award or Honor Receipt".freeze, - subClassOf: ["vivo:Relationship".freeze, term( - allValuesFrom: "foaf:Organization".freeze, - onProperty: "vivo:assignedBy".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://vivoweb.org/ontology/core#Relationship".freeze, term( + allValuesFrom: "http://vivoweb.org/ontology/core#DateTimeInterval".freeze, + onProperty: "http://vivoweb.org/ontology/core#dateTimeInterval".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "vivo:description".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://vivoweb.org/ontology/core#DateTimeValue".freeze, + onProperty: "http://vivoweb.org/ontology/core#dateTimeValue".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:DateTimeInterval".freeze, - onProperty: "vivo:dateTimeInterval".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://vivoweb.org/ontology/core#description".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:DateTimeValue".freeze, - onProperty: "vivo:dateTimeValue".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://xmlns.com/foaf/0.1/Organization".freeze, + onProperty: "http://vivoweb.org/ontology/core#assignedBy".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "foaf:Agent".freeze, - type: "owl:Restriction".freeze + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://vivoweb.org/ontology/core#Award".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "vivo:Award".freeze, - type: "owl:Restriction".freeze + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://xmlns.com/foaf/0.1/Agent".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 :AwardedDegree, "http://purl.obolibrary.org/obo/IAO_0000115": "The awarding of a degree by an agent to another agent. It is mostly for academic degrees.".freeze, label: "Awarded Degree".freeze, - subClassOf: ["vivo:Relationship".freeze, term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "foaf:Person".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://vivoweb.org/ontology/core#Relationship".freeze, term( + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://vivoweb.org/ontology/core#AcademicDegree".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "vivo:AcademicDegree".freeze, - type: "owl:Restriction".freeze + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://xmlns.com/foaf/0.1/Person".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 :Blog, "http://purl.obolibrary.org/obo/IAO_0000112": ["Blog is short for weblog. ".freeze, "Library of Congress Blog".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "Regularly updated online journal or newsletter by one or more writers, called bloggers, containing articles and commentary of interest to the blogger".freeze, label: "Blog".freeze, - subClassOf: "bibo:Website".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/Website".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :BlogPosting, "http://purl.obolibrary.org/obo/IAO_0000112": "A specific blog posting".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "An online article or commentary appearing on a blog".freeze, label: "Blog Posting".freeze, - subClassOf: ["bibo:Article".freeze, term( - allValuesFrom: "vivo:Blog".freeze, - onProperty: "vivo:hasPublicationVenue".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Article".freeze, term( + allValuesFrom: "http://vivoweb.org/ontology/core#Blog".freeze, + onProperty: "http://vivoweb.org/ontology/core#hasPublicationVenue".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 :Building, "http://purl.obolibrary.org/obo/IAO_0000112": ["Enter building name. If the building's name is a number (as in many governmental organizations such as national laboratories and military bases), then enter it. Do not confuse with the number that appears in a postal address.".freeze, "Martha Van Rensselaer Hall (VR); Caldwell Hall (CD); University Auditorium".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "Building that provides a particular service or is used for a particular activity.".freeze, label: "Building".freeze, - subClassOf: ["vivo:Facility".freeze, term( - allValuesFrom: "vivo:Facility".freeze, + subClassOf: ["http://vivoweb.org/ontology/core#Facility".freeze, term( + allValuesFrom: "http://vivoweb.org/ontology/core#Facility".freeze, onProperty: "http://purl.obolibrary.org/obo/BFO_0000050".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:Room".freeze, + allValuesFrom: "http://vivoweb.org/ontology/core#Room".freeze, onProperty: "http://purl.obolibrary.org/obo/BFO_0000051".freeze, - type: "owl:Restriction".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 :Campus, "http://purl.obolibrary.org/obo/IAO_0000112": ["Cornell Ithaca; Cornell Geneva; Cornell New York City; Cornell Qatar".freeze, "Definition taken from dictionary.com (http://dictionary.reference.com/browse/campus).".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "The grounds of a school, college, university, or hospital. Or, a large, usually suburban, landscaped business or industrial site.".freeze, label: "Campus".freeze, - subClassOf: "vivo:GeographicLocation".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#GeographicLocation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CaseStudy, "http://purl.obolibrary.org/obo/IAO_0000112": "A form of qualitative descriptive research that is used to study individuals, a small group of participants, or a group as a whole. Medical usage (from MeSH): clinical presentations that may be followed by evaluative studies that eventually lead to a diagnosis. ".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A qualitative descriptive research study of individuals or a group".freeze, label: "Case Study".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Catalog, "http://purl.obolibrary.org/obo/IAO_0000112": ["NLM Catalog".freeze, "Short Definition is the Medical Subject Heading (MeSH) definition ".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A list of items in a collection; an ordered compilation of item descriptions and sufficient information to afford access to them".freeze, label: "Catalog".freeze, - subClassOf: ["bibo:Document".freeze, term( - allValuesFrom: "foaf:Organization".freeze, - onProperty: "vivo:publisher".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Document".freeze, term( + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://vivoweb.org/ontology/core#placeOfPublication".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "vivo:placeOfPublication".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://xmlns.com/foaf/0.1/Organization".freeze, + onProperty: "http://vivoweb.org/ontology/core#publisher".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 :Center, "http://purl.obolibrary.org/obo/IAO_0000112": ["Alchohol Education Center; Center for Arts and Public Policy; Hearing Research Center".freeze, "Short Definition take from http://www.thefreedictionary.com/center.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": ["A place where a particular activity or service is concentrated.".freeze, "An organization where a specified activity is concentrated.".freeze], label: "Center".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Certificate, "http://purl.obolibrary.org/obo/IAO_0000112": "A document confirming certain characteristics of a person or organization, usually provided by some form of external review, education, or assessment.".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A document confirming certain characteristics of a person or organization, usually provided by some form of external review, education, or assessment.".freeze, label: "Certificate".freeze, - subClassOf: "vivo:Credential".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Credential".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Certification, "http://purl.obolibrary.org/obo/IAO_0000112": "see also core:Certificate".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "An issued certificate".freeze, label: "Certification".freeze, - subClassOf: "vivo:IssuedCredential".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#IssuedCredential".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClinicalOrganization, "http://purl.obolibrary.org/obo/IAO_0000112": "In the future we may be able to make this a defined class that would not need to be directly asserted, but the consensus seems to be that some organizations \"are\" clinical and some \"are\" research organizations and that the distinction is important enough to warrant the additional class and class assertions".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": ["Any organization that offers significant health services or routinely provides medical care to patients.".freeze, "Any organization with a significant clinical function as a matter of course and not just through occasional clinical roles".freeze], label: "Clinical Organization".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ClinicalRole, "http://purl.obolibrary.org/obo/IAO_0000115": "A role of observing or treating patients".freeze, label: "Clinical Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :CoPrincipalInvestigatorRole, "http://purl.obolibrary.org/obo/IAO_0000115": "Role of co-principal investigator of an Agreement (for example, a grant), who devotes a specified percentage of time and is considered key personnel.".freeze, label: "Co-Principal Investigator Role".freeze, - subClassOf: "vivo:InvestigatorRole".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#InvestigatorRole".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :College, "http://purl.obolibrary.org/obo/IAO_0000112": "College of Arts & Sciences; Ivy Tech Community College".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": ["A primary academic unit within a University or a free-standing higher education organization without graduate degree programs".freeze, "A primary academic unit within a University or a free-standing higher education organization without graduate degree programs.".freeze], label: "College".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Committee, "http://purl.obolibrary.org/obo/IAO_0000112": ["Curriculum Steering Committee; PhD Advisory Committee".freeze, "There could be many subclasses such as thesis committee or tenure committee, but these may typically be differentiated via the moniker unless distinct properties become important.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": ["A group of people organized for a specific purpose (e.g., a reporting or advisory role), often with a charge and for a specific duration".freeze, "A group of people organized for a specific purpose, whose members are often selected from a larger group to serve for designated periods of time.".freeze], label: "Committee".freeze, - subClassOf: "foaf:Group".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Group".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Company, "http://purl.obolibrary.org/obo/IAO_0000112": "from Wikipedia: \"A company is a form of business organization. It is an association or collection of individual real persons and/or other companies ... This collection, group or association of persons can be made to exist in law and then a company is itself considered a \"legal person\". The name company arose because, at least originally, it represented or was owned by more than one real or legal person.\"".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": ["A legally-recognized business organization".freeze, "A legally-recognized business organization.".freeze], label: "Company".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Competition, "http://purl.obolibrary.org/obo/IAO_0000112": ["Intel Talent Search; poetry contest".freeze, "Not the same as an award or distinction.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "An occasion on which a winner is selected from among two or more contestants.".freeze, label: "Competition".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ConferencePaper, "http://purl.obolibrary.org/obo/IAO_0000115": "A paper presented at a conference; optionally collected into a Proceedings or a special Journal issue".freeze, label: "Conference Paper".freeze, - subClassOf: ["bibo:Article".freeze, term( - allValuesFrom: "bibo:Conference".freeze, - onProperty: "bibo:presentedAt".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Article".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/Conference".freeze, + onProperty: "http://purl.org/ontology/bibo/presentedAt".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 :ConferencePoster, "http://purl.obolibrary.org/obo/IAO_0000115": "The digital file (or physical equivalent), if available after the conference, vs. the act of attending/presenting: use ConferencePresentation for information about date/time/location/name of the event where the poster was presented".freeze, label: "Conference Poster".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ConferenceSeries, "http://purl.obolibrary.org/obo/IAO_0000112": "For individual, separate conferences, use conference instead. core:ConferenceSeries and core:SeminarSeries are very similar.".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "An organized series of a meeting for consultation or discussion.".freeze, label: "Conference Series".freeze, - subClassOf: "vivo:EventSeries".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#EventSeries".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Consortium, "http://purl.obolibrary.org/obo/IAO_0000112": "Committee on Institutional Cooperation (CIC); The Five Colleges of Ohio".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A group of independent organizations working together toward a common goal, under an expressed agreement.".freeze, label: "Consortium".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Continent, "http://purl.obolibrary.org/obo/IAO_0000112": ["Short Definition take from http://en.wiktionary.org/wiki/continent.".freeze, "The seven commonly recognized continents are Africa; Antarctica; Asia; Australia; Europe; North America; South America".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A large contiguous landmass that is at least partially surrounded by water, together with any islands on its continental shelf.".freeze, label: "Continent".freeze, - subClassOf: "vivo:GeographicRegion".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#GeographicRegion".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Contract, "http://purl.obolibrary.org/obo/IAO_0000115": "An agreement involving specific deliverables and payment".freeze, label: "Contract".freeze, - subClassOf: ["vivo:Relationship".freeze, term( - allValuesFrom: "foaf:Organization".freeze, - onProperty: "vivo:assignedBy".freeze, - type: "owl:Restriction".freeze - ), term( + subClassOf: ["http://vivoweb.org/ontology/core#Relationship".freeze, term( allValuesFrom: "http://purl.obolibrary.org/obo/IAO_0000030".freeze, - onProperty: "vivo:supportedInformationResource".freeze, - type: "owl:Restriction".freeze + onProperty: "http://vivoweb.org/ontology/core#supportedInformationResource".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "bibo:abstract".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://vivoweb.org/ontology/core#DateTimeInterval".freeze, + onProperty: "http://vivoweb.org/ontology/core#dateTimeInterval".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:DateTimeInterval".freeze, - onProperty: "vivo:dateTimeInterval".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://purl.org/ontology/bibo/abstract".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "foaf:Agent".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://xmlns.com/foaf/0.1/Organization".freeze, + onProperty: "http://vivoweb.org/ontology/core#assignedBy".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, someValuesFrom: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ), term( + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://xmlns.com/foaf/0.1/Agent".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 :CoreLaboratory, "http://purl.obolibrary.org/obo/IAO_0000115": "A lab providing services such as training, protocols, or access to instruments or software".freeze, label: "Core Laboratory".freeze, - subClassOf: "vivo:ServiceProvidingLaboratory".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#ServiceProvidingLaboratory".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Country, "http://purl.obolibrary.org/obo/IAO_0000112": ["Afghanistan; Antigua and Barbuda; Cameroon; Iceland; Jamaica; Nigeria; United States of America".freeze, "Source of the Short Definition: http://www.thefreedictionary.com/country. This is also the same as geopolitical.owl:self_governing.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "An area of land distinguished by its political autonomy. Politically independent territories.".freeze, label: "Country".freeze, - subClassOf: "vivo:GeopoliticalEntity".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#GeopoliticalEntity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :County, "http://purl.obolibrary.org/obo/IAO_0000112": ["Alachua; Baker; Bradford; Kenora; Ottawa; Waterloo".freeze, "Short Definition modified from the one found here: http://www.thefreedictionary.com/county.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "The largest administrative division of most states or provinces.".freeze, label: "County".freeze, - subClassOf: "vivo:GeopoliticalEntity".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#GeopoliticalEntity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Course, "http://purl.obolibrary.org/obo/IAO_0000112": "A course as taught in one time period (such as a semester; although note that a course could consist of only one meeting (teaching session)) by one or more instructors, normally but not always for credit. Does not represent either each meeting of the course or the course offering such as Biology 101 taught every semester from 1980 to 2010".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A course as taught in one time period by one or more instructors, normally but not always for credit. Does not represent either each meeting of the course or the course offering such as Biology 101 taught every semester from 1980 to 2010".freeze, label: "Course".freeze, subClassOf: ["http://purl.org/NET/c4dm/event.owl#Event".freeze, term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "vivo:courseCredits".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://vivoweb.org/ontology/core#courseCredits".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 :Credential, - "http://purl.obolibrary.org/obo/IAO_0000112": "An attestation of qualification, competence, or authority issued to an individual by a third party with a relevant or de facto authority or assumed competence to do so.".freeze, - "http://purl.obolibrary.org/obo/IAO_0000115": "An attestation of qualification, competence, or authority issued to an individual by a third party with a relevant or de facto authority or assumed competence to do so.".freeze, + "http://purl.obolibrary.org/obo/IAO_0000112": "A driver's license is the result of a credentialing process".freeze, + "http://purl.obolibrary.org/obo/IAO_0000114": "http://purl.obolibrary.org/obo/IAO_0000120".freeze, + "http://purl.obolibrary.org/obo/IAO_0000115": "An attestation of qualification, competence, or authority issued to an individual by a third \n party with a relevant or de facto authority or assumed competence to do so.".freeze, + "http://purl.obolibrary.org/obo/IAO_0000116": "The ObjectProperty relates is used to associate a Credential with an IssuedCredential. A preferred\n approach would be to recognize the IssuedCredential as an information artifact which is the output of the Credential process.\n The IssuedCredential is about the recipient of the issued credential. This would eliminate the use of relates and relatedBy in the\n representation of Credentials and IssuedCredentials, provide correct subsumption, and avoid the use of vivo:Relationship. We could\n then rename IssuedCredential to Credential (!) and Credential to CredentialingProcess which would reflect their true nature. Other\n ontologies used numbered class names to avoid the need to rename in such cases.\n ".freeze, + "http://purl.obolibrary.org/obo/IAO_0000117": "PERSON: Michael Conlon".freeze, + "http://purl.obolibrary.org/obo/IAO_0000119": "Merriam Webster (https://www.merriam-webster.com/dictionary/credential)".freeze, label: "Credential".freeze, - subClassOf: ["skos:Concept".freeze, term( - allValuesFrom: "foaf:Organization".freeze, - onProperty: "vivo:hasGoverningAuthority".freeze, - type: "owl:Restriction".freeze + subClassOf: [term( + allValuesFrom: "http://vivoweb.org/ontology/core#GeographicLocation".freeze, + onProperty: "http://vivoweb.org/ontology/core#validIn".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "owl:Thing".freeze, - onProperty: "vivo:hasSubjectArea".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2002/07/owl#Thing".freeze, + onProperty: "http://vivoweb.org/ontology/core#hasSubjectArea".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:GeographicLocation".freeze, - onProperty: "vivo:validIn".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://xmlns.com/foaf/0.1/Organization".freeze, + onProperty: "http://vivoweb.org/ontology/core#hasGoverningAuthority".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 :Database, "http://purl.obolibrary.org/obo/IAO_0000112": ["PubMed".freeze, "Short Definition is the Medical Subject Heading (MeSH) definition".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A structured file of information or a set of logically related data stored and retrieved using computer-based means".freeze, label: "Database".freeze, - subClassOf: ["bibo:CollectedDocument".freeze, term( - allValuesFrom: "foaf:Organization".freeze, - onProperty: "vivo:publisher".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/CollectedDocument".freeze, term( + allValuesFrom: "http://xmlns.com/foaf/0.1/Organization".freeze, + onProperty: "http://vivoweb.org/ontology/core#publisher".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, "http://purl.obolibrary.org/obo/IAO_0000112": "US Patent Data; US Job Data".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A named collection of data, usually containing only one type of data".freeze, label: "Dataset".freeze, - subClassOf: ["bibo:Document".freeze, term( - allValuesFrom: "bibo:Document".freeze, + subClassOf: ["http://purl.org/ontology/bibo/Document".freeze, term( + allValuesFrom: "http://purl.org/ontology/bibo/Document".freeze, onProperty: "http://purl.org/spar/cito/isCitedAsDataSourceBy".freeze, - type: "owl:Restriction".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 :DateTimeInterval, "http://purl.obolibrary.org/obo/IAO_0000115": "a specific period or duration, defined by (optional) start and end date/times.".freeze, label: "Date/Time Interval".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000038".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DateTimeValue, "http://purl.obolibrary.org/obo/IAO_0000115": "A date and/or time".freeze, label: "Date/Time Value".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000148".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :DateTimeValuePrecision, - "http://purl.obolibrary.org/obo/IAO_0000115": "Indicates the precision of the value of a DateTimeValue instance.".freeze, - label: "Date/Time Value Precision".freeze, - subClassOf: "skos:Concept".freeze, - type: "owl:Class".freeze + "http://purl.obolibrary.org/obo/IAO_0000112": "A dateTimeValue may have yearDateTimePrecision indicating that only the year is known.".freeze, + "http://purl.obolibrary.org/obo/IAO_0000114": "http://purl.obolibrary.org/obo/IAO_0000120".freeze, + "http://purl.obolibrary.org/obo/IAO_0000115": "The precision of a DateTimeValue".freeze, + "http://purl.obolibrary.org/obo/IAO_0000116": "DateTimeValuePrecisions are represented as individuals of this class.".freeze, + "http://purl.obolibrary.org/obo/IAO_0000117": "PERSON: Michael Conlon".freeze, + label: "DateTime Value Precision".freeze, + subClassOf: "http://purl.obolibrary.org/obo/BFO_0000019".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Department, "http://purl.obolibrary.org/obo/IAO_0000112": ["Definition modified from the definition here: http://dictionary.reference.com/browse/department. It is difficult to tell the difference between and department and a division.".freeze, "Legal (department within a company); Use for any non-academic department".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A unit within a larger organization that addresses a specific subject or area of activity.".freeze, label: "Department".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Division, "http://purl.obolibrary.org/obo/IAO_0000112": ["Cardiovascular Medicine (division within medicine)".freeze, "Definition modified from http://www.thefreedictionary.com/division. It is difficult to tell the difference between a division and a department.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A major unit or section within a larger organization.".freeze, label: "Division".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EditorRole, "http://purl.obolibrary.org/obo/IAO_0000112": "An ongoing editorial responsibility for a bibo:Collection, such as a Journal or Series".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "An ongoing editorial responsibility for a bibo:Collection, such as a Journal or Series".freeze, label: "Editor Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EditorialArticle, "http://purl.obolibrary.org/obo/IAO_0000115": "An article of opinion, typically published in a newspaper. For academics, most commonly Op Ed pieces".freeze, label: "Editorial Article".freeze, - subClassOf: "bibo:Article".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/Article".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Editorship, "http://purl.obolibrary.org/obo/IAO_0000115": "A relationship that represents the recognition of an agent as an editor.".freeze, label: "Editorship".freeze, - subClassOf: ["vivo:Relationship".freeze, term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "foaf:Agent".freeze, - type: "owl:Restriction".freeze - ), term( - onProperty: "vivo:relates".freeze, + subClassOf: ["http://vivoweb.org/ontology/core#Relationship".freeze, term( + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, someValuesFrom: "http://purl.obolibrary.org/obo/IAO_0000030".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ), term( + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://xmlns.com/foaf/0.1/Agent".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 :EducationalProcess, "http://purl.obolibrary.org/obo/IAO_0000112": "Currently any abstract name is given to individuals of this class. This could change in the future.".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "Represents educational training that has been received.".freeze, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "This connects person to their academic degree through this educational training, but can also be used when the training does not result in a degree.".freeze, label: "Educational Process".freeze, subClassOf: ["http://purl.obolibrary.org/obo/BFO_0000015".freeze, term( - allValuesFrom: "vivo:DateTimeInterval".freeze, - onProperty: "vivo:dateTimeInterval".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://vivoweb.org/ontology/core#DateTimeInterval".freeze, + onProperty: "http://vivoweb.org/ontology/core#dateTimeInterval".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "xsd:string".freeze, - onProperty: "vivo:supplementalInformation".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2001/XMLSchema#string".freeze, + onProperty: "http://vivoweb.org/ontology/core#supplementalInformation".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 :EmeritusFaculty, "http://purl.obolibrary.org/obo/IAO_0000115": "A retired faculty member who has retained their rank, title and privileges.".freeze, label: "Faculty Member Emeritus".freeze, - subClassOf: "foaf:Person".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EmeritusLibrarian, "http://purl.obolibrary.org/obo/IAO_0000115": "A retired librarian who has retained their rank, title and privileges.".freeze, label: "Librarian Emeritus".freeze, - subClassOf: "foaf:Person".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :EmeritusProfessor, "http://purl.obolibrary.org/obo/IAO_0000115": "A retired professor who has retained their rank, title and privileges.".freeze, label: "Professor Emeritus".freeze, - subClassOf: ["foaf:Person".freeze, "vivo:EmeritusFaculty".freeze], - type: "owl:Class".freeze + subClassOf: ["http://vivoweb.org/ontology/core#EmeritusFaculty".freeze, "http://xmlns.com/foaf/0.1/Person".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Equipment, "http://purl.obolibrary.org/obo/IAO_0000112": ["A network server is one example. Medical schools and research laboratories can list professional equipment, such as microscopes.".freeze, "server; Bruker Vector-33 FT-IR".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A physical object provided for specific purpose, task or occupation. ".freeze, label: "Equipment".freeze, subClassOf: ["http://purl.obolibrary.org/obo/BFO_0000040".freeze, term( - allValuesFrom: "xsd:string".freeze, - onProperty: "vivo:freetextKeyword".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2001/XMLSchema#string".freeze, + onProperty: "http://vivoweb.org/ontology/core#freetextKeyword".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 :EventSeries, "http://purl.obolibrary.org/obo/IAO_0000112": ["A generic class which may include a conference series, a course section, a seminar series, or a workshop series. When possible, use one of these more specific classes.".freeze, "Only use if no specific subclasses of core:EventSeries desribe the activity.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "Two or more events that occur at different times and are connected to each other.".freeze, label: "Event Series".freeze, subClassOf: ["http://purl.obolibrary.org/obo/BFO_0000015".freeze, term( - allValuesFrom: "owl:Thing".freeze, - onProperty: "vivo:hasSubjectArea".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://vivoweb.org/ontology/core#DateTimeInterval".freeze, + onProperty: "http://vivoweb.org/ontology/core#dateTimeInterval".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "vivo:contactInformation".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://vivoweb.org/ontology/core#contactInformation".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "vivo:description".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://vivoweb.org/ontology/core#description".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:DateTimeInterval".freeze, - onProperty: "vivo:dateTimeInterval".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2002/07/owl#Thing".freeze, + onProperty: "http://vivoweb.org/ontology/core#hasSubjectArea".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 :Exhibit, "http://purl.obolibrary.org/obo/IAO_0000115": "The showing of an object or a collection of objects, in an organized manner.".freeze, label: "Exhibit".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ExtensionUnit, "http://purl.obolibrary.org/obo/IAO_0000112": "Alachua County Extension Office".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": ["A unit devoted primarily to extension activities, whether for outreach or research".freeze, "A unit devoted primarily to extension activities, whether for outreach or research.".freeze], label: "Extension Unit".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :F1000Link, "http://purl.obolibrary.org/obo/IAO_0000112": "F1000 is a place where faculty go to critique papers published in PubMed. Any given record in F1000 might have anywhere from one to dozens of reviews.".freeze, label: "F1000 Link".freeze, - subClassOf: "vcard:URL".freeze, - type: "owl:Class".freeze + subClassOf: "http://www.w3.org/2006/vcard/ns#URL".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Facility, "http://purl.obolibrary.org/obo/IAO_0000112": ["Distinct from the organization that runs it; e.g., a laboratory may be an organization but may be run by another organization and only consist of facilities housing equipment or services. Can be a building or place that provides a particular service or is used for a particular activity. Use the specific Building or Room whenever possible. Short definition from http://dictionary.reference.com/browse/facility.".freeze, "Use subclasses of core:Facility subclasses instead of this class if possible".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "Something designed, built, installed, etc., to serve a specific function or activity affording a convenience or service.".freeze, @@ -551,1118 +562,1123 @@ class VIVO < RDF::StrictVocabulary("http://vivoweb.org/ontology/core#") subClassOf: ["http://purl.obolibrary.org/obo/BFO_0000029".freeze, term( allValuesFrom: "http://purl.obolibrary.org/obo/BFO_0000029".freeze, onProperty: "http://purl.obolibrary.org/obo/BFO_0000050".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:Facility".freeze, + allValuesFrom: "http://vivoweb.org/ontology/core#Facility".freeze, onProperty: "http://purl.obolibrary.org/obo/BFO_0000051".freeze, - type: "owl:Restriction".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 :FacultyAdministrativePosition, "http://purl.obolibrary.org/obo/IAO_0000112": ["Associate Dean".freeze, "That is a position held by an academic faculty member who works for administration.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "An academic administrative position (associate dean, etc.) as distinct from a professional administrative position (non-academic)".freeze, label: "Faculty Administrative Position".freeze, - subClassOf: "vivo:Position".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Position".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FacultyMember, "http://purl.obolibrary.org/obo/IAO_0000115": "A person with at least one academic appointment to a specific faculty of a university or institution of higher learning.".freeze, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "Definition from here: http://research.carleton.ca/htr/defs.php.".freeze, label: "Faculty Member".freeze, - subClassOf: "foaf:Person".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FacultyMentoringRelationship, "http://purl.obolibrary.org/obo/IAO_0000115": "An advisory relationship in which one faculty member mentors another faculty member.".freeze, label: "Faculty Mentoring Relationship".freeze, - subClassOf: "vivo:AdvisingRelationship".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#AdvisingRelationship".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FacultyPosition, "http://purl.obolibrary.org/obo/IAO_0000112": ["Professor, associate professor and assistant professor are common positions for academic faculty.".freeze, "Professor; Associate Professor; Assistant Professor".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "Academic position in a university or institution".freeze, label: "Faculty Position".freeze, - subClassOf: "vivo:Position".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Position".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Foundation, "http://purl.obolibrary.org/obo/IAO_0000112": ["Definition take from: http://dictionary.reference.com/browse/foundation.".freeze, "The Ford Foundation".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "An institution founded with an endowment to support educational, research, artistic or other charitable activities.".freeze, label: "Foundation".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :FundingOrganization, equivalentClass: term( - onProperty: "vivo:assigns".freeze, - someValuesFrom: "vivo:Grant".freeze, - type: "owl:Restriction".freeze + onProperty: "http://vivoweb.org/ontology/core#assigns".freeze, + someValuesFrom: "http://vivoweb.org/ontology/core#Grant".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), "http://purl.obolibrary.org/obo/IAO_0000112": "National Institute of Health (NIH)".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": ["A defined class of organizations that fund Grants".freeze, "An organization that provides financial support to individuals or organizations to carry out specified activities.".freeze], label: "Funding Organization".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GeographicLocation, "http://purl.obolibrary.org/obo/IAO_0000112": ["Removed the word \"stable\" because disputed territories from geopolitical.owl are included. This could imply that the geographic coordinates could change. I've also copied this definition to core:Geographic Location. I think core:Geographic Location and core:Geographic Region are both the same and only one is needed. There is also geopolitical.owl:geographical_region which further causes confusion.".freeze, "Use subclasses of core:Geographic Location subclasses instead of this class if possible.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A location having coordinates in geographic space.".freeze, label: "Geographic Location".freeze, - subClassOf: ["vivo:Location".freeze, term( - allValuesFrom: "vivo:GeographicLocation".freeze, + subClassOf: ["http://vivoweb.org/ontology/core#Location".freeze, term( + allValuesFrom: "http://vivoweb.org/ontology/core#GeographicLocation".freeze, onProperty: "http://purl.obolibrary.org/obo/BFO_0000050".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:GeographicLocation".freeze, + allValuesFrom: "http://vivoweb.org/ontology/core#GeographicLocation".freeze, onProperty: "http://purl.obolibrary.org/obo/BFO_0000051".freeze, - type: "owl:Restriction".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 :GeographicRegion, "http://purl.obolibrary.org/obo/IAO_0000112": ["Removed the word \"stable\" because disputed territories from geopolitical.owl are included. This could imply that the geographic coordinates could change. This definition was originally in core:Geographic Location. I simply copied the definition from there. I think core:Geographic Location and core:Geographic Region are both the same and only one is needed. There is also geopolitical.owl:geographical_region which further causes confusion.".freeze, "Use subclasses of core:Geographic Region subclasses instead of this class if possible.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A location having coordinates in geographic space.".freeze, label: "Geographic Region".freeze, - subClassOf: "vivo:GeographicLocation".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#GeographicLocation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GeopoliticalEntity, "http://purl.obolibrary.org/obo/IAO_0000112": ["Short definition obtained here: http://en.wiktionary.org/wiki/geopolitical_entity.".freeze, "Use subclasses of core:GeopoliticalEntity subclasses instead of this class if possible.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A geographical area which is associated with some sort of political structure.".freeze, label: "Geopolitical Entity".freeze, - subClassOf: "vivo:GeographicRegion".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#GeographicRegion".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GovernmentAgency, "http://purl.obolibrary.org/obo/IAO_0000112": ["Definition take from: http://en.wikipedia.org/wiki/Government_agency.".freeze, "United States Library of Congress".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A unit of government responsible for oversight and regulation of certain activities or the administration and provision of specific services.".freeze, label: "Government Agency".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GraduateAdvisingRelationship, "http://purl.obolibrary.org/obo/IAO_0000115": "An advisory relationship in which a professor advises a graduate student.".freeze, label: "Graduate Advising Relationship".freeze, - subClassOf: "vivo:AdvisingRelationship".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#AdvisingRelationship".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :GraduateStudent, "http://purl.obolibrary.org/obo/IAO_0000115": "A person who has already received a bachelor's degree and is working toward a Master's or Doctoral degree.".freeze, label: "Graduate Student".freeze, - subClassOf: "vivo:Student".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Student".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Grant, "http://purl.obolibrary.org/obo/IAO_0000112": ["An intramural or extramural award to support scholarly work, such as UF09179 (VIVO)".freeze, "Short definition is from the Glossary of NIH Terms.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "Financial assistance mechanism providing money, property, or both to an eligible entity to carry out an approved project or activity".freeze, label: "Grant".freeze, - subClassOf: ["vivo:Relationship".freeze, term( - allValuesFrom: "foaf:Organization".freeze, - onProperty: "vivo:assignedBy".freeze, - type: "owl:Restriction".freeze - ), term( + subClassOf: ["http://vivoweb.org/ontology/core#Relationship".freeze, term( allValuesFrom: "http://purl.obolibrary.org/obo/IAO_0000030".freeze, - onProperty: "vivo:supportedInformationResource".freeze, - type: "owl:Restriction".freeze + onProperty: "http://vivoweb.org/ontology/core#supportedInformationResource".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "bibo:abstract".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://vivoweb.org/ontology/core#DateTimeInterval".freeze, + onProperty: "http://vivoweb.org/ontology/core#dateTimeInterval".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:DateTimeInterval".freeze, - onProperty: "vivo:dateTimeInterval".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://purl.org/ontology/bibo/abstract".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "foaf:Agent".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://xmlns.com/foaf/0.1/Organization".freeze, + onProperty: "http://vivoweb.org/ontology/core#assignedBy".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, someValuesFrom: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Restriction".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ), term( + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://xmlns.com/foaf/0.1/Agent".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 :Hospital, "http://purl.obolibrary.org/obo/IAO_0000112": ["Definition take from: http://dictionary.reference.com/browse/hospital.".freeze, "Shands at the University of Florida".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "An institution that provides medical, surgical, psychiatric or nursing care.".freeze, label: "Hospital".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Institute, "http://purl.obolibrary.org/obo/IAO_0000112": "Institute for Fundamental Theory".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": ["An Institute normally has a research focus but may also fulfill instructional or outreach roles".freeze, "An organization founded to pursue or promote certain research, educational or public policy interests or activities.".freeze], label: "Institute".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Internship, "http://purl.obolibrary.org/obo/IAO_0000115": "Typically a student or a recent graduate undergoing supervised practical training.".freeze, label: "Internship".freeze, - subClassOf: "vivo:EducationalProcess".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#EducationalProcess".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :InvestigatorRole, "http://purl.obolibrary.org/obo/IAO_0000115": "A role in an Agreement (for example, a grant) as a named investigator or key personnel.".freeze, label: "Investigator Role".freeze, - subClassOf: "vivo:ResearcherRole".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#ResearcherRole".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :InvitedTalk, label: "Invited Talk".freeze, - subClassOf: "vivo:Presentation".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Presentation".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :IssuedCredential, label: "Issued Credential".freeze, - subClassOf: ["vivo:Relationship".freeze, term( - allValuesFrom: "owl:Thing".freeze, - onProperty: "vivo:hasSubjectArea".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://vivoweb.org/ontology/core#Relationship".freeze, term( + allValuesFrom: "http://vivoweb.org/ontology/core#DateTimeValue".freeze, + onProperty: "http://vivoweb.org/ontology/core#dateIssued".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "vivo:description".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://vivoweb.org/ontology/core#DateTimeValue".freeze, + onProperty: "http://vivoweb.org/ontology/core#expirationDate".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:DateTimeValue".freeze, - onProperty: "vivo:dateIssued".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://vivoweb.org/ontology/core#GeographicLocation".freeze, + onProperty: "http://vivoweb.org/ontology/core#validIn".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:DateTimeValue".freeze, - onProperty: "vivo:expirationDate".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://vivoweb.org/ontology/core#description".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:GeographicLocation".freeze, - onProperty: "vivo:validIn".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2002/07/owl#Thing".freeze, + onProperty: "http://vivoweb.org/ontology/core#hasSubjectArea".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "foaf:Agent".freeze, - type: "owl:Restriction".freeze + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://vivoweb.org/ontology/core#Credential".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "vivo:Credential".freeze, - type: "owl:Restriction".freeze + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://xmlns.com/foaf/0.1/Agent".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 :Laboratory, "http://purl.obolibrary.org/obo/IAO_0000115": ["An organization unit that facilitates or conduits observation, testing, experimentation, or research in a field of study or practice.".freeze, "An organizational unit (as opposed to the physical facility) that performs research, provides services, or processes materials".freeze], label: "Laboratory".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LeaderRole, "http://purl.obolibrary.org/obo/IAO_0000112": "A broad-ranging leader concept, from leading a small temporary committee to head of a large international organization.".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A leadership role".freeze, label: "Leader Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Librarian, "http://purl.obolibrary.org/obo/IAO_0000115": "A person working in a position of librarian or information professional, or academic or technical expert in support of providing information services or materials.".freeze, label: "Librarian".freeze, - subClassOf: "foaf:Person".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :LibrarianPosition, "http://purl.obolibrary.org/obo/IAO_0000112": ["It is the common position in libraries.".freeze, "Librarian; Library Systems Analyst; Music Bibliographer".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A position held by library and information science professionals, or academic or technical experts, in support of providing information services or materials".freeze, label: "Librarian Position".freeze, - subClassOf: "vivo:Position".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Position".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Library, "http://purl.obolibrary.org/obo/IAO_0000112": ["Marston Science Library".freeze, "Used information from this definition: http://dictionary.reference.com/browse/library.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "An organization maintaining one or more collections of physical and/or electronic information resources for access or lending.".freeze, label: "Library".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :License, "http://purl.obolibrary.org/obo/IAO_0000112": "Licenses are usually issued in order to regulate some activity that is deemed to be dangerous or a threat to the person or the public or which involves a high level of specialized skill. See also core:Licensure.".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "Official or legal permission to do something".freeze, label: "License".freeze, - subClassOf: "vivo:Credential".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Credential".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Licensure, "http://purl.obolibrary.org/obo/IAO_0000112": "A granted license, which gives a 'permission to practice.' Such licenses are usually issued in order to regulate some activity that is deemed to be dangerous or a threat to the person or the public or which involves a high level of specialized skill. See also core:License.".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A granted license, which gives a 'permission to practice.'".freeze, label: "Licensure".freeze, - subClassOf: "vivo:IssuedCredential".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#IssuedCredential".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Location, "http://purl.obolibrary.org/obo/IAO_0000112": ["It's anticipated that the subclasses will be used when classifying items. And, all locations can be viewable via this class.".freeze, "Use subclasses of core:Location when classsifying items.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "Top level of all location classes.".freeze, label: "Location".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000006".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MedicalResidency, "http://purl.obolibrary.org/obo/IAO_0000115": "Residency is a stage of graduate medical training. ".freeze, label: "Medical Residency".freeze, - subClassOf: "vivo:EducationalProcess".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#EducationalProcess".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Meeting, "http://purl.obolibrary.org/obo/IAO_0000115": "A gathering of people for a defined purpose, not necessarily public or announced".freeze, label: "Meeting".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :MemberRole, "http://purl.obolibrary.org/obo/IAO_0000115": "A role of being a member in a Process or an Organization".freeze, label: "Member Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Museum, "http://purl.obolibrary.org/obo/IAO_0000112": ["Definition was take from here: http://dictionary.reference.com/browse/museum".freeze, "The Getty Museum".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "An organization devoted to the acquisition, conservation, study, exhibition, and educational interpretation of objects having scientific, historical, cultural or artistic value.".freeze, label: "Museum".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NewsRelease, "http://purl.obolibrary.org/obo/IAO_0000115": "A short written piece focused on an event or announcement of note, having a defined publication time and of less enduring interest than a news feature.".freeze, label: "News Release".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Newsletter, "http://purl.obolibrary.org/obo/IAO_0000112": "The Ornithological Newsletter".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "Usually issued periodically, prepared by or for a group or institution to present information to a specific audience, often also made available to the press and public".freeze, label: "Newsletter".freeze, - subClassOf: "bibo:Periodical".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/Periodical".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NonAcademic, "http://purl.obolibrary.org/obo/IAO_0000115": "A person holding a position that is not considered to be an academic appointment.".freeze, label: "Non-Academic".freeze, - subClassOf: "foaf:Person".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NonAcademicPosition, "http://purl.obolibrary.org/obo/IAO_0000112": ["Accounting & Research Services Assistant; Director of Information Technology".freeze, "Staff, support, and other non-academic positions.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A position classified as professional, staff, support, or any other non-academic role".freeze, label: "Non-Academic Position".freeze, - subClassOf: "vivo:Position".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Position".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NonFacultyAcademic, "http://purl.obolibrary.org/obo/IAO_0000115": "A person not considered a faculty member but holding an academic appointment.".freeze, label: "Non-Faculty Academic".freeze, - subClassOf: "foaf:Person".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :NonFacultyAcademicPosition, "http://purl.obolibrary.org/obo/IAO_0000112": ["Researcher; Academic Extension Associate; Postdoctoral Associate".freeze, "Those positions are held by people who do academic work but do not have faculty positions in universities or institutes.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A position involving academic work but without faculty status".freeze, label: "Non-Faculty Academic Position".freeze, - subClassOf: "vivo:Position".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Position".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :OrganizerRole, "http://purl.obolibrary.org/obo/IAO_0000115": "A role of organizing".freeze, label: "Organizer Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :OrganizingProcess, label: "Organizing Process".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000015".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :OutreachProviderRole, "http://purl.obolibrary.org/obo/IAO_0000112": ["Communicating Astronomy to the Public".freeze, "The example is one outreach role required by US space agency NASA, which is related with one project in NASA. Name of the outreach role should be put here.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "An outreach or community service role directed outside a person's primary profession and institution".freeze, label: "Outreach Provider Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PeerReviewerRole, "http://purl.obolibrary.org/obo/IAO_0000112": "is a generic term for a process of self-regulation by a profession or a process of evaluation involving qualified individuals within the relevant field. Peer review methods are employed to maintain standards, improve performance and provide credibility. In academia the term is often used to denote a prepublication review of academic papers; reviewing an academic paper is often called refereeing.\nContents\n[hide]".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A role of peer reviewing".freeze, label: "Peer Reviewer Role".freeze, - subClassOf: "vivo:ReviewerRole".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#ReviewerRole".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PopulatedPlace, "http://purl.obolibrary.org/obo/IAO_0000115": "Either city or town - a thickly populated area having fixed boundaries and certain local powers of government.".freeze, label: "Populated Place".freeze, - subClassOf: "vivo:GeopoliticalEntity".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#GeopoliticalEntity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Position, "http://purl.obolibrary.org/obo/IAO_0000112": ["An employment activity, whether compensated or not. Short definition comes from http://en.wikipedia.org/wiki/Position, and has been modified.".freeze, "Director of Admissions and Placement; Associate University Librarian".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "Particular position in an organization, commonly identified by job title, and normally associated with a job description that details the tasks and responsibilities that go with the position.".freeze, label: "Position".freeze, - subClassOf: ["vivo:Relationship".freeze, term( - allValuesFrom: "vivo:DateTimeInterval".freeze, - onProperty: "vivo:dateTimeInterval".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://vivoweb.org/ontology/core#Relationship".freeze, term( + allValuesFrom: "http://vivoweb.org/ontology/core#DateTimeInterval".freeze, + onProperty: "http://vivoweb.org/ontology/core#dateTimeInterval".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "xsd:int".freeze, - onProperty: "vivo:rank".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2001/XMLSchema#int".freeze, + onProperty: "http://vivoweb.org/ontology/core#rank".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "foaf:Organization".freeze, - type: "owl:Restriction".freeze + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - onProperty: "vivo:relates".freeze, - someValuesFrom: "foaf:Person".freeze, - type: "owl:Restriction".freeze + onProperty: "http://vivoweb.org/ontology/core#relates".freeze, + someValuesFrom: "http://xmlns.com/foaf/0.1/Person".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 :Postdoc, "http://purl.obolibrary.org/obo/IAO_0000115": "A Person holding an academic employment appointment focused on research rather than teaching; temporary (or for some defined term)".freeze, label: "Postdoc".freeze, - subClassOf: "vivo:NonFacultyAcademic".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#NonFacultyAcademic".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PostdocOrFellowAdvisingRelationship, "http://purl.obolibrary.org/obo/IAO_0000115": "An advisory relationship in which the advisee is a Postdoc or Fellow.".freeze, label: "Postdoc or Fellow Advising Relationship".freeze, - subClassOf: "vivo:AdvisingRelationship".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#AdvisingRelationship".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PostdocPosition, "http://purl.obolibrary.org/obo/IAO_0000115": "A postdoctoral training appointment (job)".freeze, label: "Postdoctoral Position".freeze, - subClassOf: "vivo:NonFacultyAcademicPosition".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#NonFacultyAcademicPosition".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PostdoctoralTraining, "http://purl.obolibrary.org/obo/IAO_0000115": "Postdoctoral research is academic or scholarly research conducted by a person who has completed his or her doctoral studies, normally within the following five years. It is intended to further deepen expertise in a specialist subject.".freeze, label: "Postdoctoral Training".freeze, - subClassOf: "vivo:EducationalProcess".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#EducationalProcess".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Presentation, "http://purl.obolibrary.org/obo/IAO_0000115": "Encompasses talk, speech, lecture, slide lecture, conference presentation".freeze, label: "Presentation".freeze, subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PresenterRole, "http://purl.obolibrary.org/obo/IAO_0000112": "Are we assuming that a PresenterRole is in a Presentation? Or could you have a PresenterRole in, say, a committee?".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A role of presenting information".freeze, label: "Presenter Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PresentingProcess, label: "Presenting Process".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000015".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PrimaryPosition, "http://purl.obolibrary.org/obo/IAO_0000112": "A position designated as primary by the organization or group where it is held. This designation may be applied to zero or more of an agent's positions and may be asserted in conjunction with other subclasses of position.".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A position designated as primary by the organization where it is held.".freeze, label: "Primary Position".freeze, - subClassOf: "vivo:Position".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Position".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PrincipalInvestigatorRole, "http://purl.obolibrary.org/obo/IAO_0000115": "Role of a person to direct a project or activity being supported by an Agreement (for example, a grant), and who is accountable to the grantee for the proper conduct of the project or activity. Also known as Program Director or Project Director.".freeze, label: "Principal Investigator Role".freeze, - subClassOf: "vivo:InvestigatorRole".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#InvestigatorRole".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :PrivateCompany, "http://purl.obolibrary.org/obo/IAO_0000112": ["Definition obtained here: http://answers.ask.com/Business/Finance/what_is_a_private_company. Examples of private companies found here: http://www.forbes.com/2008/11/03/largest-private-companies-biz-privates08-cx_sr_1103private_land.html".freeze, "Publix Super Markets; Ernst & Young; PricewaterhouseCoopers".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A private company is one that is privately-owned, and thus, is not publicly-traded in the stock market. Members of the general public cannot purchase stock in a private company unless that company chooses to go public and become a public company.".freeze, label: "Private Company".freeze, - subClassOf: "vivo:Company".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Company".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Program, "http://purl.obolibrary.org/obo/IAO_0000112": "A Cornell graduate field (http://vivo.cornell.edu/index.jsp?home=65535&collection=820)".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "An ongoing academic initiative not formalized with department or division status.".freeze, label: "Program".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Project, "http://purl.obolibrary.org/obo/IAO_0000112": "An endeavor, frequently collaborative, that occurs over a finite period of time and is intended to achieve a particular aim.\n".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "An endeavor, frequently collaborative, that occurs over a finite period of time and is intended to achieve a particular aim.".freeze, label: "Project".freeze, subClassOf: ["http://purl.obolibrary.org/obo/BFO_0000015".freeze, term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "vivo:description".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://vivoweb.org/ontology/core#DateTimeInterval".freeze, + onProperty: "http://vivoweb.org/ontology/core#dateTimeInterval".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:DateTimeInterval".freeze, - onProperty: "vivo:dateTimeInterval".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://vivoweb.org/ontology/core#GeographicRegion".freeze, + onProperty: "http://vivoweb.org/ontology/core#geographicFocus".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( - allValuesFrom: "vivo:GeographicRegion".freeze, - onProperty: "vivo:geographicFocus".freeze, - type: "owl:Restriction".freeze + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://vivoweb.org/ontology/core#description".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 :Publisher, "http://purl.obolibrary.org/obo/IAO_0000112": ["Definition found here: http://dictionary.reference.com/browse/publisher".freeze, "Elsevier; Harper & Row; Indiana University Press".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A person or company whose business is the publishing of books, periodicals, engravings, computer software, etc.".freeze, label: "Publisher".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Relationship, "http://purl.obolibrary.org/obo/IAO_0000112": "functions as an n-ary predicate".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "a reified relationship".freeze, label: "Relationship".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000020".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ResearchOrganization, "http://purl.obolibrary.org/obo/IAO_0000115": "Any organization (likely also asserted as another class of Organization) with a primary, ongoing research function, not just through occasional roles".freeze, label: "Research Organization".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ResearchProposal, "http://purl.obolibrary.org/obo/IAO_0000115": "A proposal for a research grant that has been submitted but not approved; does not represent an existing activity".freeze, label: "Research Proposal".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ResearcherRole, "http://purl.obolibrary.org/obo/IAO_0000112": "Examples of research can be seen at: http://www.ufl.edu/research/products/index.html. Note these may have been funded, but the research doesn't have to be funded. Also, the research may be linked to an Agreement (for example, a Grant), but does not need to be.".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A role of conducting funded or unfunded research, sometimes linked to an Agreement.".freeze, label: "Researcher Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Review, "http://purl.obolibrary.org/obo/IAO_0000115": "An article reviewing one or more other information resources (a book, one or more other articles, movies, etc)".freeze, label: "Review".freeze, - subClassOf: "bibo:Article".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/Article".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ReviewerRole, "http://purl.obolibrary.org/obo/IAO_0000112": "A role that encompasses both ongoing reviewer responsibility for a bibo:Collection, such as a Journal or Series, and also a review performed for a bibo:Document, such as a book, academic article or conference paper.".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A role that encompasses both ongoing reviewer responsibility for a bibo:Collection, such as a Journal or Series, and also a review performed for a bibo:Document, such as a book, academic article or conference paper.".freeze, label: "Reviewer Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Room, "http://purl.obolibrary.org/obo/IAO_0000112": ["100 Caldwell Hall; 114 Martha Van Rensselaer (Rushmore Conference Room)".freeze, "Enter room number of name.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "Room that provides a particular service or is used for a particular activity.".freeze, label: "Room".freeze, - subClassOf: ["vivo:Facility".freeze, term( - allValuesFrom: "vivo:Facility".freeze, + subClassOf: ["http://vivoweb.org/ontology/core#Facility".freeze, term( + allValuesFrom: "http://vivoweb.org/ontology/core#Facility".freeze, onProperty: "http://purl.obolibrary.org/obo/BFO_0000050".freeze, - type: "owl:Restriction".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 :School, "http://purl.obolibrary.org/obo/IAO_0000112": ["Definition take from here: http://dictionary.reference.com/browse/school.".freeze, "School of Architecture; School of Music".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "An institution for instruction in a particular skill or field.".freeze, label: "School".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Score, "http://purl.obolibrary.org/obo/IAO_0000115": "Written musical composition for voice or instruments or both".freeze, label: "Score".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Screenplay, "http://purl.obolibrary.org/obo/IAO_0000115": "Written script for a film production, including dialogue and descriptions of gestures, actions, shooting directions".freeze, label: "Screenplay".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SeminarSeries, "http://purl.obolibrary.org/obo/IAO_0000112": ["Applied Microeconomics Seminars; Future of Rural New York Seminar Series".freeze, "For individual seminars, use seminar instead. core:ConferenceSeries and core:SeminarSeries are very similar.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "An organized series of a meeting for an exchange of ideas, typically put on by a department or center.".freeze, label: "Seminar Series".freeze, - subClassOf: "vivo:EventSeries".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#EventSeries".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :ServiceProvidingLaboratory, "http://purl.obolibrary.org/obo/IAO_0000112": "Ideally a defined class -- a Laboratory the provides some Service via the property".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A laboratory that provides services".freeze, label: "Service Providing Lab".freeze, - subClassOf: "vivo:Laboratory".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Laboratory".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Speech, "http://purl.obolibrary.org/obo/IAO_0000115": "Text of a speech written in preparation for delivery of the speech.".freeze, label: "Speech".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :StateOrProvince, "http://purl.obolibrary.org/obo/IAO_0000112": ["Minnesota; Michigan; Indiana; New York; Quebec; Manitoba; Ontario".freeze, "Source of the Short Definition: http://www.thefreedictionary.com/state.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "One of a number of areas or communities having their own governments and forming a federation under a sovereign government, as in the US.".freeze, label: "State or Province".freeze, - subClassOf: "vivo:GeopoliticalEntity".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#GeopoliticalEntity".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Student, "http://purl.obolibrary.org/obo/IAO_0000112": "Use only if no specific subclasses of core:Student describe the person.".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "A person who is enrolled in an educational institution.".freeze, label: "Student".freeze, - subClassOf: "foaf:Person".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :StudentOrganization, "http://purl.obolibrary.org/obo/IAO_0000112": ["Dancin' Gators".freeze, "Definition take from here: http://en.wikipedia.org/wiki/Student_society".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "A student organization is an organization, operated by students at a university, whose membership normally consists only of students.".freeze, label: "Student Organization".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :SubnationalRegion, - comment: %(For example, the Midwest, northeast U.S.).freeze, + comment: "For example, the Midwest, northeast U.S.".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": ["Boroughs; townships; districts; the Midwest".freeze, "Short definition was partially taken from http://en.wikipedia.org/wiki/Subnational_entity.".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "Smaller administrative division into which a country may be divided.".freeze, label: "Subnational Region".freeze, - subClassOf: "vivo:GeographicRegion".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#GeographicRegion".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :TeacherRole, "http://purl.obolibrary.org/obo/IAO_0000115": "A role of serving as an educator".freeze, label: "Teacher Role".freeze, subClassOf: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Team, "http://purl.obolibrary.org/obo/IAO_0000112": "VIVO Outreach Team; VIVO Ontology Team".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": ["A group of people working together.".freeze, "An informal organization brought together for the purposes of a project or event".freeze], label: "Team".freeze, - subClassOf: "foaf:Group".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Group".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Translation, "http://purl.obolibrary.org/obo/IAO_0000115": "The result of rendering a work from one language to another".freeze, label: "Translation".freeze, - subClassOf: "bibo:Document".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :UndergraduateAdvisingRelationship, "http://purl.obolibrary.org/obo/IAO_0000115": "An advisory relationship in which a professor advises an undergraduate student.".freeze, label: "Undergraduate Advising Relationship".freeze, - subClassOf: "vivo:AdvisingRelationship".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#AdvisingRelationship".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :UndergraduateStudent, "http://purl.obolibrary.org/obo/IAO_0000115": "A person registered in an undergraduate program leading to a bachelor's degree or an undergraduate diploma or certificate.".freeze, label: "Undergraduate Student".freeze, - subClassOf: "vivo:Student".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#Student".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :University, "http://purl.obolibrary.org/obo/IAO_0000112": ["Definition taken from: http://en.wikipedia.org/wiki/University".freeze, "University of Florida; Washington University in St. Louis".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "An institution of higher education and research, which grants academic degrees in a variety of subjects, and provides both undergraduate education and postgraduate education.".freeze, label: "University".freeze, - subClassOf: "foaf:Organization".freeze, - type: "owl:Class".freeze + subClassOf: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Video, "http://purl.obolibrary.org/obo/IAO_0000115": "Audiovisual recording in video format".freeze, label: "Video".freeze, - subClassOf: "bibo:AudioVisualDocument".freeze, - type: "owl:Class".freeze + subClassOf: "http://purl.org/ontology/bibo/AudioVisualDocument".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze term :WorkingPaper, "http://purl.obolibrary.org/obo/IAO_0000115": "A document created as a basis for discussion or a very early draft of a formal paper".freeze, label: "Working Paper".freeze, - subClassOf: ["bibo:Document".freeze, term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "vivo:placeOfPublication".freeze, - type: "owl:Restriction".freeze + subClassOf: ["http://purl.org/ontology/bibo/Document".freeze, term( + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://vivoweb.org/ontology/core#placeOfPublication".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 :WorkshopSeries, "http://purl.obolibrary.org/obo/IAO_0000112": "Use workshop for individual events.".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "An organized series of workshop events, whether repetitions of the same workshop or multiple different workshops.".freeze, label: "Workshop Series".freeze, - subClassOf: "vivo:EventSeries".freeze, - type: "owl:Class".freeze + subClassOf: "http://vivoweb.org/ontology/core#EventSeries".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :abbreviation, "http://purl.obolibrary.org/obo/IAO_0000112": ["A short form for an longer title or name.".freeze, "B.A.".freeze], label: "abbreviation".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 :affiliatedOrganization, - domain: "foaf:Organization".freeze, + domain: "http://xmlns.com/foaf/0.1/Organization".freeze, label: "has affiliated organization".freeze, - range: "foaf:Organization".freeze, - type: "owl:ObjectProperty".freeze + range: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :assignedBy, "http://purl.obolibrary.org/obo/IAO_0000115": "Relates a Relationship (as a predicate or n-ary relation over one or more Thing) to an Agent that defined or instantiated the predicate instance. ".freeze, - inverseOf: "vivo:assigns".freeze, + inverseOf: "http://vivoweb.org/ontology/core#assigns".freeze, label: "assigned by".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :assignee, - domain: "bibo:Patent".freeze, - inverseOf: "vivo:assigneeFor".freeze, + domain: "http://purl.org/ontology/bibo/Patent".freeze, + inverseOf: "http://vivoweb.org/ontology/core#assigneeFor".freeze, label: "assignee".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 :assigneeFor, - domain: "foaf:Agent".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, label: "assignee for patent".freeze, - range: "bibo:Patent".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/ontology/bibo/Patent".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :assigns, label: "assigns".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :cclCode, - domain: "bibo:Patent".freeze, + domain: "http://purl.org/ontology/bibo/Patent".freeze, label: "published US Classification Class/subclass (CCL) code".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :conceptAssociatedWith, - inverseOf: "vivo:hasAssociatedConcept".freeze, + inverseOf: "http://vivoweb.org/ontology/core#hasAssociatedConcept".freeze, label: "concept for".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :confirmedOrcidId, - comment: %(Indicates that the Orcid ID has been confirmed by this Person).freeze, + comment: "Indicates that the Orcid ID has been confirmed by this Person".freeze, label: "Orcid ID confirmation".freeze, - range: "foaf:Person".freeze, - type: "owl:ObjectProperty".freeze + range: "http://xmlns.com/foaf/0.1/Person".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :contactInformation, label: "contact information".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :contributingRole, - inverseOf: "vivo:roleContributesTo".freeze, + inverseOf: "http://vivoweb.org/ontology/core#roleContributesTo".freeze, label: "contributor".freeze, range: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :courseCredits, label: "credits".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 :dateFiled, - domain: "bibo:Patent".freeze, + domain: "http://purl.org/ontology/bibo/Patent".freeze, label: "date filed".freeze, - range: "vivo:DateTimeValue".freeze, - subPropertyOf: "vivo:dateTimeValue".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#DateTimeValue".freeze, + subPropertyOf: "http://vivoweb.org/ontology/core#dateTimeValue".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :dateIssued, label: "date issued".freeze, - range: "vivo:DateTimeValue".freeze, - subPropertyOf: "vivo:dateTimeValue".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#DateTimeValue".freeze, + subPropertyOf: "http://vivoweb.org/ontology/core#dateTimeValue".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :dateTime, - domain: "vivo:DateTimeValue".freeze, + domain: "http://vivoweb.org/ontology/core#DateTimeValue".freeze, label: "date/time".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 :dateTimeInterval, label: "date/time interval".freeze, - range: "vivo:DateTimeInterval".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#DateTimeInterval".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :dateTimePrecision, - domain: "vivo:DateTimeValue".freeze, + domain: "http://vivoweb.org/ontology/core#DateTimeValue".freeze, label: "date/time precision".freeze, - range: "vivo:DateTimeValuePrecision".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#DateTimeValuePrecision".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :dateTimeValue, label: "date/time value".freeze, - range: "vivo:DateTimeValue".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#DateTimeValue".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :degreeCandidacy, - domain: "vivo:AdvisingRelationship".freeze, + domain: "http://vivoweb.org/ontology/core#AdvisingRelationship".freeze, label: "degree candidacy".freeze, - range: "vivo:AcademicDegree".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#AcademicDegree".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :departmentOrSchool, - domain: "vivo:EducationalProcess".freeze, + domain: "http://vivoweb.org/ontology/core#EducationalProcess".freeze, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "Not intended to be an institution name.".freeze, label: "department or school name within institution".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :description, label: "description".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :distributes, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "Public Description for bibo:distributor taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .".freeze, label: "distributes".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :distributesFundingFrom, - domain: "vivo:FundingOrganization".freeze, + domain: "http://vivoweb.org/ontology/core#FundingOrganization".freeze, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "For example, National Science Foundation providesFundingThrough Graduate Research Fellowship Program; National Institutes of Health providesFundingThrough National Center for Research Resources. ".freeze, - inverseOf: "vivo:providesFundingThrough".freeze, + inverseOf: "http://vivoweb.org/ontology/core#providesFundingThrough".freeze, label: "distributes funding from".freeze, - range: "vivo:FundingOrganization".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#FundingOrganization".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :eRACommonsId, - domain: "foaf:Person".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, label: "eRA Commons ID".freeze, - subPropertyOf: "vivo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://vivoweb.org/ontology/core#identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :eligibleFor, label: "credential eligibility attained".freeze, - range: "vivo:Credential".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#Credential".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :end, - domain: "vivo:DateTimeInterval".freeze, + domain: "http://vivoweb.org/ontology/core#DateTimeInterval".freeze, label: "end".freeze, - range: "vivo:DateTimeValue".freeze, - subPropertyOf: "vivo:dateTimeValue".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#DateTimeValue".freeze, + subPropertyOf: "http://vivoweb.org/ontology/core#dateTimeValue".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :entryTerm, label: "entry term".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :equipmentFor, - domain: "vivo:Equipment".freeze, - inverseOf: "vivo:hasEquipment".freeze, + domain: "http://vivoweb.org/ontology/core#Equipment".freeze, + inverseOf: "http://vivoweb.org/ontology/core#hasEquipment".freeze, label: "equipment for".freeze, - range: "foaf:Organization".freeze, + range: "http://xmlns.com/foaf/0.1/Organization".freeze, subPropertyOf: "http://isf/deprecated_op".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :expirationDate, label: "expiration date".freeze, - subPropertyOf: "vivo:dateTimeValue".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://vivoweb.org/ontology/core#dateTimeValue".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :facilityFor, - domain: "vivo:Facility".freeze, - inverseOf: "vivo:hasFacility".freeze, - type: "owl:ObjectProperty".freeze + domain: "http://vivoweb.org/ontology/core#Facility".freeze, + inverseOf: "http://vivoweb.org/ontology/core#hasFacility".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :featuredIn, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "This is done through a restriction on the foaf:Person class.".freeze, - inverseOf: "vivo:features".freeze, + inverseOf: "http://vivoweb.org/ontology/core#features".freeze, label: "featured in".freeze, range: "http://purl.obolibrary.org/obo/IAO_0000030".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :features, domain: "http://purl.obolibrary.org/obo/IAO_0000030".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": "This is done through a restriction on the foaf:Person class.".freeze, label: "features".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 :freetextKeyword, "http://purl.obolibrary.org/obo/IAO_0000112": ["conservation\n\nuse one freetextKeyword assertion for each keyword or phrase.".freeze, "one keyword or phrase per freetextKeyword assertion".freeze], label: "keywords".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :fundingVehicleFor, - domain: "vivo:Grant".freeze, - inverseOf: "vivo:hasFundingVehicle".freeze, + domain: "http://vivoweb.org/ontology/core#Grant".freeze, + inverseOf: "http://vivoweb.org/ontology/core#hasFundingVehicle".freeze, label: "provides funding for".freeze, - subPropertyOf: "vivo:supports".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://vivoweb.org/ontology/core#supports".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :geographicFocus, - inverseOf: "vivo:geographicFocusOf".freeze, + inverseOf: "http://vivoweb.org/ontology/core#geographicFocusOf".freeze, label: "geographic focus".freeze, - range: "vivo:GeographicRegion".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#GeographicRegion".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :geographicFocusOf, - domain: "vivo:GeographicRegion".freeze, + domain: "http://vivoweb.org/ontology/core#GeographicRegion".freeze, label: "geographic focus of".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :governingAuthorityFor, - domain: "foaf:Organization".freeze, - inverseOf: "vivo:hasGoverningAuthority".freeze, + domain: "http://xmlns.com/foaf/0.1/Organization".freeze, + inverseOf: "http://vivoweb.org/ontology/core#hasGoverningAuthority".freeze, label: "governing authority for".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :grantDirectCosts, domain: term( - type: "owl:Class".freeze, - unionOf: list("vivo:Contract".freeze, "vivo:Grant".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://vivoweb.org/ontology/core#Contract".freeze, "http://vivoweb.org/ontology/core#Grant".freeze) ), label: "direct costs".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 :grantSubcontractedThrough, - domain: "vivo:Grant".freeze, - inverseOf: "vivo:subcontractsGrant".freeze, + domain: "http://vivoweb.org/ontology/core#Grant".freeze, + inverseOf: "http://vivoweb.org/ontology/core#subcontractsGrant".freeze, label: "subcontracted through".freeze, - range: "foaf:Organization".freeze, - type: "owl:ObjectProperty".freeze + range: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasAssociatedConcept, label: "associated concept".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasCollaborator, - domain: "foaf:Agent".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, + "http://purl.obolibrary.org/obo/IAO_0000112": "Fran has collaborator Jim, they work together regularly.".freeze, + "http://purl.obolibrary.org/obo/IAO_0000114": "http://purl.obolibrary.org/obo/IAO_0000120".freeze, + "http://purl.obolibrary.org/obo/IAO_0000115": "Two agents are collaborators if they work together to produce common results.".freeze, + "http://purl.obolibrary.org/obo/IAO_0000117": "PERSON: Michael Conlon".freeze, + "http://purl.obolibrary.org/obo/IAO_0000119": "Merriam Webster (https://www.merriam-webster.com/dictionary/collaborator)".freeze, label: "has collaborator".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, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :hasEquipment, - domain: "foaf:Organization".freeze, + domain: "http://xmlns.com/foaf/0.1/Organization".freeze, label: "has equipment".freeze, - range: "vivo:Equipment".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#Equipment".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasFacility, label: "has facility".freeze, - range: "vivo:Facility".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#Facility".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasFundingVehicle, label: "funding provided via".freeze, range: term( - type: "owl:Class".freeze, - unionOf: list("vivo:Contract".freeze, "vivo:Grant".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://vivoweb.org/ontology/core#Contract".freeze, "http://vivoweb.org/ontology/core#Grant".freeze) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasGoverningAuthority, label: "governing authority".freeze, - range: "foaf:Organization".freeze, - type: "owl:ObjectProperty".freeze + range: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasMonetaryAmount, label: "has monetary amount".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hasPredecessorOrganization, - domain: "foaf:Organization".freeze, - inverseOf: "vivo:hasSuccessorOrganization".freeze, + domain: "http://xmlns.com/foaf/0.1/Organization".freeze, + inverseOf: "http://vivoweb.org/ontology/core#hasSuccessorOrganization".freeze, label: "predecessor organization".freeze, - range: "foaf:Organization".freeze, - type: "owl:ObjectProperty".freeze + range: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPrerequisite, - domain: "vivo:Course".freeze, - inverseOf: "vivo:prerequisiteFor".freeze, + domain: "http://vivoweb.org/ontology/core#Course".freeze, + inverseOf: "http://vivoweb.org/ontology/core#prerequisiteFor".freeze, label: "has prerequisite".freeze, - range: "vivo:Course".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#Course".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasProceedings, - domain: "bibo:Conference".freeze, + domain: "http://purl.org/ontology/bibo/Conference".freeze, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "A possible working example: The conference proceeding of the SPIE was generated from the conference - International Society for Optical Engineering.".freeze, - inverseOf: "vivo:proceedingsOf".freeze, + inverseOf: "http://vivoweb.org/ontology/core#proceedingsOf".freeze, label: "proceedings".freeze, - range: "bibo:Proceedings".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/ontology/bibo/Proceedings".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasPublicationVenue, - inverseOf: "vivo:publicationVenueFor".freeze, + inverseOf: "http://vivoweb.org/ontology/core#publicationVenueFor".freeze, label: "published in".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasResearchArea, - inverseOf: "vivo:researchAreaOf".freeze, + inverseOf: "http://vivoweb.org/ontology/core#researchAreaOf".freeze, label: "research areas".freeze, - subPropertyOf: "vivo:hasAssociatedConcept".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://vivoweb.org/ontology/core#hasAssociatedConcept".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSubjectArea, - inverseOf: "vivo:subjectAreaOf".freeze, + inverseOf: "http://vivoweb.org/ontology/core#subjectAreaOf".freeze, label: "has subject area".freeze, - subPropertyOf: "vivo:hasAssociatedConcept".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://vivoweb.org/ontology/core#hasAssociatedConcept".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasSuccessorOrganization, - domain: "foaf:Organization".freeze, + domain: "http://xmlns.com/foaf/0.1/Organization".freeze, label: "successor organization".freeze, - range: "foaf:Organization".freeze, - type: "owl:ObjectProperty".freeze + range: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasTranslation, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": "Examples shows a book has French language version. Public description source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .".freeze, label: "has translation".freeze, - range: "bibo:Document".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/ontology/bibo/Document".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasValue, label: "has value".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :hideFromDisplay, label: "hide from display".freeze, - range: "xsd:boolean".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :hrJobTitle, - domain: "vivo:Position".freeze, + domain: "http://vivoweb.org/ontology/core#Position".freeze, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "Definition http://en.wikipedia.org/wiki/Job_title#Job_title.".freeze, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot": "administrative secretary".freeze, label: "HR job title".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :iclCode, - domain: "bibo:Patent".freeze, + domain: "http://purl.org/ontology/bibo/Patent".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": "The International classification(s) to which the published application has been assigned.\n".freeze, label: "International Classification (ICL) code".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :identifier, label: "identifier".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :informationResourceSupportedBy, domain: "http://purl.obolibrary.org/obo/IAO_0000030".freeze, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "an information resource (typically a publication) supported by (typically via funding) an agreement (such as a grant)".freeze, - inverseOf: "vivo:supportedInformationResource".freeze, + inverseOf: "http://vivoweb.org/ontology/core#supportedInformationResource".freeze, label: "supported by".freeze, - subPropertyOf: "vivo:supportedBy".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://vivoweb.org/ontology/core#supportedBy".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :isCorrespondingAuthor, - domain: "vivo:Authorship".freeze, + domain: "http://vivoweb.org/ontology/core#Authorship".freeze, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot": "True; False".freeze, label: "Is this person a corresponding author?".freeze, - range: "xsd:boolean".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + range: "http://www.w3.org/2001/XMLSchema#boolean".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :licenseNumber, - domain: "vivo:Licensure".freeze, + domain: "http://vivoweb.org/ontology/core#Licensure".freeze, label: "license number".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :localAwardId, domain: term( - type: "owl:Class".freeze, - unionOf: list("vivo:Contract".freeze, "vivo:Grant".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://vivoweb.org/ontology/core#Contract".freeze, "http://vivoweb.org/ontology/core#Grant".freeze) ), "http://purl.obolibrary.org/obo/IAO_0000112": "core:localAwardId has a domain of core:Grant, and should be public since that's its public identifier for local use by OSP, accounting, department admins, and the PI ".freeze, label: "local award ID".freeze, - subPropertyOf: "vivo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://vivoweb.org/ontology/core#identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :majorField, - domain: "vivo:EducationalProcess".freeze, + domain: "http://vivoweb.org/ontology/core#EducationalProcess".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": "Information Science; Computer Science; Anthropology".freeze, label: "major field of degree".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :middleName, label: "middle name or initial".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :nihmsid, - domain: "bibo:Article".freeze, + domain: "http://purl.org/ontology/bibo/Article".freeze, label: "NIH Manuscript Submission System ID".freeze, - 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 :offeredBy, - inverseOf: "vivo:offers".freeze, + inverseOf: "http://vivoweb.org/ontology/core#offers".freeze, label: "offered by".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :offers, label: "offers".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :orcidId, - domain: "foaf:Person".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": "This is now an object property where the object value is a resource of the form . This is to support connecting VIVO and ORCID in the linked data web. Note: a person can have multiple ORCID iDs.".freeze, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#stubObjectPropertyAnnot": "true".freeze, label: "ORCID iD".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :outreachOverview, - domain: "foaf:Person".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": ["My extension program consists of developing and reporting disease management strategies that are both economically and environmentally sound for fresh market vegetable production. We hope that some of this testing will result in practices adaptable for organic production.".freeze, "Used for a single narrative summary of outreach, typically covering a wide range of activities and time periods; use Outreach Provider Role for information on individual activities".freeze], label: "outreach overview".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 :overview, - domain: "foaf:Agent".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": "My research focuses on diseases of pine crops in the southeastern United States.".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": "Short text for presentation describing the agent's purpose, activities, and/or accomplishments.".freeze, label: "overview".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 :patentNumber, - domain: "bibo:Patent".freeze, + domain: "http://purl.org/ontology/bibo/Patent".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": "source of definition: http://www.uspto.gov/main/glossary/#p . The following site has patent number formats: http://www.uspto.gov/patents/ebc/kindcodesum.jsp .".freeze, label: "patent number".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :placeOfPublication, label: "place of publication".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 :pmcid, - domain: "bibo:Article".freeze, + domain: "http://purl.org/ontology/bibo/Article".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": " A PMCID is a unique PubMed Central reference number, which is assigned to each full-text record made available A PMCID is a unique PubMed Central reference number, which is assigned to each full-text record made available in PubMed Central. The PMCID is issued shortly after the PI or author approves the PubMed Central formatted web version of the submission. ".freeze, label: "PubMed Central ID".freeze, - 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 :preferredDisplayOrder, label: "preferred display order".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :prerequisiteFor, - domain: "vivo:Course".freeze, + domain: "http://vivoweb.org/ontology/core#Course".freeze, label: "prerequisite for".freeze, - range: "vivo:Course".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#Course".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :proceedingsOf, - domain: "bibo:Proceedings".freeze, + domain: "http://purl.org/ontology/bibo/Proceedings".freeze, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "A possible working example: The conference proceeding of the SPIE was generated from the conference - International Society for Optical Engineering.".freeze, label: "proceedings of".freeze, - range: "bibo:Conference".freeze, - type: "owl:ObjectProperty".freeze + range: "http://purl.org/ontology/bibo/Conference".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :providesFundingThrough, - domain: "vivo:FundingOrganization".freeze, + domain: "http://vivoweb.org/ontology/core#FundingOrganization".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": "For example, National Science Foundation providesFundingThrough Graduate Research Fellowship Program; National Institutes of Health providesFundingThrough National Center for Research Resources. ".freeze, label: "provides funding through".freeze, - range: "vivo:FundingOrganization".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#FundingOrganization".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :publicationVenueFor, label: "publication venue for".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :publisher, "http://purl.obolibrary.org/obo/IAO_0000112": "Public Definition source (http://www.answers.com/topic/publisher).".freeze, - inverseOf: "vivo:publisherOf".freeze, + inverseOf: "http://vivoweb.org/ontology/core#publisherOf".freeze, label: "publisher".freeze, - range: "foaf:Organization".freeze, - type: "owl:ObjectProperty".freeze + range: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :publisherOf, - domain: "foaf:Organization".freeze, + domain: "http://xmlns.com/foaf/0.1/Organization".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": "Public Definition source (http://www.answers.com/topic/publisher).".freeze, label: "publisher of".freeze, range: "http://purl.obolibrary.org/obo/IAO_0000030".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :rank, "http://purl.obolibrary.org/obo/IAO_0000112": "this number indicates a position in a list".freeze, label: "rank".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 :relatedBy, "http://purl.obolibrary.org/obo/IAO_0000115": "Relates a Thing to a Relationship as a Thing that is somehow related to other Thing in the same Relationship instance. A Relationship instnace is a predicate over Thing and is created by an Agent.".freeze, - inverseOf: "vivo:relates".freeze, + inverseOf: "http://vivoweb.org/ontology/core#relates".freeze, label: "related by".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :relates, "http://purl.obolibrary.org/obo/IAO_0000115": "Relates a Relationship instance to the one or more Thing of the Relationship. There is a separate property (assigned by) to relate to the Agent that defines the Relationship.".freeze, label: "relates".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :reportId, - domain: "bibo:Report".freeze, + domain: "http://purl.org/ontology/bibo/Report".freeze, label: "report identifier".freeze, - subPropertyOf: "bibo:identifier".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + subPropertyOf: "http://purl.org/ontology/bibo/identifier".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :reproduces, - domain: "bibo:Document".freeze, + domain: "http://purl.org/ontology/bibo/Document".freeze, label: "reproduces".freeze, - range: "bibo:Document".freeze, + range: "http://purl.org/ontology/bibo/Document".freeze, subPropertyOf: "http://purl.obolibrary.org/obo/BFO_0000051".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :researchAreaOf, label: "research area of".freeze, - subPropertyOf: "vivo:conceptAssociatedWith".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://vivoweb.org/ontology/core#conceptAssociatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :researchOverview, - domain: "foaf:Person".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": "Used for a single narrative summary of research, typically covering a wide range of activities and time periods; use Researcher Role for information on individual activities".freeze, label: "research overview".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 :researcherId, - domain: "foaf:Person".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": "RearcherID is a Thomson Reuters project where researchers have a place to manage and share their professional information. It will allow them to solve author identity issues while simultaneously adding dynamic citation metrics and collaboration networks to your personal profile.\nDefinition source: http://isiwebofknowledge.com/researcherid/".freeze, label: "ISI Researcher ID".freeze, - subPropertyOf: "vivo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://vivoweb.org/ontology/core#identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :reviewedIn, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "The bibo:reviewOf public description was found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . As of 26 May 2010, bibo:reviewOf is used with the class Review, but core:reviewIn doesn't seem to be being used.".freeze, label: "reviewed in".freeze, - range: "vivo:Review".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#Review".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :roleContributesTo, domain: "http://purl.obolibrary.org/obo/BFO_0000023".freeze, label: "contributes to".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :scopusId, - domain: "foaf:Person".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": "Home page for Scopus: http://www.scopus.com/home.url".freeze, label: "Scopus ID".freeze, - subPropertyOf: "vivo:identifier".freeze, - type: "owl:DatatypeProperty".freeze + subPropertyOf: "http://vivoweb.org/ontology/core#identifier".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :seatingCapacity, - domain: "vivo:Room".freeze, + domain: "http://vivoweb.org/ontology/core#Room".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": ["55".freeze, "definition modified from: source (http://en.wikipedia.org/wiki/Seating_capacity).".freeze], label: "seating capacity".freeze, - range: "xsd:int".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".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 :sponsorAwardId, domain: term( - type: "owl:Class".freeze, - unionOf: list("vivo:Contract".freeze, "vivo:Grant".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://vivoweb.org/ontology/core#Contract".freeze, "http://vivoweb.org/ontology/core#Grant".freeze) ), "http://purl.obolibrary.org/obo/IAO_0000112": "Has a domain of Grant. There is not a strong reason have this be publically visible, since most users would care more about the name of the sponsoring agency than its identifier, but it does no harm to be public.\n\n\nSee also core:localAwardId.\n".freeze, label: "sponsor award ID".freeze, - subPropertyOf: "vivo:identifier".freeze, - type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze] + subPropertyOf: "http://vivoweb.org/ontology/core#identifier".freeze, + type: ["http://www.w3.org/2002/07/owl#DatatypeProperty".freeze, "http://www.w3.org/2002/07/owl#FunctionalProperty".freeze] property :sponsoredBy, - domain: "vivo:Award".freeze, - inverseOf: "vivo:sponsors".freeze, + domain: "http://vivoweb.org/ontology/core#Award".freeze, + inverseOf: "http://vivoweb.org/ontology/core#sponsors".freeze, label: "award sponsored by".freeze, - range: "foaf:Organization".freeze, - type: "owl:ObjectProperty".freeze + range: "http://xmlns.com/foaf/0.1/Organization".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :sponsors, - domain: "foaf:Organization".freeze, + domain: "http://xmlns.com/foaf/0.1/Organization".freeze, label: "sponsors award or honor".freeze, - range: "vivo:Award".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#Award".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :start, - domain: "vivo:DateTimeInterval".freeze, + domain: "http://vivoweb.org/ontology/core#DateTimeInterval".freeze, label: "start".freeze, - range: "vivo:DateTimeValue".freeze, - subPropertyOf: "vivo:dateTimeValue".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#DateTimeValue".freeze, + subPropertyOf: "http://vivoweb.org/ontology/core#dateTimeValue".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subcontractsGrant, - domain: "foaf:Organization".freeze, + domain: "http://xmlns.com/foaf/0.1/Organization".freeze, label: "subcontracts grant".freeze, - range: "vivo:Grant".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#Grant".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :subjectAreaOf, label: "subject area of".freeze, - subPropertyOf: "vivo:conceptAssociatedWith".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://vivoweb.org/ontology/core#conceptAssociatedWith".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :supplementalInformation, label: "supplemental information".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :supportedBy, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "general relationship of support".freeze, - inverseOf: "vivo:supports".freeze, + inverseOf: "http://vivoweb.org/ontology/core#supports".freeze, label: "supported by".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :supportedInformationResource, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "an information resource (typically a publication) supported by (typically via funding) an agreement (such as a grant)".freeze, label: "supported publications or other works".freeze, range: "http://purl.obolibrary.org/obo/IAO_0000030".freeze, - subPropertyOf: "vivo:supports".freeze, - type: "owl:ObjectProperty".freeze + subPropertyOf: "http://vivoweb.org/ontology/core#supports".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :supports, "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot": "general relationship of support".freeze, label: "supports".freeze, - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :teachingOverview, - domain: "foaf:Person".freeze, + domain: "http://xmlns.com/foaf/0.1/Person".freeze, "http://purl.obolibrary.org/obo/IAO_0000112": "Used for a single narrative summary of teaching, typically covering a wide range of courses including for credit and non-credit teaching over multiple semesters; the \"teaches\" property links a person directly with an instance of a Semester Class, typically from an institutional database of record; then use Teacher Role for information about a person's role in non-credit teaching or their specific contribution to individual courses".freeze, label: "teaching overview".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 :termLabel, label: "term label".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :termType, label: "term type".freeze, - type: "owl:DatatypeProperty".freeze + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :totalAwardAmount, domain: term( - type: "owl:Class".freeze, - unionOf: list("vivo:Contract".freeze, "vivo:Grant".freeze) + type: "http://www.w3.org/2002/07/owl#Class".freeze, + unionOf: list("http://vivoweb.org/ontology/core#Contract".freeze, "http://vivoweb.org/ontology/core#Grant".freeze) ), label: "total award amount".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 :translatorOf, - domain: "foaf:Agent".freeze, + domain: "http://xmlns.com/foaf/0.1/Agent".freeze, label: "translator of".freeze, range: term( - type: "owl:Class".freeze, + type: "http://www.w3.org/2002/07/owl#Class".freeze, unionOf: list(term( comment: %(A collection of Documents or Collections).freeze, - "http://purl.obolibrary.org/obo/IAO_0000112": ["Hill Ornithology Collection; Wiley Interscience Online Books Biochemisty Collection".freeze,"Collection of information resources that have a unified identity. Archives, museums and libraries often acquire collections on specific subjects and from distinguished authors or researchers. Also includes collections of resources bundled into a license.".freeze], + "http://purl.obolibrary.org/obo/IAO_0000112": ["Collection of information resources that have a unified identity. Archives, museums and libraries often acquire collections on specific subjects and from distinguished authors or researchers. Also includes collections of resources bundled into a license.".freeze,"Hill Ornithology Collection; Wiley Interscience Online Books Biochemisty Collection".freeze], "http://purl.obolibrary.org/obo/IAO_0000115": "Collection of information resources that have a unified identity".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: "rdfs:Literal".freeze, - onProperty: "bibo:oclcnum".freeze, - type: "owl:Restriction".freeze - ),"http://purl.obolibrary.org/obo/IAO_0000030".freeze], - type: "owl:Class".freeze, - "vs:term_status": "stable".freeze + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://purl.org/ontology/bibo/oclcnum".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ).freeze,"http://purl.obolibrary.org/obo/IAO_0000030".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze ), term( 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, "http://purl.obolibrary.org/obo/IAO_0000111": "document".freeze, - "http://purl.obolibrary.org/obo/IAO_0000112": ["Short Definition from the bibo ontology".freeze,"A journal article, patent application, laboratory notebook, or a book".freeze], + "http://purl.obolibrary.org/obo/IAO_0000112": ["A journal article, patent application, laboratory notebook, or a book".freeze,"Short Definition from the bibo ontology".freeze], "http://purl.obolibrary.org/obo/IAO_0000114": "http://purl.obolibrary.org/obo/IAO_0000120".freeze, "http://purl.obolibrary.org/obo/IAO_0000115": ["A bounded physical representation of a body of information designed with the capacity (and usually intent) to communicate".freeze,"A collection of information content entities intended to be understood together as a whole".freeze], "http://purl.obolibrary.org/obo/IAO_0000117": "PERSON: Lawrence Hunter".freeze, @@ -1670,37 +1686,37 @@ class VIVO < RDF::StrictVocabulary("http://vivoweb.org/ontology/core#") isDefinedBy: "http://purl.org/ontology/bibo/".freeze, label: "Document".freeze, subClassOf: [term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "bibo:numPages".freeze, - type: "owl:Restriction".freeze - ),term( - allValuesFrom: "foaf:Agent".freeze, - onProperty: "vivo:features".freeze, - type: "owl:Restriction".freeze - ),term( - allValuesFrom: "vivo:Dataset".freeze, + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://purl.org/ontology/bibo/abstract".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ).freeze,term( + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://purl.org/ontology/bibo/oclcnum".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ).freeze,term( + allValuesFrom: "http://www.w3.org/2000/01/rdf-schema#Literal".freeze, + onProperty: "http://purl.org/ontology/bibo/numPages".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ).freeze,term( + allValuesFrom: "http://vivoweb.org/ontology/core#Dataset".freeze, onProperty: "http://purl.org/spar/cito/citesAsDataSource".freeze, - type: "owl:Restriction".freeze - ),term( + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ).freeze,term( allValuesFrom: "http://purl.org/spar/c4o/GlobalCitationCount".freeze, onProperty: "http://purl.org/spar/c4o/hasGlobalCitationFrequency".freeze, - type: "owl:Restriction".freeze - ),"http://purl.obolibrary.org/obo/IAO_0000030".freeze,term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "bibo:abstract".freeze, - type: "owl:Restriction".freeze - ),term( - allValuesFrom: "rdfs:Literal".freeze, - onProperty: "bibo:oclcnum".freeze, - type: "owl:Restriction".freeze - )], - type: "owl:Class".freeze + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ).freeze,"http://purl.obolibrary.org/obo/IAO_0000030".freeze,term( + allValuesFrom: "http://xmlns.com/foaf/0.1/Agent".freeze, + onProperty: "http://vivoweb.org/ontology/core#features".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + ).freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze )) ), - type: "owl:ObjectProperty".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :validIn, label: "valid in".freeze, - range: "vivo:GeographicLocation".freeze, - type: "owl:ObjectProperty".freeze + range: "http://vivoweb.org/ontology/core#GeographicLocation".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze end end diff --git a/lib/vocabs/voaf.rb b/lib/vocabs/voaf.rb index 25b16f6c..a56047e7 100644 --- a/lib/vocabs/voaf.rb +++ b/lib/vocabs/voaf.rb @@ -2,240 +2,235 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://purl.org/vocommons/voaf# require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class VOAF < RDF::StrictVocabulary - # end - class VOAF < RDF::StrictVocabulary("http://purl.org/vocommons/voaf#") +module LifePreserver::Vocab + VOAF = Class.new(RDF::StrictVocabulary("http://purl.org/vocommons/voaf#")) do # Ontology definition ontology :"http://purl.org/vocommons/voaf#", - "cc:license": "http://creativecommons.org/licenses/by/3.0/".freeze, - "dc:contributor": ["http://data.semanticweb.org/person/lise-rozat".freeze, "http://data.semanticweb.org/person/pierre-yves-vandenbussche".freeze], - "dc:creator": "http://data.semanticweb.org/person/bernard-vatant".freeze, - "dc:description": "A vocabulary to describe linked data vocabularies and their relations.".freeze, - "dc:issued": "2011-03-11".freeze, - "dc:modified": "2013-05-24".freeze, - "dc:publisher": "http://dbpedia.org/resource/Open_Knowledge_Foundation".freeze, - "dc:title": "Vocabulary of a Friend".freeze, + "http://creativecommons.org/ns#license": "http://creativecommons.org/licenses/by/3.0/".freeze, + "http://purl.org/dc/terms/contributor": ["http://data.semanticweb.org/person/lise-rozat".freeze, "http://data.semanticweb.org/person/pierre-yves-vandenbussche".freeze], + "http://purl.org/dc/terms/creator": "http://data.semanticweb.org/person/bernard-vatant".freeze, + "http://purl.org/dc/terms/description": "A vocabulary to describe linked data vocabularies and their relations.".freeze, + "http://purl.org/dc/terms/issued": "2011-03-11".freeze, + "http://purl.org/dc/terms/modified": "2013-05-24".freeze, + "http://purl.org/dc/terms/publisher": "http://dbpedia.org/resource/Open_Knowledge_Foundation".freeze, + "http://purl.org/dc/terms/title": "Vocabulary of a Friend".freeze, "http://purl.org/vocab/frbr/core#realization": ["http://purl.org/vocommons/voaf/v1.0".freeze, "http://purl.org/vocommons/voaf/v1.1".freeze, "http://purl.org/vocommons/voaf/v2.0".freeze, "http://purl.org/vocommons/voaf/v2.1".freeze, "http://purl.org/vocommons/voaf/v2.2".freeze, "http://purl.org/vocommons/voaf/v2.3".freeze], "http://purl.org/vocab/vann/preferredNamespacePrefix": "voaf".freeze, "http://purl.org/vocab/vann/preferredNamespaceUri": "http://purl.org/vocommons/voaf#".freeze, - type: ["owl:Ontology".freeze, "voaf:Vocabulary".freeze], - "voaf:exampleDataset": "http://lov.okfn.org/dataset/lov/lov.rdf".freeze + "http://purl.org/vocommons/voaf#exampleDataset": "http://lov.okfn.org/dataset/lov/lov.rdf".freeze, + type: ["http://purl.org/vocommons/voaf#Vocabulary".freeze, "http://www.w3.org/2002/07/owl#Ontology".freeze] # Class definitions term :DatasetOccurrences, - comment: %(Class used to store the number of occurences of a vocabulary in a particular dataset).freeze, + comment: "Class used to store the number of occurences of a vocabulary in a particular dataset".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "Dataset occurrences".freeze, - type: "owl:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze term :Vocabulary, - comment: %(A vocabulary used in the linked data cloud. An instance of voaf:Vocabulary relies on or is used by at least another instance of voaf:Vocabulary).freeze, + comment: "A vocabulary used in the linked data cloud. An instance of voaf:Vocabulary relies on or is used by at least another instance of voaf:Vocabulary".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "Vocabulary".freeze, - subClassOf: ["http://purl.org/vocab/frbr/core#Work".freeze, "void:Dataset".freeze], - type: "owl:Class".freeze, + subClassOf: ["http://purl.org/vocab/frbr/core#Work".freeze, "http://rdfs.org/ns/void#Dataset".freeze], + type: "http://www.w3.org/2002/07/owl#Class".freeze, unionOf: list(term( minCardinality: "1".freeze, - onProperty: "voaf:reliesOn".freeze, - type: "owl:Restriction".freeze + onProperty: "http://purl.org/vocommons/voaf#reliesOn".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze ), term( minCardinality: "1".freeze, - onProperty: "voaf:usedBy".freeze, - type: "owl:Restriction".freeze - )), - "vs:term_status": "stable".freeze + onProperty: "http://purl.org/vocommons/voaf#usedBy".freeze, + type: "http://www.w3.org/2002/07/owl#Restriction".freeze + )) term :VocabularySpace, - comment: %(A vocabulary space defines any relevant grouping of vocabularies e.g., designed for similar purposes or domains, or designed by the same publisher or the same project, etc. - A vocabulary can belong to zero, one or more vocabulary spaces.Dublin Core properties isPartOf and hasPart are used to link a vocabulary to a vocabulary space.).freeze, + comment: "A vocabulary space defines any relevant grouping of vocabularies e.g., designed for similar purposes or domains, or designed by the same publisher or the same project, etc.\n A vocabulary can belong to zero, one or more vocabulary spaces.Dublin Core properties isPartOf and hasPart are used to link a vocabulary to a vocabulary space.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "Vocabulary Space".freeze, - type: "owl:Class".freeze, - "vs:term_status": "testing".freeze + type: "http://www.w3.org/2002/07/owl#Class".freeze # Property definitions property :classNumber, - comment: %(The number of classes defined in the vocabulary namespace. Classes imported from other namespaces are not taken into account.).freeze, - "dc:description": "\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\t\t\n\t\tCONSTRUCT{\n\t\t?vocab voaf:classNumber ?nbClass\n\t\t}\n\t\tWHERE{\n\t\t\tSELECT (COUNT(distinct ?class) AS ?nbClass) ?vocab\n\t\t\tWHERE{\n\t\t\t\t{?class a rdfs:Class.}\n\t\t\t\tUNION{?class a owl:Class.}\n\t\t\t\t?class a ?type.\n\t\t\t\tFILTER(?type!=owl:DeprecatedClass)\n\t\t\t\t?class rdfs:isDefinedBy ?vocab.\n\t\t\t\t?vocab a voaf:Vocabulary.\n\t\t\t}GROUP BY ?vocab\n\t\t}\n\t".freeze, - domain: "voaf:Vocabulary".freeze, + comment: "The number of classes defined in the vocabulary namespace. Classes imported from other namespaces are not taken into account.".freeze, + domain: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + "http://purl.org/dc/terms/description": "\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\t\t\n\t\tCONSTRUCT{\n\t\t?vocab voaf:classNumber ?nbClass\n\t\t}\n\t\tWHERE{\n\t\t\tSELECT (COUNT(distinct ?class) AS ?nbClass) ?vocab\n\t\t\tWHERE{\n\t\t\t\t{?class a rdfs:Class.}\n\t\t\t\tUNION{?class a owl:Class.}\n\t\t\t\t?class a ?type.\n\t\t\t\tFILTER(?type!=owl:DeprecatedClass)\n\t\t\t\t?class rdfs:isDefinedBy ?vocab.\n\t\t\t\t?vocab a voaf:Vocabulary.\n\t\t\t}GROUP BY ?vocab\n\t\t}\n\t".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "number of classes".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 :dataset, - comment: %(Deprecated since v2.4).freeze, - "dc:isReplacedBy": "voaf:DatasetOccurrences".freeze, - domain: "voaf:Vocabulary".freeze, - inverseOf: "void:vocabulary".freeze, + comment: "Deprecated since v2.4".freeze, + domain: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + "http://purl.org/dc/terms/isReplacedBy": "http://purl.org/vocommons/voaf#DatasetOccurrences".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, + inverseOf: "http://rdfs.org/ns/void#vocabulary".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "dataset".freeze, - range: "void:Dataset".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + range: "http://rdfs.org/ns/void#Dataset".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :exampleDataset, - comment: %(Deprecated since v1.1).freeze, - "dc:isReplacedBy": "voaf:dataset".freeze, + comment: "Deprecated since v1.1".freeze, + "http://purl.org/dc/terms/isReplacedBy": "http://purl.org/vocommons/voaf#dataset".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "deprecated".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "example dataset".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "deprecated".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :extends, - comment: %(Indicates that the subject vocabulary extends the expressivity of the object vocabulary by declaring subsumption relationships, using object vocabulary class as domain or range of a subject vocabulary property, defining local restrictions etc ...).freeze, - "dc:description": "\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\n\t\tCONSTRUCT{\n\t\t\t?vocab1 voaf:extends ?vocab2\n\t\t}\n\t\tWHERE{\n\t\t\t{?elem1 owl:inverseOf ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\tUNION{?elem1 rdfs:domain ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\tUNION{?elem1 rdfs:range ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\tUNION{?elem2 rdfs:domain ?elem1. FILTER(!isBlank(?elem1))}\n\t\t\tUNION{?elem2 rdfs:range ?elem1. FILTER(!isBlank(?elem1))}\n\t\t\t?elem1 rdfs:isDefinedBy ?vocab1.\n\t\t\t?vocab1 a voaf:Vocabulary.\n\t\t\t?elem2 rdfs:isDefinedBy ?vocab2.\n\t\t\t?vocab2 a voaf:Vocabulary.\n\t\t\tFILTER(?vocab1!=?vocab2)\n\t\t}\n\t".freeze, - domain: "voaf:Vocabulary".freeze, + comment: "Indicates that the subject vocabulary extends the expressivity of the object vocabulary by declaring subsumption relationships, using object vocabulary class as domain or range of a subject vocabulary property, defining local restrictions etc ...".freeze, + domain: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + "http://purl.org/dc/terms/description": "\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\n\t\tCONSTRUCT{\n\t\t\t?vocab1 voaf:extends ?vocab2\n\t\t}\n\t\tWHERE{\n\t\t\t{?elem1 owl:inverseOf ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\tUNION{?elem1 rdfs:domain ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\tUNION{?elem1 rdfs:range ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\tUNION{?elem2 rdfs:domain ?elem1. FILTER(!isBlank(?elem1))}\n\t\t\tUNION{?elem2 rdfs:range ?elem1. FILTER(!isBlank(?elem1))}\n\t\t\t?elem1 rdfs:isDefinedBy ?vocab1.\n\t\t\t?vocab1 a voaf:Vocabulary.\n\t\t\t?elem2 rdfs:isDefinedBy ?vocab2.\n\t\t\t?vocab2 a voaf:Vocabulary.\n\t\t\tFILTER(?vocab1!=?vocab2)\n\t\t}\n\t".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "extends".freeze, - range: "voaf:Vocabulary".freeze, - subPropertyOf: "voaf:reliesOn".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + subPropertyOf: "http://purl.org/vocommons/voaf#reliesOn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :generalizes, - comment: %(Indicates that the subject vocabulary generalizes by some superclasses or superproperties the object vocabulary.).freeze, - "dc:description": "\n\t\tPREFIX rdf:\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\t\tPREFIX skos:\n\t\t\n\t\tCONSTRUCT{\n\t\t\t?vocab1 voaf:generalizes ?vocab2\n\t\t}\n\t\tWHERE{\n\t\t\t{?elem1 skos:narrowMatch ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\tUNION{?elem2 rdfs:subPropertyOf ?elem1.}\n\t\t\tUNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:first ?elem2.}\n\t\t\tUNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:rest ?union2. ?union2 rdf:first ?elem2.}\n\t\t\tUNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:rest ?union2. ?union2 rdf:rest ?union3. ?union3 rdf:first ?elem2.}\n\t\t\tUNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:rest ?union2. ?union2 rdf:rest ?union3. ?union3 rdf:rest ?union4. ?union4 rdf:first ?elem2.}\n\t\t\tUNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:rest ?union2. ?union2 rdf:rest ?union3. ?union3 rdf:rest ?union4. ?union4 rdf:rest ?union5. ?union5 rdf:first ?elem2.}\n\t\t\tFILTER(!isBlank(?elem2))\n\t\t\t?elem1 rdfs:isDefinedBy ?vocab1.\n\t\t\t?vocab1 a voaf:Vocabulary.\n\t\t\t?elem2 rdfs:isDefinedBy ?vocab2.\n\t\t\t?vocab2 a voaf:Vocabulary.\n\t\t\tFILTER(?vocab1!=?vocab2)\n\t\t}\n\t".freeze, - domain: "voaf:Vocabulary".freeze, + comment: "Indicates that the subject vocabulary generalizes by some superclasses or superproperties the object vocabulary.".freeze, + domain: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + "http://purl.org/dc/terms/description": "\n\t\tPREFIX rdf:\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\t\tPREFIX skos:\n\t\t\n\t\tCONSTRUCT{\n\t\t\t?vocab1 voaf:generalizes ?vocab2\n\t\t}\n\t\tWHERE{\n\t\t\t{?elem1 skos:narrowMatch ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\tUNION{?elem2 rdfs:subPropertyOf ?elem1.}\n\t\t\tUNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:first ?elem2.}\n\t\t\tUNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:rest ?union2. ?union2 rdf:first ?elem2.}\n\t\t\tUNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:rest ?union2. ?union2 rdf:rest ?union3. ?union3 rdf:first ?elem2.}\n\t\t\tUNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:rest ?union2. ?union2 rdf:rest ?union3. ?union3 rdf:rest ?union4. ?union4 rdf:first ?elem2.}\n\t\t\tUNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:rest ?union2. ?union2 rdf:rest ?union3. ?union3 rdf:rest ?union4. ?union4 rdf:rest ?union5. ?union5 rdf:first ?elem2.}\n\t\t\tFILTER(!isBlank(?elem2))\n\t\t\t?elem1 rdfs:isDefinedBy ?vocab1.\n\t\t\t?vocab1 a voaf:Vocabulary.\n\t\t\t?elem2 rdfs:isDefinedBy ?vocab2.\n\t\t\t?vocab2 a voaf:Vocabulary.\n\t\t\tFILTER(?vocab1!=?vocab2)\n\t\t}\n\t".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "generalizes".freeze, - range: "voaf:Vocabulary".freeze, - subPropertyOf: "voaf:reliesOn".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + subPropertyOf: "http://purl.org/vocommons/voaf#reliesOn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasDisjunctionsWith, - comment: %(Indicates that the subject vocabulary contains some declaration of disjoint classes with the object vocabulary.).freeze, - "dc:description": "\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\t\t\n\t\tCONSTRUCT{\n\t\t\t?vocab1 voaf:hasDisjunctionsWith ?vocab2\n\t\t}\n\t\tWHERE{\n\t\t\t?elem1 owl:disjointWith ?elem2. FILTER(!isBlank(?elem2))\n\t\t\t?elem1 rdfs:isDefinedBy ?vocab1.\n\t\t\t?vocab1 a voaf:Vocabulary.\n\t\t\t?elem2 rdfs:isDefinedBy ?vocab2.\n\t\t\t?vocab2 a voaf:Vocabulary.\n\t\t\tFILTER(?vocab1!=?vocab2)\n\t\t}\n\t".freeze, - domain: "voaf:Vocabulary".freeze, + comment: "Indicates that the subject vocabulary contains some declaration of disjoint classes with the object vocabulary.".freeze, + domain: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + "http://purl.org/dc/terms/description": "\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\t\t\n\t\tCONSTRUCT{\n\t\t\t?vocab1 voaf:hasDisjunctionsWith ?vocab2\n\t\t}\n\t\tWHERE{\n\t\t\t?elem1 owl:disjointWith ?elem2. FILTER(!isBlank(?elem2))\n\t\t\t?elem1 rdfs:isDefinedBy ?vocab1.\n\t\t\t?vocab1 a voaf:Vocabulary.\n\t\t\t?elem2 rdfs:isDefinedBy ?vocab2.\n\t\t\t?vocab2 a voaf:Vocabulary.\n\t\t\tFILTER(?vocab1!=?vocab2)\n\t\t}\n\t".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "has disjunctions with".freeze, - range: "voaf:Vocabulary".freeze, - subPropertyOf: "voaf:reliesOn".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + subPropertyOf: "http://purl.org/vocommons/voaf#reliesOn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :hasEquivalencesWith, - comment: %(Indicates that the subject vocabulary declares some equivalent classes or properties with the object vocabulary.).freeze, - "dc:description": "\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\t\tPREFIX skos:\n\t\t\n\t\tCONSTRUCT{\n\t\t\t?vocab1 voaf:hasEquivalencesWith ?vocab2\n\t\t}\n\t\tWHERE{\n\t\t\t{?elem1 owl:equivalentProperty ?elem2.}\n\t\t\tUNION{?elem1 owl:sameAs ?elem2.}\n\t\t\tUNION{?elem1 owl:equivalentClass ?elem2.}\n\t\t\tUNION{?elem2 owl:equivalentProperty ?elem1.}\n\t\t\tUNION{?elem2 owl:equivalentClass ?elem1.}\n\t\t\tUNION{?elem1 skos:exactMatch ?elem2.}\n\t\t\tUNION{?elem2 skos:exactMatch ?elem1.}\n\t\t\tFILTER(!isBlank(?elem2))\n\t\t\t?elem1 rdfs:isDefinedBy ?vocab1.\n\t\t\t?vocab1 a voaf:Vocabulary.\n\t\t\t?elem2 rdfs:isDefinedBy ?vocab2.\n\t\t\t?vocab2 a voaf:Vocabulary.\n\t\t\tFILTER(?vocab1!=?vocab2)\n\t\t}\n\t".freeze, - domain: "voaf:Vocabulary".freeze, + comment: "Indicates that the subject vocabulary declares some equivalent classes or properties with the object vocabulary.".freeze, + domain: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + "http://purl.org/dc/terms/description": "\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\t\tPREFIX skos:\n\t\t\n\t\tCONSTRUCT{\n\t\t\t?vocab1 voaf:hasEquivalencesWith ?vocab2\n\t\t}\n\t\tWHERE{\n\t\t\t{?elem1 owl:equivalentProperty ?elem2.}\n\t\t\tUNION{?elem1 owl:sameAs ?elem2.}\n\t\t\tUNION{?elem1 owl:equivalentClass ?elem2.}\n\t\t\tUNION{?elem2 owl:equivalentProperty ?elem1.}\n\t\t\tUNION{?elem2 owl:equivalentClass ?elem1.}\n\t\t\tUNION{?elem1 skos:exactMatch ?elem2.}\n\t\t\tUNION{?elem2 skos:exactMatch ?elem1.}\n\t\t\tFILTER(!isBlank(?elem2))\n\t\t\t?elem1 rdfs:isDefinedBy ?vocab1.\n\t\t\t?vocab1 a voaf:Vocabulary.\n\t\t\t?elem2 rdfs:isDefinedBy ?vocab2.\n\t\t\t?vocab2 a voaf:Vocabulary.\n\t\t\tFILTER(?vocab1!=?vocab2)\n\t\t}\n\t".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "has equivalences with".freeze, - range: "voaf:Vocabulary".freeze, - subPropertyOf: "voaf:reliesOn".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + subPropertyOf: "http://purl.org/vocommons/voaf#reliesOn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :inDataset, - comment: %(dataset in which a vocabulary occurred).freeze, - domain: "voaf:DatasetOccurrences".freeze, + comment: "dataset in which a vocabulary occurred".freeze, + domain: "http://purl.org/vocommons/voaf#DatasetOccurrences".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "in dataset".freeze, - range: "void:Dataset".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://rdfs.org/ns/void#Dataset".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :metadataVoc, - comment: %(Indicates that the subject vocabulary uses the object vocabulary in metadata at global vocabulary level or at element level).freeze, - "dc:description": "\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\n\t\tCONSTRUCT{\n\t\t\t?vocab1 voaf:metadataVoc ?vocab2\n\t\t}\n\t\tWHERE{\n\t\t\t?elem1 ?elem2 ?o.\n\t\t\t?elem1 rdfs:isDefinedBy ?vocab1.\n\t\t\t?vocab1 a voaf:Vocabulary.\n\t\t\t?elem2 rdfs:isDefinedBy ?vocab2.\n\t\t\t?vocab2 a voaf:Vocabulary.\n\t\t\tFILTER(?vocab1!=?vocab2)\n\t\t}\n\t".freeze, - domain: "voaf:Vocabulary".freeze, + comment: "Indicates that the subject vocabulary uses the object vocabulary in metadata at global vocabulary level or at element level".freeze, + domain: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + "http://purl.org/dc/terms/description": "\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\n\t\tCONSTRUCT{\n\t\t\t?vocab1 voaf:metadataVoc ?vocab2\n\t\t}\n\t\tWHERE{\n\t\t\t?elem1 ?elem2 ?o.\n\t\t\t?elem1 rdfs:isDefinedBy ?vocab1.\n\t\t\t?vocab1 a voaf:Vocabulary.\n\t\t\t?elem2 rdfs:isDefinedBy ?vocab2.\n\t\t\t?vocab2 a voaf:Vocabulary.\n\t\t\tFILTER(?vocab1!=?vocab2)\n\t\t}\n\t".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "metadata vocabulary".freeze, - range: "voaf:Vocabulary".freeze, - subPropertyOf: "voaf:reliesOn".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + subPropertyOf: "http://purl.org/vocommons/voaf#reliesOn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :occurrences, - comment: %(Number of occurrences of a vocabulary in a dataset).freeze, - domain: "voaf:DatasetOccurrences".freeze, + comment: "Number of occurrences of a vocabulary in a dataset".freeze, + domain: "http://purl.org/vocommons/voaf#DatasetOccurrences".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "occurrences".freeze, - range: "xsd:integer".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :occurrencesInDatasets, - comment: %(Number of datasets using a resource.).freeze, + comment: "Number of datasets using a resource.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "occurrences in datasets".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :occurrencesInVocabularies, - comment: %(Number of vocabularies using a resource).freeze, + comment: "Number of vocabularies using a resource".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "occurrences in vocabularies".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :propertyNumber, - comment: %(The number of properties defined in the vocabulary namespace. Properties imported from other namespaces are not taken into account.).freeze, - "dc:description": "\n\t\tPREFIX rdf:\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\t\t\n\t\tCONSTRUCT{\n\t\t?vocab voaf:propertyNumber ?nbProp\n\t\t}\n\t\tWHERE{\n\t\t\tSELECT (COUNT(distinct ?prop) AS ?nbProp) ?vocab\n\t\t\tWHERE{\n\t\t\t\t{?prop a rdf:Property.}\n\t\t\t\tUNION{?prop a owl:ObjectProperty.}\n\t\t\t\tUNION{?prop a owl:DatatypeProperty.}\n\t\t\t\tUNION{?prop a owl:AnnotationProperty.}\n\t\t\t\tUNION{?prop a owl:FunctionalProperty.}\n\t\t\t\tUNION{?prop a owl:OntologyProperty.}\n\t\t\t\tUNION{?prop a owl:AsymmetricProperty.}\n\t\t\t\tUNION{?prop a owl:InverseFunctionalProperty.}\n\t\t\t\tUNION{?prop a owl:IrreflexiveProperty.}\n\t\t\t\tUNION{?prop a owl:ReflexiveProperty.}\n\t\t\t\tUNION{?prop a owl:SymmetricProperty.}\n\t\t\t\tUNION{?prop a owl:TransitiveProperty.}\n\t\t\t\t?prop a ?type.\n\t\t\t\tFILTER(?type!=owl:DeprecatedProperty)\n\t\t\t\t?prop rdfs:isDefinedBy ?vocab.\n\t\t\t\t?vocab a voaf:Vocabulary.\n\t\t\t}GROUP BY ?vocab\n\t\t}\n\t".freeze, - domain: "voaf:Vocabulary".freeze, + comment: "The number of properties defined in the vocabulary namespace. Properties imported from other namespaces are not taken into account.".freeze, + domain: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + "http://purl.org/dc/terms/description": "\n\t\tPREFIX rdf:\n\t\tPREFIX rdfs:\n\t\tPREFIX owl:\n\t\tPREFIX voaf:\n\t\t\n\t\tCONSTRUCT{\n\t\t?vocab voaf:propertyNumber ?nbProp\n\t\t}\n\t\tWHERE{\n\t\t\tSELECT (COUNT(distinct ?prop) AS ?nbProp) ?vocab\n\t\t\tWHERE{\n\t\t\t\t{?prop a rdf:Property.}\n\t\t\t\tUNION{?prop a owl:ObjectProperty.}\n\t\t\t\tUNION{?prop a owl:DatatypeProperty.}\n\t\t\t\tUNION{?prop a owl:AnnotationProperty.}\n\t\t\t\tUNION{?prop a owl:FunctionalProperty.}\n\t\t\t\tUNION{?prop a owl:OntologyProperty.}\n\t\t\t\tUNION{?prop a owl:AsymmetricProperty.}\n\t\t\t\tUNION{?prop a owl:InverseFunctionalProperty.}\n\t\t\t\tUNION{?prop a owl:IrreflexiveProperty.}\n\t\t\t\tUNION{?prop a owl:ReflexiveProperty.}\n\t\t\t\tUNION{?prop a owl:SymmetricProperty.}\n\t\t\t\tUNION{?prop a owl:TransitiveProperty.}\n\t\t\t\t?prop a ?type.\n\t\t\t\tFILTER(?type!=owl:DeprecatedProperty)\n\t\t\t\t?prop rdfs:isDefinedBy ?vocab.\n\t\t\t\t?vocab a voaf:Vocabulary.\n\t\t\t}GROUP BY ?vocab\n\t\t}\n\t".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "number of properties".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 :reliesOn, - comment: %(Indicates that the subject vocabulary uses or extends some class or property of the object vocabulary).freeze, - domain: "voaf:Vocabulary".freeze, + comment: "Indicates that the subject vocabulary uses or extends some class or property of the object vocabulary".freeze, + domain: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "relies on".freeze, - range: "voaf:Vocabulary".freeze, - subPropertyOf: ["dc:references".freeze, "void:vocabulary".freeze], - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + subPropertyOf: ["http://purl.org/dc/terms/references".freeze, "http://rdfs.org/ns/void#vocabulary".freeze], + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :reusedByDatasets, - comment: %(Distinct number of datasets reusing a resource.).freeze, + comment: "Distinct number of datasets reusing a resource.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "reused by datasets".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :reusedByVocabularies, - comment: %(Distinct number of vocabularies reusing a resource.).freeze, + comment: "Distinct number of vocabularies reusing a resource.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "reused by vocabularies".freeze, - range: "xsd:integer".freeze, - type: "owl:DatatypeProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://www.w3.org/2001/XMLSchema#integer".freeze, + type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze property :similar, - comment: %(Used to assert that two vocabularies are similar in scope and objectives, independently of the fact that they otherwise refer to each other.).freeze, - domain: "voaf:Vocabulary".freeze, + comment: "Used to assert that two vocabularies are similar in scope and objectives, independently of the fact that they otherwise refer to each other.".freeze, + domain: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "similar".freeze, - range: "voaf:Vocabulary".freeze, - type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze], - "vs:term_status": "testing".freeze + range: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + type: ["http://www.w3.org/2002/07/owl#ObjectProperty".freeze, "http://www.w3.org/2002/07/owl#SymmetricProperty".freeze] property :specializes, - comment: %(Indicates that the subject vocabulary defines some subclasses or subproperties of the object vocabulary, or local restrictions on those.).freeze, - "dc:description": "\n\t\tPREFIX rdfs:\n\t\tPREFIX voaf:\n\t\tPREFIX skos:\n\t\t\n\t\tCONSTRUCT{\n\t\t\t?vocab1 voaf:specializes ?vocab2\n\t\t}\n\t\tWHERE{\n\t\t\t{?elem1 rdfs:subPropertyOf ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\tUNION{?elem1 rdfs:subClassOf ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\tUNION{?elem1 skos:broadMatch ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\t?elem1 rdfs:isDefinedBy ?vocab1.\n\t\t\t?vocab1 a voaf:Vocabulary.\n\t\t\t?elem2 rdfs:isDefinedBy ?vocab2.\n\t\t\t?vocab2 a voaf:Vocabulary.\n\t\t\tFILTER(?vocab1!=?vocab2)\n\t\t}\n\t".freeze, - domain: "voaf:Vocabulary".freeze, + comment: "Indicates that the subject vocabulary defines some subclasses or subproperties of the object vocabulary, or local restrictions on those.".freeze, + domain: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + "http://purl.org/dc/terms/description": "\n\t\tPREFIX rdfs:\n\t\tPREFIX voaf:\n\t\tPREFIX skos:\n\t\t\n\t\tCONSTRUCT{\n\t\t\t?vocab1 voaf:specializes ?vocab2\n\t\t}\n\t\tWHERE{\n\t\t\t{?elem1 rdfs:subPropertyOf ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\tUNION{?elem1 rdfs:subClassOf ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\tUNION{?elem1 skos:broadMatch ?elem2. FILTER(!isBlank(?elem2))}\n\t\t\t?elem1 rdfs:isDefinedBy ?vocab1.\n\t\t\t?vocab1 a voaf:Vocabulary.\n\t\t\t?elem2 rdfs:isDefinedBy ?vocab2.\n\t\t\t?vocab2 a voaf:Vocabulary.\n\t\t\tFILTER(?vocab1!=?vocab2)\n\t\t}\n\t".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "specializes".freeze, - range: "voaf:Vocabulary".freeze, - subPropertyOf: "voaf:reliesOn".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + subPropertyOf: "http://purl.org/vocommons/voaf#reliesOn".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :toDoList, - comment: %(Describes future tasks planned by a resource curator. This property is primarily intended to be used for vocabularies or datasets, but the domain is left open, it can be used for any resource. Use iCalendar Vtodo class and its properties to further describe the task calendar, priorities etc.).freeze, + comment: "Describes future tasks planned by a resource curator. This property is primarily intended to be used for vocabularies or datasets, but the domain is left open, it can be used for any resource. Use iCalendar Vtodo class and its properties to further describe the task calendar, priorities etc.".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "to-do list".freeze, range: "http://www.w3.org/2002/12/cal/ical#Vtodo".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :usageInDataset, - comment: %(usage statistics in a dataset).freeze, - domain: "voaf:Vocabulary".freeze, + comment: "usage statistics in a dataset".freeze, + domain: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "testing".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "usage in dataset".freeze, - range: "voaf:DatasetOccurrences".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "testing".freeze + range: "http://purl.org/vocommons/voaf#DatasetOccurrences".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze property :usedBy, - comment: %(Indicates that the subject vocabulary is used by the object vocabulary).freeze, - domain: "voaf:Vocabulary".freeze, - inverseOf: "voaf:reliesOn".freeze, + comment: "Indicates that the subject vocabulary is used by the object vocabulary".freeze, + domain: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + "http://www.w3.org/2003/06/sw-vocab-status/ns#term_status": "stable".freeze, + inverseOf: "http://purl.org/vocommons/voaf#reliesOn".freeze, isDefinedBy: "http://purl.org/vocommons/voaf".freeze, label: "used by".freeze, - range: "voaf:Vocabulary".freeze, - type: "owl:ObjectProperty".freeze, - "vs:term_status": "stable".freeze + range: "http://purl.org/vocommons/voaf#Vocabulary".freeze, + type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze end end diff --git a/lib/vocabs/yago.rb b/lib/vocabs/yago.rb index e8e31f95..97cfb65b 100644 --- a/lib/vocabs/yago.rb +++ b/lib/vocabs/yago.rb @@ -2,11 +2,7 @@ # frozen_string_literal: true # This file generated automatically using rdf vocabulary format from http://dbpedia.org/class/yago/ require 'rdf' -module RDF::Vocab - # @!parse - # # Vocabulary for - # class YAGO < RDF::Vocabulary - # end - class YAGO < RDF::Vocabulary("http://dbpedia.org/class/yago/") +module LifePreserver::Vocab + YAGO = Class.new(RDF::Vocabulary("http://dbpedia.org/class/yago/")) do end end diff --git a/nanoc.yaml b/nanoc.yaml index 61a7c7df..e368409c 100644 --- a/nanoc.yaml +++ b/nanoc.yaml @@ -53,15 +53,17 @@ data_sources: - type: vocabularies items_root: &vocabularies_root /_vocabularies - prefixes_used: - standard: [ cc, ctag, dc, foaf, owl, pav, prov, rdf, rdfs, schema, sioc, skos, xhv ] - business: [ essglobal, fea, rov, vcard ] + extra_metadata: 'var/voaf_metadata.yaml' + categories: + standard: [ cc, ctag, dc, foaf, owl, pav, prov, rdf, rdfs, schema, sh, sioc, skos, xhv ] + business: [ essglobal, fea, org, rov, vcard ] open_graph: [ article, og, profile ] document: [ bibo, deo, doco, fabio ] instances: [ dbo, dbr, yago ] - technical: [ deps, doap, vann, voaf, void ] - pentandra: [ pentandra, pentandra-blog, pentandra-website ] - extra: [ cert, essglobal-activities, essglobal-legalform, essglobal-qualifiers, essglobal-typeoflabour, sioct, xsd ] + social: [ ldp, oa ] + meta: [ deps, doap, vann, voaf, void, vs ] + pentandra: [ p5inc, p5blog, p5web ] + extra: [ cert, essglobalactivities, essgloballegalform, essglobalqualifiers, essglobaltypeoflabour, sioctypes, xsd ] - type: company items_root: &company_root /company diff --git a/spec/data_sources/vocabularies_spec.rb b/spec/data_sources/vocabularies_spec.rb new file mode 100644 index 00000000..1753a9be --- /dev/null +++ b/spec/data_sources/vocabularies_spec.rb @@ -0,0 +1,148 @@ +# frozen_string_literal: true + +require 'rdf' +require 'data_sources/vocabularies' + +module LifePreserver + module DataSources + class Vocabularies + public :register_vocabularies, + :find_vocab_metadata, + :load_extra_metadata, + :cleanup + end + end +end + +RSpec.describe LifePreserver::DataSources::Vocabularies, site: true do + let(:data_source) { described_class.new(site.config, nil, nil, params) } + let(:params) { {} } + let(:site) { Nanoc::Core::SiteLoader.new.new_from_cwd } + + describe '#register_vocabularies' do + subject! { data_source.register_vocabularies(vocabs, prefix_overrides) } + + let(:example_uri) { 'https://example/ns#' } + let(:vocabs) { [EXAMPLE = Class.new(RDF::Vocabulary(example_uri))] } + let(:prefix_overrides) { {} } + + context 'with local vocabularies' do + it 'will register local vocabularies' do + expect(RDF::Vocabulary.find(example_uri)).not_to be_nil + end + + it 'will register with the default prefix' do + expect(RDF::Vocabulary.find_term(example_uri).pname).to start_with('example:') + end + + it 'will expand the pname to the original uri' do + expect(RDF::Vocabulary.expand_pname('example:')).to eql(RDF::URI.new(example_uri)) + end + end + + context 'with prefix overrides' do + let(:prefix_overrides) { { EXAMPLE: 'ex' } } + + it 'will register local vocabularies' do + expect(RDF::Vocabulary.find_term(example_uri)).not_to be_nil + end + + it 'will register the overridden prefix in the vocab map' do + expect(RDF::Vocabulary.vocab_map.key?(:ex)).to be true + end + + xit 'will register the overridden prefix as the vocab default' do + expect(RDF::Vocabulary.find_term(example_uri).pname).to start_with('ex:') + end + end + + context 'with vocab that defines a `name` property' do + let(:vocabs) do + [ + TEST = Class.new(RDF::Vocabulary('https://test/ns#')) do + property :name, + comment: 'This is a data property', + label: 'name', + range: 'http://www.w3.org/2001/XMLSchema#string', + type: 'http://www.w3.org/2002/07/owl#DatatypeProperty' + end, + ] + end + + it 'will register the correct prefix in the vocab map' do + expect(RDF::Vocabulary.vocab_map.key?(:test)).to be true + end + + it 'will register the correct prefix as the vocab default' do + expect(RDF::Vocabulary.find_term('https://test/ns#name').pname).to eq('test:name') + end + end + end + + describe '#find_vocab_metadata' do + subject(:metadata) { data_source.find_vocab_metadata(vocab, extra_metadata) } + + let(:example_uri) { 'https://example/ns#' } + let(:vocab) { EXAMPLE = Class.new(RDF::Vocabulary(example_uri)) } + let(:extra_metadata) { {} } + + context 'without extra metadata' do + it 'will contain only one item' do + expect(metadata.length).to eq(1) + end + + it 'will return the vocabulary uri' do + expect(metadata).to include(vocab_uri: example_uri) + end + end + + context 'with extra metadata' do + before { data_source.load_extra_metadata(extra_metadata) } + + let(:extra_metadata) do + { + 'https://example/ns#': { + title: 'The Example Vocab', + description: 'The Example Vocab description', + }, + } + end + + it 'will return the correct title metadata' do + expect(metadata[:title]).to start_with('The Example Vocab') + end + + it 'will return the correct description metadata' do + expect(metadata[:description]).to start_with('The Example Vocab description') + end + end + end + + describe '#cleanup' do + subject(:cleaned) { data_source.cleanup(text) } + + context 'without terminal punctuation' do + let(:text) { 'This is a sentence' } + + it 'will end with a full stop' do + expect(cleaned).to end_with('.') + end + end + + context 'with preexisting starting captial letter and terminal punctuation' do + let(:text) { 'This is a sentence.' } + + it 'will not be changed' do + expect(cleaned).to eql(text) + end + end + + context 'without capitalized first letter' do + let(:text) { 'this is a sentence' } + + it 'will end with a full stop' do + expect(cleaned).to start_with('T') + end + end + end +end diff --git a/static/blog/index.erb b/static/blog/index.erb index f020520d..56cf2a64 100644 --- a/static/blog/index.erb +++ b/static/blog/index.erb @@ -3,7 +3,7 @@ title: Blog description: A collection of our thoughts about Pentandra and the future of research. is_hidden: true --- -
    +

    <%= @config[:blog][:title] %>

    diff --git a/static/colophon.erb b/static/colophon.erb index 2951e924..c5f5bd5d 100644 --- a/static/colophon.erb +++ b/static/colophon.erb @@ -189,7 +189,7 @@ changefreq: monthly

    Standard Vocabularies

    - <%= render('/partials/vocab_metadata.*', group: :standard) %> + <%= render('/partials/vocab_metadata.*', category: :standard) %>
    @@ -200,7 +200,7 @@ changefreq: monthly

    Business Vocabularies

    - <%= render('/partials/vocab_metadata.*', group: :business) %> + <%= render('/partials/vocab_metadata.*', category: :business) %>
    @@ -211,16 +211,27 @@ changefreq: monthly

    Document Vocabularies

    - <%= render('/partials/vocab_metadata.*', group: :document) %> + <%= render('/partials/vocab_metadata.*', category: :document) %>
-
+
-

Technical Vocabularies

+

Social Web Vocabularies

+ + <%= render('/partials/vocab_metadata.*', category: :social) %> + +
+ +
+
+ +
+ +

Meta Vocabularies

@@ -231,7 +242,7 @@ changefreq: monthly

- <%= render('/partials/vocab_metadata.*', group: :technical) %> + <%= render('/partials/vocab_metadata.*', category: :meta) %>
diff --git a/static/company/index.erb b/static/company/index.erb index f013b92a..c80174fc 100644 --- a/static/company/index.erb +++ b/static/company/index.erb @@ -6,7 +6,7 @@ meta_description: >- research and make collaboration possible throughout the research process. priority: 0.6 --- -
" resource="pentandra:company" typeof="foaf:Organization vcard:Organization"> +
" resource="pentandra:company" typeof="foaf:Organization vcard:Organization org:FormalOrganization">
@@ -251,11 +251,11 @@ priority: 0.6

A Social Business

- - - - - + + + + +