Maven migration (first draft)
This commit is contained in:
parent
da79ac3e1d
commit
fee48b0b50
1711 changed files with 662 additions and 0 deletions
30
home/src/main/assembly/home.xml
Normal file
30
home/src/main/assembly/home.xml
Normal file
|
@ -0,0 +1,30 @@
|
|||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
|
||||
<id>home</id>
|
||||
<formats>
|
||||
<format>tar.gz</format>
|
||||
</formats>
|
||||
<includeBaseDirectory>false</includeBaseDirectory>
|
||||
<dependencySets>
|
||||
<dependencySet>
|
||||
<outputDirectory>/</outputDirectory>
|
||||
<unpack>true</unpack>
|
||||
</dependencySet>
|
||||
</dependencySets>
|
||||
<fileSets>
|
||||
<fileSet>
|
||||
<directory>${project.basedir}</directory>
|
||||
<outputDirectory>/</outputDirectory>
|
||||
<includes>
|
||||
<include>README*</include>
|
||||
<include>LICENSE*</include>
|
||||
<include>NOTICE*</include>
|
||||
</includes>
|
||||
</fileSet>
|
||||
<fileSet>
|
||||
<directory>${project.basedir}/src/main/resources</directory>
|
||||
<outputDirectory>/</outputDirectory>
|
||||
</fileSet>
|
||||
</fileSets>
|
||||
</assembly>
|
141
home/src/main/resources/config/example.applicationSetup.n3
Normal file
141
home/src/main/resources/config/example.applicationSetup.n3
Normal file
|
@ -0,0 +1,141 @@
|
|||
# ------------------------------------------------------------------------------
|
||||
#
|
||||
# This file specifies the structure of the Vitro application: which modules
|
||||
# are used, and what parameters they require.
|
||||
#
|
||||
# Most Vitro installations will not need to modify this file.
|
||||
#
|
||||
# For most installations, only the settings in the runtime.properties file will
|
||||
# be changed.
|
||||
#
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
@prefix : <http://vitro.mannlib.cornell.edu/ns/vitro/ApplicationSetup#> .
|
||||
|
||||
# ----------------------------
|
||||
#
|
||||
# Describe the application by its implementing class and by references to the
|
||||
# modules it uses.
|
||||
#
|
||||
|
||||
:application
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.application.ApplicationImpl> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.Application> ;
|
||||
:hasSearchEngine :instrumentedSearchEngineWrapper ;
|
||||
:hasSearchIndexer :basicSearchIndexer ;
|
||||
:hasImageProcessor :jaiImageProcessor ;
|
||||
:hasFileStorage :ptiFileStorage ;
|
||||
:hasContentTripleSource :sdbContentTripleSource ;
|
||||
:hasConfigurationTripleSource :tdbConfigurationTripleSource ;
|
||||
:hasTBoxReasonerModule :jfactTBoxReasonerModule .
|
||||
|
||||
# ----------------------------
|
||||
#
|
||||
# Image processor module:
|
||||
# The JAI-based implementation is the only standard option.
|
||||
# It requires no parameters.
|
||||
#
|
||||
|
||||
:jaiImageProcessor
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.imageprocessor.jai.JaiImageProcessor> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.imageProcessor.ImageProcessor> .
|
||||
|
||||
# ----------------------------
|
||||
#
|
||||
# File storage module:
|
||||
# The PairTree-inspired implementation is the only standard option.
|
||||
# It requires no parameters.
|
||||
#
|
||||
|
||||
:ptiFileStorage
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.filestorage.impl.FileStorageImplWrapper> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.fileStorage.FileStorage> .
|
||||
|
||||
# ----------------------------
|
||||
#
|
||||
# Search engine module:
|
||||
# The Solr-based implementation is the only standard option, but it can be
|
||||
# wrapped in an "instrumented" wrapper, which provides additional logging
|
||||
# and more rigorous life-cycle checking.
|
||||
#
|
||||
|
||||
:instrumentedSearchEngineWrapper
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchengine.InstrumentedSearchEngineWrapper> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.searchEngine.SearchEngine> ;
|
||||
:wraps :solrSearchEngine .
|
||||
|
||||
:solrSearchEngine
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchengine.solr.SolrSearchEngine> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.searchEngine.SearchEngine> .
|
||||
|
||||
# ----------------------------
|
||||
#
|
||||
# Search indexer module:
|
||||
# There is only one standard implementation. You must specify the number of
|
||||
# worker threads in the thread pool.
|
||||
#
|
||||
|
||||
:basicSearchIndexer
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.SearchIndexerImpl> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.searchIndexer.SearchIndexer> ;
|
||||
:threadPoolSize "10" .
|
||||
|
||||
# ----------------------------
|
||||
#
|
||||
# Content triples source module: holds data contents
|
||||
# The SDB-based implementation is the default option. It reads its parameters
|
||||
# from the runtime.properties file, for backward compatibility.
|
||||
#
|
||||
# Other implementations are based on a local TDB instance, a "standard" SPARQL
|
||||
# endpoint, or a Virtuoso endpoint, with parameters as shown.
|
||||
#
|
||||
|
||||
:sdbContentTripleSource
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.triplesource.impl.sdb.ContentTripleSourceSDB> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.tripleSource.ContentTripleSource> .
|
||||
|
||||
#:tdbContentTripleSource
|
||||
# a <java:edu.cornell.mannlib.vitro.webapp.triplesource.impl.tdb.ContentTripleSourceTDB> ,
|
||||
# <java:edu.cornell.mannlib.vitro.webapp.modules.tripleSource.ContentTripleSource> ;
|
||||
# # May be an absolute path, or relative to the Vitro home directory.
|
||||
# :hasTdbDirectory "tdbContentModels" .
|
||||
|
||||
#:sparqlContentTripleSource
|
||||
# a <java:edu.cornell.mannlib.vitro.webapp.triplesource.impl.sparql.ContentTripleSourceSPARQL> ,
|
||||
# <java:edu.cornell.mannlib.vitro.webapp.modules.tripleSource.ContentTripleSource> ;
|
||||
# # The URI of the SPARQL endpoint for your triple-store.
|
||||
# :hasEndpointURI "PUT_YOUR_SPARQL_ENDPOINT_URI_HERE" ;
|
||||
# # The URI to use for SPARQL UPDATE calls against your triple-store.
|
||||
# :hasUpdateEndpointURI "PUT_THE UPDATE_URI_HERE" .
|
||||
|
||||
#:virtuosoContentTripleSource
|
||||
# a <java:edu.cornell.mannlib.vitro.webapp.triplesource.impl.virtuoso.ContentTripleSourceVirtuoso> ,
|
||||
# <java:edu.cornell.mannlib.vitro.webapp.modules.tripleSource.ContentTripleSource> ;
|
||||
# # The URI where Virtuoso can be accessed: don't include the /sparql path.
|
||||
# :hasBaseURI "http://localhost:8890" ;
|
||||
# # The name and password of a Virtuoso account that has the SPARQL_UPDATE role.
|
||||
# :hasUsername "USERNAME" ;
|
||||
# :hasPassword "PASSWORD" .
|
||||
|
||||
|
||||
# ----------------------------
|
||||
#
|
||||
# Configuration triples source module: holds configuration data and user accounts
|
||||
# The TDB-based implementation is the only standard option.
|
||||
# It requires no parameters.
|
||||
#
|
||||
|
||||
:tdbConfigurationTripleSource
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.triplesource.impl.tdb.ConfigurationTripleSourceTDB> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.tripleSource.ConfigurationTripleSource> .
|
||||
|
||||
# ----------------------------
|
||||
#
|
||||
# TBox reasoner module:
|
||||
# The JFact-based implementation is the only standard option.
|
||||
# It requires no parameters.
|
||||
#
|
||||
|
||||
:jfactTBoxReasonerModule
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.tboxreasoner.impl.jfact.JFactTBoxReasonerModule> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.tboxreasoner.TBoxReasonerModule> .
|
344
home/src/main/resources/config/example.runtime.properties
Normal file
344
home/src/main/resources/config/example.runtime.properties
Normal file
|
@ -0,0 +1,344 @@
|
|||
# -----------------------------------------------------------------------------
|
||||
#
|
||||
# VIVO runtime properties
|
||||
#
|
||||
# This file is provided as example.runtime.properties.
|
||||
#
|
||||
# Save a copy of this file as runtime.properties in your Vitro home directory,
|
||||
# and edit the properties as needed for your installation.
|
||||
#
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# BASIC PROPERTIES
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
#
|
||||
# This namespace will be used when generating URIs for objects created in the
|
||||
# editor. In order to serve linked data, the default namespace must be composed
|
||||
# as follows (optional elements in parentheses):
|
||||
#
|
||||
# scheme + server_name (+ port) (+ servlet_context) + "/individual/"
|
||||
#
|
||||
# For example, Cornell's default namespace is:
|
||||
#
|
||||
# http://vivo.cornell.edu/individual/
|
||||
#
|
||||
Vitro.defaultNamespace = http://vivo.mydomain.edu/individual/
|
||||
|
||||
#
|
||||
# The email address of the root user for the VIVO application. The password
|
||||
# for this user is initially set to "rootPassword", but you will be asked to
|
||||
# change the password the first time you log in.
|
||||
#
|
||||
rootUser.emailAddress = vivo_root@mydomain.edu
|
||||
|
||||
#
|
||||
# The basic parameters for a database connection. Change the end of the
|
||||
# URL to reflect your database name (if it is not "vitrodb"). Change the username
|
||||
# and password to match the authorized database user you created.
|
||||
#
|
||||
VitroConnection.DataSource.url = jdbc:mysql://localhost/vitrodb
|
||||
VitroConnection.DataSource.username = vitrodbUsername
|
||||
VitroConnection.DataSource.password = vitrodbPassword
|
||||
|
||||
#
|
||||
# Email parameters which VIVO can use to send mail. If these are left empty,
|
||||
# the "Contact Us" form will be disabled and users will not be notified of
|
||||
# changes to their accounts.
|
||||
#
|
||||
email.smtpHost = smtp.mydomain.edu
|
||||
email.replyTo = vivoAdmin@mydomain.edu
|
||||
|
||||
#
|
||||
# URL of Solr context used in local VIVO search. This will usually consist of:
|
||||
# scheme + server_name + port + vivo_webapp_name + "solr"
|
||||
# In the standard installation, the Solr context will be on the same server as VIVO,
|
||||
# and in the same Tomcat instance. The path will be the VIVO webapp.name (specified
|
||||
# in build.properties) + "solr"
|
||||
# Example:
|
||||
# vitro.local.solr.url = http://localhost:8080/vivosolr
|
||||
#
|
||||
vitro.local.solr.url = http://localhost:8080/vivosolr
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# LINKING USER ACCOUNTS TO PROFILE PAGES
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
#
|
||||
# How is a logged-in user associated with a particular Individual? One way is
|
||||
# for the Individual to have a property whose value is the username of the user.
|
||||
# This value should be the URI for that property.
|
||||
#
|
||||
selfEditing.idMatchingProperty = http://vivo.mydomain.edu/ns#networkId
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# USING AN EXTERNAL AUTHENTICATION SYSTEM
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
#
|
||||
# If an external authentication system like Shibboleth or CUWebAuth is to be
|
||||
# used, this property says which HTTP header will contain the user ID from
|
||||
# the authentication system. If such a system is not to be used, leave this
|
||||
# commented out. Consult the installation instructions for more details.
|
||||
#
|
||||
#externalAuth.netIdHeaderName = remote_userID
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# TUNING THE DATABASE CONNECTION POOL
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
#
|
||||
# The maximum number of active connections in the database connection pool.
|
||||
# Increase this value to support a greater number of concurrent page requests.
|
||||
#
|
||||
VitroConnection.DataSource.pool.maxActive = 40
|
||||
|
||||
#
|
||||
# The maximum number of database connections that will be allowed
|
||||
# to remain idle in the connection pool. Default is 25%
|
||||
# of the maximum number of active connections.
|
||||
#
|
||||
VitroConnection.DataSource.pool.maxIdle = 10
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# USING A DIFFERENT DATABASE
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
#
|
||||
# Parameters to change in order to use VIVO with a database other than
|
||||
# MySQL.
|
||||
#
|
||||
VitroConnection.DataSource.dbtype = MySQL
|
||||
VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
|
||||
VitroConnection.DataSource.validationQuery = SELECT 1
|
||||
|
||||
# Note: the above parameters allow you to change the relational database that
|
||||
# is used as the back end for Jena SDB. If you want to use a triple store
|
||||
# other than SDB, you will need to edit applicationSetup.n3. See the
|
||||
# installation instructions for more details.
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# ADDING OPENSOCIAL GADGETS TO VIVO
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
#
|
||||
# For OpenSocial integration
|
||||
# The base URL of the ORNG Shindig server. Usually, this is the same host and port
|
||||
# number as VIVO itself, with a context path of "shindigorng".
|
||||
#
|
||||
#OpenSocial.shindigURL = http://localhost:8080/shindigorng
|
||||
|
||||
#
|
||||
# For OpenSocial integration
|
||||
# The host name and port number of the service that provides security tokens for VIVO and
|
||||
# Shindig to share. For now, the host name must be the actual host, not "localhost" or "127.0.0.1"
|
||||
# The port number must be 8777
|
||||
#
|
||||
#OpenSocial.tokenService = myhost.mydomain.edu:8777
|
||||
|
||||
#
|
||||
# For OpenSocial integration
|
||||
# The path to the key file that will be used qwhen generating security tokens for VIVO and
|
||||
# shindig to share.
|
||||
#
|
||||
#OpenSocial.tokenKeyFile = /usr/local/vivo/data/shindig/openssl/securitytokenkey.txt
|
||||
|
||||
#
|
||||
# For OpenSocial integration
|
||||
# Only set sandbox to True for dev/test environments. Comment out or set to False in production
|
||||
#
|
||||
#OpenSocial.sandbox = True
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# ADDING LANGUAGES TO VIVO
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
#
|
||||
# Show only the most appropriate data values based on the Accept-Language
|
||||
# header supplied by the browser. Default is false if not set.
|
||||
#
|
||||
# RDFService.languageFilter = false
|
||||
|
||||
#
|
||||
# Force VIVO to use a specific language or Locale instead of those
|
||||
# specified by the browser. This affects RDF data retrieved from the model,
|
||||
# if RDFService.languageFilter is true. This also affects the text of pages
|
||||
# that have been modified to support multiple languages.
|
||||
#
|
||||
# languages.forceLocale = en_US
|
||||
|
||||
#
|
||||
# A list of supported languages or Locales that the user may choose to
|
||||
# use instead of the one specified by the browser. Selection images must
|
||||
# be available in the i18n/images directory of the theme. This affects
|
||||
# RDF data retrieved from the model, if RDFService.languageFilter is true.
|
||||
# This also affects the text of pages that have been modified to support
|
||||
# multiple languages.
|
||||
#
|
||||
# This should not be used with languages.forceLocale, which will override it.
|
||||
#
|
||||
# languages.selectableLocales = en_US, es_GO
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# ORCID INTEGRATION
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
# orcid.clientId = 0000-0000-0000-000X
|
||||
# orcid.clientPassword = 00000000-0000-0000-0000-000000000000
|
||||
# orcid.webappBaseUrl = http://localhost:8080/vivo
|
||||
# orcid.messageVersion = 1.0.23
|
||||
# orcid.externalIdCommonName = VIVO Cornell Identifier
|
||||
|
||||
# ---- Setup for the sandbox ----
|
||||
|
||||
# orcid.publicApiBaseUrl = http://pub.sandbox.orcid.org/v1.1
|
||||
# orcid.authorizedApiBaseUrl = http://api.sandbox.orcid.org/v1.1
|
||||
# orcid.oauthAuthorizeUrl = http://sandbox.orcid.org/oauth/authorize
|
||||
# orcid.oauthTokenUrl = http://api.sandbox.orcid.org/oauth/token
|
||||
|
||||
# ---- or for the mockorcid webapp ----
|
||||
|
||||
# orcid.publicApiBaseUrl = http://localhost:8080/mockorcid/mock/
|
||||
# orcid.authorizedApiBaseUrl = http://localhost:8080/mockorcid/mock/
|
||||
# orcid.oauthAuthorizeUrl = http://localhost:8080/mockorcid/mock/oauth/authorize
|
||||
# orcid.oauthTokenUrl = http://localhost:8080/mockorcid/mock/oauth/token
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# OTHER OPTIONS
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
# AltMetric badges
|
||||
# ----------------
|
||||
# Options to embed AltMetric badges on information resource (e.g. journal article) pages
|
||||
# See the AltMetric documentation for more imformation about each option: http://api.altmetric.com/embeds.html
|
||||
# The embed code will use a DOI, or PubMed ID, if present
|
||||
|
||||
# Enable AltMetric badges
|
||||
# Uncomment and set this to disabled if you don't want AltMetric badges
|
||||
#resource.altmetric=disabled
|
||||
|
||||
# Display the badge to the left or right of the title (default = right)
|
||||
# Options: left, right
|
||||
#resource.altmetric.displayto=right
|
||||
|
||||
# Badge type to display (default = donut)
|
||||
# Options: See AltMetric documentation - recommended settings: donut, medium-donut
|
||||
#resource.altmetric.badge-type=donut
|
||||
|
||||
# Hide the badge if there are no mentions (default = true)
|
||||
# Options: true, false
|
||||
#resource.altmetric.hide-no-mentions=true
|
||||
|
||||
# Display more details about the score when you hover over the badge (default = right)
|
||||
# Options, right, left, up, down
|
||||
#resource.altmetric.badge-popover=right
|
||||
|
||||
# Dsiplay extended details alongside the badge (default = none)
|
||||
#resource.altmetric.badge-details=right
|
||||
|
||||
#
|
||||
# When the following flag is set to enabled, the VIVO home page displays a
|
||||
# global map highlighting the geographical focus of foaf:person individuals.
|
||||
# For information on the maps, refer to this wiki page:
|
||||
# https://wiki.duraspace.org/display/VIVO/Home+Page+Customizations#HomePageCustomizations-TheGeographicFocusMap
|
||||
#
|
||||
#homePage.geoFocusMaps=enabled
|
||||
|
||||
|
||||
#
|
||||
# VIVO supports the simultaneous use of a full foaf:Person profile page view
|
||||
# and a "quick" page view that emphasizes the individual's webpage presence.
|
||||
# Implementing this feature requires an installation to develop a web service
|
||||
# that captures images of web pages or to use an existing service outside of VIVO.
|
||||
#
|
||||
# For more information on implementing multiple profile pages, refer to this
|
||||
# wiki page: https://wiki.duraspace.org/display/VIVO/Multiple+foaf%3APerson+Profile+Pages.
|
||||
#
|
||||
#multiViews.profilePageTypes=enabled
|
||||
|
||||
|
||||
#
|
||||
# Tell VIVO to generate HTTP headers on its responses to facilitate caching the
|
||||
# profile pages that it creates.
|
||||
#
|
||||
# For more information, see this wiki page:
|
||||
# https://wiki.duraspace.org/display/VIVO/Use+HTTP+caching+to+improve+performance
|
||||
#
|
||||
# Developers will likely want to leave caching disabled, since a change to a
|
||||
# Freemarker template or to a Java class would not cause the page to be
|
||||
# considered stale.
|
||||
#
|
||||
# http.createCacheHeaders = true
|
||||
|
||||
#
|
||||
# Absolute path on the server of the Harvester root directory.
|
||||
# You must include the final slash.
|
||||
#
|
||||
# Setting a value for harvester.location indicates that the Harvester is installed at
|
||||
# this path. This will enable the Harvester functions in the Ingest Tools page.
|
||||
#
|
||||
# harvester.location = /usr/local/vivo/harvester/
|
||||
|
||||
#
|
||||
# The temporal graph visualization is used to compare different organizations/people
|
||||
# within an organization on parameters like number of publications or grants.
|
||||
# By default, the app will attempt to make its best guess at the top level
|
||||
# organization in your instance. If you're unhappy with this selection, uncomment out
|
||||
# the property below and set it to the URI of the organization individual you want to
|
||||
# identify as the top level organization. It will be used as the default whenever the
|
||||
# temporal graph visualization is rendered without being passed an explicit org.
|
||||
# For example, to use "Ponce School of Medicine" as the top organization:
|
||||
# visualization.topLevelOrg = http://vivo.psm.edu/individual/n2862
|
||||
#
|
||||
# visualization.topLevelOrg = http://vivo.mydomain.edu/individual/topLevelOrgURI
|
||||
|
||||
#
|
||||
# The temporal graph visualization can require extensive machine resources.
|
||||
# This can have a particularly noticeable impact on memory usage if
|
||||
# - The organization tree is deep,
|
||||
# - The number of grants and publications is large.
|
||||
# VIVO 1.3 release mitigates this problem by the way of a caching mechanism &
|
||||
# hence we can safely set this to be enabled by default.
|
||||
#
|
||||
visualization.temporal = enabled
|
||||
|
||||
#
|
||||
# The co-authorship and co-investigator graphs have two variants - the traditional Flash based view,
|
||||
# and views using D3.
|
||||
# The traditional views require that users have Flash installed as a plugin, whereas D3 works on any
|
||||
# modern browser.
|
||||
# Currently, it is not possible to choose between them from the UI. You can choose to either have
|
||||
# the Flash visualizations, OR the D3 visualizations.
|
||||
# If this option is not present or set to enabled, then the D3 visualizations will be used.
|
||||
# If this option is present and set to disabled, then the Flash visualizations will be used.
|
||||
#visualization.d3 = disabled
|
||||
|
||||
#
|
||||
# Types of individual for which we can create proxy editors.
|
||||
# If this is omitted, defaults to http://www.w3.org/2002/07/owl#Thing
|
||||
#
|
||||
proxy.eligibleTypeList = http://xmlns.com/foaf/0.1/Person, http://xmlns.com/foaf/0.1/Organization
|
||||
|
||||
#
|
||||
# Default type(s) for Google Refine Reconciliation Service
|
||||
# The format for this property is id, name; id1, name1; id2, name2 etc.
|
||||
# For more information, see Service Metadata from this page:
|
||||
# http://code.google.com/p/google-refine/wiki/ReconciliationServiceApi
|
||||
#
|
||||
Vitro.reconcile.defaultTypeList = http://vivoweb.org/ontology/core#Role, core:Role; \
|
||||
http://vivoweb.org/ontology/core#AcademicDegree, core:Academic Degree; \
|
||||
http://purl.org/NET/c4dm/event.owl#Event, event:Event; \
|
||||
http://vivoweb.org/ontology/core#Location, core:Location; \
|
||||
http://xmlns.com/foaf/0.1/Organization, foaf:Organization; \
|
||||
http://xmlns.com/foaf/0.1/Person, foaf:Person; \
|
||||
http://purl.obolibrary.org/obo/IAO_0000030, obo:IAO_0000030
|
45
home/src/main/resources/config/licenser/known_exceptions.txt
Normal file
45
home/src/main/resources/config/licenser/known_exceptions.txt
Normal file
|
@ -0,0 +1,45 @@
|
|||
#
|
||||
# A list of files and directories that are known exceptions to the
|
||||
# license-insertion process.
|
||||
#
|
||||
# Files will only be altered if they contain a "magic" license place-holder,
|
||||
# but if they match one of the file-matchers and don't contain a place-holder,
|
||||
# the process will write a warning.
|
||||
#
|
||||
# File-matchers are:
|
||||
# '*.java', '*.jsp', '*.tld', '*.xsl', '*.xslt', '*.css', '*.js', 'build.xml'
|
||||
#
|
||||
# Known exceptions listed here produce no warnings.
|
||||
#
|
||||
# Any files added to this list should include a comment, so we know where they
|
||||
# came from, or why they don't require a license statement.
|
||||
#
|
||||
|
||||
# See /doc/3rd-party-licenses.txt for LICENSE file
|
||||
themes/vivo-basic/css/blueprint/grid.css
|
||||
themes/vivo-basic/css/blueprint/ie.css
|
||||
|
||||
# PROBLEM: Can't find any info on licensing.
|
||||
themes/vivo-basic/css/blueprint/liquid.css
|
||||
|
||||
# See /doc/3rd-party-licenses.txt for LICENSE file
|
||||
themes/vivo-basic/templates/googleAnalytics.ftl
|
||||
|
||||
# See /doc/3rd-party-licenses.txt for LICENSE file
|
||||
utilities/load-testing/jmeter-results-report.xsl
|
||||
utilities/load-testing/jmeter-results-detail-report.xsl
|
||||
|
||||
# See /doc/3rd-party-licenses.txt for LICENSE file
|
||||
productMods/css/jquery_plugins/*
|
||||
productMods/js/jquery_plugins/*
|
||||
productMods/js/leaflet/*
|
||||
productMods/js/visualization/entitycomparison/jquery_plugins/*
|
||||
|
||||
# PROBLEM: Can't find any info on licensing.
|
||||
productMods/js/jquery_plugins/jquery.truncator.js
|
||||
|
||||
# Part of the OpenSocial integration - should this really be under the Apache license?
|
||||
themes/wilma/css/openSocial/gadgets.css
|
||||
|
||||
# JQuery for the Selenium test helper app.
|
||||
utilities/acceptance-tests/testApp/js/jquery.js
|
34
home/src/main/resources/config/licenser/licenser.properties
Normal file
34
home/src/main/resources/config/licenser/licenser.properties
Normal file
|
@ -0,0 +1,34 @@
|
|||
# --------------------------------------------------------------------------
|
||||
# Properties for running the licenser utility in VIVO.
|
||||
# --------------------------------------------------------------------------
|
||||
|
||||
# The path to the top level directory to be scanned or copied
|
||||
# (if relative, then relative to this file)
|
||||
source_dir = ../../
|
||||
|
||||
# The path to the top level directory to copy into (ignored if only scanning)
|
||||
# (if relative, then relative to this file)
|
||||
target_dir =
|
||||
|
||||
# A list of filename globs that match the files we want to license,
|
||||
# delimited by commas with optional white-space.
|
||||
file_matchers = *.java, *.jsp, *.tld, *.xsl, *.xslt, *.css, *.js, *.ftl, *.xml
|
||||
|
||||
# "globs" that describe paths that we won't follow for scanning OR FOR COPYING.
|
||||
# (relative to the source_dir)
|
||||
skip_directories = ./bin, ./.svn, ./**/.svn, ./.build, ./vitro-core
|
||||
|
||||
# The path to a file containing filename/path globs that match the files that
|
||||
# we know should have no license tags in them.
|
||||
# The file contains one glob per line; blank lines and comments ("#") are ignored.
|
||||
# (if relative, then relative to the source directory)
|
||||
known_exceptions = config/licenser/known_exceptions.txt
|
||||
|
||||
# The path to the text of the license agreement (ignored if only scanning)
|
||||
# If the agreement contains a ${year} token, the current year will be substituted.
|
||||
# (if relative, then relative to the source directory)
|
||||
license_file = doc/license.txt
|
||||
|
||||
# Set to 'full' for a full report, 'short' for a brief statment, or to anything
|
||||
# else for a medium-length summary.
|
||||
report_level = short
|
18
home/src/main/resources/rdf/abox/filegraph/README.md
Normal file
18
home/src/main/resources/rdf/abox/filegraph/README.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
This directory contains "ABox" files with with RDF assertions about named individuals to be loaded by the VIVO application when it starts. There is a companion "tbox" directory that contains ontology class and property definitions.
|
||||
|
||||
The TBox and ABox are separated because VIVO caches ontology classes and properties in memory for improved performance. The contents of this directory will not be added to the cache.
|
||||
|
||||
Each file in this directory corresponds to a single graph in the VIVO graph store. For example, the contents of a file in this directory named example.owl would be loaded into graph named:
|
||||
|
||||
http://vitro.mannlib.cornell.edu/filegraph/abox/example.owl
|
||||
|
||||
At next startup, this graph will be checked against the contents of the file in the directory. If the two are not isomorphic, the graph in the store will be cleared and reloaded to match the current contents of the file. If the file no longer exists in the directory, the graph will be dropped entirely.
|
||||
|
||||
If a file contains any syntax errors, it will not be able to be parsed and its corresponding graph will not be updated at all. The parse error will be logged in vivo.all.log.
|
||||
|
||||
The following file formats are supported:
|
||||
|
||||
RDF/XML (.rdf or .owl)
|
||||
N3 (.n3)
|
||||
Turtle (.ttl)
|
||||
N-triples (.nt)
|
776
home/src/main/resources/rdf/abox/filegraph/academicDegree.rdf
Normal file
776
home/src/main/resources/rdf/abox/filegraph/academicDegree.rdf
Normal file
|
@ -0,0 +1,776 @@
|
|||
<rdf:RDF
|
||||
xmlns:geo="http://aims.fao.org/aos/geopolitical.owl#"
|
||||
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
||||
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
|
||||
xmlns:pvs="http://vivoweb.org/ontology/provenance-support#"
|
||||
xmlns:dcelem="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:core="http://vivoweb.org/ontology/core#"
|
||||
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
|
||||
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:bibo="http://purl.org/ontology/bibo/"
|
||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||
xmlns:scires="http://vivoweb.org/ontology/scientific-research#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" >
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree3">
|
||||
<core:abbreviation>A.M.T.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">A.M.T. Master of Arts in Teaching</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree54">
|
||||
<rdfs:label xml:lang="en-US">D.Sc. Doctor of Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>D.Sc.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree96">
|
||||
<core:abbreviation>Pharm.D.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">Pharm.D. Doctor of Pharmacy</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree86">
|
||||
<rdfs:label xml:lang="en-US">M.M.E. Master of Mechanical Engineering</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>M.M.E.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree27">
|
||||
<core:abbreviation>B.M.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">B.M. Bachelor of Medicine</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree73">
|
||||
<rdfs:label xml:lang="en-US">M.B.A. Master of Business Administration</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>M.B.A.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree141">
|
||||
<core:abbreviation>M.B.E.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">M.B.E. Master of Business Engineering</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree126">
|
||||
<core:abbreviation>M.M.S.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">M.M.S. Master of Management Studies</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree40">
|
||||
<rdfs:label xml:lang="en-US">D.C. Doctor of Chiropractic</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>D.C.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree150">
|
||||
<core:abbreviation>M.M.Sc.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">M.M.Sc. Master of Medical Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree48">
|
||||
<core:abbreviation>D.M.S.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">D.M.S. Doctor of Medical Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree125">
|
||||
<core:abbreviation>D.M.Sc.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">D.M.Sc. Doctor of Medical Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree33">
|
||||
<rdfs:label xml:lang="en-US">B.S. Bachelor of Science</rdfs:label>
|
||||
<core:abbreviation>B.S.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree121">
|
||||
<rdfs:label xml:lang="en-US">Sc.B. Bachelor of Science</rdfs:label>
|
||||
<core:abbreviation>Sc.B.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree68">
|
||||
<core:abbreviation>LL.B.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">LL.B. Bachelor of Laws</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree113">
|
||||
<rdfs:label xml:lang="en-US">M.P.H. Master of Public Health</rdfs:label>
|
||||
<core:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string"><p>Professional public health degree. (contrast with M.S.P.H.)</p>
|
||||
<p>See the Wikipedia entry at: http://en.wikipedia.org/wiki/Professional_degrees_of_public_health</p></core:description>
|
||||
<core:abbreviation rdf:datatype="http://www.w3.org/2000/01/rdf-schema#Literal">M.P.H.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree101">
|
||||
<core:abbreviation>S.J.D.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">S.J.D. Doctor of Juridical Science</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree13">
|
||||
<rdfs:label xml:lang="en-US">B.B.A. Bachelor of Business Administration</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>B.B.A.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree53">
|
||||
<rdfs:label xml:lang="en-US">D.S.W. Doctor of Social Work</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>D.S.W.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree2">
|
||||
<rdfs:label xml:lang="en-US">AeEng. Aeronautical Engineer</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>AeEng.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree95">
|
||||
<rdfs:label xml:lang="en-US">O.D. Doctor of Optometry</rdfs:label>
|
||||
<core:abbreviation>O.D.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree60">
|
||||
<rdfs:label xml:lang="en-US">E.Met. Engineer of Metallurgy</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>E.Met.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree85">
|
||||
<core:abbreviation>M.M.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">M.M. Master of Music</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree74">
|
||||
<rdfs:label xml:lang="en-US">M.C.E. Master of Christian Education </rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>M.C.E.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree28">
|
||||
<core:abbreviation>B.M.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">B.M. Bachelor of Music</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree47">
|
||||
<rdfs:label xml:lang="en-US">D.O. Doctor of Osteopathic Medicine</rdfs:label>
|
||||
<core:abbreviation>D.O.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree20">
|
||||
<rdfs:label xml:lang="en-US">B.E.E. Bachelor of Electrical Engineering</rdfs:label>
|
||||
<core:abbreviation>B.E.E.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree34">
|
||||
<rdfs:label xml:lang="en-US">B.S.Ed. Bachelor of Science in Education</rdfs:label>
|
||||
<core:abbreviation>B.S.Ed.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree114">
|
||||
<core:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string"><p>Academic public health degree. (contrast with M.P.H.).&nbsp; The M.S.P.H. is more research-oriented than the M.P.H.</p>
|
||||
<p>See the Wikipedia entry at: http://en.wikipedia.org/wiki/Professional_degrees_of_public_health</p></core:description>
|
||||
<rdfs:label xml:lang="en-US">M.S.P.H. Master of Science in Public Health</rdfs:label>
|
||||
<core:abbreviation>M.S.P.H.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree67">
|
||||
<rdfs:label xml:lang="en-US">Litt.M. Master of Letters</rdfs:label>
|
||||
<core:abbreviation>Litt.M.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree14">
|
||||
<core:abbreviation>B.C.E.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">B.C.E. Bachelor of Civil Engineering</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree102">
|
||||
<core:abbreviation>S.J.D.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">S.J.D. Doctor of the Science of Law</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree61">
|
||||
<rdfs:label xml:lang="en-US">I.E. Industrial Engineer</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>I.E.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree98">
|
||||
<core:abbreviation>Ph.D.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">Ph.D. Doctor of Philosophy</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree39">
|
||||
<rdfs:label xml:lang="en-US">D.B.A. Doctor of Business Administration</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>D.B.A.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree52">
|
||||
<rdfs:label xml:lang="en-US">D.S.W. Doctor of Social Welfare</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>D.S.W.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree5">
|
||||
<core:abbreviation>B.A.E.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">B.A.E. Bachelor of Arts in Education</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree29">
|
||||
<core:abbreviation>B.M.S.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">B.M.S. Bachelor of Marine Science</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree42">
|
||||
<core:abbreviation>D.D.S.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">D.D.S. Doctor of Dental Surgery</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree90">
|
||||
<core:abbreviation>M.R.E.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">M.R.E. Master of Religious Education</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree71">
|
||||
<core:abbreviation>M.A.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">M.A. Master of Arts</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree122">
|
||||
<core:abbreviation>M.H.S.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">M.H.S. Master of Health Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree84">
|
||||
<core:abbreviation>M.L.S.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">M.L.S. Master of Library Science</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree21">
|
||||
<core:abbreviation>B.F.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">B.F. Bachelor of Forestry</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree11">
|
||||
<rdfs:label xml:lang="en-US">B.A.M. Bachelor of Applied Mathematics</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>B.A.M.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree103">
|
||||
<core:abbreviation>S.Sc.D.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">S.Sc.D. Doctor of Social Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree31">
|
||||
<core:abbreviation>B.Pharm.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">B.Pharm. Bachelor of Pharmacy</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree142">
|
||||
<core:abbreviation>Pharm.B.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">Pharm.B. Bachelor of Pharmacy</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree143">
|
||||
<core:abbreviation>Pharm.M.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">Pharm.M. Master of Pharmacy</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree115">
|
||||
<core:abbreviation>M.L.I.S.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">M.L.I.S. Master of Library and Information Science </rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree97">
|
||||
<core:abbreviation>Ph.B.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">Ph.B. Bachelor of Philosophy</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree62">
|
||||
<core:abbreviation>I.E.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">I.E. Industrial Engineering</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree51">
|
||||
<core:abbreviation>D.R.E.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">D.R.E. Doctor of Religious Education</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree4">
|
||||
<core:abbreviation>B.A.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">B.A. Bachelor of Arts</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree41">
|
||||
<rdfs:label xml:lang="en-US">D.D. Doctor of Divinity</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>D.D.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree83">
|
||||
<core:abbreviation>M.H.A.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">M.H.A. Master of Hospital Administration</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree72">
|
||||
<core:abbreviation>M.Aero.E.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">M.Aero.E. Master of Aeronautical Engineering</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree79">
|
||||
<rdfs:label xml:lang="en-US">M.E. Master of Engineering</rdfs:label>
|
||||
<core:abbreviation>M.E.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree134">
|
||||
<rdfs:label xml:lang="en-US">M.S.E. Master of Science in Engineering</rdfs:label>
|
||||
<core:abbreviation>M.S.E.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree49">
|
||||
<core:abbreviation>D.P.A.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">D.P.A. Doctor of Public Administration</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree104">
|
||||
<rdfs:label xml:lang="en-US">S.T.B. Bachelor of Sacred Theology</rdfs:label>
|
||||
<core:abbreviation>S.T.B.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree12">
|
||||
<rdfs:label xml:lang="en-US">B.Arch. Bachelor of Architecture</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>B.Arch.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree116">
|
||||
<rdfs:label xml:lang="en-US">Dip.Ed. Diploma of Education</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree32">
|
||||
<rdfs:label xml:lang="en-US">B.R.E. Bachelor of Religious Education</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>B.R.E.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree59">
|
||||
<rdfs:label xml:lang="en-US">E.M. Engineer of Mines</rdfs:label>
|
||||
<core:abbreviation>E.M.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree69">
|
||||
<core:abbreviation>LL.D.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">LL.D. Doctor of Laws</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree22">
|
||||
<core:abbreviation>B.F.A.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">B.F.A. Bachelor of Fine Arts</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree100">
|
||||
<rdfs:label xml:lang="en-US">Sc.D. Doctor of Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>Sc.D.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree23">
|
||||
<core:abbreviation>B.J.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">B.J. Bachelor of Journalism</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree58">
|
||||
<rdfs:label xml:lang="en-US">E.E. Electrical Engineer</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>E.E.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree82">
|
||||
<rdfs:label xml:lang="en-US">M.F.A. Master of Fine Arts</rdfs:label>
|
||||
<core:abbreviation>M.F.A.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree37">
|
||||
<rdfs:label xml:lang="en-US">D.A. Doctor of Arts</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>D.A.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree44">
|
||||
<core:abbreviation>D.Ed.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">D.Ed. Doctor of Education</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree92">
|
||||
<core:abbreviation>M.S.W.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">M.S.W. Master of Social Work</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree7">
|
||||
<rdfs:label xml:lang="en-US">B.A.E. Aeronautical Engineering</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>B.A.E.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree110">
|
||||
<core:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Abbreviation commonly used by Canadian and British universities.</core:description>
|
||||
<rdfs:label xml:lang="en-US">B.Sc. Bachelor of Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation rdf:datatype="http://www.w3.org/2000/01/rdf-schema#Literal">B.Sc.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree17">
|
||||
<rdfs:label xml:lang="en-US">B.D. Bachelor of Divinity</rdfs:label>
|
||||
<core:abbreviation>B.D.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree105">
|
||||
<rdfs:label xml:lang="en-US">S.T.D. Doctor of Sacred Theology</rdfs:label>
|
||||
<core:abbreviation>S.T.D.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree117">
|
||||
<core:abbreviation>M.Sc.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">M.Sc. Master of Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree123">
|
||||
<core:abbreviation>Sc.M.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">Sc.M. Master of Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree99">
|
||||
<core:abbreviation>S.B.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">S.B. Bachelor of Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree89">
|
||||
<core:abbreviation>M.N.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">M.N. Master of Nursing</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree64">
|
||||
<core:abbreviation>J.S.D.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">J.S.D. Doctor of Juristic Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree78">
|
||||
<core:abbreviation>M.Div.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">M.Div. Master of Divinity</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree70">
|
||||
<core:abbreviation>LL.M.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">LL.M. Master of Laws</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree24">
|
||||
<rdfs:label xml:lang="en-US">B.L.S. Bachelor of Liberal Studies</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>B.L.S.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree120">
|
||||
<rdfs:label xml:lang="en-US">B.S.E. Bachelor of Science in Engineering</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>B.S.E.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree81">
|
||||
<rdfs:label xml:lang="en-US">M.Eng. Master of Engineering</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>M.Eng.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree57">
|
||||
<core:abbreviation>Ed.S.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">Ed.S. Education Specialist</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree43">
|
||||
<core:abbreviation>D.D.S.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">D.D.S. Doctor of Dental Science</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree10">
|
||||
<core:abbreviation>B.Ag.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">B.Ag. Bachelor of Agriculture</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree124">
|
||||
<rdfs:label xml:lang="en-US">B.A.S. Bachelor of Applied Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>B.A.S.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree38">
|
||||
<rdfs:label xml:lang="en-US">D.A.S. Doctor of Applied Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>D.A.S.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree91">
|
||||
<core:abbreviation>M.S.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">M.S. Master of Science</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree19">
|
||||
<rdfs:label xml:lang="en-US">B.E. Bachelor of Engineering</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>B.E.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree6">
|
||||
<rdfs:label xml:lang="en-US">B.A.E. Bachelor of Art Education</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>B.A.E.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree106">
|
||||
<core:abbreviation>S.T.M.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">S.T.M. Master of Sacred Theology</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree18">
|
||||
<rdfs:label xml:lang="en-US">B.E. Bachelor of Education</rdfs:label>
|
||||
<core:abbreviation>B.E.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree30">
|
||||
<core:abbreviation>B.N.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">B.N. Bachelor of Nursing</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree130">
|
||||
<core:abbreviation>B.S.N.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">B.S.N. Bachelor of Science in Nursing</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree138">
|
||||
<core:abbreviation>B.N.S.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">B.N.S. Bachelor of Science in Nursing</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree118">
|
||||
<core:abbreviation>A.D.N.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">ADN Associate Degree Nursing</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree132">
|
||||
<core:abbreviation>A.A.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">A.A. Associate of Arts</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree127">
|
||||
<core:abbreviation>A.S.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">A.S. Associate of Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree50">
|
||||
<core:abbreviation>D.P.H.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">D.P.H. Doctor of Public Health</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree148">
|
||||
<core:abbreviation>Dr.P.H.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">Dr.P.H. Doctor of Public Health</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree63">
|
||||
<core:abbreviation>J.D.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">J.D. Doctor of Laws</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree1">
|
||||
<rdfs:label xml:lang="en-US">A.B. Bachelor of Arts</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>A.B.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree131">
|
||||
<core:abbreviation>M.Med.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">M.Med. Master of Medicine</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree77">
|
||||
<core:abbreviation>M.D.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">M.D. Doctor of Medicine</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree80">
|
||||
<rdfs:label xml:lang="en-US">M.Ed. Master of Education</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>M.Ed.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree133">
|
||||
<rdfs:label xml:lang="en-US">Ed.M Master of Education</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>Ed.M.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree56">
|
||||
<core:abbreviation>Ed.D.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">Ed.D. Doctor of Education</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree25">
|
||||
<rdfs:label xml:lang="en-US">B.L.S. Bachelor of Library Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>B.L.S.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree112">
|
||||
<core:abbreviation>D.Phil.</core:abbreviation>
|
||||
<core:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Abbreviation commonly used by Canadian and British universities.</core:description>
|
||||
<rdfs:label xml:lang="en-US">D.Phil. Doctor of Philosophy</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree35">
|
||||
<core:abbreviation>C.E.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">C.E. Civil Engineer</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree9">
|
||||
<core:abbreviation>B.A.E.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">B.A.E. Architectural Engineering</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree94">
|
||||
<rdfs:label xml:lang="en-US">Nuc.E. Nuclear Engineer</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>Nuc.E.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree46">
|
||||
<rdfs:label xml:lang="en-US">D.M.D. Doctor of Dental Medicine</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>D.M.D.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree87">
|
||||
<rdfs:label xml:lang="en-US">M.M.E. Master of Music Education</rdfs:label>
|
||||
<core:abbreviation>M.M.E.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree76">
|
||||
<core:abbreviation>M.C.S.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">M.C.S. Master of Computer Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree66">
|
||||
<rdfs:label xml:lang="en-US">Litt.B. Bachelor of Letters</rdfs:label>
|
||||
<core:abbreviation>Litt.B.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree15">
|
||||
<core:abbreviation>B.Ch.E</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">B.Ch.E Bachelor of Chemical Engineering</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree140">
|
||||
<core:abbreviation>M.Ch.E.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">M.Ch.E. Master of Chemical Engineering</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree107">
|
||||
<core:abbreviation>Th.B.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">Th.B. Bachelor of Theology</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree128">
|
||||
<core:abbreviation>B.V.S.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">B.V.S. Bachelor of Veterinary Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree129">
|
||||
<core:abbreviation>M.V.Sc.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">M.V.Sc. Master of Veterinary Science</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree55">
|
||||
<core:abbreviation>D.V.M.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">D.V.M. Doctor of Veterinary Medicine</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree144">
|
||||
<core:abbreviation>V.M.D.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">V.M.D. Veterinariae Medicinae Doctoris</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree26">
|
||||
<rdfs:label xml:lang="en-US">B.Lit. Bachelor of Literature</rdfs:label>
|
||||
<core:abbreviation>B.Lit.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree8">
|
||||
<rdfs:label xml:lang="en-US">B.A.E. Agricultural Engineering</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>B.A.E.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree111">
|
||||
<core:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Abbreviation commonly used by Canadian and British universities.</core:description>
|
||||
<core:abbreviation>M.Phil.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">M.Phil. Master of Philosophy </rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree109">
|
||||
<rdfs:label xml:lang="en-US">Th.M. Master of Theology</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>Th.M.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree36">
|
||||
<core:abbreviation>Ch.E.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">Ch.E. Chemical Engineer</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree45">
|
||||
<rdfs:label xml:lang="en-US">D.L.S. Doctor of Library Science</rdfs:label>
|
||||
<core:abbreviation>D.L.S.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree93">
|
||||
<rdfs:label xml:lang="en-US">M.Th. Master of Theology</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>M.Th.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree16">
|
||||
<core:abbreviation>B.C.L.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">B.C.L. Bachelor of Canon Law</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree108">
|
||||
<core:abbreviation>Th.D.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">Th.D. Doctor of Theology</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree75">
|
||||
<rdfs:label xml:lang="en-US">M.C.E. Master of Civil Engineering</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>M.C.E.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree65">
|
||||
<rdfs:label xml:lang="en-US">L.H.D. Doctor of Humane Letters</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<core:abbreviation>L.H.D.</core:abbreviation>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree88">
|
||||
<core:abbreviation>M.Mus.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">M.Mus. Master of Music</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree119">
|
||||
<core:abbreviation>Psy.D.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">Psy.D. Doctor of Psychology</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree135">
|
||||
<rdfs:label xml:lang="en-US">F.R.C.S. Fellowship of the Royal College of Surgeons</rdfs:label>
|
||||
<core:abbreviation>F.R.S.C.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree136">
|
||||
<rdfs:label xml:lang="en-US">B.S.F.S. Bachelor of Science in Forensic Science</rdfs:label>
|
||||
<core:abbreviation>B.S.F.S.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree137">
|
||||
<rdfs:label xml:lang="en-US">M.I.A. Master of International Affairs</rdfs:label>
|
||||
<core:abbreviation>M.I.A.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree139">
|
||||
<core:abbreviation>D.P.M.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">D.P.M. Doctor of Podiatric Medicine</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree145">
|
||||
<core:abbreviation>Au.D.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">Au.D. Doctor of Audiology</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree146">
|
||||
<core:abbreviation>D.H.Ed.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">D.H.Ed. Doctor of Health Education</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree147">
|
||||
<core:abbreviation>M.P.A.S.</core:abbreviation>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:label xml:lang="en-US">M.P.A.S. Master in Physician Assistant Studies</rdfs:label>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/degree/academicDegree149">
|
||||
<core:abbreviation>H.S.C.</core:abbreviation>
|
||||
<rdfs:label xml:lang="en-US">H.S.C. Higher School Certificate</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
</rdf:Description>
|
||||
|
||||
</rdf:RDF>
|
11
home/src/main/resources/rdf/abox/filegraph/continents.n3
Normal file
11
home/src/main/resources/rdf/abox/filegraph/continents.n3
Normal file
|
@ -0,0 +1,11 @@
|
|||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix core: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix geo: <http://aims.fao.org/aos/geopolitical.owl#> .
|
||||
|
||||
geo:Africa rdf:type core:Continent .
|
||||
geo:Asia rdf:type core:Continent .
|
||||
geo:Australia_and_New_Zealand rdf:type core:Continent .
|
||||
geo:Europe rdf:type core:Continent .
|
||||
geo:South_America rdf:type core:Continent .
|
||||
geo:northern_America rdf:type core:Continent .
|
||||
geo:Antarctica rdf:type core:Continent .
|
|
@ -0,0 +1,29 @@
|
|||
<rdf:RDF
|
||||
xmlns:j.0="http://aims.fao.org/aos/geopolitical.owl#"
|
||||
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
||||
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
|
||||
xmlns:dcelem="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:core="http://vivoweb.org/ontology/core#"
|
||||
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
|
||||
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:bibo="http://purl.org/ontology/bibo/"
|
||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
|
||||
<core:DateTimeValuePrecision rdf:about="http://vivoweb.org/ontology/core#yearMonthDayPrecision">
|
||||
<rdfs:label xml:lang="en-US">yearMonthDayPrecision</rdfs:label>
|
||||
</core:DateTimeValuePrecision>
|
||||
<core:DateTimeValuePrecision rdf:about="http://vivoweb.org/ontology/core#yearMonthPrecision">
|
||||
<rdfs:label xml:lang="en-US">yearMonthPrecision</rdfs:label>
|
||||
</core:DateTimeValuePrecision>
|
||||
<core:DateTimeValuePrecision rdf:about="http://vivoweb.org/ontology/core#yearPrecision">
|
||||
<rdfs:label xml:lang="en-US">yearPrecision</rdfs:label>
|
||||
</core:DateTimeValuePrecision>
|
||||
<core:DateTimeValuePrecision rdf:about="http://vivoweb.org/ontology/core#yearMonthDayTimePrecision">
|
||||
<rdfs:label xml:lang="en-US">yearMonthDayTimePrecision</rdfs:label>
|
||||
</core:DateTimeValuePrecision>
|
||||
</rdf:RDF>
|
|
@ -0,0 +1,52 @@
|
|||
<rdf:RDF
|
||||
xmlns:j.0="http://aims.fao.org/aos/geopolitical.owl#"
|
||||
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
||||
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
|
||||
xmlns:dcelem="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:core="http://vivoweb.org/ontology/core#"
|
||||
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
|
||||
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:bibo="http://purl.org/ontology/bibo/"
|
||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
|
||||
<bibo:DocumentStatus rdf:about="http://purl.org/ontology/bibo/peerReviewed">
|
||||
<rdfs:label xml:lang="en-US">peer reviewed</rdfs:label>
|
||||
<core:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
|
||||
>&nbsp;Peer review is the process by which articles are chosen to be included in a refereed journal. An editorial board consisting of experts in the same field as the author review the article and decide if it is authoritative enough for publication.</core:description>
|
||||
</bibo:DocumentStatus>
|
||||
<bibo:DocumentStatus rdf:about="http://vivoweb.org/ontology/core#inPress">
|
||||
<rdfs:label xml:lang="en-US">in press</rdfs:label>
|
||||
<core:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
|
||||
>Document to be published</core:description>
|
||||
</bibo:DocumentStatus>
|
||||
<bibo:DocumentStatus rdf:about="http://vivoweb.org/ontology/core#invited">
|
||||
<rdfs:label xml:lang="en-US">invited</rdfs:label>
|
||||
</bibo:DocumentStatus>
|
||||
<bibo:DocumentStatus rdf:about="http://purl.org/ontology/bibo/rejected">
|
||||
<rdfs:label xml:lang="en-US">rejected</rdfs:label>
|
||||
</bibo:DocumentStatus>
|
||||
<bibo:DocumentStatus rdf:about="http://purl.org/ontology/bibo/unpublished">
|
||||
<rdfs:label xml:lang="en-US">unpublished</rdfs:label>
|
||||
</bibo:DocumentStatus>
|
||||
<bibo:DocumentStatus rdf:about="http://vivoweb.org/ontology/core#submitted">
|
||||
<rdfs:label xml:lang="en-US">submitted</rdfs:label>
|
||||
</bibo:DocumentStatus>
|
||||
<bibo:DocumentStatus rdf:about="http://purl.org/ontology/bibo/accepted">
|
||||
<core:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
|
||||
>Accepted for publication after peer reviewing</core:description>
|
||||
<rdfs:label xml:lang="en-US">accepted</rdfs:label>
|
||||
</bibo:DocumentStatus>
|
||||
<bibo:DocumentStatus rdf:about="http://purl.org/ontology/bibo/published">
|
||||
<rdfs:label xml:lang="en-US">published</rdfs:label>
|
||||
<core:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
|
||||
>Published document</core:description>
|
||||
</bibo:DocumentStatus>
|
||||
<bibo:DocumentStatus rdf:about="http://purl.org/ontology/bibo/draft">
|
||||
<rdfs:label xml:lang="en-US">draft</rdfs:label>
|
||||
</bibo:DocumentStatus>
|
||||
</rdf:RDF>
|
File diff suppressed because it is too large
Load diff
351
home/src/main/resources/rdf/abox/filegraph/us-states.rdf
Normal file
351
home/src/main/resources/rdf/abox/filegraph/us-states.rdf
Normal file
|
@ -0,0 +1,351 @@
|
|||
<rdf:RDF
|
||||
xmlns:vivo="http://vivoweb.org/ontology/core#"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:dbpedia="http://dbpedia.org/resource/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" >
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Alabama">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Alabama</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Alaska">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Alaska</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/American_Samoa">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">American Samoa</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Arizona">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Arizona</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Arkansas">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Arkansas</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/California">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">California</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Colorado">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Colorado</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Connecticut">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Connecticut</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Delaware">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Delaware</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Washington,_D.C.">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">District of Columbia</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Florida">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Florida</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Georgia">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Georgia</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Guam">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Guam</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Hawaii">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Hawaii</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Idaho">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Idaho</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Illinois">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Illinois</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Indiana">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Indiana</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Iowa">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Iowa</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Kansas">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Kansas</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Kentucky">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Kentucky</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Louisiana">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Louisiana</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Maine">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Maine</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Maryland">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Maryland</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Massachusetts">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Massachusetts</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Michigan">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Michigan</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Minnesota">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Minnesota</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Mississipi">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Mississippi</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Missouri">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Missouri</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Montana">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Montana</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Nebraska">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Nebraska</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Nevada">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Nevada</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/New_Hampshire">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">New Hampshire</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/New_Jersey">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">New Jersey</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/New_Mexico">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">New Mexico</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/New_York">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">New York</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/North_Carolina">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">North Carolina</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/North_Dakota">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">North Dakota</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Northern_Mariana_Islands">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Northern Mariana Islands</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Ohio">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Ohio</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Oklahoma">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Oklahoma</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Oregon">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Oregon</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Pennsylvania">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Pennsylvania</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Puerto_Rico">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Puerto Rico</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Rhode_Island">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Rhode Island</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/South_Carolina">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">South Carolina</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/South_Dakota">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">South Dakota</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Tennessee">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Tennessee</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Texas">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Texas</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/United_States_Virgin_Islands">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">US Virgin Islands</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Utah">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Utah</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Vermont">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Vermont</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Virginia">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Virginia</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Wake_Island">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Wake Island</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Washington">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Washington</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/West_Virginia">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">West Virginia</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Wisconsin">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Wisconsin</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://dbpedia.org/resource/Wyoming">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#StateOrProvince"/>
|
||||
<rdfs:label xml:lang="en">Wyoming</rdfs:label>
|
||||
<obo:BFO_0000050 rdf:resource="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America">
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Alabama"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Alaska"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/American_Samoa"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Arizona"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Arkansas"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/California"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Colorado"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Connecticut"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Delaware"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Florida"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Georgia"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Guam"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Hawaii"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Idaho"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Illinois"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Indiana"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Iowa"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Kansas"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Kentucky"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Louisiana"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Maine"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Maryland"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Massachusetts"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Michigan"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Minnesota"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Mississipi"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Missouri"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Montana"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Nebraska"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Nevada"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/New_Hampshire"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/New_Jersey"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/New_Mexico"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/New_York"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/North_Carolina"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/North_Dakota"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Northern_Mariana_Islands"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Ohio"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Oklahoma"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Oregon"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Pennsylvania"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Puerto_Rico"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Rhode_Island"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/South_Carolina"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/South_Dakota"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Tennessee"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Texas"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/United_States_Virgin_Islands"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Utah"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Vermont"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Virginia"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Wake_Island"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Washington"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Washington,_D.C."/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/West_Virginia"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Wisconsin"/>
|
||||
<obo:BFO_0000051 rdf:resource="http://dbpedia.org/resource/Wyoming"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
2
home/src/main/resources/rdf/abox/filegraph/validation.n3
Normal file
2
home/src/main/resources/rdf/abox/filegraph/validation.n3
Normal file
|
@ -0,0 +1,2 @@
|
|||
<http://orcid.org/1234-1231-1231-3333>
|
||||
<http://vivoweb.org/ontology/core#validatedOrcidId> <http://vivo.mydomain.edu/individual/n4571> .
|
|
@ -0,0 +1,8 @@
|
|||
<http://link.informatics.stonybrook.edu/umls> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Thing> .
|
||||
<http://aims.fao.org/aos/agrovoc/agrovocScheme> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Thing> .
|
||||
<http://www.eionet.europa.eu/gemet/gemetThesaurus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Thing> .
|
||||
<http://link.informatics.stonybrook.edu/umls> <http://www.w3.org/2000/01/rdf-schema#label> "UMLS"^^<http://www.w3.org/2001/XMLSchema#string> .
|
||||
<http://aims.fao.org/aos/agrovoc/agrovocScheme> <http://www.w3.org/2000/01/rdf-schema#label> "AGROVOC"^^<http://www.w3.org/2001/XMLSchema#string> .
|
||||
<http://www.eionet.europa.eu/gemet/gemetThesaurus> <http://www.w3.org/2000/01/rdf-schema#label> "GEMET"^^<http://www.w3.org/2001/XMLSchema#string> .
|
||||
<http://id.loc.gov/authorities/subjects> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Thing> .
|
||||
<http://id.loc.gov/authorities/subjects> <http://www.w3.org/2000/01/rdf-schema#label> "LCSH"^^<http://www.w3.org/2001/XMLSchema#string> .
|
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,75 @@
|
|||
<rdf:RDF
|
||||
xmlns:geo="http://aims.fao.org/aos/geopolitical.owl#"
|
||||
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
||||
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
|
||||
xmlns:pvs="http://vivoweb.org/ontology/provenance-support#"
|
||||
xmlns:dcelem="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:core="http://vivoweb.org/ontology/core#"
|
||||
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
|
||||
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:bibo="http://purl.org/ontology/bibo/"
|
||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||
xmlns:scires="http://vivoweb.org/ontology/scientific-research#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" >
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroClassGrouppublications">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
<rdfs:label xml:lang="en-US">research</rdfs:label>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-12-27T08:36:28</vitro:modTime>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup"/>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">8</vitro:displayRank>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroClassGroupactivities">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
<rdfs:label xml:lang="en-US">activities</rdfs:label>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-12-08T10:42:02</vitro:modTime>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup"/>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</vitro:displayRank>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroClassGrouporganizations">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
<rdfs:label xml:lang="en-US">organizations</rdfs:label>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-12-08T10:36:48</vitro:modTime>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup"/>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</vitro:displayRank>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroClassGroupcourses">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-12-08T10:42:15</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">courses</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup"/>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</vitro:displayRank>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroClassGroupequipment">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup"/>
|
||||
<rdfs:label xml:lang="en-US">equipment</rdfs:label>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-01-25T21:24:26</vitro:modTime>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">7</vitro:displayRank>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroClassGroupevents">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup"/>
|
||||
<rdfs:label xml:lang="en-US">events</rdfs:label>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-01-05T10:16:50</vitro:modTime>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">4</vitro:displayRank>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroClassGrouplocations">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup"/>
|
||||
<rdfs:label xml:lang="en-US">locations</rdfs:label>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-01-10T14:30:34</vitro:modTime>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">11</vitro:displayRank>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroClassGrouppeople">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</vitro:displayRank>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-12-08T10:32:16</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">people</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><rdf:RDF
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:j.0="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" >
|
||||
<rdf:Description>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Portal"/>
|
||||
<rdfs:label xml:lang="en-US">VIVO</rdfs:label>
|
||||
<j.0:shortHand rdf:datatype="http://www.w3.org/2001/XMLSchema#string">enabling national networking of scientists</j.0:shortHand>
|
||||
<j.0:flag1Filtering rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:flag1Filtering>
|
||||
<j.0:imageThumbWidth rdf:datatype="http://www.w3.org/2001/XMLSchema#int">0</j.0:imageThumbWidth>
|
||||
<j.0:logotypeHeight rdf:datatype="http://www.w3.org/2001/XMLSchema#int">0</j.0:logotypeHeight>
|
||||
<j.0:bannerWidth rdf:datatype="http://www.w3.org/2001/XMLSchema#int">0</j.0:bannerWidth>
|
||||
<j.0:rootTab rdf:nodeID="tab1"/>
|
||||
<j.0:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRank>
|
||||
<j.0:logotypeWidth rdf:datatype="http://www.w3.org/2001/XMLSchema#int">0</j.0:logotypeWidth>
|
||||
<j.0:bannerHeight rdf:datatype="http://www.w3.org/2001/XMLSchema#int">0</j.0:bannerHeight>
|
||||
<j.0:copyrightAnchor rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VIVO Project</j.0:copyrightAnchor>
|
||||
<j.0:aboutText rdf:datatype="http://www.w3.org/2001/XMLSchema#string"><p>VIVO is an open source semantic web application originally developed and implemented at Cornell. When installed and populated with content at an institution, it enables the discovery of research and scholarship across disciplines at that institution. VIVO supports browsing and a search function which returns faceted results for rapid retrieval of desired information. Content in any local VIVO installation may be maintained manually or brought into the database in automated ways from local systems of record, such as HR, grants, course, and faculty activity databases.</p>
|
||||
|
||||
|
||||
|
||||
<p>See more information on the <a href="http://vivoweb.org">VIVO Project</a>.</p></j.0:aboutText>
|
||||
<j.0:themeDir rdf:datatype="http://www.w3.org/2001/XMLSchema#string">themes/wilma/</j.0:themeDir>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
|
@ -0,0 +1,139 @@
|
|||
<rdf:RDF
|
||||
xmlns:j.0="http://aims.fao.org/aos/geopolitical.owl#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:j.1="http://www.w3.org/2006/12/owl2-xml#"
|
||||
xmlns:j.2="http://vivoweb.org/ontology/core#"
|
||||
xmlns:j.3="http://purl.org/vocab/vann/"
|
||||
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||
xmlns:j.4="http://www.w3.org/2008/05/skos#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:j.5="http://purl.org/ontology/bibo/"
|
||||
xmlns:j.6="http://www.w3.org/2003/06/sw-vocab-status/ns#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" >
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation">
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-12-28T09:47:01</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">affiliation</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Affiliations and other informal associations between people and organizations</vitro:publicDescriptionAnnot>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</vitro:displayRank>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers">
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">200</vitro:displayRank>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-12-28T09:16:01</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">identity</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">properties holding unique and non-unique identifiers, names, and other identification information</vitro:publicDescriptionAnnot>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupaddress">
|
||||
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">properties related to postal and email addresses</vitro:publicDescriptionAnnot>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">120</vitro:displayRank>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-12-28T09:15:07</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">contact</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGrouplinks">
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-12-28T14:00:43</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">links</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">link relationships</vitro:publicDescriptionAnnot>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">99</vitro:displayRank>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic">
|
||||
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">primary bibliographic properties of publications to prioritize in display</vitro:publicDescriptionAnnot>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">40</vitro:displayRank>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-12-28T09:12:36</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">publications</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupteaching">
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-01-10T15:37:48</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">teaching</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</vitro:displayRank>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupresearch">
|
||||
<rdfs:label xml:lang="en-US">research</rdfs:label>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-01-10T15:30:25</vitro:modTime>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</vitro:displayRank>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupoutreach">
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-01-10T15:38:51</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">service</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</vitro:displayRank>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupoverview">
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</vitro:displayRank>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-01-12T07:11:40</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">overview</rdfs:label>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline">
|
||||
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reference information to online content, translations, etc.</vitro:publicDescriptionAnnot>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">190</vitro:displayRank>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-01-10T16:50:29</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">related documents</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupbiography">
|
||||
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biographical information about a person, past or present</vitro:publicDescriptionAnnot>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">80</vitro:displayRank>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-01-10T12:36:28</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">background</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupbibmapping">
|
||||
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bibliographic properties in other namespaces mapped within VIVO core</vitro:publicDescriptionAnnot>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2033</vitro:displayRank>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-01-10T21:12:31</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">bib mapping</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupmapping">
|
||||
<rdfs:label xml:lang="en-US">mapping</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Properties included in VIVO core to support mappings to other ontologies</vitro:publicDescriptionAnnot>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2034</vitro:displayRank>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-01-10T21:31:36</vitro:modTime>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGrouptime">
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">195</vitro:displayRank>
|
||||
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dates and times for events, employment, etc.</vitro:publicDescriptionAnnot>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-12-28T13:54:45</vitro:modTime>
|
||||
<rdfs:label xml:lang="en-US">time</rdfs:label>
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure">
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<rdfs:label xml:lang="en-US">additional document info</rdfs:label>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2010-01-10T16:55:11</vitro:modTime>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2032</vitro:displayRank>
|
||||
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">obscure bibontology properties not likely to be used in VIVO</vitro:publicDescriptionAnnot>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology#vitroPropertyGrouplocation">
|
||||
<rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/>
|
||||
<rdfs:label xml:lang="en-US">location</rdfs:label>
|
||||
<vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relationships of place</vitro:publicDescriptionAnnot>
|
||||
<vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int">96</vitro:displayRank>
|
||||
<vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-12-28T13:05:00</vitro:modTime>
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
|
@ -0,0 +1,30 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix core: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix vivoweb: <http://vivoweb.org/ontology#> .
|
||||
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
||||
|
||||
# academic departments datagetter
|
||||
|
||||
<freemarker:lib-home-page.ftl> display:hasDataGetter display:academicDeptsDataGetter .
|
||||
|
||||
display:academicDeptsDataGetter
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.SparqlQueryDataGetter> ;
|
||||
display:saveToVar "academicDeptDG" ;
|
||||
display:query """
|
||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||
|
||||
SELECT DISTINCT ?theURI (str(?label) as ?name)
|
||||
WHERE
|
||||
{
|
||||
?theURI a vivo:AcademicDepartment .
|
||||
?theURI rdfs:label ?label
|
||||
}
|
||||
|
||||
""" .
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
#
|
||||
# Associate the LocaleSelectionDataGetter with the languageSelector.ftl Freemarker template.
|
||||
#
|
||||
|
||||
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||
|
||||
<freemarker:languageSelector.ftl> display:hasDataGetter display:localeSelectorDataGetter .
|
||||
|
||||
display:localeSelectorDataGetter
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.i18n.selection.LocaleSelectionDataGetter> .
|
|
@ -0,0 +1,18 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
## The example below demonstrates how you can associate particular ModelChangePreprocessors
|
||||
## with the application as a whole. These preprocessors will be run with
|
||||
## every edit/addition in N3EditUtils.preprocessModels(changes, configuration, vreq);
|
||||
|
||||
## Defines the preprocessor class
|
||||
## Can extend this to define what the constructor arguments should be if required, and then N3EditUtils.java should be modified
|
||||
## to know it can pull out parameters based on what is defined in the display model
|
||||
|
||||
# Testing to see if this will be read in BECAUSE this has changed and should be read in
|
||||
# <java:edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.preprocessors.TestModelChangePreprocessor>
|
||||
# a <java:edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.preprocessors.ModelChangePreprocessor> .
|
|
@ -0,0 +1,14 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
||||
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||
|
||||
#
|
||||
# datagetter to fetch ORCID info for the person.
|
||||
#
|
||||
|
||||
<freemarker:individual-orcidInterface.ftl> display:hasDataGetter display:orcidIdDataGetter .
|
||||
|
||||
display:orcidIdDataGetter
|
||||
a <java:edu.cornell.mannlib.vivo.orcid.OrcidIdDataGetter> .
|
||||
|
|
@ -0,0 +1,152 @@
|
|||
@prefix : <http://vitro.mannlib.cornell.edu/ns/vitro/ApplicationSetup#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
|
||||
|
||||
#
|
||||
# Specify the SearchIndexExcluders, DocumentModifiers and IndexingUriFinders for VIVO.
|
||||
# These are in addition to the ones specified for VIVO.
|
||||
#
|
||||
|
||||
:vivoSearchExcluder_namespaceExcluder
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.exclusions.ExcludeBasedOnNamespace> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.exclusions.SearchIndexExcluder> ;
|
||||
:excludes
|
||||
"http://purl.obolibrary.org/obo/" .
|
||||
|
||||
# ------------------------------------
|
||||
|
||||
# Most context nodes look like this: relatedBy ==> node ==> relates
|
||||
# relates <== node <== relatedBy
|
||||
:extension_forContextNodes
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.indexing.IndexingUriFinder> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.documentBuilding.DocumentModifier> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.extensions.LabelsAcrossContextNodes> ;
|
||||
rdfs:label "Labels across relatedBy/relates" ;
|
||||
:hasIncomingProperty "http://vivoweb.org/ontology/core#relatedBy" ;
|
||||
:hasOutgoingProperty "http://vivoweb.org/ontology/core#relates" .
|
||||
|
||||
# Some roles look like this: bearerOf ==> role ==> roleContributesTo
|
||||
# inheresIn <== role <== contributingRole
|
||||
:extension_forContextNodes_role_contributes_1
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.indexing.IndexingUriFinder> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.documentBuilding.DocumentModifier> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.extensions.LabelsAcrossContextNodes> ;
|
||||
rdfs:label "Labels across bearerOf/contributesTo" ;
|
||||
:hasIncomingProperty "http://purl.obolibrary.org/obo/RO_0000053" ;
|
||||
:hasOutgoingProperty "http://vivoweb.org/ontology/core#roleContributesTo" .
|
||||
|
||||
:extension_forContextNodes_role_contributes_2
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.indexing.IndexingUriFinder> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.documentBuilding.DocumentModifier> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.extensions.LabelsAcrossContextNodes> ;
|
||||
rdfs:label "Labels across contributor/inheresIn" ;
|
||||
:hasIncomingProperty "http://vivoweb.org/ontology/core#contributingRole" ;
|
||||
:hasOutgoingProperty "http://purl.obolibrary.org/obo/RO_0000052" .
|
||||
|
||||
# Other roles look like this: bearerOf ==> role ==> realizedIn
|
||||
# inheresIn <== role <== realizes
|
||||
:extension_forContextNodes_role_realizedIn_1
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.indexing.IndexingUriFinder> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.documentBuilding.DocumentModifier> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.extensions.LabelsAcrossContextNodes> ;
|
||||
rdfs:label "Labels across bearerOf/realizedIn" ;
|
||||
:hasIncomingProperty "http://purl.obolibrary.org/obo/RO_0000053" ;
|
||||
:hasOutgoingProperty "http://purl.obolibrary.org/obo/BFO_0000054" .
|
||||
|
||||
:extension_forContextNodes_role_realizedIn_2
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.indexing.IndexingUriFinder> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.documentBuilding.DocumentModifier> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.extensions.LabelsAcrossContextNodes> ;
|
||||
rdfs:label "Labels across realizes/inheresIn" ;
|
||||
:hasIncomingProperty "http://purl.obolibrary.org/obo/BFO_0000055" ;
|
||||
:hasOutgoingProperty "http://purl.obolibrary.org/obo/RO_0000052" .
|
||||
|
||||
# Roles on grants look like this: bearerOf ==> role ==> relatedBy
|
||||
# inheresIn <== role <== relates
|
||||
:extension_forContextNodes_roles_on_grants_1
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.indexing.IndexingUriFinder> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.documentBuilding.DocumentModifier> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.extensions.LabelsAcrossContextNodes> ;
|
||||
rdfs:label "Labels across bearerOf/relates" ;
|
||||
:hasIncomingProperty "http://purl.obolibrary.org/obo/RO_0000053" ;
|
||||
:hasOutgoingProperty "http://vivoweb.org/ontology/core#relatedBy" .
|
||||
|
||||
:extension_forContextNodes_roles_on_grants_2
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.indexing.IndexingUriFinder> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.documentBuilding.DocumentModifier> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.extensions.LabelsAcrossContextNodes> ;
|
||||
rdfs:label "Labels across contributor/relatedBy" ;
|
||||
:hasIncomingProperty "http://vivoweb.org/ontology/core#relates" ;
|
||||
:hasOutgoingProperty "http://purl.obolibrary.org/obo/RO_0000052" .
|
||||
|
||||
|
||||
# ------------------------------------
|
||||
|
||||
:vivodocumentModifier_calculateParameters
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.documentBuilding.CalculateParameters> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.documentBuilding.DocumentModifier> .
|
||||
|
||||
# ------------------------------------
|
||||
|
||||
:vivoUriFinder_VCard
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.indexing.IndexingUriFinder> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.indexing.SelectQueryUriFinder> ;
|
||||
rdfs:label "Preferred title" ;
|
||||
:hasPredicateRestriction "http://www.w3.org/2006/vcard/ns#title" ;
|
||||
:hasPredicateRestriction "http://www.w3.org/2006/vcard/ns#email" ;
|
||||
:hasSelectQuery """
|
||||
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||
SELECT ?uri
|
||||
WHERE {
|
||||
?uri obo:ARG_2000028 ?card .
|
||||
?card a vcard:Individual .
|
||||
?card vcard:hasTitle ?subject .
|
||||
}
|
||||
""" ;
|
||||
:hasSelectQuery """
|
||||
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||
SELECT ?uri
|
||||
WHERE {
|
||||
?uri obo:ARG_2000028 ?card .
|
||||
?card a vcard:Individual .
|
||||
?card vcard:hasEmail ?subject .
|
||||
}
|
||||
""" .
|
||||
|
||||
:vivodocumentModifier_PreferredTitle
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.documentBuilding.SelectQueryDocumentModifier> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.documentBuilding.DocumentModifier> ;
|
||||
rdfs:label "Preferred title" ;
|
||||
:hasTargetField "ALLTEXT" ;
|
||||
:hasTargetField "ALLTEXTUNSTEMMED" ;
|
||||
:hasTargetField "PREFERRED_TITLE" ;
|
||||
:hasSelectQuery """
|
||||
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||
SELECT ?title
|
||||
WHERE {
|
||||
?uri obo:ARG_2000028 ?card .
|
||||
?card a vcard:Individual .
|
||||
?card vcard:hasTitle ?titleHolder .
|
||||
?titleHolder vcard:title ?title .
|
||||
}
|
||||
""" .
|
||||
|
||||
:vivodocumentModifier_EmailAddress
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.documentBuilding.SelectQueryDocumentModifier> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.searchindex.documentBuilding.DocumentModifier> ;
|
||||
rdfs:label "Email address" ;
|
||||
:hasSelectQuery """
|
||||
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||
SELECT ?email
|
||||
WHERE {
|
||||
?uri obo:ARG_2000028 ?card .
|
||||
?card a vcard:Individual .
|
||||
?card vcard:hasEmail ?emailHolder .
|
||||
?emailHolder vcard:email ?email .
|
||||
}
|
||||
""" .
|
||||
|
|
@ -0,0 +1,103 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix core: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix vivoweb: <http://vivoweb.org/ontology#> .
|
||||
|
||||
|
||||
#### n3 for research areas ####
|
||||
|
||||
## associate the classes with the datagetter ##
|
||||
|
||||
<http://www.w3.org/2004/02/skos/core#Concept> display:hasDataGetter display:getDepartmentDataGetter .
|
||||
<http://www.w3.org/2004/02/skos/core#Concept> display:hasDataGetter display:getVocabServiceDataGetter .
|
||||
|
||||
## define the datagetter ##
|
||||
|
||||
display:getDepartmentDataGetter
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.SparqlQueryDataGetter>;
|
||||
display:saveToVar "departmentsResults";
|
||||
display:query
|
||||
"""
|
||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||
SELECT DISTINCT (str(?departmentLabel) AS ?deptLabel) ?dept
|
||||
WHERE {
|
||||
?individualURI vivo:researchAreaOf ?person .
|
||||
?person vivo:relatedBy ?posn .
|
||||
?posn a vivo:Position .
|
||||
?posn vivo:relates ?dept .
|
||||
?dept a foaf:Organization .
|
||||
?dept rdfs:label ?departmentLabel
|
||||
OPTIONAL { ?posn vivo:dateTimeInterval ?dti
|
||||
OPTIONAL { ?dti vivo:end ?end .
|
||||
?end vivo:dateTime ?endDate
|
||||
}
|
||||
}
|
||||
FILTER ( !bound(?endDate) ||
|
||||
substr(str(?endDate), 1, 4) >= substr(str(now()), 1, 4) )
|
||||
}
|
||||
ORDER BY ?deptLabel
|
||||
""" .
|
||||
|
||||
display:getVocabServiceDataGetter
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.SparqlQueryDataGetter>;
|
||||
display:saveToVar "vocabularyService";
|
||||
display:query
|
||||
"""
|
||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||
SELECT DISTINCT (str(?vocabularySourceName) AS ?vocabService)
|
||||
WHERE {
|
||||
?individualURI rdfs:isDefinedBy ?vocabularySource .
|
||||
?vocabularySource rdfs:label ?vocabularySourceName .
|
||||
}
|
||||
""" .
|
||||
|
||||
## detail page for dept research areas ##
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ns/default/page#AffiliatedDepartments>
|
||||
a <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#Page> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasDataGetter> <http://vitro.mannlib.cornell.edu/ns/default/datagetter#AffiliatedDepartmentsDG> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#requiresBodyTemplate> "individual-affiliated-dept-details.ftl" ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#title> "Affiliated Departments" ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#urlMapping> "/affiliatedDepartments" .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ns/default/datagetter#AffiliatedDepartmentsDG>
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.SparqlQueryDataGetter> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#query>
|
||||
"""
|
||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||
SELECT DISTINCT (str (?prsnLabel) AS ?personLabel)
|
||||
?person
|
||||
(Str(?researchAreaLabel) AS ?raLabel)
|
||||
(str(?departmentLabel) AS ?orgLabel)
|
||||
?ra
|
||||
?org
|
||||
WHERE {
|
||||
?orgURI vivo:relatedBy ?posn .
|
||||
?posn a vivo:Position .
|
||||
?orgURI rdfs:label ?departmentLabel .
|
||||
?posn vivo:relates ?person .
|
||||
?person a foaf:Person .
|
||||
?person rdfs:label ?prsnLabel .
|
||||
?person vivo:hasResearchArea ?raURI .
|
||||
?raURI rdfs:label ?researchAreaLabel
|
||||
BIND(?raURI AS ?ra)
|
||||
BIND(?orgURI AS ?org)
|
||||
|
||||
}
|
||||
ORDER BY ?personLabel
|
||||
""" ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#saveToVar>
|
||||
"deptResearchAreas" .
|
||||
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,133 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE rdf:RDF [
|
||||
<!ENTITY display "http://vitro.mannlib.cornell.edu/ontologies/display/1.1#">
|
||||
<!ENTITY owl "http://www.w3.org/2002/07/owl#">
|
||||
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
|
||||
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
|
||||
<!ENTITY vitro "http://vitro.mannlib.cornell.edu/ns/vitro/0.7#">
|
||||
]>
|
||||
|
||||
<rdf:RDF xml:base="http://vitro.mannlib.cornell.edu/ontologies/display/1.1/"
|
||||
xmlns:display="&display;"
|
||||
xmlns:owl="&owl;"
|
||||
xmlns:rdf="&rdf;"
|
||||
xmlns:rdfs="&rdfs;"
|
||||
xmlns:vitro="&vitro;">
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#researchAreaOf">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-researchAreaOf.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000055">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-relatedRole.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#contributingRole">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-relatedRole.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#dateTimeInterval">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-dateTimeInterval.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#dateTimeValue">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-dateTimeValue.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#dateFiled">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-dateTimeValue.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#dateIssued">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-dateTimeValue.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#expirationDate">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-dateTimeValue.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#start">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-dateTimeValue.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#end">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-dateTimeValue.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#webpage">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-webpage.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasAssociatedConcept">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasAssociatedConcept.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasSubjectArea">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasAssociatedConcept.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasResearchArea">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-hasAssociatedConcept.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#publisherOf">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-publisherOf.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#publicationVenueFor">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-publicationVenueFor.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#orcidId">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-orcidId.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<!--
|
||||
***********************************************************************
|
||||
these properties have a range that is the union of 1 or more classes
|
||||
***********************************************************************
|
||||
-->
|
||||
|
||||
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000029">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-rangeUnion.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000031">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-rangeUnion.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000038">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-rangeUnion.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000390">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-rangeUnion.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ERO_0000398">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-rangeUnion.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#translatorOf">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-rangeUnion.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research#documentationFor">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-rangeUnion.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/scientific-research#protocolRealizedBy">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-rangeUnion.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://www.w3.org/2006/vcard/ns#hasMember">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-rangeUnion.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<!--
|
||||
******************************************************************
|
||||
data property custom list views
|
||||
******************************************************************
|
||||
-->
|
||||
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#scopusId">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-scopusId.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description rdf:about="http://purl.org/ontology/bibo/doi">
|
||||
<display:listViewConfigFile rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listViewConfig-doi.xml</display:listViewConfigFile>
|
||||
</rdf:Description>
|
||||
|
||||
</rdf:RDF>
|
|
@ -0,0 +1,200 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix core: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix vivoweb: <http://vivoweb.org/ontology#> .
|
||||
|
||||
|
||||
#### n3 for research areas ####
|
||||
|
||||
## associate the classes with the datagetter ##
|
||||
|
||||
<http://vivoweb.org/ontology/core#Department> display:hasDataGetter display:getResearchAreaDataGetter .
|
||||
<http://vivoweb.org/ontology/core#Center> display:hasDataGetter display:getResearchAreaDataGetter .
|
||||
<http://vivoweb.org/ontology/core#ClinicalOrganization> display:hasDataGetter display:getResearchAreaDataGetter .
|
||||
<http://vivoweb.org/ontology/core#Institute> display:hasDataGetter display:getResearchAreaDataGetter .
|
||||
<http://vivoweb.org/ontology/core#Laboratory> display:hasDataGetter display:getResearchAreaDataGetter .
|
||||
<http://vivoweb.org/ontology/core#Library> display:hasDataGetter display:getResearchAreaDataGetter .
|
||||
<http://vivoweb.org/ontology/core#ResearchOrganization> display:hasDataGetter display:getResearchAreaDataGetter .
|
||||
|
||||
|
||||
## define the datagetter ##
|
||||
|
||||
display:getResearchAreaDataGetter
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.SparqlQueryDataGetter>;
|
||||
display:saveToVar "researchAreaResults";
|
||||
display:query
|
||||
"""
|
||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||
SELECT DISTINCT (str(?researchAreaLabel) AS ?raLabel) ?ra
|
||||
WHERE {
|
||||
?individualURI vivo:relatedBy ?posn .
|
||||
?posn a vivo:Position .
|
||||
?posn vivo:relates ?person .
|
||||
?person a foaf:Person .
|
||||
?person vivo:hasResearchArea ?ra .
|
||||
?ra rdfs:label ?researchAreaLabel
|
||||
OPTIONAL { ?posn vivo:dateTimeInterval ?dti
|
||||
OPTIONAL { ?dti vivo:end ?end .
|
||||
?end vivo:dateTime ?endDate
|
||||
}
|
||||
}
|
||||
FILTER ( !bound(?endDate) ||
|
||||
substr(str(?endDate), 1, 4) >= substr(str(now()), 1, 4) )
|
||||
}
|
||||
ORDER BY ?raLabel
|
||||
""" .
|
||||
|
||||
## detail page for non-academic department research areas ##
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ns/default/page#AffiliatedResearchAreas>
|
||||
a <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#Page> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasDataGetter> <http://vitro.mannlib.cornell.edu/ns/default/datagetter#AffiliatedResearchAreasDG> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#requiresBodyTemplate> "individual-affiliated-res-area-details.ftl" ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#title> "Affiliated Research Areas" ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#urlMapping> "/affiliatedResearchAreas" .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ns/default/datagetter#AffiliatedResearchAreasDG>
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.SparqlQueryDataGetter> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#query>
|
||||
"""
|
||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||
SELECT DISTINCT (str (?prsnLabel) AS ?personLabel)
|
||||
?person
|
||||
(str(?researchAreaLabel) AS ?raLabel)
|
||||
(str(?organizationLabel) AS ?orgLabel)
|
||||
?ra
|
||||
?org
|
||||
WHERE {
|
||||
?orgURI vivo:relatedBy ?posn .
|
||||
?posn a vivo:Position .
|
||||
?orgURI rdfs:label ?organizationLabel .
|
||||
?posn vivo:relates ?person .
|
||||
?person a foaf:Person .
|
||||
?person rdfs:label ?prsnLabel .
|
||||
?person vivo:hasResearchArea ?raURI .
|
||||
?raURI rdfs:label ?researchAreaLabel
|
||||
BIND(?raURI AS ?ra)
|
||||
BIND(?orgURI AS ?org)
|
||||
}
|
||||
ORDER BY ?personLabel
|
||||
""" ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#saveToVar> "affiliatedResearchAreas" .
|
||||
|
||||
## detail page for academic department research areas ##
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ns/default/page#DepartmentalResearchAreas>
|
||||
a <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#Page> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasDataGetter> <http://vitro.mannlib.cornell.edu/ns/default/datagetter#DepartmentalResearchAreasDG> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#requiresBodyTemplate> "individual-dept-res-area-details.ftl" ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#title> "Departmental Research Areas" ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#urlMapping> "/deptResearchAreas" .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ns/default/datagetter#DepartmentalResearchAreasDG>
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.SparqlQueryDataGetter> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#query>
|
||||
"""
|
||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||
SELECT DISTINCT (str (?prsnLabel) AS ?personLabel)
|
||||
?person
|
||||
(Str(?researchAreaLabel) AS ?raLabel)
|
||||
(str(?organizationLabel) AS ?orgLabel)
|
||||
?ra
|
||||
WHERE {
|
||||
?orgURI vivo:relatedBy ?posn .
|
||||
?posn a vivo:Position .
|
||||
?orgURI rdfs:label ?organizationLabel .
|
||||
?posn vivo:relates ?person .
|
||||
?person a foaf:Person .
|
||||
?person rdfs:label ?prsnLabel .
|
||||
?person vivo:hasResearchArea ?raURI .
|
||||
?raURI rdfs:label ?researchAreaLabel
|
||||
BIND(?raURI AS ?ra)
|
||||
|
||||
}
|
||||
ORDER BY ?personLabel
|
||||
""" ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#saveToVar>
|
||||
"deptResearchAreas" .
|
||||
|
||||
|
||||
#### n3 for grants ####
|
||||
|
||||
## associate the classes with the datagetter ##
|
||||
|
||||
<http://vivoweb.org/ontology/core#AcademicDepartment> display:hasDataGetter display:getGrantsDataGetter .
|
||||
|
||||
## data getter to see if the department has any grants ##
|
||||
|
||||
display:getGrantsDataGetter
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.SparqlQueryDataGetter>;
|
||||
display:saveToVar "getGrantResults";
|
||||
display:query
|
||||
"""
|
||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||
SELECT DISTINCT ?grant
|
||||
WHERE {
|
||||
?individualURI vivo:relatedBy ?posn .
|
||||
?posn a vivo:Position .
|
||||
?posn vivo:relates ?person .
|
||||
?person a foaf:Person .
|
||||
?person <http://purl.obolibrary.org/obo/RO_0000053> ?role .
|
||||
?role a vivo:ResearcherRole .
|
||||
?role vivo:relatedBy ?grant .
|
||||
?grant a vivo:Grant .
|
||||
?grant vivo:dateTimeInterval ?dti .
|
||||
?dti vivo:end ?end.
|
||||
?end vivo:dateTime ?dt
|
||||
FILTER (?dt > now())
|
||||
}
|
||||
LIMIT 1
|
||||
""" .
|
||||
|
||||
## data getter for the grants detail page ##
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ns/default/page#DepartmentalGrants>
|
||||
a <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#Page> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasDataGetter> <http://vitro.mannlib.cornell.edu/ns/default/datagetter#DepartmentalGrantsDG> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#requiresBodyTemplate> "individual-dept-active-grants.ftl" ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#title> "Departmental Grants" ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#urlMapping> "/deptGrants" .
|
||||
|
||||
<http://vitro.mannlib.cornell.edu/ns/default/datagetter#DepartmentalGrantsDG>
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.SparqlQueryDataGetter> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#query>
|
||||
"""
|
||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||||
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||
SELECT DISTINCT (str (?gLabel) AS ?grantLabel) ?dt (str(?departmentLabel) AS ?deptLabel) ?grant
|
||||
WHERE {
|
||||
?individualURI vivo:relatedBy ?posn .
|
||||
?posn a vivo:Position .
|
||||
?individualURI rdfs:label ?departmentLabel .
|
||||
?posn vivo:relates ?person .
|
||||
?person a foaf:Person .
|
||||
?person <http://purl.obolibrary.org/obo/RO_0000053> ?role .
|
||||
?role a vivo:ResearcherRole .
|
||||
?role vivo:relatedBy ?grant .
|
||||
?grant a vivo:Grant .
|
||||
?grant rdfs:label ?gLabel .
|
||||
?grant vivo:dateTimeInterval ?dti .
|
||||
?dti vivo:end ?end.
|
||||
?end vivo:dateTime ?dt
|
||||
FILTER (?dt > now())
|
||||
}
|
||||
ORDER BY ?gLabel
|
||||
""" ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#saveToVar> "deptGrants" .
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix core: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix vivoweb: <http://vivoweb.org/ontology#> .
|
||||
@prefix afn: <http://jena.hpl.hp.com/ARQ/function#> .
|
||||
|
||||
|
||||
#### Check to see if the person being viewed has a first and last name. ####
|
||||
#### If so, the page will display the QR code icon link. ####
|
||||
|
||||
## associate the classes with the datagetter (COUNT(?vIndividual) AS ?theCount)##
|
||||
|
||||
<http://xmlns.com/foaf/0.1/Person> display:hasDataGetter display:checkNamesForQrCodeDG .
|
||||
|
||||
|
||||
## define the datagetter ##
|
||||
|
||||
display:checkNamesForQrCodeDG
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.SparqlQueryDataGetter>;
|
||||
display:saveToVar "checkNamesResult";
|
||||
display:query
|
||||
"""
|
||||
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
|
||||
SELECT DISTINCT ?vIndividual
|
||||
WHERE {
|
||||
?individualURI obo:ARG_2000028 ?vIndividual .
|
||||
?vIndividual vcard:hasName ?vName .
|
||||
?vName vcard:givenName ?firstName .
|
||||
?vName vcard:familyName ?lastName .
|
||||
}
|
||||
""" .
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix vitroDisplay: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix core: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix localNav: <http://vitro.mannlib.cornell.edu/ns/localnav#> .
|
||||
@prefix bibo: <http://purl.org/ontology/bibo/> .
|
||||
@prefix obo: <http://purl.obolibrary.org/obo/> .
|
||||
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
|
||||
|
||||
# See vitroSearchProhibited.n3 for more information about files in this directory.
|
||||
|
||||
vitroDisplay:SearchIndex
|
||||
rdf:type owl:Thing ;
|
||||
vitroDisplay:excludeClass obo:BFO_0000023 ;
|
||||
vitroDisplay:excludeClass core:AdvisingRelationship ;
|
||||
vitroDisplay:excludeClass core:Editorship ;
|
||||
vitroDisplay:excludeClass core:Authorship ;
|
||||
vitroDisplay:excludeClass core:Position ;
|
||||
vitroDisplay:excludeClass core:AwardReceipt ;
|
||||
vitroDisplay:excludeClass core:AwardedDegree ;
|
||||
vitroDisplay:excludeClass core:ResearchActivity ;
|
||||
vitroDisplay:excludeClass core:EducationalProcess ;
|
||||
vitroDisplay:excludeClass bibo:DocumentStatus ;
|
||||
vitroDisplay:excludeClass core:DateTimeValue ;
|
||||
vitroDisplay:excludeClass core:DateTimeValuePrecision ;
|
||||
vitroDisplay:excludeClass core:DateTimeInterval ;
|
||||
vitroDisplay:excludeClass core:AcademicDegree ;
|
||||
vitroDisplay:excludeClass vcard:URL ;
|
||||
vitroDisplay:excludeClass vcard:Communication ;
|
||||
vitroDisplay:excludeClass vcard:Code ;
|
||||
vitroDisplay:excludeClass vcard:Explanatory ;
|
||||
vitroDisplay:excludeClass vcard:Addressing ;
|
||||
vitroDisplay:excludeClass vcard:Identification ;
|
||||
vitroDisplay:excludeClass vcard:Kind ;
|
||||
vitroDisplay:excludeClass <http://vitro.mannlib.cornell.edu/ns/vitro/public#File> ;
|
||||
vitroDisplay:excludeClass <http://vitro.mannlib.cornell.edu/ns/vitro/public#FileByteStream> .
|
1989
home/src/main/resources/rdf/display/firsttime/PropertyConfig.n3
Normal file
1989
home/src/main/resources/rdf/display/firsttime/PropertyConfig.n3
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,25 @@
|
|||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix : <http://vitro.mannlib.cornell.edu/ns/vitro/ApplicationConfiguration#> .
|
||||
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix datagetter: <java:edu/cornell/mannlib/vitro/webapp/utils/datagetter/> .
|
||||
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> .
|
||||
@prefix role: <http://vitro.mannlib.cornell.edu/ns/vitro/role#> .
|
||||
@prefix local: <http://vitro.mannlib.cornell.edu/ns/vitro/siteConfig/> .
|
||||
@prefix vivo: <http://vivoweb.org/ontology/core#> .
|
||||
|
||||
@base <http://vitro.mannlib.cornell.edu/ns/vitro/ApplicationConfiguration> .
|
||||
|
||||
|
||||
# warning: don't use blank nodes; the display model doesn't currently support them.
|
||||
|
||||
local:authorInAuthorshipConfig a :ObjectPropertyDisplayConfig ;
|
||||
:deleteLinkSuppressed "true"^^xsd:boolean .
|
||||
|
||||
local:informationResourceInAuthorshipConfig a :ObjectPropertyDisplayConfig ;
|
||||
:deleteLinkSuppressed "true"^^xsd:boolean .
|
||||
|
||||
local:informationResourceInEditorshipConfig a :ObjectPropertyDisplayConfig ;
|
||||
:deleteLinkSuppressed "true"^^xsd:boolean .
|
24
home/src/main/resources/rdf/display/firsttime/aboutPage.n3
Normal file
24
home/src/main/resources/rdf/display/firsttime/aboutPage.n3
Normal file
|
@ -0,0 +1,24 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
@prefix about: <http://vitro.mannlib.cornell.edu/ns/default/about#> .
|
||||
|
||||
about:ABOUTDG
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.FixedHTMLDataGetter> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#htmlValue>
|
||||
"""<h2>About VIVO</h2>
|
||||
<div class=\"pageGroupBody\" id=\"aboutText\"><p>The VIVO application enables the discovery of researchers across institutions. Participants in the network include institutions with local installations of VIVO or those with research discovery and profiling applications that can provide semantic web-compliant data. The information accessible through VIVO's search and browse capability will therefore reside and be controlled locally, within institutional VIVOs or other semantic web-compliant applications.</p>
|
||||
|
||||
<p>VIVO is an open source semantic web application originally developed and implemented at Cornell. When installed and populated with content at an institution, it enables the discovery of research and scholarship across disciplines at that institution. VIVO supports browsing and a search function which returns faceted results for rapid retrieval of desired information. Content in any local VIVO installation may be maintained manually or brought into the database in automated ways from local systems of record, such as human resources, scholarships, grants, course, and faculty activity databases.</p>
|
||||
|
||||
<p>See more information on the <a href=\"http://vivoweb.org\">VIVO Project</a>.</p></div>
|
||||
"""@en ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#saveToVar>
|
||||
"aboutPage" .
|
||||
about:ABOUTPAGE
|
||||
a <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#Page> ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#hasDataGetter>
|
||||
about:ABOUTDG ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#title>
|
||||
"About Page" ;
|
||||
<http://vitro.mannlib.cornell.edu/ontologies/display/1.1#urlMapping>
|
||||
"/about" .
|
120
home/src/main/resources/rdf/display/firsttime/menu.n3
Normal file
120
home/src/main/resources/rdf/display/firsttime/menu.n3
Normal file
|
@ -0,0 +1,120 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix core: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix vivoweb: <http://vivoweb.org/ontology#> .
|
||||
|
||||
### This file defines the default menu for vivo. ###
|
||||
### It overrides the menu.n3 from vitro.
|
||||
|
||||
#### Default Menu ####
|
||||
|
||||
display:DefaultMenu
|
||||
a display:MainMenu ;
|
||||
rdfs:label "Default Menu" ;
|
||||
display:hasElement display:EventsMenuItem ;
|
||||
display:hasElement display:HomeMenuItem ;
|
||||
display:hasElement display:OrganizationsMenuItem ;
|
||||
display:hasElement display:PeopleMenuItem ;
|
||||
display:hasElement display:ResearchMenuItem .
|
||||
|
||||
#### Menu Items for Default Menu ####
|
||||
|
||||
display:HomeMenuItem
|
||||
a display:NavigationElement ;
|
||||
display:menuPosition 1;
|
||||
display:linkText "Home";
|
||||
display:toPage display:Home .
|
||||
|
||||
display:PeopleMenuItem
|
||||
a display:NavigationElement ;
|
||||
display:menuPosition 2;
|
||||
display:linkText "People";
|
||||
display:toPage display:People .
|
||||
|
||||
display:OrganizationsMenuItem
|
||||
a display:NavigationElement ;
|
||||
display:menuPosition 3;
|
||||
display:linkText "Organizations";
|
||||
display:toPage display:Organizations .
|
||||
|
||||
display:ResearchMenuItem
|
||||
a display:NavigationElement ;
|
||||
display:menuPosition 4;
|
||||
display:linkText "Research";
|
||||
display:toPage display:Research .
|
||||
|
||||
display:EventsMenuItem
|
||||
a display:NavigationElement ;
|
||||
display:menuPosition 5;
|
||||
display:linkText "Events";
|
||||
display:toPage display:Events .
|
||||
|
||||
display:Home
|
||||
a display:HomePage ;
|
||||
a display:Page ;
|
||||
display:title "Home" ;
|
||||
display:urlMapping "/" ;
|
||||
display:hasDataGetter display:homeDataGetter;
|
||||
display:cannotDeletePage "true" .
|
||||
|
||||
display:Events
|
||||
a display:Page ;
|
||||
a display:ClassGroupPage;
|
||||
display:forClassGroup vivoweb:vitroClassGroupevents ;
|
||||
display:title "Events" ;
|
||||
display:urlMapping "/events" ;
|
||||
display:hasDataGetter display:eventsDataGetter .
|
||||
|
||||
display:Organizations
|
||||
a display:Page ;
|
||||
a display:ClassGroupPage;
|
||||
display:forClassGroup vivoweb:vitroClassGrouporganizations ;
|
||||
display:title "Organizations" ;
|
||||
display:urlMapping "/organizations";
|
||||
display:hasDataGetter display:organizationsDataGetter .
|
||||
|
||||
display:People
|
||||
a display:Page ;
|
||||
a display:ClassGroupPage;
|
||||
display:forClassGroup vivoweb:vitroClassGrouppeople ;
|
||||
display:title "People" ;
|
||||
display:urlMapping "/people" ;
|
||||
display:hasDataGetter display:peopleDataGetter .
|
||||
|
||||
display:Research
|
||||
a display:Page ;
|
||||
a display:ClassGroupPage;
|
||||
display:forClassGroup vivoweb:vitroClassGrouppublications ;
|
||||
display:title "Research" ;
|
||||
display:urlMapping "/research" ;
|
||||
display:hasDataGetter display:researchDataGetter .
|
||||
|
||||
|
||||
|
||||
#The data getter objects used above
|
||||
display:peopleDataGetter
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.ClassGroupPageData>;
|
||||
display:forClassGroup
|
||||
vivoweb:vitroClassGrouppeople .
|
||||
|
||||
display:researchDataGetter
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.ClassGroupPageData>;
|
||||
display:forClassGroup
|
||||
vivoweb:vitroClassGrouppublications .
|
||||
|
||||
display:organizationsDataGetter
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.ClassGroupPageData>;
|
||||
display:forClassGroup
|
||||
vivoweb:vitroClassGrouporganizations .
|
||||
|
||||
display:eventsDataGetter
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.ClassGroupPageData>;
|
||||
display:forClassGroup
|
||||
vivoweb:vitroClassGroupevents .
|
||||
|
||||
display:homeDataGetter
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.utils.dataGetter.BrowseDataGetter> .
|
25
home/src/main/resources/rdf/tbox/filegraph/README.md
Normal file
25
home/src/main/resources/rdf/tbox/filegraph/README.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
This directory contains ontology "TBox" files with class and property definitions to be loaded by the VIVO application when it starts. There is a companion "abox" directory that contains RDF assertions about named individuals.
|
||||
|
||||
The TBox and ABox are separated because VIVO caches ontology classes and properties in memory for improved performance. The contents of this directory will be added to this cache, while the ABox data will not.
|
||||
|
||||
Each file in this directory corresponds to a single graph in the VIVO graph store. For example, the contents of a file in this directory named example.owl would be loaded into graph named:
|
||||
|
||||
http://vitro.mannlib.cornell.edu/filegraph/tbox/example.owl
|
||||
|
||||
At next startup, this graph will be checked against the contents of the file in the directory. If the two are not isomorphic, the graph in the store will be cleared and reloaded to match the current contents of the file. If the file no longer exists in the directory, the graph will be dropped entirely.
|
||||
|
||||
If a file contains any syntax errors, it will not be able to be parsed and its corresponding graph will not be updated at all. The parse error will be logged in vivo.all.log.
|
||||
|
||||
The following file formats are supported:
|
||||
|
||||
RDF/XML (.rdf or .owl)
|
||||
N3 (.n3)
|
||||
Turtle (.ttl)
|
||||
N-triples (.nt)
|
||||
|
||||
The files included by default in this directory roughly correspond to the files in the VIVO-ISF ontology source directory: https://github.com/vivo-isf/vivo-isf-ontology/tree/develop/src/ontology/source. There are some additional files for VIVO-specific extensions and application controls, and some VIVO-ISF content not directly related to researcher networking has been excluded.
|
||||
|
||||
Action Items:
|
||||
- [ ] identify where to document @ShahimEssaid recommendations regarding best practices for local ontology extensions:
|
||||
* Don't create without discussing use case with vivo ontology mailing list on sourceforge -- new classes and new properties
|
||||
* Don't re-use existing vocab to VIVO-ISF mailing list
|
651
home/src/main/resources/rdf/tbox/filegraph/agent.owl
Normal file
651
home/src/main/resources/rdf/tbox/filegraph/agent.owl
Normal file
|
@ -0,0 +1,651 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/agent.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/agent.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:skos="http://www.w3.org/2004/02/skos/core#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/ARG_0000033"/>
|
||||
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#scopeNote"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000111"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral -->
|
||||
|
||||
<rdfs:Datatype rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2001/XMLSchema#string -->
|
||||
|
||||
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#string"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Object Properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/RO_0000052 -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000052"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ARG_2000008 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ARG_2000008">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000032"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ARG_2000009 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ARG_2000009">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ARG_2000008"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ARG_2000010 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ARG_2000010">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ARG_2000011 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ARG_2000011">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ARG_2000010"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ARG_2000021 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ARG_2000021">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000019"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ARG_2000022 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ARG_2000022">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000019"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000565 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000565">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organization that provides services for commercialization and licensing of technologies at an institution.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000119>
|
||||
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Technology Transfer Office</obo:IAO_0000111>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/OBI_0000835 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000835">
|
||||
|
||||
<owl:equivalentClass>
|
||||
<owl:Class>
|
||||
<owl:intersectionOf rdf:parseType="Collection">
|
||||
<owl:Class>
|
||||
<owl:unionOf rdf:parseType="Collection">
|
||||
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Person"/>
|
||||
</owl:unionOf>
|
||||
</owl:Class>
|
||||
<owl:Restriction>
|
||||
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000053"/>
|
||||
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000571"/>
|
||||
</owl:Restriction>
|
||||
</owl:intersectionOf>
|
||||
</owl:Class>
|
||||
</owl:equivalentClass>
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A person or organization that has a manufacturer role</obo:IAO_0000115>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000124"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AcademicDepartment -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AcademicDepartment">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Department"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A distinct, usually specialized educational unit within an educational organization.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Endodontics (department within a College of Dentistry); English (department within a College of Liberal Arts)</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Association -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Association">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A formal organization of people or groups of people around a subject or practice.</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A group of persons or organizations organized for a common purpose.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Special Libraries Association; Association for Computing Machinery(ACM); American Medical Informatics Association(AMIA)</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Center -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Center">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A place where a particular activity or service is concentrated.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Alchohol Education Center; Center for Arts and Public Policy; Hearing Research Center</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organization where a specified activity is concentrated.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Short Definition take from http://www.thefreedictionary.com/center.</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#ClinicalOrganization -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#ClinicalOrganization">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Any organization that offers significant health services or routinely provides medical care to patients.</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Any organization with a significant clinical function as a matter of course and not just through occasional clinical roles</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#College -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#College">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A primary academic unit within a University or a free-standing higher education organization without graduate degree programs</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A primary academic unit within a University or a free-standing higher education organization without graduate degree programs.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">College of Arts & Sciences; Ivy Tech Community College</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Committee -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Committee">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Group"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Curriculum Steering Committee; PhD Advisory Committee</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Company -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Company">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A legally-recognized business organization</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A legally-recognized business organization.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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."</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Consortium -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Consortium">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A group of independent organizations working together toward a common goal, under an expressed agreement.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Committee on Institutional Cooperation (CIC); The Five Colleges of Ohio</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#CoreLaboratory -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#CoreLaboratory">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#ServiceProvidingLaboratory"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A lab providing services such as training, protocols, or access to instruments or software</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Department -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Department">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A unit within a larger organization that addresses a specific subject or area of activity.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Legal (department within a company); Use for any non-academic department</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Division -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Division">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A major unit or section within a larger organization.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cardiovascular Medicine (division within medicine)</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Definition modified from http://www.thefreedictionary.com/division. It is difficult to tell the difference between a division and a department.</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#ExtensionUnit -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#ExtensionUnit">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A unit devoted primarily to extension activities, whether for outreach or research</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A unit devoted primarily to extension activities, whether for outreach or research.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Alachua County Extension Office</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Foundation -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Foundation">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An institution founded with an endowment to support educational, research, artistic or other charitable activities.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Definition take from: http://dictionary.reference.com/browse/foundation.</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The Ford Foundation</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#FundingOrganization -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#FundingOrganization">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A defined class of organizations that fund Grants</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organization that provides financial support to individuals or organizations to carry out specified activities.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">National Institute of Health (NIH)</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#GovernmentAgency -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#GovernmentAgency">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A unit of government responsible for oversight and regulation of certain activities or the administration and provision of specific services.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Definition take from: http://en.wikipedia.org/wiki/Government_agency.</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">United States Library of Congress</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#GraduateStudent -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#GraduateStudent">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Student"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A person who has already received a bachelor's degree and is working toward a Master's or Doctoral degree.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Hospital -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Hospital">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An institution that provides medical, surgical, psychiatric or nursing care.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Definition take from: http://dictionary.reference.com/browse/hospital.</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Shands at the University of Florida</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Institute -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Institute">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An Institute normally has a research focus but may also fulfill instructional or outreach roles</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organization founded to pursue or promote certain research, educational or public policy interests or activities.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Institute for Fundamental Theory</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Laboratory -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Laboratory">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organization unit that facilitates or conduits observation, testing, experimentation, or research in a field of study or practice.</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organizational unit (as opposed to the physical facility) that performs research, provides services, or processes materials</obo:IAO_0000115>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Library -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Library">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organization maintaining one or more collections of physical and/or electronic information resources for access or lending.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Marston Science Library</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Used information from this definition: http://dictionary.reference.com/browse/library.</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Museum -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Museum">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organization devoted to the acquisition, conservation, study, exhibition, and educational interpretation of objects having scientific, historical, cultural or artistic value.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Definition was take from here: http://dictionary.reference.com/browse/museum</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The Getty Museum</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#PrivateCompany -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#PrivateCompany">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Company"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Publix Super Markets; Ernst & Young; PricewaterhouseCoopers</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Program -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Program">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A Cornell graduate field (http://vivo.cornell.edu/index.jsp?home=65535&collection=820)</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An ongoing academic initiative not formalized with department or division status.</obo:IAO_0000115>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Publisher -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Publisher">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A person or company whose business is the publishing of books, periodicals, engravings, computer software, etc.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Definition found here: http://dictionary.reference.com/browse/publisher</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elsevier; Harper & Row; Indiana University Press</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#ResearchOrganization -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#ResearchOrganization">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Any organization (likely also asserted as another class of Organization) with a primary, ongoing research function, not just through occasional roles</obo:IAO_0000115>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#School -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#School">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An institution for instruction in a particular skill or field.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Definition take from here: http://dictionary.reference.com/browse/school.</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">School of Architecture; School of Music</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#ServiceProvidingLaboratory -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#ServiceProvidingLaboratory">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Laboratory"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A laboratory that provides services</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ideally a defined class -- a Laboratory the provides some Service via the property</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Student -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Student">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A person who is enrolled in an educational institution.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use only if no specific subclasses of core:Student describe the person.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#StudentOrganization -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#StudentOrganization">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A student organization is an organization, operated by students at a university, whose membership normally consists only of students.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dancin' Gators</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Definition take from here: http://en.wikipedia.org/wiki/Student_society</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Team -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Team">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Group"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A group of people working together.</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An informal organization brought together for the purposes of a project or event</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VIVO Outreach Team; VIVO Ontology Team</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#UndergraduateStudent -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#UndergraduateStudent">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Student"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A person registered in an undergraduate program leading to a bachelor's degree or an undergraduate diploma or certificate.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#University -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#University">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An institution of higher education and research, which grants academic degrees in a variety of subjects, and provides both undergraduate education and postgraduate education.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Definition taken from: http://en.wikipedia.org/wiki/University</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">University of Florida; Washington University in St. Louis</obo:IAO_0000112>
|
||||
<obo:IAO_0000412 rdf:resource="http://vivoweb.org/ontology/core"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2006/vcard/ns#Agent -->
|
||||
|
||||
<owl:Class rdf:about="http://www.w3.org/2006/vcard/ns#Agent"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://xmlns.com/foaf/0.1/Agent -->
|
||||
|
||||
<owl:Class rdf:about="http://xmlns.com/foaf/0.1/Agent">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000004"/>
|
||||
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></obo:IAO_0000118>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Agents are things that do stuff</obo:IAO_0000115>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An agent</rdfs:comment>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Scott Hoffmann</obo:IAO_0000117>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Things that do stuff.</obo:IAO_0000115>
|
||||
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">agent</obo:IAO_0000111>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">see: http://xmlns.com/foaf/spec/#term_Agent</obo:IAO_0000112>
|
||||
<skos:scopeNote xml:lang="en">Used to describe any "agent" related to bibliographic items. Such agents can be persons, organizations or groups of any kind.</skos:scopeNote>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://xmlns.com/foaf/0.1/Group -->
|
||||
|
||||
<owl:Class rdf:about="http://xmlns.com/foaf/0.1/Group">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> A collection of individual agents (and may itself play the role of a Agent, ie. something that can perform actions). </obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A collection of individual agents.</obo:IAO_0000115>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A group</rdfs:comment>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A group can also be an organization but need not be; typically used for looser associations of people or organizations acting together in some fashion, not necessarily through formal agreement or on a long-term basis. Added to the VIVO ontology to be able to support informal and perhaps even private groups of people around an idea, funding opportunity, or event.
|
||||
|
||||
see: http://xmlns.com/foaf/spec/#term_Group</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Scott Hoffmann</obo:IAO_0000117>
|
||||
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">group</obo:IAO_0000111>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://xmlns.com/foaf/0.1/Organization -->
|
||||
|
||||
<owl:Class rdf:about="http://xmlns.com/foaf/0.1/Organization">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
|
||||
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></obo:IAO_0000118>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A generic class encompassing several types of organizations.</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A kind of Agent corresponding to social instititutions such as companies, societies etc.</obo:IAO_0000115>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organization</rdfs:comment>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Only use if no specific subclasses of foaf:organization desribe the organization.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Scott Hoffmann</obo:IAO_0000117>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This class will display all the instances in the subclasses below it, as well as any organizations that were added as part of this generic class because there wasn't a specific class available.</obo:IAO_0000112>
|
||||
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organization</obo:IAO_0000111>
|
||||
<skos:scopeNote xml:lang="en">Ued to describe an organization related to bibliographic items such as a publishing company, etc.</skos:scopeNote>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://xmlns.com/foaf/0.1/Person -->
|
||||
|
||||
<owl:Class rdf:about="http://xmlns.com/foaf/0.1/Person">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
|
||||
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></obo:IAO_0000118>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A person</rdfs:comment>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An instance of a human being (Homo sapiens)</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The most general classification of a person</obo:IAO_0000115>
|
||||
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">person</obo:IAO_0000111>
|
||||
</owl:Class>
|
||||
|
||||
</rdf:RDF>
|
|
@ -0,0 +1,98 @@
|
|||
@prefix hr: <http://vivo.cornell.edu/ns/hr/0.9/hr.owl#> .
|
||||
@prefix afn: <http://jena.hpl.hp.com/ARQ/function#> .
|
||||
@prefix : <http://vivoweb.org/ontology/activity-insight#> .
|
||||
@prefix scires: <http://vivoweb.org/ontology/scientific-research#> .
|
||||
@prefix aka: <http://vivoweb.org/ontology/aka#> .
|
||||
@prefix pubmed: <http://vitro.mannlib.cornell.edu/ns/pubmed#> .
|
||||
@prefix vann: <http://purl.org/vocab/vann/> .
|
||||
@prefix owl2: <http://www.w3.org/2006/12/owl2-xml#> .
|
||||
@prefix wcmc: <http://weill.cornell.edu/vivo/ontology/wcmc#> .
|
||||
@prefix dcterms: <http://purl.org/dc/terms/> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix swrl: <http://www.w3.org/2003/11/swrl#> .
|
||||
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> .
|
||||
@prefix event: <http://purl.org/NET/c4dm/event.owl#> .
|
||||
@prefix wos: <http://vivo.mannlib.cornell.edu/ns/ThomsonWOS/0.1#> .
|
||||
@prefix vivoc: <http://vivo.library.cornell.edu/ns/0.1#> .
|
||||
@prefix swvs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix c4o: <http://purl.org/spar/c4o/> .
|
||||
@prefix cce: <http://vivoweb.org/ontology/cornell-cooperative-extension#> .
|
||||
@prefix dcelem: <http://purl.org/dc/elements/1.1/> .
|
||||
@prefix vivo: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix dc: <http://purl.org/dc/elements/1.1/> .
|
||||
@prefix geo: <http://aims.fao.org/aos/geopolitical.owl#> .
|
||||
@prefix pvs: <http://vivoweb.org/ontology/provenance-support#> .
|
||||
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
||||
@prefix aktp: <http://www.aktors.org/ontology/portal#> .
|
||||
@prefix far: <http://vitro.mannlib.cornell.edu/ns/reporting#> .
|
||||
@prefix fabio: <http://purl.org/spar/fabio/> .
|
||||
@prefix skco: <http://www.w3.org/2004/02/skos/core#> .
|
||||
@prefix ospcu: <http://vivoweb.org/ontology/cu-vivo-osp#> .
|
||||
@prefix acti: <http://vivoweb.org/ontology/activity-insight#> .
|
||||
@prefix ai: <http://vivoweb.org/ontology/activity-insight#> .
|
||||
@prefix sce: <http://vivoweb.org/ontology/SchoolOfContinuingEducation#> .
|
||||
@prefix stars: <http://vitro.mannlib.cornell.edu/ns/cornell/stars/classes#> .
|
||||
@prefix bibo: <http://purl.org/ontology/bibo/> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
@prefix swrlb: <http://www.w3.org/2003/11/swrlb#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix core: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix socsci: <http://vivo.library.cornell.edu/ns/vivo/socsci/0.1#> .
|
||||
@prefix rdfsyn: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix local: <http://vivo.cornell.edu/ontology/local#> .
|
||||
@prefix vitro-public: <http://vitro.mannlib.cornell.edu/ns/vitro/public#> .
|
||||
@prefix mann: <http://vivo.cornell.edu/ns/mannadditions/0.1#> .
|
||||
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
||||
@prefix ero: <http://purl.obolibrary.org/obo/> .
|
||||
|
||||
foaf:Agent
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:allValuesFrom core:Relationship ;
|
||||
owl:onProperty core:relatedBy
|
||||
] .
|
||||
|
||||
vivo:Equipment
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:onProperty <http://vivoweb.org/ontology/core#freetextKeyword> ;
|
||||
owl:allValuesFrom <http://www.w3.org/2001/XMLSchema#string>
|
||||
] .
|
||||
|
||||
foaf:Person
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom <http://www.w3.org/2006/vcard/ns#Individual> ;
|
||||
owl:onProperty <http://purl.obolibrary.org/obo/ARG_2000028>
|
||||
] ;
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:onProperty <http://vivoweb.org/ontology/core#freetextKeyword> ;
|
||||
owl:allValuesFrom <http://www.w3.org/2001/XMLSchema#string>
|
||||
] .
|
||||
|
||||
foaf:Organization
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:onProperty <http://purl.obolibrary.org/obo/ARG_2000028> ;
|
||||
owl:someValuesFrom <http://www.w3.org/2006/vcard/ns#Organization>
|
||||
] .
|
||||
|
||||
<http://purl.obolibrary.org/obo/IAO_0000030>
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:onProperty <http://vivoweb.org/ontology/core#freetextKeyword> ;
|
||||
owl:allValuesFrom <http://www.w3.org/2001/XMLSchema#string>
|
||||
] ;
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:onProperty core:relatedBy ;
|
||||
owl:allValuesFrom core:Relationship
|
||||
] ;
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:onProperty <http://purl.obolibrary.org/obo/RO_0002353> ;
|
||||
owl:allValuesFrom <http://purl.obolibrary.org/obo/BFO_0000015>
|
||||
] .
|
||||
|
436
home/src/main/resources/rdf/tbox/filegraph/bfo-bridge.owl
Normal file
436
home/src/main/resources/rdf/tbox/filegraph/bfo-bridge.owl
Normal file
|
@ -0,0 +1,436 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/bfo-bridge.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/bfo-bridge.owl"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000001 -->
|
||||
|
||||
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000001">
|
||||
|
||||
</rdf:Description>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000002 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000002">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000003 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000003">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000004 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000004">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000002"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000006 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000006">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000141"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000008 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000008">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000003"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000015 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000015">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000003"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000016 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000016">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000017 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000017">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000020"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000019 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000019">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000020"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000020 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000020">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000002"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000023 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000023">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000029 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000029">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000141"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000031 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000031">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000002"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000034 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000034">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000016"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000038 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000038">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000008"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000040 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000040">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000004"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000141 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000141">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000004"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000148 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000148">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000008"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000595 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000595">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000030 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000030">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000031"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/NET/c4dm/event.owl#Event -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/NET/c4dm/event.owl#Event">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AdministratorRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AdministratorRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AdvisingProcess -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AdvisingProcess">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AttendeeRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AttendeeRole">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AttendingProcess -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AttendingProcess">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#DateTimeInterval -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#DateTimeInterval">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000038"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#DateTimeValue -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#DateTimeValue">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000148"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#EditorRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#EditorRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#EducationalProcess -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#EducationalProcess">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Equipment -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Equipment">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#EventSeries -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#EventSeries">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Facility -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Facility">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000029"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#LeaderRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#LeaderRole">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Location -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Location">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000006"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#MemberRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#MemberRole">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#OrganizerRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#OrganizerRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#OrganizingProcess -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#OrganizingProcess">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#OutreachProviderRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#OutreachProviderRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#PresenterRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#PresenterRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#PresentingProcess -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#PresentingProcess">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Project -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Project">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Relationship -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Relationship">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000020"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#ReviewerRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#ReviewerRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#TeacherRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#TeacherRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
</owl:Class>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.3.1957) http://owlapi.sourceforge.net -->
|
||||
|
32
home/src/main/resources/rdf/tbox/filegraph/bfo.owl
Normal file
32
home/src/main/resources/rdf/tbox/filegraph/bfo.owl
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/bfo.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/bfo.owl"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000017 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000017"><!-- realizable entity -->
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000020"/><!-- specifically dependent continuant -->
|
||||
<owl:disjointWith rdf:resource="http://purl.obolibrary.org/obo/BFO_0000019"/><!-- quality -->
|
||||
<!-- has associated axiom(fol) --><obo:IAO_0000602>(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] </obo:IAO_0000602>
|
||||
<!-- has associated axiom(fol) --><obo:IAO_0000602>(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] </obo:IAO_0000602>
|
||||
<!-- BFO CLIF specification label --><obo:BFO_0000180>RealizableEntity</obo:BFO_0000180>
|
||||
<!-- has associated axiom(nl) --><obo:IAO_0000601 xml:lang="en">All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])</obo:IAO_0000601>
|
||||
<!-- elucidation --><obo:IAO_0000600 xml:lang="en">To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])</obo:IAO_0000600>
|
||||
<!-- BFO OWL specification label --><obo:BFO_0000179>realizable</obo:BFO_0000179>
|
||||
<!-- example of usage --><obo:IAO_0000112 xml:lang="en">the disposition of this piece of metal to conduct electricity.</obo:IAO_0000112>
|
||||
<!-- example of usage --><obo:IAO_0000112 xml:lang="en">the disposition of your blood to coagulate</obo:IAO_0000112>
|
||||
<!-- example of usage --><obo:IAO_0000112 xml:lang="en">the function of your reproductive organs</obo:IAO_0000112>
|
||||
<!-- example of usage --><obo:IAO_0000112 xml:lang="en">the role of being a doctor</obo:IAO_0000112>
|
||||
<!-- example of usage --><obo:IAO_0000112 xml:lang="en">the role of this boundary to delineate where Utah and Colorado meet</obo:IAO_0000112>
|
||||
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
</rdf:RDF>
|
1208
home/src/main/resources/rdf/tbox/filegraph/classes-additional.owl
Normal file
1208
home/src/main/resources/rdf/tbox/filegraph/classes-additional.owl
Normal file
File diff suppressed because it is too large
Load diff
242
home/src/main/resources/rdf/tbox/filegraph/clinical.owl
Normal file
242
home/src/main/resources/rdf/tbox/filegraph/clinical.owl
Normal file
|
@ -0,0 +1,242 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/clinical.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/clinical.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:study_protocol="http://purl.org/net/OCRe/study_protocol.owl#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:statistics="http://purl.org/net/OCRe/statistics.owl#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.org/net/OCRe/study_protocol.owl#develop_comment"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000232"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000111"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.org/net/OCRe/statistics.owl#curator"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Object Properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0001518 -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/ERO_0001518"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/OBI_0000299 -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000299"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/RO_0000052 -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000052"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/RO_0000057 -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000057"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000015 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000015">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000014"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical trial.</obo:IAO_0000112>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OCRe</obo:IAO_0000119>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Research project that uses or collects measurements or assessments about humans.</obo:IAO_0000115>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This should be imported from OCRE- but they currently have no generic human study type. Def is modified.</rdfs:comment>
|
||||
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">human study</obo:IAO_0000111>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000016 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000016">
|
||||
|
||||
<owl:equivalentClass>
|
||||
<owl:Class>
|
||||
<owl:intersectionOf rdf:parseType="Collection">
|
||||
<rdf:Description rdf:about="http://purl.org/net/OCRe/research.owl#Interventional_study"/>
|
||||
<owl:Restriction>
|
||||
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/ERO_0001518"/>
|
||||
<owl:someValuesFrom rdf:resource="http://purl.org/net/OCRe/study_design.owl#OCRE100038"/>
|
||||
</owl:Restriction>
|
||||
</owl:intersectionOf>
|
||||
</owl:Class>
|
||||
</owl:equivalentClass>
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/net/OCRe/research.owl#Interventional_study"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical trial to evaluate the efficacy of a new drug.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An interventional study that contains a set of procedures in medical research and drug development that are conducted to allow safety (or more specifically, information about adverse drug reactions and adverse effects of other treatments) and efficacy data to be collected for health interventions (e.g., drugs, diagnostics, devices, therapy protocols) that is performed over phases.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Clinical_trial</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/net/OCRe/study_design.owl#OCRE100038">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Phase describes the level of a trial required of drugs before (and after) they are routinely used in clinical practice:
|
||||
- Phase I trials assess toxic effects on humans (not many people participate in them, and usually without controls);
|
||||
- Phase ll trials assess therapeutic benefit (usually involving a few hundred people, usually with controls, but not always);
|
||||
- Phase III trials compare the new treatment against standard (or placebo) treatment (usually a full randomised controlled trial). At this point, a drug can be approved for community use.
|
||||
- Phase IV monitors a new treatment in the community, often to evaluate longterm safety and effectiveness. [Glossary of Terms in The Cochrane Collaboration]
|
||||
|
||||
A trial can be of a combination phase (e.g., I/II).
|
||||
The concept of phase is not applicable to trials studying certain interventions (e.g., device, procedure, behavioral)</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Simona</obo:IAO_0000117>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/net/OCRe/study_design.owl#Phase_0 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/net/OCRe/study_design.owl#Phase_0">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/net/OCRe/study_design.owl#OCRE100038"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A Phase 0 trial is an exploratory trial involving very limited human exposure, with no therapeutic or diagnostic intent (e.g., screening study, microdose study). [http://prsinfo.clinicaltrials.gov/definitions.html]</obo:IAO_0000115>
|
||||
<statistics:curator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Simona</statistics:curator>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/net/OCRe/study_design.owl#Phase_1 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/net/OCRe/study_design.owl#Phase_1">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/net/OCRe/study_design.owl#OCRE100038"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A Phase I trial assesses toxic effects on humans (not many people participate, and usually without controls) [Glossary of Terms in The Cochrane Collaboration]</obo:IAO_0000115>
|
||||
<statistics:curator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Simona</statistics:curator>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/net/OCRe/study_design.owl#Phase_2 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/net/OCRe/study_design.owl#Phase_2">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/net/OCRe/study_design.owl#OCRE100038"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A Phase ll trial assesses therapeutic benefit (usually involving a few hundred people, usually with controls, but not always) [Glossary of Terms in The Cochrane Collaboration]</obo:IAO_0000115>
|
||||
<statistics:curator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Simona</statistics:curator>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/net/OCRe/study_design.owl#Phase_3 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/net/OCRe/study_design.owl#Phase_3">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/net/OCRe/study_design.owl#OCRE100038"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A Phase III trial compares the new treatment against standard (or placebo) treatment (usually a full
|
||||
randomised controlled trial). At this point, a drug can be approved for community use. [Glossary of Terms in The Cochrane Collaboration]</obo:IAO_0000115>
|
||||
<statistics:curator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Simona</statistics:curator>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/net/OCRe/study_design.owl#Phase_4 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/net/OCRe/study_design.owl#Phase_4">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/net/OCRe/study_design.owl#OCRE100038"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A Phase IV study monitors a new treatment in the community, often to evaluate longterm safety and effectiveness. [Glossary of Terms in The Cochrane Collaboration]</obo:IAO_0000115>
|
||||
<statistics:curator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Simona</statistics:curator>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/net/OCRe/study_design.owl#Single_group_study -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/net/OCRe/study_design.owl#Single_group_study">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/net/OCRe/research.owl#Interventional_study"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A single group study is an interventional study that has only a single allocation group and no contemporaneuos comparison group.
|
||||
A study in which an individual acts has his/her own comparison does not fall into this category, since an individual is not a group.</obo:IAO_0000115>
|
||||
<statistics:curator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Simona</statistics:curator>
|
||||
<study_protocol:develop_comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Simona: to be reviewed</study_protocol:develop_comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#ClinicalRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#ClinicalRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role of observing or treating patients</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://xmlns.com/foaf/0.1/Person -->
|
||||
|
||||
<owl:Class rdf:about="http://xmlns.com/foaf/0.1/Person"/>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.3.1957) http://owlapi.sourceforge.net -->
|
||||
|
2138
home/src/main/resources/rdf/tbox/filegraph/contact-vcard.owl
Normal file
2138
home/src/main/resources/rdf/tbox/filegraph/contact-vcard.owl
Normal file
File diff suppressed because it is too large
Load diff
88
home/src/main/resources/rdf/tbox/filegraph/contact.owl
Normal file
88
home/src/main/resources/rdf/tbox/filegraph/contact.owl
Normal file
|
@ -0,0 +1,88 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/contact.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/contact.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ARG_2000376 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ARG_2000376">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ARG_2000377 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ARG_2000377">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ARG_2000379"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ARG_2000379 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ARG_2000379">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000030 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2004/02/skos/core#Concept -->
|
||||
|
||||
<owl:Class rdf:about="http://www.w3.org/2004/02/skos/core#Concept"/>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.3.1957) http://owlapi.sourceforge.net -->
|
||||
|
2395
home/src/main/resources/rdf/tbox/filegraph/data-properties.owl
Normal file
2395
home/src/main/resources/rdf/tbox/filegraph/data-properties.owl
Normal file
File diff suppressed because it is too large
Load diff
129
home/src/main/resources/rdf/tbox/filegraph/dataDomains.rdf
Normal file
129
home/src/main/resources/rdf/tbox/filegraph/dataDomains.rdf
Normal file
|
@ -0,0 +1,129 @@
|
|||
<rdf:RDF
|
||||
xmlns:c4o="http://purl.org/spar/c4o/"
|
||||
xmlns:vitro-public="http://vitro.mannlib.cornell.edu/ns/vitro/public#"
|
||||
xmlns:ero="http://purl.obolibrary.org/obo/"
|
||||
xmlns:pvs="http://vivoweb.org/ontology/provenance-support#"
|
||||
xmlns:owl2="http://www.w3.org/2006/12/owl2-xml#"
|
||||
xmlns:scirr="http://vivoweb.org/ontology/scientific-research-resource#"
|
||||
xmlns:vivo="http://vivoweb.org/ontology/core#"
|
||||
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:bibo="http://purl.org/ontology/bibo/"
|
||||
xmlns:afn="http://jena.hpl.hp.com/ARQ/function#"
|
||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||
xmlns:scires="http://vivoweb.org/ontology/scientific-research#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:geo="http://aims.fao.org/aos/geopolitical.owl#"
|
||||
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
||||
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
|
||||
xmlns:dcelem="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||
xmlns:vann="http://purl.org/vocab/vann/"
|
||||
xmlns:vcard="http://www.w3.org/2006/vcard/ns#"
|
||||
xmlns:swvs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:fabio="http://purl.org/spar/fabio/"
|
||||
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#researcherId">
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#pmcid">
|
||||
<rdfs:domain rdf:resource="http://purl.org/ontology/bibo/Article"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#localAwardId">
|
||||
<rdfs:domain>
|
||||
<owl:Class>
|
||||
<owl:unionOf rdf:parseType="Collection">
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#Contract"/>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#Grant"/>
|
||||
</owl:unionOf>
|
||||
</owl:Class>
|
||||
</rdfs:domain>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#eRACommonsId">
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#nihmsid">
|
||||
<rdfs:domain rdf:resource="http://purl.org/ontology/bibo/Article"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#iclCode">
|
||||
<rdfs:domain rdf:resource="http://purl.org/ontology/bibo/Patent"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#isCorrespondingAuthor">
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#Authorship"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#grantDirectCosts">
|
||||
<rdfs:domain>
|
||||
<owl:Class>
|
||||
<owl:unionOf rdf:parseType="Collection">
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#Contract"/>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#Grant"/>
|
||||
</owl:unionOf>
|
||||
</owl:Class>
|
||||
</rdfs:domain>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#majorField">
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#EducationalProcess"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#overview">
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#researchOverview">
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#cclCode">
|
||||
<rdfs:domain rdf:resource="http://purl.org/ontology/bibo/Patent"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#seatingCapacity">
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#Room"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#reportId">
|
||||
<rdfs:domain rdf:resource="http://purl.org/ontology/bibo/Report"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#sponsorAwardId">
|
||||
<rdfs:domain>
|
||||
<owl:Class>
|
||||
<owl:unionOf rdf:parseType="Collection">
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#Contract"/>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#Grant"/>
|
||||
</owl:unionOf>
|
||||
</owl:Class>
|
||||
</rdfs:domain>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#licenseNumber">
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#Licensure"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#departmentOrSchool">
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#EducationalProcess"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#dateTime">
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#DateTimeValue"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#teachingOverview">
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hrJobTitle">
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#Position"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#patentNumber">
|
||||
<rdfs:domain rdf:resource="http://purl.org/ontology/bibo/Patent"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#totalAwardAmount">
|
||||
<rdfs:domain>
|
||||
<owl:Class>
|
||||
<owl:unionOf rdf:parseType="Collection">
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#Contract"/>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#Grant"/>
|
||||
</owl:unionOf>
|
||||
</owl:Class>
|
||||
</rdfs:domain>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#outreachOverview">
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#scopusId">
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
54
home/src/main/resources/rdf/tbox/filegraph/dataset.owl
Normal file
54
home/src/main/resources/rdf/tbox/filegraph/dataset.owl
Normal file
|
@ -0,0 +1,54 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/publication.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/publication.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:ns="http://www.w3.org/2003/06/sw-vocab-status/ns#"
|
||||
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:core="http://vivoweb.org/ontology/core#">
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Dataset -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Dataset">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/ontology/bibo/Document"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A named collection of data, usually containing only one type of data</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">US Patent Data; US Job Data</obo:IAO_0000112>
|
||||
|
||||
<rdfs:subClassOf>
|
||||
<owl:Restriction>
|
||||
<owl:onProperty rdf:resource="http://purl.org/spar/cito/isCitedAsDataSourceBy"/>
|
||||
<owl:allValuesFrom rdf:resource="http://purl.org/ontology/bibo/Document"/>
|
||||
</owl:Restriction>
|
||||
</rdfs:subClassOf>
|
||||
|
||||
</owl:Class>
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/ontology/bibo/Document">
|
||||
<rdfs:subClassOf>
|
||||
<owl:Restriction>
|
||||
<owl:onProperty rdf:resource="http://purl.org/spar/cito/citesAsDataSource"/>
|
||||
<owl:allValuesFrom rdf:resource="http://vivoweb.org/ontology/core#Dataset"/>
|
||||
</owl:Restriction>
|
||||
</rdfs:subClassOf>
|
||||
</owl:Class>
|
||||
|
||||
<!-- http://purl.org/spar/cito/isCitedAsDataSourceBy -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/spar/cito/isCitedAsDataSourceBy">
|
||||
<rdfs:label xml:lang="en">is cited as data source by</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">The cited entity is cited as a data source by the citing entity.</rdfs:comment>
|
||||
<owl:inverseOf rdf:resource="http://purl.org/spar/cito/citesAsDataSource"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
<!-- http://purl.org/spar/cito/citesAsDataSource -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/spar/cito/citesAsDataSource">
|
||||
<rdfs:label xml:lang="en">cites as data source</rdfs:label>
|
||||
<rdfs:comment xml:lang="en">The citing entity cites the cited entity as source of data.</rdfs:comment>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
</rdf:RDF>
|
129
home/src/main/resources/rdf/tbox/filegraph/date-time.owl
Normal file
129
home/src/main/resources/rdf/tbox/filegraph/date-time.owl
Normal file
|
@ -0,0 +1,129 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/date-time.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/date-time.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AcademicTerm -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AcademicTerm">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#DateTimeInterval"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An explicit individual academic term, quarter, or semester rather than the generic fall, spring or summer semester.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AcademicYear -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AcademicYear">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#DateTimeInterval"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An explicit individual period considered by an academic institution to be its primary academic cycle.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#DateTimeInterval -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#DateTimeInterval">
|
||||
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a specific period or duration, defined by (optional) start and end date/times.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#DateTimeValue -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#DateTimeValue">
|
||||
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A date and/or time</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Individuals
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#yearMonthDayPrecision -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#yearMonthDayPrecision">
|
||||
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#yearMonthDayTimePrecision -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#yearMonthDayTimePrecision">
|
||||
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#yearMonthPrecision -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#yearMonthPrecision">
|
||||
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#yearPrecision -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#yearPrecision">
|
||||
|
||||
</owl:NamedIndividual>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.3.1957) http://owlapi.sourceforge.net -->
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://vivoweb.org/ontology/core/dateTimeValuePrecision.owl#"
|
||||
xml:base="http://vivoweb.org/ontology/core/dateTimeValuePrecision.owl"
|
||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||
xmlns:j.0="http://aims.fao.org/aos/geopolitical.owl#"
|
||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
|
||||
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
|
||||
xmlns:bibo="http://purl.org/ontology/bibo/"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:core="http://vivoweb.org/ontology/core#"
|
||||
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
||||
xmlns:dcelem="http://purl.org/dc/elements/1.1/">
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Individuals
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#yearMonthDayPrecision -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#yearMonthDayPrecision">
|
||||
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#yearMonthDayTimePrecision -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#yearMonthDayTimePrecision">
|
||||
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#yearMonthPrecision -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#yearMonthPrecision">
|
||||
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#yearPrecision -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#yearPrecision">
|
||||
|
||||
</owl:NamedIndividual>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.4.2018) http://owlapi.sourceforge.net -->
|
||||
|
|
@ -0,0 +1,88 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://vivoweb.org/ontology/core/documentStatus.owl#"
|
||||
xml:base="http://vivoweb.org/ontology/core/documentStatus.owl"
|
||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||
xmlns:j.0="http://aims.fao.org/aos/geopolitical.owl#"
|
||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
|
||||
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
|
||||
xmlns:bibo="http://purl.org/ontology/bibo/"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:core="http://vivoweb.org/ontology/core#"
|
||||
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
||||
xmlns:dcelem="http://purl.org/dc/elements/1.1/">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#description"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotations
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<rdf:Description rdf:about="http://purl.org/ontology/bibo/unpublished">
|
||||
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://purl.org/ontology/bibo/rejected">
|
||||
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://purl.org/ontology/bibo/draft">
|
||||
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://purl.org/ontology/bibo/peerReviewed">
|
||||
|
||||
<core:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">&nbsp;Peer review is the process by which articles are chosen to be included in a refereed journal. An editorial board consisting of experts in the same field as the author review the article and decide if it is authoritative enough for publication.</core:description>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#inPress">
|
||||
|
||||
<core:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Document to be published</core:description>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://purl.org/ontology/bibo/accepted">
|
||||
|
||||
<core:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Accepted for publication after peer reviewing</core:description>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#submitted">
|
||||
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#invited">
|
||||
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://purl.org/ontology/bibo/published">
|
||||
|
||||
<core:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Published document</core:description>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.4.2018) http://owlapi.sourceforge.net -->
|
||||
|
452
home/src/main/resources/rdf/tbox/filegraph/education.owl
Normal file
452
home/src/main/resources/rdf/tbox/filegraph/education.owl
Normal file
|
@ -0,0 +1,452 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/education.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/education.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000111"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral -->
|
||||
|
||||
<rdfs:Datatype rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2001/XMLSchema#string -->
|
||||
|
||||
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#string"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000017 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000017"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000023 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000224 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000224">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role inhering in a person or organization that is realized when the bearer participates in providing funding to a person or an organization for academic or business purposes.</obo:IAO_0000115>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000119>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The NIH is a funding agency.</obo:IAO_0000112>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000225 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000225">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role inhering in a person or organization that is realized when the bearer participates in providing education to a student or group of students.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A teacher.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000595 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000595">
|
||||
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A planned process carried out by a person or organization with the objective of performing research.</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An offering through an ongoing program or single request of research support: internships, positions, financial awards or other forms of tangible or intangible support</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000119>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Training grant to perform post-doctoral research.</obo:IAO_0000112>
|
||||
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">student research opportunity</obo:IAO_0000111>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000776 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000776">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role that inheres in a person who maintains residency in the United states. </obo:IAO_0000115>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000119>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000777 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000777">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000776"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A US resident role that inheres in an individual that is a legally recognized as a member of a state, with associated rights and obligations.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wiktionary.org/wiki/citizen</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000778 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000778">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000776"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A US resident role that inheres in an individual who is not a legally recognized subject or national of the United States.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">https://www.google.com/search?q=residency+status&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a#hl=en&client=firefox-a&hs=Bcx&rls=org.mozilla:en-US:official&q=citizen&tbs=dfn:1&tbo=u&sa=X&ei=micXT_DwMIjUiAK15tDUDw&ved=0CCgQkQ4&bav=on.2,or.r_gc.r_pw.,cf.osb&fp=7b67128a22f602af&biw=1609&bih=794</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000779 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000779">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000778"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An role that inheres in an individual who is not a citizen but who legally resides in another nation on a permanent or extended basis.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://connection.ebscohost.com/us/immigration-restrictions/overview-legal-and-illegal-immigration</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000780 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000780">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000778"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A non-US citizen role that inheres in an individual who is residing in a country, but is neither a citizen nor a permanent resident. </obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.irs.gov/taxtopics/tc851.html</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000783 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000783">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A college student.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role inhering in a person that is realized when the bearer participates a course of study, as in a school, college, university, etc.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.thefreedictionary.com/student</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000784 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000784">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000783"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A college student.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A student role inhering in a person that is realized when the bearer participates in a course of study at a college, university, etc. in pursuit of an associate or bachelor degree.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.thefreedictionary.com/student</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000785 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000785">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000783"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A PhD student at a university.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A student role inhering in a person that is realized when the bearer participates a course of study at a university or institution in pursuit of an graduate or professional degree.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.thefreedictionary.com/student</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000786 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000786">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000783"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A freshman in high school.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A student role inhering in a person that is realized when the bearer participates in a course of study at a secondary learning institution.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.thefreedictionary.com/student</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000787 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000787">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role inhering in a person that is realized when the bearer participates in an occupation by which a person earns a living or spends their time.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An employee at a university.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://dictionary.reference.com/browse/employment</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000788 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000788">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000787"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A professor at a university.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An employee role inhering in a person that is realized when the bearer participates in the teaching and/or administrative force of a university, college, or school.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://dictionary.reference.com/browse/faculty</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000789 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000789">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000787"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A research technician in a lab.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An employee role inhering in a person that is realized when the bearer is employed by an employer.</obo:IAO_0000115>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000119>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000790 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000790">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000783"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A student role inhering in a person that is realized when the bearer participates in a post-baccalaureate training program in pursuit of an additional bachelor degree or new or additional training in a particular field.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000914 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000914">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000783"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A post-doctoral fellow.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A student role inhering in a person that is realized when the bearer participates in a post-graduate training program in pursuit of new or additional training in a particular field, such as a post-doctoral fellowship.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/OBI_0000017 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000017">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
<obo:IAO_0000117 xml:lang="en">GROUP: Role branch</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 xml:lang="en">OBI, CDISC</obo:IAO_0000119>
|
||||
<obo:IAO_0000112 xml:lang="en">Regulatory agency, Ethics committee, Approval letter; example: Browse these EPA Regulatory Role subtopics http://www.epa.gov/ebtpages/enviregulatoryrole.html Feb 29, 2008</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 xml:lang="en">a role which inheres in material entities and is realized in the processes of making, enforcing or being defined by legislation or orders issued by a governmental body.</obo:IAO_0000115>
|
||||
<obo:IAO_0000111 xml:lang="en">regulatory role</obo:IAO_0000111>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/obi.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AdvisingRelationship -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AdvisingRelationship">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Relationship"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A dual relationship of one person being advised or mentored by another person, typically including start and end dates</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Certification -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Certification">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#IssuedCredential"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An issued certificate</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">see also core:Certificate</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#EducationalProcess -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#EducationalProcess">
|
||||
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#FacultyMentoringRelationship -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#FacultyMentoringRelationship">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#AdvisingRelationship"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An advisory relationship in which one faculty member mentors another faculty member.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#GraduateAdvisingRelationship -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#GraduateAdvisingRelationship">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#AdvisingRelationship"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An advisory relationship in which a professor advises a graduate student.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Internship -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Internship">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#EducationalProcess"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Typically a student or a recent graduate undergoing supervised practical training.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#IssuedCredential -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#IssuedCredential">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Relationship"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Licensure -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Licensure">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#IssuedCredential"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A granted license, which gives a 'permission to practice.'</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#MedicalResidency -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#MedicalResidency">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#EducationalProcess"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Residency is a stage of graduate medical training. </obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#PostdocOrFellowAdvisingRelationship -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#PostdocOrFellowAdvisingRelationship">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#AdvisingRelationship"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An advisory relationship in which the advisee is a Postdoc or Fellow.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#PostdoctoralTraining -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#PostdoctoralTraining">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#EducationalProcess"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Relationship -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Relationship"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#UndergraduateAdvisingRelationship -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#UndergraduateAdvisingRelationship">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#AdvisingRelationship"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An advisory relationship in which a professor advises an undergraduate student.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.3.1957) http://owlapi.sourceforge.net -->
|
||||
|
197
home/src/main/resources/rdf/tbox/filegraph/event.owl
Normal file
197
home/src/main/resources/rdf/tbox/filegraph/event.owl
Normal file
|
@ -0,0 +1,197 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/event.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/event.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral -->
|
||||
|
||||
<rdfs:Datatype rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2001/XMLSchema#string -->
|
||||
|
||||
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#string"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/NET/c4dm/event.owl#Event -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/NET/c4dm/event.owl#Event">
|
||||
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Only use if no specific subclasses of event:Event are appropriate.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Something that happens at a given place and time.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This class will also display instances of subclasses under Event, e.g. Philosophy Department Discussion Club; 2009 Racker Lecture; screening of a documentary. In addition to a location in space and time, an event may have any or all the following qualities: actively participating agents, passive factors, work products. Also, it may be in a virtual space or part of a series such as a lecture series.
|
||||
|
||||
The previous short definition was: "An arbitrary classification of a space/time region, by a cognitive agent."</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/Conference -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/ontology/bibo/Conference">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/NET/c4dm/event.owl#Event"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AttendeeRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AttendeeRole">
|
||||
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role of attending an Event or EventSeries</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Competition -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Competition">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/NET/c4dm/event.owl#Event"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An occasion on which a winner is selected from among two or more contestants.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Intel Talent Search; poetry contest</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Not the same as an award or distinction.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#ConferenceSeries -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#ConferenceSeries">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#EventSeries"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organized series of a meeting for consultation or discussion.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">For individual, separate conferences, use conference instead. core:ConferenceSeries and core:SeminarSeries are very similar.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#EventSeries -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#EventSeries">
|
||||
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Only use if no specific subclasses of core:EventSeries desribe the activity.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Two or more events that occur at different times and are connected to each other.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Exhibit -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Exhibit">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/NET/c4dm/event.owl#Event"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The showing of an object or a collection of objects, in an organized manner.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Meeting -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Meeting">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/NET/c4dm/event.owl#Event"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A gathering of people for a defined purpose, not necessarily public or announced</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#OrganizerRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#OrganizerRole">
|
||||
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role of organizing</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Presentation -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Presentation">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/NET/c4dm/event.owl#Event"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Encompasses talk, speech, lecture, slide lecture, conference presentation</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#PresenterRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#PresenterRole">
|
||||
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role of presenting information</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Are we assuming that a PresenterRole is in a Presentation? Or could you have a PresenterRole in, say, a committee?</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#SeminarSeries -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#SeminarSeries">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#EventSeries"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organized series of a meeting for an exchange of ideas, typically put on by a department or center.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Applied Microeconomics Seminars; Future of Rural New York Seminar Series</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">For individual seminars, use seminar instead. core:ConferenceSeries and core:SeminarSeries are very similar.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#WorkshopSeries -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#WorkshopSeries">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#EventSeries"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organized series of workshop events, whether repetitions of the same workshop or multiple different workshops.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use workshop for individual events.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.4.2018) http://owlapi.sourceforge.net -->
|
||||
|
1160
home/src/main/resources/rdf/tbox/filegraph/geo-political.owl
Normal file
1160
home/src/main/resources/rdf/tbox/filegraph/geo-political.owl
Normal file
File diff suppressed because it is too large
Load diff
112
home/src/main/resources/rdf/tbox/filegraph/grant.owl
Normal file
112
home/src/main/resources/rdf/tbox/filegraph/grant.owl
Normal file
|
@ -0,0 +1,112 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/grant.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/grant.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#CoPrincipalInvestigatorRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#CoPrincipalInvestigatorRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#InvestigatorRole"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Role of co-principal investigator of an Agreement (for example, a grant), who devotes a specified percentage of time and is considered key personnel.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Contract -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Contract">
|
||||
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An agreement involving specific deliverables and payment</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Grant -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Grant">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Relationship"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An intramural or extramural award to support scholarly work, such as UF09179 (VIVO)</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Financial assistance mechanism providing money, property, or both to an eligible entity to carry out an approved project or activity</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Short definition is from the Glossary of NIH Terms.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#InvestigatorRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#InvestigatorRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#ResearcherRole"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role in an Agreement (for example, a grant) as a named investigator or key personnel.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#PrincipalInvestigatorRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#PrincipalInvestigatorRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#InvestigatorRole"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Relationship -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Relationship"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#ResearcherRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#ResearcherRole"/>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.4.2018) http://owlapi.sourceforge.net -->
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
@prefix core: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix config: <http://vitro.mannlib.cornell.edu/ns/vitro/ApplicationConfiguration#> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
|
||||
core:webpageOf config:addLinkSuppressed "true"^^xsd:boolean .
|
||||
core:webpageOf config:editLinkSuppressed "true"^^xsd:boolean .
|
||||
core:webpageOf config:deleteLinkSuppressed "true"^^xsd:boolean .
|
||||
core:webpage config:deleteLinkSuppressed "true"^^xsd:boolean .
|
||||
core:hasResearchArea config:deleteLinkSuppressed "true"^^xsd:boolean .
|
||||
core:researchAreaOf config:deleteLinkSuppressed "true"^^xsd:boolean .
|
||||
core:hasSubjectArea config:deleteLinkSuppressed "true"^^xsd:boolean .
|
||||
core:subjectAreaFor config:deleteLinkSuppressed "true"^^xsd:boolean .
|
||||
core:geographicFocusOf config:editLinkSuppressed "true"^^xsd:boolean .
|
147
home/src/main/resources/rdf/tbox/filegraph/location.owl
Normal file
147
home/src/main/resources/rdf/tbox/filegraph/location.owl
Normal file
|
@ -0,0 +1,147 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/location.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/location.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Building -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Building">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Facility"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Building that provides a particular service or is used for a particular activity.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Martha Van Rensselaer Hall (VR); Caldwell Hall (CD); University Auditorium</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Campus -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Campus">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#GeographicLocation"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cornell Ithaca; Cornell Geneva; Cornell New York City; Cornell Qatar</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Definition taken from dictionary.com (http://dictionary.reference.com/browse/campus).</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The grounds of a school, college, university, or hospital. Or, a large, usually suburban, landscaped business or industrial site.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Facility -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Facility">
|
||||
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Something designed, built, installed, etc., to serve a specific function or activity affording a convenience or service.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use subclasses of core:Facility subclasses instead of this class if possible</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#GeographicLocation -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#GeographicLocation">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Location"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A location having coordinates in geographic space.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use subclasses of core:Geographic Location subclasses instead of this class if possible.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#GeographicRegion -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#GeographicRegion">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#GeographicLocation"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A location having coordinates in geographic space.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use subclasses of core:Geographic Region subclasses instead of this class if possible.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#GeopoliticalEntity -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#GeopoliticalEntity"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Location -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Location">
|
||||
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">It's anticipated that the subclasses will be used when classifying items. And, all locations can be viewable via this class.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Top level of all location classes.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use subclasses of core:Location when classsifying items.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#PopulatedPlace -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#PopulatedPlace">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#GeopoliticalEntity"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Either city or town - a thickly populated area having fixed boundaries and certain local powers of government.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Room -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Room">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Facility"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100 Caldwell Hall; 114 Martha Van Rensselaer (Rushmore Conference Room)</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Enter room number of name.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Room that provides a particular service or is used for a particular activity.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.4.2018) http://owlapi.sourceforge.net -->
|
||||
|
1948
home/src/main/resources/rdf/tbox/filegraph/object-properties.owl
Normal file
1948
home/src/main/resources/rdf/tbox/filegraph/object-properties.owl
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/object-properties.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/object-properties.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:ns="http://www.w3.org/2003/06/sw-vocab-status/ns#"
|
||||
xmlns:skos2="http://www.w3.org/2008/05/skos#"
|
||||
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||
xmlns:terms="http://purl.org/dc/terms/"
|
||||
xmlns:geopolitical="http://aims.fao.org/aos/geopolitical.owl#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000054 -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000054"><!-- realized in -->
|
||||
|
||||
<!-- has associated axiom(fol) --><obo:IAO_0000602>(forall (x y z t) (if (and (RealizableEntity x) (Process y) (realizesAt y x t) (bearerOfAt z x t)) (hasParticipantAt y z t))) // axiom label in BFO2 CLIF: [106-002] </obo:IAO_0000602>
|
||||
<!-- elucidation --><obo:IAO_0000600>[copied from inverse property 'realizes'] to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])</obo:IAO_0000600>
|
||||
<!-- has associated axiom(nl) --><obo:IAO_0000601 xml:lang="en">if a realizable entity b is realized in a process p, then p stands in the has_participant relation to the bearer of b. (axiom label in BFO2 Reference: [106-002])</obo:IAO_0000601>
|
||||
<!-- BFO OWL specification label --><obo:BFO_0000179>realized-in</obo:BFO_0000179>
|
||||
<!-- BFO CLIF specification label --><obo:BFO_0000180>realizedIn</obo:BFO_0000180>
|
||||
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/><!-- process -->
|
||||
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/><!-- realizable entity -->
|
||||
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000055 -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000055"><!-- realizes -->
|
||||
|
||||
<!-- has associated axiom(fol) --><obo:IAO_0000602>(forall (x y t) (if (realizesAt x y t) (and (Process x) (or (Disposition y) (Role y)) (exists (z) (and (MaterialEntity z) (hasParticipantAt x z t) (bearerOfAt z y t)))))) // axiom label in BFO2 CLIF: [059-003] </obo:IAO_0000602>
|
||||
<!-- BFO OWL specification label --><obo:BFO_0000179>realizes</obo:BFO_0000179>
|
||||
<!-- BFO CLIF specification label --><obo:BFO_0000180>realizes</obo:BFO_0000180>
|
||||
<!-- elucidation --><obo:IAO_0000600 xml:lang="en">to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])</obo:IAO_0000600>
|
||||
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/><!-- process -->
|
||||
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/><!-- realizable entity -->
|
||||
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000054"/><!-- realized in -->
|
||||
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
</rdf:RDF>
|
|
@ -0,0 +1,926 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/app-views/vivo/vivo-app.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/app-views/vivo/vivo-app.owl"
|
||||
xmlns:app="http://eagle-i.org/ont/app/1.0/"
|
||||
xmlns:ns="http://www.w3.org/2003/06/sw-vocab-status/ns#"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:skos2="http://www.w3.org/2008/05/skos#"
|
||||
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||
xmlns:bibo="http://purl.org/ontology/bibo/"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:core="http://vivoweb.org/ontology/core#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy">
|
||||
|
||||
</owl:AnnotationProperty>
|
||||
<owl:AnnotationProperty rdf:about="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#exampleAnnot"/>
|
||||
<owl:AnnotationProperty rdf:about="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
|
||||
<owl:AnnotationProperty rdf:about="http://www.w3.org/2008/05/skos#scopeNote"/>
|
||||
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
|
||||
<owl:AnnotationProperty rdf:about="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#descriptionAnnot"/>
|
||||
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
|
||||
<owl:AnnotationProperty rdf:about="http://vivoweb.org/ontology/core#description">
|
||||
|
||||
</owl:AnnotationProperty>
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral -->
|
||||
|
||||
<rdfs:Datatype rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2000/01/rdf-schema#Literal -->
|
||||
|
||||
<rdfs:Datatype rdf:about="http://www.w3.org/2000/01/rdf-schema#Literal"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2001/XMLSchema#anyURI -->
|
||||
|
||||
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#anyURI"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2001/XMLSchema#boolean -->
|
||||
|
||||
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#boolean"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2001/XMLSchema#date -->
|
||||
|
||||
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#date"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2001/XMLSchema#int -->
|
||||
|
||||
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#int"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2001/XMLSchema#string -->
|
||||
|
||||
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#string"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Object Properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://aims.fao.org/aos/geopolitical.owl#hasMember -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasMember">
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://aims.fao.org/aos/geopolitical.owl#isInGroup -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://aims.fao.org/aos/geopolitical.owl#isInGroup">
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/degree -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/degree">
|
||||
|
||||
<rdfs:range rdf:resource="http://purl.org/ontology/bibo/ThesisDegree"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/director -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/director">
|
||||
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/distributor -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/distributor">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Public Description for bibo:distributor taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .</vitro:descriptionAnnot>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/interviewee -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/interviewee">
|
||||
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/interviewer -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/interviewer">
|
||||
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/issuer -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/issuer">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An entity responsible for issuing often informally published documents such as press releases, reports, etc. This term is classified as unstable by bibo.</vitro:descriptionAnnot>
|
||||
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://purl.org/ontology/bibo/</rdfs:isDefinedBy>
|
||||
<rdfs:comment>An entity responsible for issuing often informally published documents such as press releases, reports, etc.</rdfs:comment>
|
||||
<ns:term_status>unstable</ns:term_status>
|
||||
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/performer -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/performer">
|
||||
|
||||
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/presentedAt -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/presentedAt">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Public Description from source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . Bibo considers the bibo:presents and the bibo:presentedAt unstable terms. It also indicates that bibo:presents is a sub-property of event:product.</vitro:descriptionAnnot>
|
||||
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://purl.org/ontology/bibo/</rdfs:isDefinedBy>
|
||||
<rdfs:comment xml:lang="en">Relates a document to an event; for example, a paper to a conference.</rdfs:comment>
|
||||
<ns:term_status>unstable</ns:term_status>
|
||||
<rdfs:range rdf:resource="http://purl.org/NET/c4dm/event.owl#Event"/>
|
||||
<rdfs:domain rdf:resource="http://purl.org/ontology/bibo/Document"/>
|
||||
<owl:inverseOf rdf:resource="http://purl.org/ontology/bibo/presents"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/presents -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/presents">
|
||||
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/recipient -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/recipient">
|
||||
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/reproducedIn -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/reproducedIn">
|
||||
<rdfs:range rdf:resource="http://purl.org/ontology/bibo/Document"/>
|
||||
<rdfs:domain rdf:resource="http://purl.org/ontology/bibo/Document"/>
|
||||
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/status -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/status">
|
||||
<rdfs:domain rdf:resource="http://purl.org/ontology/bibo/Document"/>
|
||||
<rdfs:range rdf:resource="http://purl.org/ontology/bibo/DocumentStatus"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/subsequentLegalDecision -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/subsequentLegalDecision">
|
||||
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/translationOf -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/ontology/bibo/translationOf">
|
||||
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
<!-- http://purl.org/spar/c4o/hasGlobalCitationFrequency -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/spar/c4o/hasGlobalCitationFrequency">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</vitro:descriptionAnnot>
|
||||
<rdfs:range rdf:resource="http://purl.org/spar/c4o/GlobalCitationCount"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/spar/c4o/hasGlobalCountSource -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.org/spar/c4o/hasGlobalCountSource">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</vitro:descriptionAnnot>
|
||||
<rdfs:range rdf:resource="http://purl.org/spar/c4o/BibliographicInformationSource"/>
|
||||
<rdfs:domain rdf:resource="http://purl.org/spar/c4o/GlobalCitationCount"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#assignee -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#assignee">
|
||||
|
||||
<rdfs:domain rdf:resource="http://purl.org/ontology/bibo/Patent"/>
|
||||
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#assigneeFor -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#assigneeFor">
|
||||
|
||||
<rdfs:range rdf:resource="http://purl.org/ontology/bibo/Patent"/>
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#assignee"/>
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#degreeCandidacy -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#degreeCandidacy">
|
||||
|
||||
<rdfs:range rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#AdvisingRelationship"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#distributes -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#distributes">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Public Description for bibo:distributor taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html .</vitro:descriptionAnnot>
|
||||
<owl:inverseOf rdf:resource="http://purl.org/ontology/bibo/distributor"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#distributesFundingFrom -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#distributesFundingFrom">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">For example, National Science Foundation providesFundingThrough Graduate Research Fellowship Program; National Institutes of Health providesFundingThrough National Center for Research Resources. </vitro:descriptionAnnot>
|
||||
<rdfs:range rdf:resource="http://vivoweb.org/ontology/core#FundingOrganization"/>
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#FundingOrganization"/>
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#providesFundingThrough"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#eligibleFor -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#eligibleFor">
|
||||
|
||||
<rdfs:range rdf:resource="http://vivoweb.org/ontology/core#Credential"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#equipmentFor -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#equipmentFor">
|
||||
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#Equipment"/>
|
||||
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#hasEquipment -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasEquipment">
|
||||
<rdfs:range rdf:resource="http://vivoweb.org/ontology/core#Equipment"/>
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#equipmentFor"/>
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#facilityFor -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#facilityFor">
|
||||
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#Facility"/>
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#hasFacility"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#featuredIn -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#featuredIn">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This is done through a restriction on the foaf:Person class.</vitro:descriptionAnnot>
|
||||
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#features"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#features -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#features">
|
||||
|
||||
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#fundingVehicleFor -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#fundingVehicleFor">
|
||||
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#Grant"/>
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#hasFundingVehicle"/>
|
||||
<rdfs:subPropertyOf rdf:resource="http://vivoweb.org/ontology/core#supports"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#governingAuthorityFor -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#governingAuthorityFor">
|
||||
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#hasGoverningAuthority"/>
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#equipmentFor -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#equipmentFor">
|
||||
<rdfs:label xml:lang="en-us">equipment for</rdfs:label>
|
||||
<rdfs:subPropertyOf rdf:resource="http://isf/deprecated_op"/>
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#Equipment"/>
|
||||
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#hasPredecessorOrganization -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasPredecessorOrganization">
|
||||
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#hasSuccessorOrganization"/>
|
||||
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#hasProceedings -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasProceedings">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A possible working example: The conference proceeding of the SPIE was generated from the conference - International Society for Optical Engineering.</vitro:descriptionAnnot>
|
||||
<rdfs:domain rdf:resource="http://purl.org/ontology/bibo/Conference"/>
|
||||
<rdfs:range rdf:resource="http://purl.org/ontology/bibo/Proceedings"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#hasPublicationVenue -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasPublicationVenue">
|
||||
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#hasResearchArea -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasResearchArea">
|
||||
|
||||
<rdfs:subPropertyOf rdf:resource="http://vivoweb.org/ontology/core#hasAssociatedConcept"/>
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#researchAreaOf"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#hasSubjectArea -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasSubjectArea">
|
||||
|
||||
<rdfs:subPropertyOf rdf:resource="http://vivoweb.org/ontology/core#hasAssociatedConcept"/>
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#subjectAreaOf"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#hasSubjectArea -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#subjectAreaOf">
|
||||
<rdfs:subPropertyOf rdf:resource="http://vivoweb.org/ontology/core#conceptAssociatedWith"/>
|
||||
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#hasSuccessorOrganization -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasSuccessorOrganization">
|
||||
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#informationResourceSupportedBy -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#informationResourceSupportedBy">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">an information resource (typically a publication) supported by (typically via funding) an agreement (such as a grant)</vitro:descriptionAnnot>
|
||||
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
<rdfs:subPropertyOf rdf:resource="http://vivoweb.org/ontology/core#supportedBy"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#proceedingsOf -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#proceedingsOf">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A possible working example: The conference proceeding of the SPIE was generated from the conference - International Society for Optical Engineering.</vitro:descriptionAnnot>
|
||||
<rdfs:range rdf:resource="http://purl.org/ontology/bibo/Conference"/>
|
||||
<rdfs:domain rdf:resource="http://purl.org/ontology/bibo/Proceedings"/>
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#hasProceedings"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#reproduces -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#reproduces">
|
||||
|
||||
<rdfs:range rdf:resource="http://purl.org/ontology/bibo/Document"/>
|
||||
<rdfs:domain rdf:resource="http://purl.org/ontology/bibo/Document"/>
|
||||
<owl:inverseOf rdf:resource="http://purl.org/ontology/bibo/reproducedIn"/>
|
||||
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#researchAreaOf -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#researchAreaOf">
|
||||
|
||||
<rdfs:subPropertyOf rdf:resource="http://vivoweb.org/ontology/core#conceptAssociatedWith"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#reviewedIn -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#reviewedIn">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</vitro:descriptionAnnot>
|
||||
<rdfs:range rdf:resource="http://vivoweb.org/ontology/core#Review"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#roleContributesTo -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#roleContributesTo">
|
||||
|
||||
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#contributingRole"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#sponsoredBy -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#sponsoredBy">
|
||||
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#Award"/>
|
||||
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#sponsors -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#sponsors">
|
||||
|
||||
<rdfs:range rdf:resource="http://vivoweb.org/ontology/core#Award"/>
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#sponsoredBy"/>
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#supportedBy -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#supportedBy">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">general relationship of support</vitro:descriptionAnnot>
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#supports"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#supportedInformationResource -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#supportedInformationResource">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">an information resource (typically a publication) supported by (typically via funding) an agreement (such as a grant)</vitro:descriptionAnnot>
|
||||
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
<owl:inverseOf rdf:resource="http://vivoweb.org/ontology/core#informationResourceSupportedBy"/>
|
||||
<rdfs:subPropertyOf rdf:resource="http://vivoweb.org/ontology/core#supports"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#supports -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#supports">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">general relationship of support</vitro:descriptionAnnot>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#validIn -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#validIn">
|
||||
|
||||
<rdfs:range rdf:resource="http://vivoweb.org/ontology/core#GeographicLocation"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2004/02/skos/core#broader -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#broader">
|
||||
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Public description modified from the information on this page: http://www.w3.org/TR/2005/WD-swbp-skos-core-guide-20050510/#sechierarchy .</vitro:descriptionAnnot>
|
||||
<rdfs:domain rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2004/02/skos/core#narrower -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#narrower">
|
||||
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Public description modified from the information on this page: http://www.w3.org/TR/2005/WD-swbp-skos-core-guide-20050510/#sechierarchy .</vitro:descriptionAnnot>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
||||
<rdfs:domain rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.w3.org/2004/02/skos/core#related -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#related">
|
||||
|
||||
|
||||
<rdfs:domain rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Data properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/abstract -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://purl.org/ontology/bibo/abstract">
|
||||
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/doi -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://purl.org/ontology/bibo/doi">
|
||||
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/eanucc13 -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://purl.org/ontology/bibo/eanucc13">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/edition -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://purl.org/ontology/bibo/edition">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/eissn -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://purl.org/ontology/bibo/eissn">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/issn -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://purl.org/ontology/bibo/issn">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/lccn -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://purl.org/ontology/bibo/lccn">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/numPages -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://purl.org/ontology/bibo/numPages">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/oclcnum -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://purl.org/ontology/bibo/oclcnum">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/pageEnd -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://purl.org/ontology/bibo/pageEnd">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/pageStart -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://purl.org/ontology/bibo/pageStart">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/spar/c4o/hasGlobalCountValue -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://purl.org/spar/c4o/hasGlobalCountValue">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</vitro:descriptionAnnot>
|
||||
<rdfs:domain rdf:resource="http://purl.org/spar/c4o/GlobalCitationCount"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/vocab/vann/preferredNamespaceUri -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://purl.org/vocab/vann/preferredNamespaceUri">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#abbreviation -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#abbreviation">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#courseCredits -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#courseCredits">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#departmentOrSchool -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#departmentOrSchool">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Not intended to be an institution name.</vitro:descriptionAnnot>
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#EducationalProcess"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#description -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#description">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#entryTerm -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#entryTerm">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#freetextKeyword -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#freetextKeyword">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#grantDirectCosts -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#grantDirectCosts">
|
||||
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#Grant"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#hideFromDisplay -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#hideFromDisplay">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
|
||||
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#hrJobTitle -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#hrJobTitle">
|
||||
|
||||
<vitro:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Definition http://en.wikipedia.org/wiki/Job_title#Job_title.</vitro:descriptionAnnot>
|
||||
<vitro:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">administrative secretary</vitro:exampleAnnot>
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#Position"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#isCorrespondingAuthor -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#isCorrespondingAuthor">
|
||||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
|
||||
|
||||
<vitro:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">True; False</vitro:exampleAnnot>
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#Authorship"/>
|
||||
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#majorField -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#majorField">
|
||||
|
||||
<rdfs:domain rdf:resource="http://vivoweb.org/ontology/core#EducationalProcess"/>
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#placeOfPublication -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#placeOfPublication">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#preferredDisplayOrder -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#preferredDisplayOrder">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#rank -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#rank">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#supplementalInformation -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#supplementalInformation">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#termLabel -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#termLabel">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#termType -->
|
||||
|
||||
<owl:DatatypeProperty rdf:about="http://vivoweb.org/ontology/core#termType">
|
||||
|
||||
</owl:DatatypeProperty>
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#hasCollaborator">
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
|
||||
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://vivoweb.org/ontology/core#affiliatedOrganization">
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
</owl:ObjectProperty>
|
||||
|
||||
</rdf:RDF>
|
38
home/src/main/resources/rdf/tbox/filegraph/objectDomains.rdf
Normal file
38
home/src/main/resources/rdf/tbox/filegraph/objectDomains.rdf
Normal file
|
@ -0,0 +1,38 @@
|
|||
<rdf:RDF
|
||||
xmlns:c4o="http://purl.org/spar/c4o/"
|
||||
xmlns:vitro-public="http://vitro.mannlib.cornell.edu/ns/vitro/public#"
|
||||
xmlns:ero="http://purl.obolibrary.org/obo/"
|
||||
xmlns:pvs="http://vivoweb.org/ontology/provenance-support#"
|
||||
xmlns:owl2="http://www.w3.org/2006/12/owl2-xml#"
|
||||
xmlns:scirr="http://vivoweb.org/ontology/scientific-research-resource#"
|
||||
xmlns:vivo="http://vivoweb.org/ontology/core#"
|
||||
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:bibo="http://purl.org/ontology/bibo/"
|
||||
xmlns:afn="http://jena.hpl.hp.com/ARQ/function#"
|
||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||
xmlns:scires="http://vivoweb.org/ontology/scientific-research#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:geo="http://aims.fao.org/aos/geopolitical.owl#"
|
||||
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
||||
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
|
||||
xmlns:dcelem="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||
xmlns:vann="http://purl.org/vocab/vann/"
|
||||
xmlns:vcard="http://www.w3.org/2006/vcard/ns#"
|
||||
xmlns:swvs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:fabio="http://purl.org/spar/fabio/"
|
||||
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#translatorOf">
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasSuccessorOrganization">
|
||||
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#features">
|
||||
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
64
home/src/main/resources/rdf/tbox/filegraph/objectRanges.rdf
Normal file
64
home/src/main/resources/rdf/tbox/filegraph/objectRanges.rdf
Normal file
|
@ -0,0 +1,64 @@
|
|||
<rdf:RDF
|
||||
xmlns:c4o="http://purl.org/spar/c4o/"
|
||||
xmlns:vitro-public="http://vitro.mannlib.cornell.edu/ns/vitro/public#"
|
||||
xmlns:ero="http://purl.obolibrary.org/obo/"
|
||||
xmlns:pvs="http://vivoweb.org/ontology/provenance-support#"
|
||||
xmlns:owl2="http://www.w3.org/2006/12/owl2-xml#"
|
||||
xmlns:scirr="http://vivoweb.org/ontology/scientific-research-resource#"
|
||||
xmlns:vivo="http://vivoweb.org/ontology/core#"
|
||||
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:bibo="http://purl.org/ontology/bibo/"
|
||||
xmlns:afn="http://jena.hpl.hp.com/ARQ/function#"
|
||||
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||
xmlns:scires="http://vivoweb.org/ontology/scientific-research#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:geo="http://aims.fao.org/aos/geopolitical.owl#"
|
||||
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
|
||||
xmlns:event="http://purl.org/NET/c4dm/event.owl#"
|
||||
xmlns:dcelem="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||
xmlns:vann="http://purl.org/vocab/vann/"
|
||||
xmlns:vcard="http://www.w3.org/2006/vcard/ns#"
|
||||
xmlns:swvs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:fabio="http://purl.org/spar/fabio/"
|
||||
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#translatorOf">
|
||||
<rdfs:range>
|
||||
<owl:Class>
|
||||
<owl:unionOf rdf:parseType="Collection">
|
||||
<owl:Class rdf:about="http://purl.org/ontology/bibo/Collection"/>
|
||||
<owl:Class rdf:about="http://purl.org/ontology/bibo/Document"/>
|
||||
</owl:unionOf>
|
||||
</owl:Class>
|
||||
</rdfs:range>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasSuccessorOrganization">
|
||||
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#reviewedIn">
|
||||
<rdfs:range rdf:resource="http://vivoweb.org/ontology/core#Review"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasFundingVehicle">
|
||||
<rdfs:range>
|
||||
<owl:Class>
|
||||
<owl:unionOf rdf:parseType="Collection">
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#Contract"/>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#Grant"/>
|
||||
</owl:unionOf>
|
||||
</owl:Class>
|
||||
</rdfs:range>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasFacility">
|
||||
<rdfs:range rdf:resource="http://vivoweb.org/ontology/core#Facility"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#dateTimePrecision">
|
||||
<rdfs:range rdf:resource="http://vivoweb.org/ontology/core#DateTimeValuePrecision"/>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasGoverningAuthority">
|
||||
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
24
home/src/main/resources/rdf/tbox/filegraph/ontologies.owl
Normal file
24
home/src/main/resources/rdf/tbox/filegraph/ontologies.owl
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/role.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/role.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<owl:Ontology rdf:about="http://xmlns.com/foaf/0.1/"/>
|
||||
<owl:Ontology rdf:about="http://purl.org/NET/c4dm/event.owl"/>
|
||||
<owl:Ontology rdf:about="http://vitro.mannlib.cornell.edu/ns/vitro/public"/>
|
||||
<owl:Ontology rdf:about="http://purl.org/ontology/bibo/"/>
|
||||
<owl:Ontology rdf:about="http://vivoweb.org/ontology/core"/>
|
||||
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/"/>
|
||||
<owl:Ontology rdf:about="http://www.w3.org/2006/vcard/ns"/>
|
||||
<owl:Ontology rdf:about="http://aims.fao.org/aos/geopolitical.owl"/>
|
||||
<owl:Ontology rdf:about="http://purl.org/net/OCRe/research.owl"/>
|
||||
<owl:Ontology rdf:about="http://purl.org/net/OCRe/study_design.owl"/>
|
||||
<owl:Ontology rdf:about="http://www.w3.org/2004/02/skos/core"/>
|
||||
<owl:Ontology rdf:about="http://vivoweb.org/ontology/scientific-research"/>
|
||||
<owl:Ontology rdf:about="http://purl.org/spar/fabio/"/>
|
||||
<owl:Ontology rdf:about="http://purl.org/spar/c4o/"/>
|
||||
<owl:Ontology rdf:about="http://purl.org/spar/cito/"/>
|
||||
</rdf:RDF>
|
|
@ -0,0 +1,17 @@
|
|||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix core: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
||||
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
|
||||
core:confirmedOrcidId
|
||||
a owl:ObjectProperty ;
|
||||
rdfs:label "Orcid ID confirmation"@en-US ;
|
||||
rdfs:comment "Indicates that the Orcid ID has been confirmed by this Person" ;
|
||||
rdfs:range foaf:Person .
|
||||
|
||||
# When the orcidId triple is deleted, delete the ORCID ID object also.
|
||||
core:orcidId
|
||||
vitro:stubObjectPropertyAnnot "true"^^xsd:boolean ;
|
||||
|
100
home/src/main/resources/rdf/tbox/filegraph/other.owl
Normal file
100
home/src/main/resources/rdf/tbox/filegraph/other.owl
Normal file
|
@ -0,0 +1,100 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/other.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/other.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000003 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000003"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000032 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000032"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/OBI_0001554 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001554">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000032"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/UO_0000280 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/UO_0000280">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000003"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Individuals
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ARG_2000400 -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/ARG_2000400">
|
||||
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/UO_0000280"/>
|
||||
|
||||
</owl:NamedIndividual>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.3.1957) http://owlapi.sourceforge.net -->
|
||||
|
60
home/src/main/resources/rdf/tbox/filegraph/outreach.owl
Normal file
60
home/src/main/resources/rdf/tbox/filegraph/outreach.owl
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/outreach.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/outreach.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#OutreachProviderRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#OutreachProviderRole">
|
||||
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An outreach or community service role directed outside a person's primary profession and institution</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Communicating Astronomy to the Public</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.4.2018) http://owlapi.sourceforge.net -->
|
||||
|
97
home/src/main/resources/rdf/tbox/filegraph/personTypes.n3
Normal file
97
home/src/main/resources/rdf/tbox/filegraph/personTypes.n3
Normal file
|
@ -0,0 +1,97 @@
|
|||
@prefix afn: <http://jena.hpl.hp.com/ARQ/function#> .
|
||||
@prefix : <http://purl.obolibrary.org/obo/arg/app-views/vivo/vivo-app.owl#> .
|
||||
@prefix hr: <http://vivo.cornell.edu/ns/hr/0.9/hr.owl#> .
|
||||
@prefix ns: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
|
||||
@prefix scires: <http://vivoweb.org/ontology/scientific-research#> .
|
||||
@prefix aka: <http://vivoweb.org/ontology/aka#> .
|
||||
@prefix scirr: <http://vivoweb.org/ontology/scientific-research-resource#> .
|
||||
@prefix vann: <http://purl.org/vocab/vann/> .
|
||||
@prefix pubmed: <http://vitro.mannlib.cornell.edu/ns/pubmed#> .
|
||||
@prefix owl2: <http://www.w3.org/2006/12/owl2-xml#> .
|
||||
@prefix dcterms: <http://purl.org/dc/terms/> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix swrl: <http://www.w3.org/2003/11/swrl#> .
|
||||
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> .
|
||||
@prefix event: <http://purl.org/NET/c4dm/event.owl#> .
|
||||
@prefix vivoc: <http://vivo.library.cornell.edu/ns/0.1#> .
|
||||
@prefix swvs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix c4o: <http://purl.org/spar/c4o/> .
|
||||
@prefix cce: <http://vivoweb.org/ontology/cornell-cooperative-extension#> .
|
||||
@prefix vivo: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix dcelem: <http://purl.org/dc/elements/1.1/> .
|
||||
@prefix app: <http://eagle-i.org/ont/app/1.0/> .
|
||||
@prefix pvs: <http://vivoweb.org/ontology/provenance-support#> .
|
||||
@prefix geo: <http://aims.fao.org/aos/geopolitical.owl#> .
|
||||
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
||||
@prefix aktp: <http://www.aktors.org/ontology/portal#> .
|
||||
@prefix far: <http://vitro.mannlib.cornell.edu/ns/reporting#> .
|
||||
@prefix fabio: <http://purl.org/spar/fabio/> .
|
||||
@prefix skco: <http://www.w3.org/2004/02/skos/core#> .
|
||||
@prefix ospcu: <http://vivoweb.org/ontology/cu-vivo-osp#> .
|
||||
@prefix acti: <http://vivoweb.org/ontology/activity-insight#> .
|
||||
@prefix obo: <http://purl.obolibrary.org/obo/> .
|
||||
@prefix skos2: <http://www.w3.org/2008/05/skos#> .
|
||||
@prefix stars: <http://vitro.mannlib.cornell.edu/ns/cornell/stars/classes#> .
|
||||
@prefix bibo: <http://purl.org/ontology/bibo/> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
@prefix swrlb: <http://www.w3.org/2003/11/swrlb#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix socsci: <http://vivo.library.cornell.edu/ns/vivo/socsci/0.1#> .
|
||||
@prefix rdfsyn: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix core: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix vitro-public: <http://vitro.mannlib.cornell.edu/ns/vitro/public#> .
|
||||
@prefix local: <http://vivo.cornell.edu/ontology/local#> .
|
||||
@prefix mann: <http://vivo.cornell.edu/ns/mannadditions/0.1#> .
|
||||
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
||||
@prefix ero: <http://purl.obolibrary.org/obo/> .
|
||||
|
||||
core:FacultyMember
|
||||
a owl:Class ;
|
||||
|
||||
rdfs:subClassOf foaf:Person ;
|
||||
vitro:descriptionAnnot
|
||||
"Definition from here: http://research.carleton.ca/htr/defs.php."^^xsd:string ;
|
||||
obo:IAO_0000115 "A person with at least one academic appointment to a specific faculty of a university or institution of higher learning."^^xsd:string .
|
||||
|
||||
core:Postdoc
|
||||
a owl:Class ;
|
||||
|
||||
rdfs:subClassOf core:NonFacultyAcademic ;
|
||||
obo:IAO_0000115 "A Person holding an academic employment appointment focused on research rather than teaching; temporary (or for some defined term)"^^xsd:string .
|
||||
|
||||
core:NonFacultyAcademic
|
||||
a owl:Class ;
|
||||
|
||||
rdfs:subClassOf foaf:Person ;
|
||||
obo:IAO_0000115 "A person not considered a faculty member but holding an academic appointment."^^xsd:string .
|
||||
|
||||
core:EmeritusLibrarian
|
||||
a owl:Class ;
|
||||
|
||||
rdfs:subClassOf foaf:Person ;
|
||||
obo:IAO_0000115 "A retired librarian who has retained their rank, title and privileges."^^xsd:string .
|
||||
|
||||
core:EmeritusFaculty
|
||||
a owl:Class ;
|
||||
|
||||
rdfs:subClassOf foaf:Person ;
|
||||
obo:IAO_0000115 "A retired faculty member who has retained their rank, title and privileges."^^xsd:string .
|
||||
|
||||
core:Librarian
|
||||
a owl:Class ;
|
||||
|
||||
rdfs:subClassOf foaf:Person ;
|
||||
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."^^xsd:string .
|
||||
|
||||
core:EmeritusProfessor
|
||||
a owl:Class ;
|
||||
|
||||
rdfs:subClassOf core:EmeritusFaculty , foaf:Person ;
|
||||
obo:IAO_0000115 "A retired professor who has retained their rank, title and privileges."^^xsd:string .
|
||||
|
||||
core:NonAcademic
|
||||
a owl:Class ;
|
||||
|
||||
rdfs:subClassOf foaf:Person ;
|
||||
obo:IAO_0000115 "A person holding a position that is not considered to be an academic appointment."^^xsd:string .
|
84
home/src/main/resources/rdf/tbox/filegraph/process.owl
Normal file
84
home/src/main/resources/rdf/tbox/filegraph/process.owl
Normal file
|
@ -0,0 +1,84 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/process.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/process.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AdvisingProcess -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AdvisingProcess">
|
||||
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AttendingProcess -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AttendingProcess">
|
||||
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#PresentingProcess -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#PresentingProcess">
|
||||
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Project -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Project">
|
||||
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An endeavor, frequently collaborative, that occurs over a finite period of time and is intended to achieve a particular aim.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An endeavor, frequently collaborative, that occurs over a finite period of time and is intended to achieve a particular aim.
|
||||
</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.4.2018) http://owlapi.sourceforge.net -->
|
||||
|
1206
home/src/main/resources/rdf/tbox/filegraph/publication.owl
Normal file
1206
home/src/main/resources/rdf/tbox/filegraph/publication.owl
Normal file
File diff suppressed because it is too large
Load diff
191
home/src/main/resources/rdf/tbox/filegraph/relationship.owl
Normal file
191
home/src/main/resources/rdf/tbox/filegraph/relationship.owl
Normal file
|
@ -0,0 +1,191 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/relationship.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/relationship.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AwardReceipt -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AwardReceipt">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Relationship"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The award bestowed may be represented with the Award class.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The bestowal of an award, honor, or distinction to a person or person's at a particular time. </obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AwardedDegree -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AwardedDegree">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Relationship"/>
|
||||
<obo:IAO_0000115>The awarding of a degree by an agent to another agent. It is mostly for academic degrees.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Contract -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Contract">
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Relationship"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Editorship -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Editorship">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Relationship"/>
|
||||
<obo:IAO_0000115>A relationship that represents the recognition of an agent as an editor.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#FacultyAdministrativePosition -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#FacultyAdministrativePosition">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Position"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An academic administrative position (associate dean, etc.) as distinct from a professional administrative position (non-academic)</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Associate Dean</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">That is a position held by an academic faculty member who works for administration.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#FacultyPosition -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#FacultyPosition">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Position"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Academic position in a university or institution</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Professor, associate professor and assistant professor are common positions for academic faculty.</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Professor; Associate Professor; Assistant Professor</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#LibrarianPosition -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#LibrarianPosition">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Position"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A position held by library and information science professionals, or academic or technical experts, in support of providing information services or materials</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">It is the common position in libraries.</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Librarian; Library Systems Analyst; Music Bibliographer</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#NonAcademicPosition -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#NonAcademicPosition">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Position"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A position classified as professional, staff, support, or any other non-academic role</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Accounting & Research Services Assistant; Director of Information Technology</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Staff, support, and other non-academic positions.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#NonFacultyAcademicPosition -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#NonFacultyAcademicPosition">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Position"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A position involving academic work but without faculty status</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Researcher; Academic Extension Associate; Postdoctoral Associate</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Those positions are held by people who do academic work but do not have faculty positions in universities or institutes.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Position -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Position">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Relationship"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An employment activity, whether compensated or not. Short definition comes from http://en.wikipedia.org/wiki/Position, and has been modified.</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Director of Admissions and Placement; Associate University Librarian</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#PostdocPosition -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#PostdocPosition">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#NonFacultyAcademicPosition"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A postdoctoral training appointment (job)</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#PrimaryPosition -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#PrimaryPosition">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Position"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A position designated as primary by the organization where it is held.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Relationship -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Relationship">
|
||||
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a reified relationship</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">functions as an n-ary predicate</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.3.1957) http://owlapi.sourceforge.net -->
|
||||
|
162
home/src/main/resources/rdf/tbox/filegraph/relationshipAxioms.n3
Normal file
162
home/src/main/resources/rdf/tbox/filegraph/relationshipAxioms.n3
Normal file
|
@ -0,0 +1,162 @@
|
|||
@prefix hr: <http://vivo.cornell.edu/ns/hr/0.9/hr.owl#> .
|
||||
@prefix afn: <http://jena.hpl.hp.com/ARQ/function#> .
|
||||
@prefix : <http://vivoweb.org/ontology/activity-insight#> .
|
||||
@prefix scires: <http://vivoweb.org/ontology/scientific-research#> .
|
||||
@prefix aka: <http://vivoweb.org/ontology/aka#> .
|
||||
@prefix pubmed: <http://vitro.mannlib.cornell.edu/ns/pubmed#> .
|
||||
@prefix vann: <http://purl.org/vocab/vann/> .
|
||||
@prefix owl2: <http://www.w3.org/2006/12/owl2-xml#> .
|
||||
@prefix wcmc: <http://weill.cornell.edu/vivo/ontology/wcmc#> .
|
||||
@prefix dcterms: <http://purl.org/dc/terms/> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix swrl: <http://www.w3.org/2003/11/swrl#> .
|
||||
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> .
|
||||
@prefix event: <http://purl.org/NET/c4dm/event.owl#> .
|
||||
@prefix wos: <http://vivo.mannlib.cornell.edu/ns/ThomsonWOS/0.1#> .
|
||||
@prefix vivoc: <http://vivo.library.cornell.edu/ns/0.1#> .
|
||||
@prefix swvs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix c4o: <http://purl.org/spar/c4o/> .
|
||||
@prefix cce: <http://vivoweb.org/ontology/cornell-cooperative-extension#> .
|
||||
@prefix dcelem: <http://purl.org/dc/elements/1.1/> .
|
||||
@prefix vivo: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix dc: <http://purl.org/dc/elements/1.1/> .
|
||||
@prefix geo: <http://aims.fao.org/aos/geopolitical.owl#> .
|
||||
@prefix pvs: <http://vivoweb.org/ontology/provenance-support#> .
|
||||
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
||||
@prefix aktp: <http://www.aktors.org/ontology/portal#> .
|
||||
@prefix far: <http://vitro.mannlib.cornell.edu/ns/reporting#> .
|
||||
@prefix fabio: <http://purl.org/spar/fabio/> .
|
||||
@prefix skco: <http://www.w3.org/2004/02/skos/core#> .
|
||||
@prefix ospcu: <http://vivoweb.org/ontology/cu-vivo-osp#> .
|
||||
@prefix acti: <http://vivoweb.org/ontology/activity-insight#> .
|
||||
@prefix ai: <http://vivoweb.org/ontology/activity-insight#> .
|
||||
@prefix sce: <http://vivoweb.org/ontology/SchoolOfContinuingEducation#> .
|
||||
@prefix stars: <http://vitro.mannlib.cornell.edu/ns/cornell/stars/classes#> .
|
||||
@prefix bibo: <http://purl.org/ontology/bibo/> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
@prefix swrlb: <http://www.w3.org/2003/11/swrlb#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix core: <http://vivoweb.org/ontology/core#> .
|
||||
@prefix socsci: <http://vivo.library.cornell.edu/ns/vivo/socsci/0.1#> .
|
||||
@prefix rdfsyn: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix local: <http://vivo.cornell.edu/ontology/local#> .
|
||||
@prefix vitro-public: <http://vitro.mannlib.cornell.edu/ns/vitro/public#> .
|
||||
@prefix mann: <http://vivo.cornell.edu/ns/mannadditions/0.1#> .
|
||||
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
||||
@prefix ero: <http://purl.obolibrary.org/obo/> .
|
||||
|
||||
core:Authorship
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom foaf:Agent ;
|
||||
owl:onProperty core:relates
|
||||
] ;
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom <http://purl.obolibrary.org/obo/IAO_0000030> ;
|
||||
owl:onProperty core:relates
|
||||
] .
|
||||
|
||||
core:Position
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom foaf:Person ;
|
||||
owl:onProperty core:relates
|
||||
] ;
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom foaf:Organization ;
|
||||
owl:onProperty core:relates
|
||||
] .
|
||||
|
||||
core:Editorship
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom foaf:Agent ;
|
||||
owl:onProperty core:relates
|
||||
] ;
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom <http://purl.obolibrary.org/obo/IAO_0000030> ;
|
||||
owl:onProperty core:relates
|
||||
] .
|
||||
|
||||
core:AdvisingRelationship
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom foaf:Person ;
|
||||
owl:onProperty core:relates
|
||||
] ;
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom core:AdvisorRole ;
|
||||
owl:onProperty core:relates
|
||||
] ;
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom core:AdviseeRole ;
|
||||
owl:onProperty core:relates
|
||||
] .
|
||||
|
||||
core:AwardedDegree
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom foaf:Person ;
|
||||
owl:onProperty core:relates
|
||||
] ;
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom core:AcademicDegree ;
|
||||
owl:onProperty core:relates
|
||||
] .
|
||||
|
||||
core:AwardReceipt
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom foaf:Agent ;
|
||||
owl:onProperty core:relates
|
||||
] ;
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom core:Award ;
|
||||
owl:onProperty core:relates
|
||||
] .
|
||||
|
||||
core:IssuedCredential
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom foaf:Agent ;
|
||||
owl:onProperty core:relates
|
||||
] ;
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom core:Credential ;
|
||||
owl:onProperty core:relates
|
||||
] .
|
||||
|
||||
core:Grant
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom foaf:Agent ;
|
||||
owl:onProperty core:relates
|
||||
] ;
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom <http://purl.obolibrary.org/obo/BFO_0000023> ;
|
||||
owl:onProperty core:relates
|
||||
] .
|
||||
|
||||
core:Contract
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom foaf:Agent ;
|
||||
owl:onProperty core:relates
|
||||
] ;
|
||||
rdfs:subClassOf
|
||||
[ a owl:Restriction ;
|
||||
owl:someValuesFrom <http://purl.obolibrary.org/obo/BFO_0000023> ;
|
||||
owl:onProperty core:relates
|
||||
] .
|
||||
|
||||
|
|
@ -0,0 +1,362 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/research-resource-iao.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/research-resource-iao.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000232"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000111"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Object Properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000136 -->
|
||||
|
||||
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000136"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000001 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000001"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000031 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000031"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000003 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000003">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000009"/>
|
||||
<obo:IAO_0000116 xml:lang="en">2009-03-16: provenance: a term measurement unit was
|
||||
proposed for OBI (OBI_0000176) , edited by Chris Stoeckert and
|
||||
Cristian Cocos, and subsequently moved to IAO where the objective for
|
||||
which the original term was defined was satisfied with the definition
|
||||
of this, different, term.</obo:IAO_0000116>
|
||||
<obo:IAO_0000116 xml:lang="en">2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.</obo:IAO_0000116>
|
||||
<obo:IAO_0000115 xml:lang="en">A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 xml:lang="en">Examples of measurement unit labels are liters, inches, weight per volume.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Alan Ruttenberg</obo:IAO_0000117>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Melanie Courtot</obo:IAO_0000117>
|
||||
<obo:IAO_0000111 xml:lang="en">measurement unit label</obo:IAO_0000111>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000005 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000005">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000033"/>
|
||||
<obo:IAO_0000116 xml:lang="en">Answers the question, why did you do this experiment?</obo:IAO_0000116>
|
||||
<obo:IAO_0000119 xml:lang="en">OBI Plan and Planned Process/Roles Branch</obo:IAO_0000119>
|
||||
<obo:IAO_0000119 xml:lang="en">OBI_0000217</obo:IAO_0000119>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Alan Ruttenberg</obo:IAO_0000117>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Barry Smith</obo:IAO_0000117>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Bjoern Peters</obo:IAO_0000117>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Jennifer Fostel</obo:IAO_0000117>
|
||||
<obo:IAO_0000115 xml:lang="en">a directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.</obo:IAO_0000115>
|
||||
<obo:IAO_0000111 xml:lang="en">objective specification</obo:IAO_0000111>
|
||||
<obo:IAO_0000112 xml:lang="en">purpose of a study; support of hypothesis, discovery of new information</obo:IAO_0000112>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000007 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000007">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000033"/>
|
||||
<obo:IAO_0000117 xml:lang="en">Alan Ruttenberg</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 xml:lang="en">OBI Plan and Planned Process branch</obo:IAO_0000119>
|
||||
<obo:IAO_0000112 xml:lang="en">Pour the contents of flask 1 into flask 2</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 xml:lang="en">a directive information entity that describes an action the bearer will take</obo:IAO_0000115>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000009 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000009">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
<obo:IAO_0000115 xml:lang="en">A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 xml:lang="en">GROUP: IAO</obo:IAO_0000117>
|
||||
<obo:IAO_0000111 xml:lang="en">datum label</obo:IAO_0000111>
|
||||
<obo:IAO_0000116 xml:lang="en">http://www.golovchenko.org/cgi-bin/wnsearch?q=label#4n</obo:IAO_0000116>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000027 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000027">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
<obo:IAO_0000116 xml:lang="en">2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers.</obo:IAO_0000116>
|
||||
<obo:IAO_0000116 xml:lang="en">2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum.</obo:IAO_0000116>
|
||||
<obo:IAO_0000116 xml:lang="en">2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym.</obo:IAO_0000116>
|
||||
<obo:IAO_0000112 xml:lang="en">Data items include counts of things, analyte concentrations, and statistical summaries.</obo:IAO_0000112>
|
||||
<obo:IAO_0000116 xml:lang="en">JAR: datum -- well, this will be very tricky to define, but maybe some
|
||||
information-like stuff that might be put into a computer and that is
|
||||
meant, by someone, to denote and/or to be interpreted by some
|
||||
process... I would include lists, tables, sentences... I think I might
|
||||
defer to Barry, or to Brian Cantwell Smith
|
||||
|
||||
JAR: A data item is an approximately justified approximately true approximate belief</obo:IAO_0000116>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Alan Ruttenberg</obo:IAO_0000117>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Chris Stoeckert</obo:IAO_0000117>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Jonathan Rees</obo:IAO_0000117>
|
||||
<obo:IAO_0000115 xml:lang="en">a data item is an information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.</obo:IAO_0000115>
|
||||
<obo:IAO_0000118 xml:lang="en">data</obo:IAO_0000118>
|
||||
<obo:IAO_0000111 xml:lang="en">data item</obo:IAO_0000111>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000030 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000030">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000031"/>
|
||||
<rdfs:subClassOf>
|
||||
<owl:Restriction>
|
||||
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
|
||||
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
|
||||
</owl:Restriction>
|
||||
</rdfs:subClassOf>
|
||||
<obo:IAO_0000112 xml:lang="en">Examples of information content entites include journal articles, data, graphical layouts, and graphs.</obo:IAO_0000112>
|
||||
<obo:IAO_0000119 xml:lang="en">OBI_0000142</obo:IAO_0000119>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Chris Stoeckert</obo:IAO_0000117>
|
||||
<obo:IAO_0000115 xml:lang="en">an information content entity is an entity that is generically dependent on some artifact and stands in relation of aboutness to some entity</obo:IAO_0000115>
|
||||
<obo:IAO_0000111 xml:lang="en">information content entity</obo:IAO_0000111>
|
||||
<obo:IAO_0000116 xml:lang="en">information_content_entity 'is_encoded_in' some digital_entity in obi before split (040907). information_content_entity 'is_encoded_in' some physical_document in obi before split (040907).
|
||||
|
||||
Previous. An information content entity is a non-realizable information entity that 'is encoded in' some digital or physical entity.</obo:IAO_0000116>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000032 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000032">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
|
||||
<obo:IAO_0000112 xml:lang="en">10 feet. 3 ml.</obo:IAO_0000112>
|
||||
<obo:IAO_0000116 xml:lang="en">2009-03-16: we decided to keep datum singular in scalar measurement datum, as in
|
||||
this case we explicitly refer to the singular form</obo:IAO_0000116>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Alan Ruttenberg</obo:IAO_0000117>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Melanie Courtot</obo:IAO_0000117>
|
||||
<obo:IAO_0000116 xml:lang="en">Would write this as: has_part some 'measurement unit label' and has_part some numeral and has_part exactly 2, except for the fact that this won't let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them.</obo:IAO_0000116>
|
||||
<obo:IAO_0000115 xml:lang="en">a scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.</obo:IAO_0000115>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000033 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000033">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
<obo:IAO_0000116 xml:lang="en">8/6/2009 Alan Ruttenberg: Changed label from "information entity about a realizable" after discussions at ICBO</obo:IAO_0000116>
|
||||
<obo:IAO_0000115 xml:lang="en">An information content entity whose concretizations indicate to their bearer how to realize them in a process.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Alan Ruttenberg</obo:IAO_0000117>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Bjoern Peters</obo:IAO_0000117>
|
||||
<obo:IAO_0000116 xml:lang="en">Werner pushed back on calling it realizable information entity as it isn't realizable. However this name isn't right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn't about the plan, it, once concretized, *is* the plan. -Alan</obo:IAO_0000116>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000102 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000102">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Person:Alan Ruttenberg</obo:IAO_0000117>
|
||||
<obo:IAO_0000115 xml:lang="en">data about an ontology part is a data item about a part of an ontology, for example a term</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000104 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000104">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000033"/>
|
||||
<obo:IAO_0000116 xml:lang="en">2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was " a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.</obo:IAO_0000116>
|
||||
<obo:IAO_0000117 xml:lang="en">Alan Ruttenberg</obo:IAO_0000117>
|
||||
<obo:IAO_0000116 xml:lang="en">Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved</obo:IAO_0000116>
|
||||
<obo:IAO_0000119 xml:lang="en">OBI Plan and Planned Process branch</obo:IAO_0000119>
|
||||
<obo:IAO_0000119 xml:lang="en">OBI_0000344</obo:IAO_0000119>
|
||||
<obo:IAO_0000112 xml:lang="en">PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 xml:lang="en">a directive information entity that when concretized it is realized in a process in which the bearer tries to achieve the objectives, in part by taking the actions specified. Plan specifications includes parts such as objective specification, action specifications and conditional specifications.</obo:IAO_0000115>
|
||||
<obo:IAO_0000111 xml:lang="en">plan specification</obo:IAO_0000111>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000109 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000109">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
|
||||
<obo:IAO_0000116 xml:lang="en">2/2/2009 is_specified_output of some assay?</obo:IAO_0000116>
|
||||
<obo:IAO_0000115 xml:lang="en">A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 xml:lang="en">Examples of measurement data are the recoding of the weight of a mouse as {40,mass,"grams"}, the recording of an observation of the behavior of the mouse {,process,"agitated"}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}.</obo:IAO_0000112>
|
||||
<obo:IAO_0000119 xml:lang="en">OBI_0000305</obo:IAO_0000119>
|
||||
<obo:IAO_0000119 xml:lang="en">group:OBI</obo:IAO_0000119>
|
||||
<obo:IAO_0000111 xml:lang="en">measurement datum</obo:IAO_0000111>
|
||||
<obo:IAO_0000117 xml:lang="en">person:Chris Stoeckert</obo:IAO_0000117>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000144 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000144">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
<obo:IAO_0000116 xml:lang="en">2009/09/28 Alan Ruttenberg. Fucoidan-use-case</obo:IAO_0000116>
|
||||
<obo:IAO_0000116 xml:lang="en">2009/10/23 Alan Ruttenberg: We need to work on the definition still</obo:IAO_0000116>
|
||||
<obo:IAO_0000115 xml:lang="en">A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 xml:lang="en">Person:Alan Ruttenberg</obo:IAO_0000117>
|
||||
<obo:IAO_0000111 xml:lang="en">conclusion textual entity</obo:IAO_0000111>
|
||||
<obo:IAO_0000112 xml:lang="en">that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper 'Pilot clinical study to evaluate the anticoagulant activity of fucoidan', by Lowenthal et. al.PMID:19696660</obo:IAO_0000112>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/IAO_0000300 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000300">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
<obo:IAO_0000115 xml:lang="en">A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.</obo:IAO_0000115>
|
||||
<obo:IAO_0000116 xml:lang="en">AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc.</obo:IAO_0000116>
|
||||
<obo:IAO_0000116 xml:lang="en">MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities.</obo:IAO_0000116>
|
||||
<obo:IAO_0000117 xml:lang="en">PERSON: Lawrence Hunter</obo:IAO_0000117>
|
||||
<obo:IAO_0000112 xml:lang="en">Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities</obo:IAO_0000112>
|
||||
<obo:IAO_0000118 xml:lang="en">text</obo:IAO_0000118>
|
||||
<obo:IAO_0000111 xml:lang="en">textual entity</obo:IAO_0000111>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/Document -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/ontology/bibo/Document"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.geneontology.org/formats/oboInOwl#DbXref -->
|
||||
|
||||
<owl:Class rdf:about="http://www.geneontology.org/formats/oboInOwl#DbXref">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000102"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.geneontology.org/formats/oboInOwl#Definition -->
|
||||
|
||||
<owl:Class rdf:about="http://www.geneontology.org/formats/oboInOwl#Definition">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000102"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.geneontology.org/formats/oboInOwl#Synonym -->
|
||||
|
||||
<owl:Class rdf:about="http://www.geneontology.org/formats/oboInOwl#Synonym">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000102"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://www.geneontology.org/formats/oboInOwl#SynonymType -->
|
||||
|
||||
<owl:Class rdf:about="http://www.geneontology.org/formats/oboInOwl#SynonymType">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000102"/>
|
||||
</owl:Class>
|
||||
|
||||
</rdf:RDF>
|
519
home/src/main/resources/rdf/tbox/filegraph/research-resource.owl
Normal file
519
home/src/main/resources/rdf/tbox/filegraph/research-resource.owl
Normal file
|
@ -0,0 +1,519 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/research-resource.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/research-resource.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000231"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000111"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000004 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000004">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
|
||||
<rdfs:subClassOf>
|
||||
<owl:Restriction>
|
||||
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/OBI_0000312"/>
|
||||
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000094"/>
|
||||
</owl:Restriction>
|
||||
</rdfs:subClassOf>
|
||||
<!-- added for VIVO -->
|
||||
<rdfs:subClassOf>
|
||||
<owl:Restriction>
|
||||
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/ERO_0000543"/>
|
||||
<owl:allValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ERO_0000007"/> <!-- Technique -->
|
||||
</owl:Restriction>
|
||||
</rdfs:subClassOf>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A flow cytometer.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Material entity that is designed to have a function and play a role in scientific investigation.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">See OBI listserv discussion for considerations in defining instrument. http://sourceforge.net/tracker/index.php?func=detail&aid=2894801&group_id=177891&atid=886178</rdfs:comment>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Scientific_instrument</obo:IAO_0000119>
|
||||
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">instrument</obo:IAO_0000111>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000005 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000005">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A DNA sequencing service performed by a core lab.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An information content entity that describes a service performed by a person or organization with the objective of performing a technique, providing training, providing storage of data or material entities, or providing access to resources for another person or organization</obo:IAO_0000115>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Coordinate with NIF. NIF ID: nlx_res_20090105</rdfs:comment>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
|
||||
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">service</obo:IAO_0000111>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000006 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000006">
|
||||
|
||||
<owl:equivalentClass>
|
||||
<owl:Class>
|
||||
<owl:intersectionOf rdf:parseType="Collection">
|
||||
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000040"/>
|
||||
<owl:Class>
|
||||
<owl:intersectionOf rdf:parseType="Collection">
|
||||
<owl:Restriction>
|
||||
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/OBI_0000312"/>
|
||||
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000094"/>
|
||||
</owl:Restriction>
|
||||
<owl:Restriction>
|
||||
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000053"/>
|
||||
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000086"/>
|
||||
</owl:Restriction>
|
||||
</owl:intersectionOf>
|
||||
</owl:Class>
|
||||
</owl:intersectionOf>
|
||||
</owl:Class>
|
||||
</owl:equivalentClass>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A plasmid can be used as a reagent.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Placeholder for class to be imported from the Reagent Ontology (ReO).</rdfs:comment>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Processed material that is used in a chemical reaction or other experimental process to detect, measure, examine, or produce other substances.</obo:IAO_0000115>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.yourdictionary.com/reagent</obo:IAO_0000119>
|
||||
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reagent</obo:IAO_0000111>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000007 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000007">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A technique is a planned process used to accomplish a specific activity or task.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Flow cytometry is a technique.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Protocol is added to eagle-i temporarily until a relationship between the informatio entity "protocol" and these planned processes is created. This class refers to the axtual process not the document</rdfs:comment>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Technique</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000012 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000012">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role inhering in a person or organization that is realized when the bearer participates in providing a service to meet the need of another person or thing.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A technician in a core laboratory.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An role of an individual within his or her profession or institution; use outreach provider role for community service or other activities outside the profession.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Member of the International Conference on Complex Systems Organizing Committee</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000014 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000014">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Project"/>
|
||||
<rdfs:subClassOf>
|
||||
<owl:Restriction>
|
||||
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
|
||||
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000066"/>
|
||||
</owl:Restriction>
|
||||
</rdfs:subClassOf>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A funded collection of investigations as described in a research proposal.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A project to study the role of a specific protein in cell signaling.</obo:IAO_0000112>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Maybe SameAs "Investigation" but is the subject of funding</rdfs:comment>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000119>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000020 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000020">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
|
||||
<rdfs:subClassOf>
|
||||
<owl:Restriction>
|
||||
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0001000"/>
|
||||
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0100026"/>
|
||||
</owl:Restriction>
|
||||
</rdfs:subClassOf>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Heart tissue obtained from an organism.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Material entity that is a portion or quantity of a biological material for use in testing, examination, or study. A biological specimen can be an individual animal, a population of organisms, or is a part of or derived from an animal, plant, part of a plant, or microorganism. When a taxon is described, it is typically based on a single specimen and is referred to as the holotype.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Should have relationship to Organism</rdfs:comment>
|
||||
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological specimen</obo:IAO_0000111>
|
||||
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biospecimen</obo:IAO_0000118>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Specimen</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000071 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000071">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A general term primarily used for digitally stored data such as computer programs and other kinds of information read and written by computers.</obo:IAO_0000115>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IAO is a planned specification, in SWO is an Information artifact. In eagle-i, we have a need to collect material instances and is it thus currently classified as a material entity.</rdfs:comment>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Microsoft Word is commonly used word processing software.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melissa Haendel</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Computer_software</obo:IAO_0000119>
|
||||
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">software</obo:IAO_0000111>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000391 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000391">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000005"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A service offering that describes a service in which the consumer receives the right to use a resource (instrument, database, software, etc) that is owned or managed by a service provider. Ownership of the accessed resource remains with the service provider during and after provision of service.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Allowing access to a microscope in a core lab.</obo:IAO_0000112>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Coordinate with NIF</rdfs:comment>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matt Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000392 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000392">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000005"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A computer server.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A service offering that describes a service in which the consumer provides some material or data as input which a service provider stores and returns as output.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matt Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000119>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">coordinate with NIF. NIF ID:nlx_res_20090419</rdfs:comment>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000393 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000393">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000005"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A service offering that describes a service in which the provider offers educational materials or events, such as courses, workshops or graduate programs, to the service consumer </obo:IAO_0000115>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Coordinate with NIF. NIF ID: nlx_res_20090444</rdfs:comment>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matt Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000119>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Training a researcher to use a microscope.</obo:IAO_0000112>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000394 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000394">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000005"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A service offering that describes a service in which the provider makes physical changes to a specified input material entity with the objective of producing a new material entity form input materials, or modifying the input material entity, and returning this as output to the service consumer</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Biopsy service.</obo:IAO_0000112>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Coordinate with NIF: NIF ID: nlx_res_20090416</rdfs:comment>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://neurolex.org/wiki/Category:Production_service_resource</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000395 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000395">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0001261"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An analysis service offering that describes a service in which the consumer provides some input material and a service provider performs some analysis of this material to generate data that is returned to the service consumer.</obo:IAO_0000115>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Coordinate with NIF: NIF ID: nlx_res_20090420</rdfs:comment>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Flow cytometry analysis of T cells.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://neurolex.org/wiki/Category:Analysis_service_resource</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000396 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000396">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000394"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A material processing service offering that describes a service in which the provider makes physical changes to a specified input material that produce a new entity as specified output that is returned the service consumer. The specified output of a material production service can be contained within, derived from, or synthesized from specified input materials, but it represents a material entity that is of a distinct type from any of the specified input materials.</obo:IAO_0000115>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Coordinate with NIF. NIF ID: nlx_res_20090418</rdfs:comment>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Production of monoclonal antibodies from a hybridoma.</obo:IAO_0000112>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://neurolex.org/wiki/Category:Material_service_resource</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0001245">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A technique that authorizes a use (such as copying software or using a (patented) invention) to a licensee, sparing the licensee from a claim of infringement brought by the licensor.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Licensing of a new technology.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Nicole Vasilevsky</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/License</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0001254 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0001254">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000005"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A service offering that describes a service in which the provider facilitates the transport of some material entity to a specified destination for the service consumer.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matt Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000119>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Transport of a patient within a hospital.</obo:IAO_0000112>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0001255 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0001255">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000005"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A service offering that describes a service in which the provider assists the consumer in activities directly or indirectly associated with the production and analysis or experimental research data.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matt Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000119>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Technical support.</obo:IAO_0000112>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0001256 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0001256">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000392"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A storage service offering that describes a service in which the consumer provides some material as input which a service provider stores and returns as output</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cryopreservation service.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matt Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0001257 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0001257">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000392"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A storage service offering that describes a service in which the consumer provides data as input, which a service provider stores and returns as output in its original form.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matt Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000119>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Storing data on a server.</obo:IAO_0000112>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0001258 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0001258">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000005"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A service offering that describes a service in which the provider actively maintains a material or data resource (e.g. a model organism colony or database) for the service consumer. This may involved making physical alterations to the material or data with the goal of maintaining its integrity or features.</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matt Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0001259 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0001259">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0001258"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A maintenance service offering that describes a service in which the provider actively maintains a material resource (e.g. a model organism colony) for the service consumer. A material maintenance service may or may not include storage of the material input.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Maintaining an animal coloy.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matt Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0001260 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0001260">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0001258"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A maintenance service offering that describes a service in which the provider actively manages or maintains data or a database for the service consumer. Maintenance of the data is performed to maintain its integrity or enhance its quality or utility for the consumer, but new data is not generated as a result of the maintenance.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Maintaining a database.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matt Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0001261 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0001261">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000005"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A service offering that describes a service in which the consumer provides some input material or data and a service provider returns data about the input material or data.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Flow cytometry analysis service.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matt Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0001262 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0001262">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0001261"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An analysis service offering that describes a service in which the consumer provides some input data and a service provider transforms, models, or interprets the input data and returns this generated data as output</obo:IAO_0000115>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matt Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000119>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sequence data analysis.</obo:IAO_0000112>
|
||||
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">data processing service</obo:IAO_0000118>
|
||||
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">data transformation service</obo:IAO_0000118>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0001263 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0001263">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000394"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A material processing service offering that describes a service in which the provider makes physical modifications to a specified input material, such that at least one of the specified outputs of this process is a modified version of a specified input material.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Histology service.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matt Brush</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Matthew Brush</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0001716 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0001716">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A database is an organized collection of data, today typically in digital form.</obo:IAO_0000115>
|
||||
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Just a place horder. It will probably be replaced by NIF term: http://ontology.neuinfo.org/NIF/DigitalEntities/NIF-Resource.owl#nlx_res_20090405</rdfs:comment>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Carlo Torniai</obo:IAO_0000117>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Database</obo:IAO_0000119>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000011">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
|
||||
<obo:IAO_0000116 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">'Plan' includes a future direction sense. That can be problematic if plans are changed during their execution. There are however implicit contingencies for protocols that an agent has in his mind that can be considered part of the plan, even if the agent didn't have them in mind before. Therefore, a planned process can diverge from what the agent would have said the plan was before executing it, by adjusting to problems encountered during execution (e.g. choosing another reagent with equivalent properties, if the originally planned one has run out.)</obo:IAO_0000116>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bjoern Peters</obo:IAO_0000117>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Injecting mice with a vaccine in order to test its efficacy</obo:IAO_0000112>
|
||||
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">branch derived</obo:IAO_0000119>
|
||||
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">planned process</obo:IAO_0000111>
|
||||
<obo:IAO_0000115 xml:lang="en">A processual entity that realizes a plan which is the concretization of a plan specification.</obo:IAO_0000115>
|
||||
<obo:IAO_0000111 xml:lang="en">planned process</obo:IAO_0000111>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/obi.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/OBI_0000272 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000272">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/ontology/bibo/Document"/>
|
||||
<obo:IAO_0000119 xml:lang="en">OBI branch derived + wikipedia (http://en.wikipedia.org/wiki/Protocol_%28natural_sciences%29)</obo:IAO_0000119>
|
||||
<obo:IAO_0000112 xml:lang="en">PMID: 18388943.Nat Protoc. 2008;3(4):612-8.Protocol for the induction of arthritis in C57BL/6 mice.</obo:IAO_0000112>
|
||||
<obo:IAO_0000117 xml:lang="en">PlanAndPlannedProcess Branch</obo:IAO_0000117>
|
||||
<obo:IAO_0000111 xml:lang="en">Protocol</obo:IAO_0000111>
|
||||
<obo:IAO_0000115 xml:lang="en">a protocol is a plan specification which has sufficient level of detail and quantitative information to communicate it between domain experts, so that different domain experts will reliably be able to independently reproduce the process.</obo:IAO_0000115>
|
||||
<obo:IAO_0000111 xml:lang="en">protocol</obo:IAO_0000111>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/obi.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/OBI_0100026 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0100026">
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
|
||||
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GROUP: OBI Biomaterial Branch</obo:IAO_0000117>
|
||||
<obo:IAO_0000115 xml:lang="en">A material entity that is an individual living system, such as animal, plant, bacteria or virus, that is capable of replicating or reproducing, growth and maintenance in the right environment. An organism may be unicellular or made up, like humans, of many billions of cells divided into specialized tissues and organs.</obo:IAO_0000115>
|
||||
<obo:IAO_0000119 xml:lang="en">WEB: http://en.wikipedia.org/wiki/Organism</obo:IAO_0000119>
|
||||
<obo:IAO_0000112 xml:lang="en">animal</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 xml:lang="en">fungus</obo:IAO_0000112>
|
||||
<obo:IAO_0000111 xml:lang="en">organism</obo:IAO_0000111>
|
||||
<obo:IAO_0000112 xml:lang="en">plant</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 xml:lang="en">virus</obo:IAO_0000112>
|
||||
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000121"/>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/obi.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
</rdf:RDF>
|
147
home/src/main/resources/rdf/tbox/filegraph/research.owl
Normal file
147
home/src/main/resources/rdf/tbox/filegraph/research.owl
Normal file
|
@ -0,0 +1,147 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/research.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/research.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000111"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000034 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000034"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/ERO_0000016 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ERO_0000016"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/OBI_0500000 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0500000">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000104"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A study design is a plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.</obo:IAO_0000115>
|
||||
<obo:IAO_0000111 xml:lang="en">study design</obo:IAO_0000111>
|
||||
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/obi.owl"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Equipment -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Equipment">
|
||||
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A network server is one example. Medical schools and research laboratories can list professional equipment, such as microscopes.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A physical object provided for specific purpose, task or occupation. </obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">server; Bruker Vector-33 FT-IR</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/scientific-research#Phase0ClinicalTrial -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/scientific-research#Phase0ClinicalTrial">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000016"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Phase 0 Clinical Trial</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Phase 0 is a recent designation for exploratory, first-in-human trials conducted in accordance with the United States Food and Drug Administration's (FDA) 2006 Guidance on Exploratory Investigational New Drug (IND) Studies. Phase 0 trials are also known as human microdosing studies and are designed to speed up the development of promising drugs or imaging agents by establishing very early on whether the drug or agent behaves in human subjects as was expected from preclinical studies.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/scientific-research#Phase1ClinicalTrial -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/scientific-research#Phase1ClinicalTrial">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000016"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">In Phase I trials, researchers test an experimental drug or treatment in a small group of people (20-80) for the first time to evaluate its safety, determine a safe dosage range, and identify side effects</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Phase 1 Clinical Trial</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/scientific-research#Phase2ClinicalTrial -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/scientific-research#Phase2ClinicalTrial">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000016"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">In Phase 2 trials, an experimental study drug or treatment is given to a larger group of people (100-300) to see if it is effective and to further evaluate its safety.</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Phase 2 Clinical Trial</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/scientific-research#Phase3ClinicalTrial -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/scientific-research#Phase3ClinicalTrial">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000016"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">In Phase 3 trials, an experimental study drug or treatment is given to large groups of people (1,000-3,000) to confirm its effectiveness, monitor side effects, compare it to commonly used treatments, and collect information that will allow the experimental drug or treatment to be used safely.
|
||||
</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Phase 3 Clinical Trial</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/scientific-research#Phase4ClinicalTrial -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/scientific-research#Phase4ClinicalTrial">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ERO_0000016"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">In Phase 4 trials, post marketing studies delineate additional information including the drug's or treatment's risks, benefits, and optimal use.</obo:IAO_0000115>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Phase 4 Clinical Trial</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.3.1957) http://owlapi.sourceforge.net -->
|
||||
|
113
home/src/main/resources/rdf/tbox/filegraph/role.owl
Normal file
113
home/src/main/resources/rdf/tbox/filegraph/role.owl
Normal file
|
@ -0,0 +1,113 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/role.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/role.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.obolibrary.org/obo/BFO_0000023 -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AdministratorRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AdministratorRole">
|
||||
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#LeaderRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#LeaderRole">
|
||||
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A broad-ranging leader concept, from leading a small temporary committee to head of a large international organization.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A leadership role</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#MemberRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#MemberRole">
|
||||
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role of being a member in a Process or an Organization</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#ResearcherRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#ResearcherRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role of conducting funded or unfunded research, sometimes linked to an Agreement.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AdviseeRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AdviseeRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AdvisorRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AdvisorRole">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
|
||||
</owl:Class>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.4.2018) http://owlapi.sourceforge.net -->
|
||||
|
17
home/src/main/resources/rdf/tbox/filegraph/sameAs.n3
Normal file
17
home/src/main/resources/rdf/tbox/filegraph/sameAs.n3
Normal file
|
@ -0,0 +1,17 @@
|
|||
# $This file is distributed under the terms of the license in /doc/license.txt$
|
||||
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> .
|
||||
|
||||
# This file is intended to provide the definitions required to
|
||||
# enable editing of the owl:sameAs property in profile pages
|
||||
# of Vitro/VIVO.
|
||||
|
||||
owl:sameAs a owl:ObjectProperty ;
|
||||
rdfs:subPropertyOf owl:topObjectProperty ;
|
||||
rdfs:domain owl:Thing ;
|
||||
rdfs:range owl:Thing.
|
13
home/src/main/resources/rdf/tbox/filegraph/service.owl
Normal file
13
home/src/main/resources/rdf/tbox/filegraph/service.owl
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/service.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/service.owl"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.4.2018) http://owlapi.sourceforge.net -->
|
||||
|
269
home/src/main/resources/rdf/tbox/filegraph/skos-vivo.owl
Normal file
269
home/src/main/resources/rdf/tbox/filegraph/skos-vivo.owl
Normal file
|
@ -0,0 +1,269 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/skos-vivo.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/skos-vivo.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:ns="http://www.w3.org/2003/06/sw-vocab-status/ns#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
<!--
|
||||
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/arg/skos-vivo.owl">
|
||||
<owl:imports rdf:resource="http://www.w3.org/2008/05/skos-xl"/>
|
||||
</owl:Ontology>
|
||||
-->
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/DocumentStatus -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/ontology/bibo/DocumentStatus">
|
||||
|
||||
<!-- the following axiom causes display issues -->
|
||||
<!-- <rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/> -->
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The status of a document with respect to its publication.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The status of a document with respect to its publication. The statuses are represented as individuals of this class. Use the "show all individuals of this class" button on the class control panel to see the currently defined statuses.</obo:IAO_0000112>
|
||||
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://purl.org/ontology/bibo/</rdfs:isDefinedBy>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">submitted; accepted; in-press; published; invited; refereed.</obo:IAO_0000112>
|
||||
<ns:term_status>stable</ns:term_status>
|
||||
<rdfs:comment xml:lang="en">The status of the publication of a document.</rdfs:comment>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/ThesisDegree -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/ontology/bibo/ThesisDegree">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#AcademicDegree"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Different from general academic degree, thesis degree is achieved through one's completed thesis. Thesis is a document submitted in support of candidature for a degree or professional qualification presenting the author's research and findings(http://en.wikipedia.org/wiki/Thesis_or_dissertation).</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Doctor of Philosophy (Ph.D.)</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The academic degree of a Thesis.</obo:IAO_0000115>
|
||||
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://purl.org/ontology/bibo/</rdfs:isDefinedBy>
|
||||
<rdfs:comment xml:lang="en">The academic degree of a Thesis</rdfs:comment>
|
||||
<ns:term_status>stable</ns:term_status>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#AcademicDegree -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#AcademicDegree">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An academic degree at any level, both as reported by individuals for employment and as offered by academic degree programs.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">B.A. Bachelor of Arts</obo:IAO_0000112>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This list may have multiple abbreviations for some degrees.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Award -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Award">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An Award or Honor</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An Award or Honor</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wiley Prize in Biomedical Sciences</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Certificate -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Certificate">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Credential"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A document confirming certain characteristics of a person or organization, usually provided by some form of external review, education, or assessment.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A document confirming certain characteristics of a person or organization, usually provided by some form of external review, education, or assessment.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Credential -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Credential">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000115>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000112>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#DateTimeValuePrecision -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#DateTimeValuePrecision">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Indicates the precision of the value of a DateTimeValue instance.</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#License -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#License">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#Credential"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Official or legal permission to do something</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Individuals
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/accepted -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://purl.org/ontology/bibo/accepted">
|
||||
<rdf:type rdf:resource="http://purl.org/ontology/bibo/DocumentStatus"/>
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/draft -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://purl.org/ontology/bibo/draft">
|
||||
<rdf:type rdf:resource="http://purl.org/ontology/bibo/DocumentStatus"/>
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/peerReviewed -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://purl.org/ontology/bibo/peerReviewed">
|
||||
<rdf:type rdf:resource="http://purl.org/ontology/bibo/DocumentStatus"/>
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/published -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://purl.org/ontology/bibo/published">
|
||||
<rdf:type rdf:resource="http://purl.org/ontology/bibo/DocumentStatus"/>
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/rejected -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://purl.org/ontology/bibo/rejected">
|
||||
<rdf:type rdf:resource="http://purl.org/ontology/bibo/DocumentStatus"/>
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/ontology/bibo/unpublished -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://purl.org/ontology/bibo/unpublished">
|
||||
<rdf:type rdf:resource="http://purl.org/ontology/bibo/DocumentStatus"/>
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#inPress -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#inPress">
|
||||
<rdf:type rdf:resource="http://purl.org/ontology/bibo/DocumentStatus"/>
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#invited -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#invited">
|
||||
<rdf:type rdf:resource="http://purl.org/ontology/bibo/DocumentStatus"/>
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#submitted -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#submitted">
|
||||
<rdf:type rdf:resource="http://purl.org/ontology/bibo/DocumentStatus"/>
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#yearMonthDayPrecision -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#yearMonthDayPrecision">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#DateTimeValuePrecision"/>
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#yearMonthDayTimePrecision -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#yearMonthDayTimePrecision">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#DateTimeValuePrecision"/>
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#yearMonthPrecision -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#yearMonthPrecision">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#DateTimeValuePrecision"/>
|
||||
</owl:NamedIndividual>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#yearPrecision -->
|
||||
|
||||
<owl:NamedIndividual rdf:about="http://vivoweb.org/ontology/core#yearPrecision">
|
||||
<rdf:type rdf:resource="http://vivoweb.org/ontology/core#DateTimeValuePrecision"/>
|
||||
</owl:NamedIndividual>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.3.1957) http://owlapi.sourceforge.net -->
|
||||
|
75
home/src/main/resources/rdf/tbox/filegraph/teaching.owl
Normal file
75
home/src/main/resources/rdf/tbox/filegraph/teaching.owl
Normal file
|
@ -0,0 +1,75 @@
|
|||
<?xml version="1.0"?>
|
||||
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/arg/teaching.owl#"
|
||||
xml:base="http://purl.obolibrary.org/obo/arg/teaching.owl"
|
||||
xmlns:obo="http://purl.obolibrary.org/obo/"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Annotation properties
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
|
||||
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Datatypes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Classes
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- http://purl.org/NET/c4dm/event.owl#Event -->
|
||||
|
||||
<owl:Class rdf:about="http://purl.org/NET/c4dm/event.owl#Event"/>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#Course -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#Course">
|
||||
|
||||
<rdfs:subClassOf rdf:resource="http://purl.org/NET/c4dm/event.owl#Event"/>
|
||||
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</obo:IAO_0000112>
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
|
||||
|
||||
|
||||
<!-- http://vivoweb.org/ontology/core#TeacherRole -->
|
||||
|
||||
<owl:Class rdf:about="http://vivoweb.org/ontology/core#TeacherRole">
|
||||
|
||||
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A role of serving as an educator</obo:IAO_0000115>
|
||||
</owl:Class>
|
||||
</rdf:RDF>
|
||||
|
||||
|
||||
|
||||
<!-- Generated by the OWL API (version 3.4.2018) http://owlapi.sourceforge.net -->
|
||||
|
6
home/src/main/resources/rdf/tbox/firsttime/README.md
Normal file
6
home/src/main/resources/rdf/tbox/firsttime/README.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
This directory contains ontology "TBox" files with class and property definitions.
|
||||
These are loaded by the VIVO application when it starts for the first time, after
|
||||
the initial installation or after an upgrade installation that involves changes
|
||||
to these files.
|
||||
|
||||
See VIVO/rdf/tbox/filegraph/README.md for more information about "TBox" files.
|
|
@ -0,0 +1,45 @@
|
|||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
||||
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
||||
@prefix : <http://vitro.mannlib.cornell.edu/ns/vitro/ApplicationConfiguration#> .
|
||||
@prefix display: <http://vitro.mannlib.cornell.edu/ontologies/display/1.1#> .
|
||||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
||||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
||||
@prefix datagetter: <java:edu/cornell/mannlib/vitro/webapp/utils/datagetter/> .
|
||||
@prefix vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#> .
|
||||
@prefix role: <http://vitro.mannlib.cornell.edu/ns/vitro/role#> .
|
||||
@prefix local: <http://vitro.mannlib.cornell.edu/ns/vitro/siteConfig/> .
|
||||
@prefix vivo: <http://vivoweb.org/ontology/core#> .
|
||||
|
||||
@base <http://vitro.mannlib.cornell.edu/ns/vitro/ApplicationConfiguration> .
|
||||
|
||||
|
||||
# warning: don't use blank nodes; the display model doesn't currently support them.
|
||||
|
||||
<http://purl.obolibrary.org/obo/RO_0000053>
|
||||
vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody ;
|
||||
vitro:prohibitedFromUpdateBelowRoleLevelAnnot role:nobody .
|
||||
|
||||
<http://purl.obolibrary.org/obo/ARG_2000028>
|
||||
vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody ;
|
||||
vitro:prohibitedFromUpdateBelowRoleLevelAnnot role:nobody .
|
||||
|
||||
vivo:relates
|
||||
vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody ;
|
||||
vitro:prohibitedFromUpdateBelowRoleLevelAnnot role:nobody .
|
||||
|
||||
vivo:relatedBy
|
||||
vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody ;
|
||||
vitro:prohibitedFromUpdateBelowRoleLevelAnnot role:nobody .
|
||||
|
||||
vivo:assigns
|
||||
vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody ;
|
||||
vitro:prohibitedFromUpdateBelowRoleLevelAnnot role:nobody .
|
||||
|
||||
vivo:assignedBy
|
||||
vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody ;
|
||||
vitro:prohibitedFromUpdateBelowRoleLevelAnnot role:nobody .
|
||||
|
||||
<http://purl.obolibrary.org/obo/RO_0000056>
|
||||
vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody ;
|
||||
vitro:prohibitedFromUpdateBelowRoleLevelAnnot role:nobody .
|
||||
|
8948
home/src/main/resources/rdf/tbox/firsttime/initialTBoxAnnotations.n3
Normal file
8948
home/src/main/resources/rdf/tbox/firsttime/initialTBoxAnnotations.n3
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue