From 3f17d16d7bd10f94f02dfd76ac3e6a927205f2c8 Mon Sep 17 00:00:00 2001 From: jeb228 Date: Fri, 29 Jan 2010 22:12:41 +0000 Subject: [PATCH] Tweak the build script, so a developer can build vitro-core and it won't have any effect when they build vivoweb in the same workspace. --- .classpath | 158 + build.xml | 181 + config/LuceneSetup.properties.template | 11 + config/build.properties | 58 + config/connection.properties.template | 80 + config/globalbuild.properties.template | 49 + config/upload.properties.template | 26 + config/vitroUsers.owl.template | 15 + contrib/FLShibboleth/INSTALL.pdf | Bin 0 -> 284974 bytes contrib/FLShibboleth/README.txt | 41 + .../includes/ShibauthAdminAuthenticate.class | Bin 0 -> 8495 bytes .../includes/ShibauthAdminAuthenticate.java | 253 + contrib/FLShibboleth/includes/ajax-loader.gif | Bin 0 -> 2608 bytes contrib/FLShibboleth/includes/loginForm.jsp | 125 + .../includes/shibauth_admin_login.jsp | 268 + .../includes/shibauth_admin_login_process.jsp | 93 + contrib/FLShibboleth/includes/transbg50.png | Bin 0 -> 46610 bytes contrib/FLShibboleth/includes/web.xml | 1180 + doc/install.txt | 204 + doc/license.txt | 25 + example.deploy.properties | 67 + model/init-data/initialSiteConfig.rdf | 48 + model/submodels/geo2vivo.n3 | 25 + model/submodels/geopolitical.owl.rdf | 21011 ++++++++++++++++ model/submodels/vivo-core-0.9.owl | 4790 ++++ modifications/counter.jsp | 398 + .../forms/organizationHasPositionHistory.jsp | 309 + .../edit/forms/personHasPositionHistory.jsp | 325 + .../templates/entity/authorshipShortView.jsp | 78 + .../templates/entity/positionShortView.jsp | 104 + ontology/geopolitical-annotations.rdf | 247 + ontology/geopolitical.flags.rdf | 865 + ontology/geopolitical.labels.rdf | 862 + ontology/groups.rdf | 1563 ++ ontology/position.rdf | 28 + ontology/vivo-core-0.9-annotations.rdf | 3807 +++ themes/vivo-basic/css/blueprint/forms.css | 60 + themes/vivo-basic/css/blueprint/grid.css | 213 + themes/vivo-basic/css/blueprint/ie.css | 82 + themes/vivo-basic/css/blueprint/liquid.css | 217 + themes/vivo-basic/css/blueprint/reset.css | 42 + .../vivo-basic/css/blueprint/typography.css | 116 + themes/vivo-basic/css/edit.css | 342 + themes/vivo-basic/css/entity.css | 10 + themes/vivo-basic/css/formedit.css | 59 + themes/vivo-basic/css/institution.css | 23 + themes/vivo-basic/css/print.css | 76 + themes/vivo-basic/css/screen.css | 649 + themes/vivo-basic/css/search.css | 8 + themes/vivo-basic/css/tab.css | 170 + themes/vivo-basic/jsp/dashboard.jsp | 59 + themes/vivo-basic/jsp/footer.jsp | 95 + themes/vivo-basic/jsp/identity.jsp | 131 + themes/vivo-basic/jsp/menu.jsp | 146 + themes/vivo-basic/site_icons/TryIt.gif | Bin 0 -> 262 bytes themes/vivo-basic/site_icons/bomb.gif | Bin 0 -> 19747 bytes .../site_icons/cornell_university_library.gif | Bin 0 -> 4150 bytes themes/vivo-basic/site_icons/go.gif | Bin 0 -> 262 bytes themes/vivo-basic/site_icons/mail.gif | Bin 0 -> 6747 bytes themes/vivo-basic/site_icons/minus.gif | Bin 0 -> 106 bytes themes/vivo-basic/site_icons/paper.gif | Bin 0 -> 871 bytes themes/vivo-basic/site_icons/plus.gif | Bin 0 -> 106 bytes .../site_icons/plus_transparent.gif | Bin 0 -> 54 bytes .../site_icons/plus_transparent2.gif | Bin 0 -> 61 bytes themes/vivo-basic/site_icons/vitro_logo.gif | Bin 0 -> 2852 bytes themes/vivo-basic/site_icons/vivo_logo.gif | Bin 0 -> 3949 bytes utilities/licenser.rb | 341 + utilities/releaser.rb | 15 + 68 files changed, 40148 insertions(+) create mode 100644 .classpath create mode 100644 build.xml create mode 100644 config/LuceneSetup.properties.template create mode 100644 config/build.properties create mode 100644 config/connection.properties.template create mode 100644 config/globalbuild.properties.template create mode 100644 config/upload.properties.template create mode 100644 config/vitroUsers.owl.template create mode 100755 contrib/FLShibboleth/INSTALL.pdf create mode 100755 contrib/FLShibboleth/README.txt create mode 100755 contrib/FLShibboleth/includes/ShibauthAdminAuthenticate.class create mode 100755 contrib/FLShibboleth/includes/ShibauthAdminAuthenticate.java create mode 100755 contrib/FLShibboleth/includes/ajax-loader.gif create mode 100755 contrib/FLShibboleth/includes/loginForm.jsp create mode 100755 contrib/FLShibboleth/includes/shibauth_admin_login.jsp create mode 100755 contrib/FLShibboleth/includes/shibauth_admin_login_process.jsp create mode 100755 contrib/FLShibboleth/includes/transbg50.png create mode 100755 contrib/FLShibboleth/includes/web.xml create mode 100644 doc/install.txt create mode 100644 doc/license.txt create mode 100644 example.deploy.properties create mode 100644 model/init-data/initialSiteConfig.rdf create mode 100644 model/submodels/geo2vivo.n3 create mode 100644 model/submodels/geopolitical.owl.rdf create mode 100644 model/submodels/vivo-core-0.9.owl create mode 100644 modifications/counter.jsp create mode 100644 modifications/edit/forms/organizationHasPositionHistory.jsp create mode 100644 modifications/edit/forms/personHasPositionHistory.jsp create mode 100644 modifications/templates/entity/authorshipShortView.jsp create mode 100644 modifications/templates/entity/positionShortView.jsp create mode 100644 ontology/geopolitical-annotations.rdf create mode 100644 ontology/geopolitical.flags.rdf create mode 100644 ontology/geopolitical.labels.rdf create mode 100644 ontology/groups.rdf create mode 100644 ontology/position.rdf create mode 100644 ontology/vivo-core-0.9-annotations.rdf create mode 100644 themes/vivo-basic/css/blueprint/forms.css create mode 100644 themes/vivo-basic/css/blueprint/grid.css create mode 100644 themes/vivo-basic/css/blueprint/ie.css create mode 100644 themes/vivo-basic/css/blueprint/liquid.css create mode 100644 themes/vivo-basic/css/blueprint/reset.css create mode 100644 themes/vivo-basic/css/blueprint/typography.css create mode 100644 themes/vivo-basic/css/edit.css create mode 100644 themes/vivo-basic/css/entity.css create mode 100644 themes/vivo-basic/css/formedit.css create mode 100644 themes/vivo-basic/css/institution.css create mode 100644 themes/vivo-basic/css/print.css create mode 100644 themes/vivo-basic/css/screen.css create mode 100644 themes/vivo-basic/css/search.css create mode 100644 themes/vivo-basic/css/tab.css create mode 100644 themes/vivo-basic/jsp/dashboard.jsp create mode 100644 themes/vivo-basic/jsp/footer.jsp create mode 100644 themes/vivo-basic/jsp/identity.jsp create mode 100644 themes/vivo-basic/jsp/menu.jsp create mode 100644 themes/vivo-basic/site_icons/TryIt.gif create mode 100644 themes/vivo-basic/site_icons/bomb.gif create mode 100644 themes/vivo-basic/site_icons/cornell_university_library.gif create mode 100644 themes/vivo-basic/site_icons/go.gif create mode 100644 themes/vivo-basic/site_icons/mail.gif create mode 100644 themes/vivo-basic/site_icons/minus.gif create mode 100644 themes/vivo-basic/site_icons/paper.gif create mode 100644 themes/vivo-basic/site_icons/plus.gif create mode 100644 themes/vivo-basic/site_icons/plus_transparent.gif create mode 100644 themes/vivo-basic/site_icons/plus_transparent2.gif create mode 100644 themes/vivo-basic/site_icons/vitro_logo.gif create mode 100644 themes/vivo-basic/site_icons/vivo_logo.gif create mode 100644 utilities/licenser.rb create mode 100644 utilities/releaser.rb diff --git a/.classpath b/.classpath new file mode 100644 index 00000000..37f5d545 --- /dev/null +++ b/.classpath @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/build.xml b/build.xml new file mode 100644 index 00000000..2beb1a0f --- /dev/null +++ b/build.xml @@ -0,0 +1,181 @@ + + + + + + + + + + + +Available targets: +all -- Runs "clean", then "deploy". +clean -- Removes any artifacts from previous builds, so the next build will be + a clean one. +deploy -- Rssembles the VIVO application and deploys it to the "webapps" + directory of your Tomcat server. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/config/LuceneSetup.properties.template b/config/LuceneSetup.properties.template new file mode 100644 index 00000000..5ac3a897 --- /dev/null +++ b/config/LuceneSetup.properties.template @@ -0,0 +1,11 @@ +#this is an example of what needs to be in this +#file to setup the lucene index directory +# +# The default location is /usr/local/lucene/vitrodefault + +#You could hard code the location like this: +#LuceneSetup.indexDir=/usr/local/lucene/example + +#this line will be setup by ant to work for clones +#if you hardcode the dir, this line should be commented out +LuceneSetup.indexDir=${deploy.LuceneSetup.indexDir} diff --git a/config/build.properties b/config/build.properties new file mode 100644 index 00000000..bb330e7c --- /dev/null +++ b/config/build.properties @@ -0,0 +1,58 @@ +# +# This is where we're assembling the source. +# +deploy.staging.dir = .deployStaging + +# +# Setting up the config properties. +# +deploy.properties.file = deploy.properties + +globalbuild.template.file = config/globalbuild.properties.template +connection.template.file = config/connection.properties.template +upload.template.file = config/upload.properties.template +lucene.template.file = config/LuceneSetup.properties.template +vitroUsers.template.file = config/vitroUsers.owl.template + +globalbuild.properties.file = ${deploy.staging.dir}/config/globalbuild.properties +connection.properties.file = ${deploy.staging.dir}/webapp/config/connection.properties +upload.properties.file = ${deploy.staging.dir}/webapp/config/upload.properties +lucene.properties.file = ${deploy.staging.dir}/webapp/config/LuceneSetup.properties +vitroUsers.owl.file = ${deploy.staging.dir}/webapp/ontologies/auth/vitroUsers.owl + +# +# Prepare the staging area +# +core-build.blocking.path = webapp/.build/**/* +themes.blocking.path = webapp/web/themes/**/* + +# +# Installing the themes. +# +themes.source.dir = themes/ +themes.destination.dir = ${deploy.staging.dir}/webapp/web/themes/ + +# +# Installing the Ontology. +# +ontology.source.dir = ontology +ontology.destination.dir = ${deploy.staging.dir}/webapp/ontologies/user + +# +# Installing the Model. +# +submodels.source.dir = model/submodels +submodels.destination.dir = ${deploy.staging.dir}/webapp/model/submodels +init-data.source.dir = model/init-data +init-data.destination.dir = ${deploy.staging.dir}/webapp/model/init-data + +# +# Adding modifications +# +modifications.source.dir = modifications +modifications.destination.dir = ${deploy.staging.dir}/webapp/web + +# +# The core compile and deploy. +# +vitro-core.build.file = ${deploy.staging.dir}/webapp/build.xml \ No newline at end of file diff --git a/config/connection.properties.template b/config/connection.properties.template new file mode 100644 index 00000000..026197db --- /dev/null +++ b/config/connection.properties.template @@ -0,0 +1,80 @@ +################################################################################ +# DataSource properties file +################################################################################ + +######################### DataSource Properties ################################ + +VitroConnection.DataSource.url=${deploy.VitroConnection.DataSource.url} +VitroConnection.DataSource.username=${deploy.VitroConnection.DataSource.username} +VitroConnection.DataSource.password=${deploy.VitroConnection.DataSource.password} + +####################### Other Important Properties ############################# + +# CHANGE the following property unless you're using Cornell's VIVO ontology +Vitro.defaultNamespace=${deploy.Vitro.defaultNamespace} + +# Uncomment this next line and specify an SMTP host to activate the Contact Us form +#Vitro.smtpHost= + +################################################################################ + + + + + + + + + + + + + +# maximum number of connections to the db server +# This must not be greater than the mysql max_connection parameter. +# defaults to 40 +#VitroConnection.DataSource.MaxActive=40 + +# maximum number of connections to the db server to keep +# around when nothing is happening. +# defaults to 10 +#VitroConnection.DataSource.MaxIdle=10 + +# Time to wait in msec for a result from the sql server +# defaults to 10000 +#VitroConnection.DataSource.MaxWait=10000 + +# query to use to test to see if a connection to the db server is live. +# defaults to SELECT 1 +#VitroConnection.DataSource.ValidationQuery=SELECT 1 + +# should the connection pool test the connections it gets from the pool? +#defaults to true +#VitroConnection.DataSource.TestOnBorrow=true + +# should the connection pool test connections it puts back in pool? +#defaults to true +#VitroConnection.DataSource.TestOnReturn=true + +# Nnumber of milliseconds to sleep between runs of the idle object +# evictor thread. When non-positive, no idle object evictor thread will +# be run. defaults to 30min +#VitroConnection.DataSource.TimeBetweenEvictions= + +# The number of objects to examine during each +# run of the idle object evictor thread (if any). +# defaults to 3 +#VitroConnection.DataSource.TestsPerEviction=3 + +# The minimum amount of time +# an object may sit idle in the pool before it is eligable for eviction +# by the idle object evictor (if any). +# defaults to 30min +#VitroConnection.DataSource.MinEvictionIdleTime= + +################################################ # other notes: +# The file checked into source control is example.connection.properties so +# that if you have a connection.properties on your machine it will not be +# under source control. This is useful so that your customizations for your +# database setup are less likely to be checked into source control and then +# overwrite other folks' customizations. diff --git a/config/globalbuild.properties.template b/config/globalbuild.properties.template new file mode 100644 index 00000000..2abd4bb5 --- /dev/null +++ b/config/globalbuild.properties.template @@ -0,0 +1,49 @@ +# these are ant build properties that all of the vitro and build.xml files might need. +# +# All of these paths must be absolute or relative to the vitro directory. Relative +# is preferred. + +# Notice that the use of relative paths is facilitated by the basedir attribute of the +# ant project elements. All projects should use the same base directory so that the +# relative paths will point to the correct files. +# See the ant documentation for project element basedir attribute. + +############## basic configuration ############### +java_api=/usr/local/java/java_home + +############ tomcat stuff #################### +tomcat.home=${deploy.tomcat.home} + +############# source directory ######################################### +##### This parameter is used for referencing a "permanent" home ####### +##### in the source directory of the project for uploaded files ####### +##### so that if the Tomcat webapp context is wiped out, any ####### +##### uploaded files (usually images) are not lost. ####### +######################################################################## +source.home=/usr/local/src/Vitro + +######################################################################## +##### Everything under this is used by the Vitro build.xml files ####### +##### You should not need to customize it for you local install ####### +######################################################################## + +########### ant contrib tasks ############### +ant.lib=./config/ant/lib +ant.contrib.jar=${ant.lib}/ant-contrib-1.0b2.jar + +#### locations of files in the build ##### +webapp.dir=./webapp +webapp.lib=${webapp.dir}/lib +webapp.build=${webapp.dir}/.build +webapp.dir.jar=${webapp.build}/vitro-webapp.jar +webapp.name=${deploy.webapp.name} +webapp.deploy.home=${tomcat.home}/webapps/${webapp.name} + +ingest.dir=./ingestTool +ingest.lib=${ingest.dir}/lib +ingest.build=${ingest.dir}/build + +ws.dir=./services +ws.lib=${ws.dir}/lib +ws.build=${webapp.dir}/build +ws.wsdd.dir=${ws.dir}/wsdd diff --git a/config/upload.properties.template b/config/upload.properties.template new file mode 100644 index 00000000..0b8cf3ee --- /dev/null +++ b/config/upload.properties.template @@ -0,0 +1,26 @@ +# The UploadImagesServlet will upload the images to a directory +# that is under tomcat and serve them from there. +# This causes a problem when the tomcat/webapps dir is deleted +# or deployed because you will lose all the images that the +# curators have uploaded. We deal with this by copying +# the files to another directory, one that is under version control. + +# This property indicates which non-tomcat directory to save the images in. +# ${uploadDir} is defined in the main build.xml via the following statements: +# +# +# +# +# +# But, this value will be replaced by the Vitro/clones/build.xml +# to point to the clones/{clone}/modifications directory based on the following +# +# +# +# +# The UploadImagesServlet.getSourceDirName() method then looks at this parameter +# in the upload.properties file, which file is stuck by the clones/build.xml file +# into the clone's modifications/WEB-INF/classes directory: +UploadImagesServlet.sourceDirName=${deploy.upload.directory} + + diff --git a/config/vitroUsers.owl.template b/config/vitroUsers.owl.template new file mode 100644 index 00000000..03b78b3d --- /dev/null +++ b/config/vitroUsers.owl.template @@ -0,0 +1,15 @@ + + + + + ${deploy.initialAdminUser} + 22BA075EC8951A70960A0A95C0BC2294 + role:/50 + + + diff --git a/contrib/FLShibboleth/INSTALL.pdf b/contrib/FLShibboleth/INSTALL.pdf new file mode 100755 index 0000000000000000000000000000000000000000..60b4e9357dc7cac21097a3d9614140b5e7e148ec GIT binary patch literal 284974 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

Ju_#F*GCibbEBNk-jPWcw_lk=KgfL_eAk(lZNeW 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

@*NYr97}!i+%0dC>sV*d6Z$%>>{X)uZ>js$ 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

t0Rj5~s?D1alOHOfENH$AQt6vGs~~ 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 literal 0 HcmV?d00001 diff --git a/contrib/FLShibboleth/README.txt b/contrib/FLShibboleth/README.txt new file mode 100755 index 00000000..1f5b6089 --- /dev/null +++ b/contrib/FLShibboleth/README.txt @@ -0,0 +1,41 @@ +-------------------------------------------------------------------------------- +Plugin Details +-------------------------------------------------------------------------------- +Name: ShibAuth +Version: 0.1 +Date: 01-26-2010 +Authors: Chris Barnes (cpb@ichp.ufl.edu) + Narayan Raum (ndr@ichp.ufl.edu) + Yang Li (yxl@ichp.ufl.edu) +Support: http://ctrip.ufl.edu/contact + +-------------------------------------------------------------------------------- +Plugin Description +-------------------------------------------------------------------------------- +Adding Shibboleth authentication to the Vitro application. An example of how +ShibAuth . This package serves as an example of how ShibAuth has been +implemented at the University of Florida. In order to use this plugin, your +institution must have a Shibboleth Identity Provider established. For more +information about Shibboleth, visit http://shibboleth.internet2.edu/. + +-------------------------------------------------------------------------------- +Plugin Installation +-------------------------------------------------------------------------------- +Detailed instructions and documentation are available in the INSTALL.pdf +document. All files in the "includes" directory must be uploaded to the +server running Vitro in order to complete the installation procedure. + +This procedure is an example installation of a Shibboleth 2 Service Provider on +a Linux (Debian Lenny) system. All commands were executed as the root user. +In this example, the following applications have already been installed +and configured: + + - OpenSSL + - Apache 2 + - Tomcat 6 + - Vitro + +The ShibAuth plugin allows a Vitro system administrator to authenticate using +the Shibboleth Service Provider. It is assumed that the user already has an +account in the “Users” table of the database. The field name for the user at +UF is the “glid” field. diff --git a/contrib/FLShibboleth/includes/ShibauthAdminAuthenticate.class b/contrib/FLShibboleth/includes/ShibauthAdminAuthenticate.class new file mode 100755 index 0000000000000000000000000000000000000000..a0f1044f27e1b863416d39b546777fa9a3ac10a4 GIT binary patch literal 8495 zcmbtZ3wRvWb^gz+q#5syWLbW(80@u;!Imu+%v*jTzhW6l7M5&d0?4D?k+k+|N9@kZ z7RI~-I6zCAlonDN@^onkiFpVsBp8y$CiDR$G$Azaq$O$6w4n(pU?Bg!vn#D+IfC}H zJag~4=bn4s=iJ%n-uco~0G7&KVf5ngB&6|l1kd2B5qu4QuO44lk0Tb2M(`}YVdA+6 zCgC3}{G)<%{!bSES?zc}jCQ=BMlYK9W*9X%Y~fq#{gQ=$QSWbC_>P5_EqphOO1xs> zU)B425quv%P@^AO_>m&=V+%jA@KXi)Sp@%vf4A_eg`ZpaMHv5qU#iEiEc~a1U#sDN zS@>@Yzp?O|h5xbeTLt@_dc3ao{@%j>T6jav-?Z?Sg<}@pRvyslB6h)8_VurjEw70%;UfuJJNC z-^ut}opjy}(cU7MzNKy5=8m>?ZEcO4S~{8=T00ur+cyhpnsz$Gbu*la3eP65w-dDD8C% zVohGQJMQ#3i5{1`dwa=IoGaa=A8+#185PS@nUuehI~Fe5DkxjyC0)Vfrc}ml$@g}; z*>`i4F zIB+w5D&hF9VkzmhdO2UPd7;+Io;bzoPrH7+$M^f<8~A7o0Gr*b^KQ;xHX&NBkCMB~ zl!P|rPh~cHX}2-MGla5DFH!!wJqfqZPk9-oL`p1}7Odv|R64%KNxPY(ljY(}C6c?x zSFBQ%BpEP6v*p}ejue#sl~u>(Ut^GrbP3|)>rX4H({*SweZYDz+q;@m?uztzS>H)F zCh04j6Ju1Hr?uEonBhT(!y@ZQVctn@?EWNJzb!DYaJ!Xy2(~2m)q@SlMP** zHYd-cW`fLP%!FT2~x z22u#EQEG|yo~*Z9IU5npY*D#qoLHsWM~W^%*|Tn7cEQAcRB#Z%jM08R&{y>JHKVy- z9!yIE_Qae8#$HK5D%*S~v5V5{2r^|UQ#n(W&L!uVa;_=oG4JWTGmEa5qqk|>w|IW4 zYhYbJ!$h!e;l$QZ>0qauaRS#N4KMHO?PG(bEeIvrTzT`@)slz{gis+=?go4;|NpQ- zqZZs&Fnf&Z#_&YfDTLIfjNi-zMRzVun43Cxx(T1!om`+ef@Uinj7;Y@F$>0f`uLX) z)I+g72FXCYh_uX<^H~xEbGlt$dGjbQUZ3@P3#ww=j`gcCd@ma9GGs86@b@t0dl{u| zsqT#9=d;W|iT6k6|LA(w@%(ncKAUjYr&MO2eZpLPrixb^doW-wRUwrl};-96|2;S6}D`YOL+L{ zI(@F_OnZr4wlt}|;rMVKWi;#cV)|tI%4bx25aW#QF-!ne22r$&TXGmMzj~%2r#p$z^mW%}I;X zOM{-$;>A?@jdgkXOft4R<@e}$hO04}DxcYv@pflA6pn&1=h(7cF1O`_ijjuafPq5F zB@0Ew7|jqmRd8ylu;b8L`rf1-V1UOcMoi0k%DAEw9LttY zX|yGwPOnrw8Ku>&SkjiHT5*+xU24>=Mm@^!Qnu_A#za~!7fcBOFR71rrwm> zZP~9h`C(h`kUIq%-#5JzRw-tJ_d{%}@~)CQ1T%pW`ovATV8ICyN?T6B=@a1<`_aV{ zGCa~u)1$Rfbf+0~I;wRFSXPVBg2+D5mItURL?FnXN@j8q$Z-flbdJ~Qy?LEAIx z(pzYmN`xivN?MgYSW5+Gk&Ow}r?N(22luOU^^M4-m=m8H*|LiJn$!iAR}VkWOX2i!w(6U)x@~M`GnHjGO}C?Ldf!NYQ^8x9lO9W=(0(hw zQkvF#f=*<~`!Q7Db;@e12h>y53U(voF*~sXjKmL>SXtz14I3g##u#7|qHM>@Zn2>X z0Graox8Xo@qcAFqsw@x+=lhcE1{Al-G2a(kMbnHrv4TADzCoAgNs6qVloQ%W=dlSa zM7^4-uu$JIG>%%+npcn#Lj=`>mADtyf<@hZio z;-fmASIM=Tu2$pt&~-o z`PIYe=FzkN`1dz;l~xfwCMJt2Q5>*M%=r4FL3`Fw0+;cF37cXSX{&ipC|rlSdzG$I|zKCKjKQs68V{I8uMg|@PeViG%8c}4C8=fZ#FDKn8g8GUlQM3ICOs$zVi0RRCK5Az0F^HM< zW??B>p`a(Jb+fQ!op@z?@%-sVFJz(}u9XKz$?{If}DM?(`zhXDFT&Lcmr)VqqzXXk-wJ?!#gA zu04twnybYD;u0brz{m7bG)!LZLrP8Rig;%RcyW!F(@Prf-U6Mog7vfYdYdM_RDmK2 z>zrtWoSmy>pgqnrK!o!(>OzfrL4c|l8^nd9@h&3Xh{6Kiw`vBCVE*xp)R!`{KvQ2f z!pLaSiiOdn3$llzWs36hL98H!l|+k{(ZyB?uWc6xYYl@~t@OR-5Y`T2-TC%(yX@1L zUgDekpna1*R&Phks^1yJ2S|*D-k`bSK>0(Xg3O}W8xP?UBHH@kz|)7&6vDPA(Y##) zpFoSkt2=~E)GPU0RJLP`S{1PT0i1dWt@V{esvN|ngVON^_3%#Ei_E! zQLI*{C=4A-?e$gBsw1e2R@H1B#5Usr%r5vGH!^IL-&F-pr^2a<=T;s;)skqX_VELV zEQvB6>Fx(Gt>qDHuN%bWL-?Qp4z4%|)41Ds+&F~wjQSTsU&Up35pU}ETe3pEWu+nN zZ5YNC`h8{SuwE}yc|@*52X`)niAAVJEi=>-EJYnw;T+Ps06Un4_TnPkgL)jqavZ`6 z{!+M-KPj%l3%Ho4U4oaBrZE_wtS%K}c5?!($ z-O_>{*@l!j*eMz8l79ZOc0GD!KQeL;Joz~K?8PUITk$F5ZhXeLAD=ZI!U5xPJZO9gpEI7p=Z$Cau<;_kV7!7yji2H%<8=)3 zXU0RJ85j!9#gn00d^r@yS3(!zsnA+{J+u`^LJ1rV_2Aji9(*IT56^`T;Q7!)w9FIu zX6P`!OU-{f^fi1Z^gLb;eG9MX-2F7B^8AxO{+c|q0u^Z7&+*?7atmf1L)65_-$uQO2TXjTf&brSRSKKWN*%~8!t!f5EPF>$&0wtQ(4lw$^H>rzV8;*~6{}OC zG6YA;DGdJe@CAI4XVoyU4{}sSic9eb9;JIIqs)SN43kYfb_~^gPT6SU@ne|EXLTiY z#Sd#FqPmaUNJRA*^J{C8g=FS7Ek25APoj%;zPpKV=CGa+7JrdwI-O98a*lsX2lyRb z=XE;u@7WH$p}C(CkYfsYm^e0OGQ)qA+!vgu0J)zK#is?Dc`nTi6%YoVB;?D(tKgk6tfyHc`fC0FR>)A;;~-u%=b0KjE=DgXcg literal 0 HcmV?d00001 diff --git a/contrib/FLShibboleth/includes/ShibauthAdminAuthenticate.java b/contrib/FLShibboleth/includes/ShibauthAdminAuthenticate.java new file mode 100755 index 00000000..d410cfcf --- /dev/null +++ b/contrib/FLShibboleth/includes/ShibauthAdminAuthenticate.java @@ -0,0 +1,253 @@ +package edu.cornell.mannlib.vitro.webapp.controller.edit; + +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ +import java.io.UnsupportedEncodingException; +import java.util.Calendar; +import java.util.HashMap; +import java.util.Map; + +import javax.servlet.ServletContext; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import javax.servlet.http.HttpSession; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; + +import com.hp.hpl.jena.ontology.OntModel; + +import edu.cornell.mannlib.vedit.beans.LoginFormBean; +import edu.cornell.mannlib.vitro.webapp.beans.User; +import edu.cornell.mannlib.vitro.webapp.controller.Controllers; +import edu.cornell.mannlib.vitro.webapp.controller.VitroHttpServlet; +import edu.cornell.mannlib.vitro.webapp.dao.UserDao; +import edu.cornell.mannlib.vitro.webapp.dao.WebappDaoFactory; +import edu.cornell.mannlib.vitro.webapp.dao.jena.LoginEvent; +import edu.cornell.mannlib.vitro.webapp.dao.jena.LoginLogoutEvent; + +/* + * yxl: This is a copy of Authenticate.java and modified for Shibboleth authentication + * + */ +public class ShibauthAdminAuthenticate extends VitroHttpServlet { + private static final int DEFAULT_PORTAL_ID=1; + public static final String USER_SESSION_MAP_ATTR = "userURISessionMap"; + private UserDao userDao = null; + private static final Log log = LogFactory.getLog(Authenticate.class.getName()); + + public void doPost( HttpServletRequest request, HttpServletResponse response ) { + try { + HttpSession session = request.getSession(); + if(session.isNew()){ + session.setMaxInactiveInterval(300); // seconds, not milliseconds + } + userDao = ((WebappDaoFactory)session.getServletContext().getAttribute("webappDaoFactory")).getUserDao(); + LoginFormBean f = (LoginFormBean) session.getAttribute( "loginHandler" ); + + //obtain a db connection and perform a db query + //ensuring that the username exists + + // JCR 20040905 passing on portal home parameter + String portalIdStr=(portalIdStr=request.getParameter("home"))==null?String.valueOf(DEFAULT_PORTAL_ID):portalIdStr; + //request.setAttribute("home",portalIdStr); + + // Build the redirect URLs + String contextPath = request.getContextPath(); + String urlParams = "?home=" + portalIdStr + "&login=block"; + String loginUrl = contextPath + Controllers.LOGIN + urlParams; + String siteAdminUrl = contextPath + Controllers.SITE_ADMIN + urlParams; + + if (userDao==null) { + f.setErrorMsg("loginPassword","unable to get UserDao"); + f.setLoginStatus("no UserDao"); + response.sendRedirect(loginUrl); + return; + } + + /* used for encoding cleartext passwords sent via http before store in database + String loginPassword = ""; + String passwordQuery = "SELECT PASSWORD('" + f.getLoginPassword() + "')"; + ResultSet ps = stmt.executeQuery( passwordQuery ); + while ( ps.next() ) { + loginPassword = ps.getString(1); + } + */ + String userEnteredPasswordAfterMd5Conversion=f.getLoginPassword(); // won't be null + if ( userEnteredPasswordAfterMd5Conversion.equals("") ) { // shouldn't get through JS form verification + f.setErrorMsg( "loginPassword","please enter a password" ); + f.setLoginStatus("bad_password"); + response.sendRedirect(loginUrl); + return; + } + + User user = userDao.getUserByUsername(f.getLoginName()); + + if (user==null) { + f.setErrorMsg( "loginName","No user found with username " + f.getLoginName() ); + f.setLoginStatus("unknown_username"); + response.sendRedirect(loginUrl); + return; + } + + // logic for authentication + // first check for new users (loginCount==0) + // 1) cold (have username but haven't received initial password) + // 2) initial password has been set but user mis-typed it + // 3) correctly typed initial password and oldpassword set to provided password; have to enter a different one + // 4) entered same password again + // 5) entered a new private password, and bypass this stage because logincount set to 1 + // then check for users DBA has set to require changing password (md5password is null, oldpassword is not) + // + // check password; dbMd5Password is md5password from database + if (user.getLoginCount() == 0 ) { // new user + if ( user.getMd5password() == null ) { // user is known but has not been given initial password + f.setErrorMsg( "loginPassword", "Please request a username and initial password via the link below" ); // store password in database but force immediate re-entry + f.setLoginStatus("first_login_no_password"); + } else if (!user.getMd5password().equals( userEnteredPasswordAfterMd5Conversion )) { // mis-typed CCRP-provided initial password + if ( user.getOldPassword() == null ) { // did not make it through match of initially supplied password + f.setErrorMsg( "loginPassword", "Please try entering provided password again" ); + f.setLoginStatus("first_login_mistyped"); + } else if (user.getOldPassword().equals( userEnteredPasswordAfterMd5Conversion ) ) { + f.setErrorMsg( "loginPassword", "Please pick a different password from initially provided one" ); + f.setLoginStatus("changing_password_repeated_old"); + } else { // successfully provided different, private password + f.setErrorMsg( "loginPassword", "Please re-enter new private password" ); + user.setMd5password(userEnteredPasswordAfterMd5Conversion); + user.setLoginCount(1); + userDao.updateUser(user); + f.setLoginStatus("changing_password"); + } + } else { // entered a password that matches initial md5password in database; now force them to change it + // oldpassword could be null or not null depending on number of mistries + f.setErrorMsg( "loginPassword", "Please now choose a private password" ); // store password in database but force immediate re-entry + user.setOldPassword(user.getMd5password()); + userDao.updateUser(user); + f.setLoginStatus("first_login_changing_password"); + } + response.sendRedirect(loginUrl); + return; + } else if ( user.getMd5password()==null ) { // DBA has forced entry of a new password for user with a loginCount > 0 + if ( user.getOldPassword() != null && user.getOldPassword().equals( userEnteredPasswordAfterMd5Conversion ) ) { + f.setErrorMsg( "loginPassword", "Please pick a different password from your old one" ); + f.setLoginStatus("changing_password_repeated_old"); + } else { + f.setErrorMsg( "loginPassword", "Please re-enter new password" ); + user.setMd5password(userEnteredPasswordAfterMd5Conversion); + userDao.updateUser(user); + f.setLoginStatus("changing_password"); + } + response.sendRedirect(loginUrl); + return; + } else if (!user.getMd5password().equals( userEnteredPasswordAfterMd5Conversion )) { + /* + * yxl: comment out the following code so that Shib can login an admin user + * without using a password as long as the glid existed in the "user" table. + */ + + /* + f.setErrorMsg( "loginPassword", "Incorrect password: try again"); + f.setLoginStatus("bad_password"); + f.setLoginPassword(""); // don't even reveal how many characters there were + response.sendRedirect(loginUrl); + return; + */ + } + + //set the login bean properties from the database + + //System.out.println("authenticated; setting login status in loginformbean"); + + f.setUserURI(user.getURI()); + f.setLoginStatus( "authenticated" ); + f.setSessionId( session.getId()); + f.setLoginRole( user.getRoleURI() ); + try { + int loginRoleInt = Integer.decode(f.getLoginRole()); + if( (loginRoleInt>1) && (session.isNew()) ) { + session.setMaxInactiveInterval(32000); // set longer timeout for editors + } + } catch (Exception e) {} + // TODO : might be a problem in next line - no ID + f.setLoginUserId( -2 ); + //f.setEmailAddress ( email ); + f.setLoginPassword( "" ); + f.setErrorMsg( "loginPassword", "" ); // remove any error messages + f.setErrorMsg( "loginUsername", "" ); + + //System.out.println("updating loginCount and modTime"); + + Map userURISessionMap = getUserURISessionMapFromContext( getServletContext() ); + userURISessionMap.put( user.getURI(), request.getSession() ); + + sendLoginNotifyEvent(new LoginEvent( user.getURI() ), getServletContext(), session); + + user.setLoginCount(user.getLoginCount()+1); + userDao.updateUser(user); + + if ( user.getLoginCount() == 2 ) { // first login + Calendar cal = Calendar.getInstance(); + user.setFirstTime(cal.getTime()); + userDao.updateUser(user); + } + + /* + *If you set a postLoginRequest attribute in the session and forward to about + *then this will attempt to send the client back to the original page after the login. + */ + String forwardStr = (String) request.getSession().getAttribute("postLoginRequest"); + request.getSession().removeAttribute("postLoginRequest"); + if (forwardStr == null) { + String contextPostLoginRequest = (String) getServletContext().getAttribute("postLoginRequest"); + if (contextPostLoginRequest != null) { + forwardStr = (contextPostLoginRequest.indexOf(":") == -1) + ? request.getContextPath() + contextPostLoginRequest + : contextPostLoginRequest; + } + } + if (forwardStr != null) { + response.sendRedirect(forwardStr); + } else { + response.sendRedirect(siteAdminUrl); + //RequestDispatcher rd = getServletContext().getRequestDispatcher(url); + //rd.forward(request,response); + } + } catch (Throwable t) { + log.error( t.getMessage() ); + t.printStackTrace(); + } + } + + public static void sendLoginNotifyEvent(LoginLogoutEvent event, ServletContext context, HttpSession session){ + Object sessionOntModel = null; + if( session != null ) + sessionOntModel = session.getAttribute("jenaOntModel"); + Object contextOntModel = null; + if( context != null ) + contextOntModel = context.getAttribute("jenaOntModel"); + + OntModel jenaOntModel = + ( (sessionOntModel != null && sessionOntModel instanceof OntModel) + ? (OntModel)sessionOntModel: (OntModel) context.getAttribute("jenaOntModel") ); + + if( jenaOntModel == null ){ + log.error( "Unable to notify audit model of login event because no model could be found"); + } else { + if( event == null ){ + log.warn("Unable to notify audit model of login because a null event was passed"); + }else{ + jenaOntModel.getBaseModel().notifyEvent( event ); + } + } + } + + public static Map getUserURISessionMapFromContext( ServletContext ctx ) { + Map m = (Map) ctx.getAttribute( USER_SESSION_MAP_ATTR ); + if ( m == null ) { + m = new HashMap(); + ctx.setAttribute( USER_SESSION_MAP_ATTR, m ); + } + return m; + } + +} + diff --git a/contrib/FLShibboleth/includes/ajax-loader.gif b/contrib/FLShibboleth/includes/ajax-loader.gif new file mode 100755 index 0000000000000000000000000000000000000000..d78127723242b0ce44dbb6fe9bbf33fb19b6e586 GIT binary patch literal 2608 zcmdVcdr(tX9tZGC9yiG~=H_*Q-0%n(lu>!qD#hw{AeU!WAPBW#qb=c*5U^^*s36-4 zA_$0<uJsO2fBmFyXuMfx_~yy; z`wwS2Zr{DyGt@P3Z*=k>FK6ej_uUlRasS8CobH%XDM&Eeoot;TXE^t zs~QccJ9^wV@>MAwZQMTT;>;r2S!I>{*u5|p58p?C*qFAy*u2IAb z_9kjn0(p`=<-;BFc+bS`${m2qEQtnLcdcBw(gFei&ikdSL%4J*nV24@6*_g+YEt}! z4e$9Wu2_8EiK;u0?ymR9$EQm}>FeKG0}3DM0do85;UbddqP83u33aTR|kW8nkKx&?G&d zKQZ7om0q7H_i071AJs4WAWAruq#@s72FCQR&pRKc&D_W1sPdj2s$A|Lg9^$HP-;Sb z(~ZqLa|^X%ADq;BCZ|6ffqlJL?Q=>}E_)YgW`sugb)$BPfKK|w2>3qFcf%LZb=%X9 z%cyxz)LQR^do-PBv8tV;*n9tq(fnKqxX>e^Z7H(XJWL2?$N&TpI0eMTTY-|;tdx=x zduI_PBTO5XDR02o z${?K49Qij{Fb=l`z<3B=t%LATJYOeb;^M(UP;WesjE!;0H%)ftG22q<4I^(Fu_v|~ z`REMo0)D9toI!5XOQrvO)~|J>xKM&x#Dlj>3p9sT?|epTcgTh@s8w62imVFOHl+|J zT*S_PxI_$T#}7ODE^mAk*#RzfSi8t2ZdImETEZyCFRQC|3wsKeMm!|h{9%ZW3|W1? zl7)4ex@F<5CapB$;^1XmQZGHzb{0PeP^uc7(%+NVG`|QMEL{w~9Sv}kLQcIUWqVZa zcFD|!?Cst^#jSz;LU~vm_r(o{1K^5fS9DCri}MBc&Cq>NA*RoN{4NiFa|s2eI5+eB zD-RwZ(`k8izx6x&9mnW@8D%&%e2!ak>htDAcWO#* z4WG4ISO2m&3o2&`#m9WV{oalGo4vN1R7>A}+&W550tDIr@5r`BlE~RUC+9CeN4AWF zG0Mw<($~4

VP^X)sQuHJIQgL~QLfC4tt2^0fg)GGbXRuh$w*B-8~lXgIi}Ym+_aEiZk@ zY1i6Qf!l%#+~t!(Q>oy;I{j7XZ43P?xT9b0R4L}G~E;S}0jRq{<9RSfc0}7O9Cs}AWRRVo0Mk+-dLB5>L%2JUqN*ds_ z2iTex3s93;oG(S3YLzv?)7Y0Vb{c`0%+LmWsv@3H!97^e=j7xvJ(NralbL!EGZ{4N zO{y{Tglfak)QBo9x!*jPs8e;DZ*GZb(|06S+!95tkb17Y3RD-~ufMZmZ6n}|7Yhj9 zk=3A^@0tMC4Nr!X`%|B~0XNU%l|Sga3z$`y9Bp1{X@bkihpCN^L|qe|NKu+WxX%0R ZqMKe*`__zJv{u|YYsIZw_#eGqKLMZ{v}FJQ literal 0 HcmV?d00001 diff --git a/contrib/FLShibboleth/includes/loginForm.jsp b/contrib/FLShibboleth/includes/loginForm.jsp new file mode 100755 index 00000000..421d4d28 --- /dev/null +++ b/contrib/FLShibboleth/includes/loginForm.jsp @@ -0,0 +1,125 @@ +<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%> + +<%-- Included in siteAdmin_body.jsp to handle login/logout form and processing --%> + +<%@ page import="edu.cornell.mannlib.vitro.webapp.beans.Portal" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.Controllers" %> + + + + + + +<% + int securityLevel = loginHandler.ANYBODY; + String loginStatus = loginHandler.getLoginStatus(); + if ( loginStatus.equals("authenticated")) { +%> +

+<% + } else { +%> +
+<% + } + if ( loginStatus.equals("authenticated")) { + + // test whether session is still valid + String currentSessionId = session.getId(); + String storedSessionId = loginHandler.getSessionId(); + + if ( currentSessionId.equals( storedSessionId ) ) { + String currentRemoteAddrStr = request.getRemoteAddr(); + String storedRemoteAddr = loginHandler.getLoginRemoteAddr(); + securityLevel = Integer.parseInt( loginHandler.getLoginRole() ); + + if ( currentRemoteAddrStr.equals( storedRemoteAddr ) ) { +%> +
+ + Logged in as + +
+ +<% + } else { +%> + ${loginFormTitle} + (IP address has changed)
+<% + loginHandler.setLoginStatus("logged out"); + } + + } else { + loginHandler.setLoginStatus("logged out"); +%> + ${loginFormTitle} + (session has expired)
+ +<% + } + + } else { /* not thrown out by coming from different IP address or expired session; check login status returned by authenticate.java */ +%> +

Please log in

+<% + if ( loginStatus.equals("logged out")) { %> + (currently logged out) +<% } else if ( loginStatus.equals("bad_password")) { %> + (password incorrect)
+<% } else if ( loginStatus.equals("unknown_username")) { %> + (unknown username)
+<% } else if ( loginStatus.equals("first_login_no_password")) { %> + (1st login; need to request initial password below) +<% } else if ( loginStatus.equals("first_login_mistyped")) { %> + (1st login; initial password entered incorrectly) +<% } else if ( loginStatus.equals("first_login_changing_password")) { %> + (1st login; changing to new private password) +<% } else if ( loginStatus.equals("changing_password_repeated_old")) { %> + (changing to a different password) +<% } else if ( loginStatus.equals("changing_password")) { %> + (changing to new password) +<% } else if ( loginStatus.equals("none")) { %> + (new session)
+<% } else { %> + Status unrecognized: <%=loginStatus.replace("_", " ")%>
+<% } %> + + +
+ + +<% + if ( loginStatus.equals("bad_password") || loginStatus.equals("first_login_no_password") + || loginStatus.equals("first_login_mistyped") || loginStatus.equals("first_login_changing_password") + || loginStatus.equals("changing_password_repeated_old") || loginStatus.equals("changing_password") ) { %> +
+<% } else { %> +
+<% if ( loginStatus.equals("unknown_username") ) { %> + Unknown username +<% } + } +%> + +
+ +<% String passwordError=loginHandler.getErrorMsg("loginPassword"); + if (passwordError!=null && !passwordError.equals("")) {%> + <%=passwordError%> +<% } %> + + +

+
">UF Login » +

+ Test UF Login » +
+<% } %> + +
diff --git a/contrib/FLShibboleth/includes/shibauth_admin_login.jsp b/contrib/FLShibboleth/includes/shibauth_admin_login.jsp new file mode 100755 index 00000000..228de700 --- /dev/null +++ b/contrib/FLShibboleth/includes/shibauth_admin_login.jsp @@ -0,0 +1,268 @@ +<%@ taglib prefix="form" uri="http://vitro.mannlib.cornell.edu/edit/tags" %> + +<%@ page import="edu.cornell.mannlib.vitro.webapp.beans.Portal" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.dao.WebappDaoFactory" %> + + +<%@page import="edu.cornell.mannlib.vitro.webapp.dao.jena.pellet.PelletListener"%> + +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %><%/* this odd thing points to something in web.xml */ %> +<%@ page errorPage="/error.jsp"%> +<% + + Portal portal = (Portal) request.getAttribute("portalBean"); + final String DEFAULT_SEARCH_METHOD = "fulltext"; /* options are fulltext/termlike */ + String loginD = (loginD = request.getParameter("login")) == null ? "block" : loginD.equals("null") || loginD.equals("") ? "block" : loginD; +%> + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +<% if (loginHandler.getLoginStatus().equals("authenticated")) { %> +
+<% } else { %> +
+<% } %> + +<% if (loginHandler.getLoginStatus().equals("authenticated")) { %> +
+<% } else { %> +
+<% } %> + +<% if ( loginHandler.getLoginStatus().equals("authenticated")) { + /* test if session is still valid */ + String currentSessionId = session.getId(); + String storedSessionId = loginHandler.getSessionId(); + if ( currentSessionId.equals( storedSessionId ) ) { + String currentRemoteAddrStr = request.getRemoteAddr(); + String storedRemoteAddr = loginHandler.getLoginRemoteAddr(); + int securityLevel = Integer.parseInt( loginHandler.getLoginRole() ); + if ( currentRemoteAddrStr.equals( storedRemoteAddr ) ) {%> + Logged in as: +
+ + +
+ + (${languageModeStr}) + <% + Object plObj = getServletContext().getAttribute("pelletListener"); + if ( (plObj != null) && (plObj instanceof PelletListener) ) { + PelletListener pelletListener = (PelletListener) plObj; + if (!pelletListener.isConsistent()) { + %> +

+ INCONSISTENT ONTOLOGY: reasoning halted. +

+

+ Cause: <%=pelletListener.getExplanation()%> +

+ <% + } + } + %> + +<% } %> + +<% } else { %> + + (IP address has changed)
+<% loginHandler.setLoginStatus("logged out"); + } + } else { + loginHandler.setLoginStatus("logged out"); %> + + (session has expired)
+
+ + Username:
+ Password:
+ +
+<% } + } else { /* not thrown out by coming from different IP address or expired session; check login status returned by authenticate.java */ %> + +<% if ( loginHandler.getLoginStatus().equals("logged out")) { %> + (currently logged out) +<% } else if ( loginHandler.getLoginStatus().equals("bad_password")) { %> + (password incorrect)
+<% } else if ( loginHandler.getLoginStatus().equals("first_login_no_password")) { %> + (1st login; need to request initial password below) +<% } else if ( loginHandler.getLoginStatus().equals("first_login_mistyped")) { %> + (1st login; initial password entered incorrectly) +<% } else if ( loginHandler.getLoginStatus().equals("first_login_changing_password")) { %> + (1st login; changing to new private password) +<% } else if ( loginHandler.getLoginStatus().equals("changing_password_repeated_old")) { %> + (changing to a different password) +<% } else if ( loginHandler.getLoginStatus().equals("changing_password")) { %> + (changing to new password) +<% } else if ( loginHandler.getLoginStatus().equals("none")) { %> + +<% } else { %> + status unrecognized: <%=loginHandler.getLoginStatus()%>
+<% } %> +
+ + +<% String status= loginHandler.getLoginStatus(); + if ( status.equals("bad_password") || status.equals("first_login_no_password") + || status.equals("first_login_mistyped") || status.equals("first_login_changing_password") + || status.equals("changing_password_repeated_old") || status.equals("changing_password") ) { %> +
+<% } else { %> + + +<% } %> + + + + + <% String passwordError=loginHandler.getErrorMsg("loginPassword"); + if (passwordError!=null && !passwordError.equals("")) {%> + <%=passwordError%> + <% } %> + +
+<% } %> +
+ +
<%-- span-6 --%> + +
+<% String aboutText=portal.getAboutText(); + if (aboutText!=null && !aboutText.equals("")) {%> +
<%=aboutText%>
+<% }%> + +<% String ackText=portal.getAcknowledgeText(); + if (ackText!=null && !ackText.equals("")) {%> +
<%=ackText%>
+<% }%> +
<%-- span-17 --%> + + +
+ + + + + diff --git a/contrib/FLShibboleth/includes/shibauth_admin_login_process.jsp b/contrib/FLShibboleth/includes/shibauth_admin_login_process.jsp new file mode 100755 index 00000000..0e3d155b --- /dev/null +++ b/contrib/FLShibboleth/includes/shibauth_admin_login_process.jsp @@ -0,0 +1,93 @@ +<%@ page isThreadSafe="false" %> +<%@ page import="java.util.*" %> +<%@ page import="javax.servlet.*" %> +<%@ page import="javax.servlet.http.*" %> + +<% final int DEFAULT_PORTAL_ID=1; + String portalIdStr=(portalIdStr=(String)request.getAttribute("home"))==null ? + ((portalIdStr=request.getParameter("home"))==null?String.valueOf(DEFAULT_PORTAL_ID):portalIdStr):portalIdStr; + //int incomingPortalId=Integer.parseInt(portalIdStr); %> + + + + +<% + // Get shib_idp and glid from the shib returned header information + + ////////////////////////////////////////////////////////////////////// + // Change both variables to empty string when shib works + ////////////////////////////////////////////////////////////////////// + String shib_idp = ""; + String glid = ""; + + Enumeration headerNames = request.getHeaderNames(); + while(headerNames.hasMoreElements()) { + String headerName = (String)headerNames.nextElement(); + + if (headerName.equals("shib-identity-provider")) { + shib_idp = request.getHeader(headerName); + } + + if (headerName.equals("glid")) { + glid = request.getHeader(headerName); + } + + //out.println("
" + headerName + ":" + request.getHeader(headerName)); + } + + //out.println("
shib_idp:" + shib_idp); + //out.println("
glid:" + glid); + if (shib_idp.equals("https://login.ufl.edu/idp/shibboleth")) { + //out.println("
portalIdStr:" + portalIdStr); +%> + +<% + String submitModeStr = request.getParameter("loginSubmitMode"); + + //out.println("
loginSubmitMode:" + submitModeStr); + if ( submitModeStr == null ) + submitModeStr = "Log In"; + + //out.println("
loginSubmitMode:" + submitModeStr); + + if ( submitModeStr == null ) + submitModeStr = "unknown"; + if ( submitModeStr.equals("Log Out")) { +%> + + + +<% + } else if ( submitModeStr.equals("Log In")) { + //out.println("
Log In 1"); + //String loginNameStr = request.getParameter("loginName"); + String loginNameStr = glid; + String loginPasswordStr = "sia#ia*9"; //request.getParameter("loginPassword"); %> + + + +<% + //if ( loginHandler.validateLoginForm() ) { + if ( loginNameStr != "" ) { + //out.println("
Log In 2"); + +%> + + + +<% + + } else { + //out.println("
Log In 3"); + + String redirectURL="/vitro/about?home="+portalIdStr+"&login=block"; + response.sendRedirect(redirectURL); +} + } +%> + +<% + } else { + out.println("
Wrong IDP
"); + } +%> diff --git a/contrib/FLShibboleth/includes/transbg50.png b/contrib/FLShibboleth/includes/transbg50.png new file mode 100755 index 0000000000000000000000000000000000000000..f2770c41714cd2f2fd1164ccb6f0559a6989cfea GIT binary patch literal 46610 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 Xij*Szf*$(Ul#y3*s + + + + + + + + + + + + + + jdbc/vitro/connectionType + + + java.lang.String + PROPERTIES_FILE_POOL + + + + + jdbc/vitro/namedDS + + java.lang.String + mySharedDBPool + + + + + + + + edu.cornell.mannlib.vitro.webapp.servlet.setup.VitroJenaModelMakerSetup + + + + + + + edu.cornell.mannlib.vitro.webapp.servlet.setup.JenaPersistentDataSourceSetup + + + + + + + + + + + + + edu.cornell.mannlib.vitro.webapp.servlet.setup.JenaDataSourceSetup + + + + + + + + + edu.cornell.mannlib.vitro.webapp.servlet.setup.PelletReasonerSetup + + + + + + + + + + + + edu.cornell.mannlib.vitro.webapp.search.lucene.LuceneSetup + + + + + + edu.cornell.mannlib.vitro.webapp.auth.policy.setup.EditorEditingPolicySetup + + + + + edu.cornell.mannlib.vitro.webapp.auth.policy.setup.CuratorEditingPolicySetup + + + + + edu.cornell.mannlib.vitro.webapp.auth.policy.setup.DbAdminEditingPolicySetup + + + + + + + + + + + + Character Set Encoding Filter + edu.cornell.mannlib.vitro.webapp.filters.CharsetEncodingFilter + + + Character Set Encoding Filter + /* + + + JSession Strip Filter + edu.cornell.mannlib.vitro.webapp.filters.JSessionStripFilter + + + JSession Strip Filter + /* + + + + URL Rewriter Filter + edu.cornell.mannlib.vitro.webapp.filters.URLRewriterFilter + + + URL Rewriter Filter + /* + + + Portal Picker Filter + edu.cornell.mannlib.vitro.webapp.filters.PortalPickerFilter + + + Portal Picker Filter + /* + + + + VitroRequestPrep + edu.cornell.mannlib.vitro.webapp.filters.VitroRequestPrep + + + VitroRequestPrep + /* + request + forward + + + + + + + + + jsp + org.apache.jasper.servlet.JspServlet + + fork + false + + + xpoweredBy + false + + + trimSpaces + true + + 3 + + + + IndexController + edu.cornell.mannlib.vitro.webapp.search.controller.IndexController + + + IndexController + /SearchIndex + + + + TestController + edu.cornell.mannlib.vitro.webapp.controller.TestController + + + TestController + /test + + + + + fetch + edu.cornell.mannlib.vitro.webapp.QueryServlet + + + + + AboutController + edu.cornell.mannlib.vitro.webapp.controller.AboutController + + + AboutController + /about + + + + SiteAdminController + edu.cornell.mannlib.vitro.webapp.controller.edit.SiteAdminController + + + SiteAdminController + /siteAdmin + + + SiteAdminController + /siteAdmin.jsp + + + + ImageUploadController + edu.cornell.mannlib.vitro.webapp.controller.edit.ImageUploadController + + + ImageUploadController + /uploadimages + + + ImageUploadController + /uploadimages.jsp + + + + FlagUpdateController + edu.cornell.mannlib.vitro.webapp.controller.edit.FlagUpdateController + + + FlagUpdateController + /flagUpdate + + + + SitemapIndexController + edu.cornell.mannlib.vitro.webapp.controller.SitemapIndexController + + + SitemapIndexController + /sitemap.xml + + + + RDFUploadFormController + edu.cornell.mannlib.vitro.webapp.controller.jena.RDFUploadFormController + + + RDFUploadFormController + /uploadRDFForm + + + + RDFUploadController + edu.cornell.mannlib.vitro.webapp.controller.jena.RDFUploadController + + + RDFUploadController + /uploadRDF + + + + JenaIngestController + edu.cornell.mannlib.vitro.webapp.controller.jena.JenaIngestController + + + JenaIngestController + /ingest + + + + JenaExportController + edu.cornell.mannlib.vitro.webapp.controller.jena.JenaExportController + + + JenaExportController + /export/* + + + + OwlImportController + edu.cornell.mannlib.vitro.webapp.owl.OwlImportController + + + OwlImportController + /owl + + + + OwlImportServlet + edu.cornell.mannlib.vitro.webapp.owl.ProtegeOwlImportServlet + + + OwlImportServlet + /importOwl + + + + JenaAdminServlet + edu.cornell.mannlib.vitro.webapp.controller.jena.JenaAdminActions + + + JenaAdminServlet + /jenaAdmin + + + + EditFrontController + edu.cornell.mannlib.vedit.controller.EditFrontController + + + EditFrontController + /editForm + + + + OperationController + edu.cornell.mannlib.vedit.controller.OperationController + + + OperationController + /doEdit + + + + EntityEditController + edu.cornell.mannlib.vitro.webapp.controller.edit.EntityEditController + + + EntityEditController + /entityEdit + + + + VclassEditController + edu.cornell.mannlib.vitro.webapp.controller.edit.VclassEditController + + + VclassEditController + /vclassEdit + + + + Classes2ClassesOperationController + edu.cornell.mannlib.vitro.webapp.controller.edit.Classes2ClassesOperationController + + + Classes2ClassesOperationController + /classes2ClassesOp + + + + Properties2PropertiesOperationController + edu.cornell.mannlib.vitro.webapp.controller.edit.Properties2PropertiesOperationController + + + Properties2PropertiesOperationController + /props2PropsOp + + + + NamespacePrefixOperationController + edu.cornell.mannlib.vitro.webapp.controller.edit.NamespacePrefixOperationController + + + NamespacePrefixOperationController + /namespacePrefixOp + + + + RefactorOperationController + edu.cornell.mannlib.vitro.webapp.controller.edit.RefactorOperationController + + + RefactorOperationController + /refactorOp + + + + IndividualTypeOperationController + edu.cornell.mannlib.vitro.webapp.controller.edit.IndividualTypeOperationController + + + IndividualTypeOperationController + /individualTypeOp + + + + Tabs2TypesOperationController + edu.cornell.mannlib.vitro.webapp.controller.edit.Tabs2TypesOperationController + + + Tabs2TypesOperationController + /tabs2TypesOp + + + + TabIndividualRelationOperationController + edu.cornell.mannlib.vitro.webapp.controller.edit.TabIndividualRelationOperationController + + + TabIndividualRelationOperationController + /tabIndividualRelationOp + + + + TabHierarchyOperationController + edu.cornell.mannlib.vitro.webapp.controller.edit.TabHierarchyOperationController + + + TabHierarchyOperationController + /doTabHierarchyOperation + + + + DatapropEditController + edu.cornell.mannlib.vitro.webapp.controller.edit.DatapropEditController + + + DatapropEditController + /datapropEdit + + + + + KeywordEditController + edu.cornell.mannlib.vitro.webapp.controller.edit.KeywordEditController + + + KeywordEditController + /keywordEdit + + + + TabEditController + edu.cornell.mannlib.vitro.webapp.controller.edit.TabEditController + + + TabEditController + /tabEdit + + + + UserEditController + edu.cornell.mannlib.vitro.webapp.controller.edit.UserEditController + + + UserEditController + /userEdit + + + + OntologyEditController + edu.cornell.mannlib.vitro.webapp.controller.edit.OntologyEditController + + + OntologyEditController + /ontologyEdit + + + + PropertyEditController + edu.cornell.mannlib.vitro.webapp.controller.edit.PropertyEditController + + + PropertyEditController + /propertyEdit + + + + PortalEditController + edu.cornell.mannlib.vitro.webapp.controller.edit.PortalEditController + + + PortalEditController + /portalEdit + + + + EntityRetryController + edu.cornell.mannlib.vitro.webapp.controller.edit.EntityRetryController + + + EntityRetryController + /entity_retry + + + + VclassRetryController + edu.cornell.mannlib.vitro.webapp.controller.edit.VclassRetryController + + + VclassRetryController + /vclass_retry + + + + DatatypeRetryController + edu.cornell.mannlib.vitro.webapp.controller.edit.DatatypeRetryController + + + DatatypeRetryController + /datatype_retry + + + + AllTabsForPortalListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.AllTabsForPortalListingController + + + AllTabsForPortalListingController + /listTabs + + + + AllClassGroupsListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.AllClassGroupsListingController + + + AllClassGroupsListingController + /listGroups + + + + PropertyGroupsListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.PropertyGroupsListingController + + + PropertyGroupsListingController + /listPropertyGroups + + + + OntologiesListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.OntologiesListingController + + + OntologiesListingController + /listOntologies + + + + NamespacesListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.jena.NamespacesListingController + + + NamespacesListingController + /listNamespaces + + + + RestrictionsListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.jena.RestrictionsListingController + + + RestrictionsListingController + /listRestrictions + + + + RestrictionOperationController + edu.cornell.mannlib.vitro.webapp.controller.edit.RestrictionOperationController + + + RestrictionOperationController + /addRestriction + + + + PortalsListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.PortalsListingController + + + PortalsListingController + /listPortals + + + + UsersListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.UsersListingController + + + UsersListingController + /listUsers + + + + StatementChangeListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.jena.StatementChangeListingController + + + StatementChangeListingController + /statementHistory + + + + WriteOutChangesController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.jena.WriteOutChangesController + + + WriteOutChangesController + /writeOutChanges + + + + VClassWebappsListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.VClassWebappsListingController + + + VClassWebappsListingController + /listVClassWebapps + + + + IndividualsListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.IndividualsListingController + + + IndividualsListingController + /listIndividuals + + + + + ClassHierarchyListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.ClassHierarchyListingController + + + ClassHierarchyListingController + /showClassHierarchy + + + + ObjectPropertyHierarchyListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.ObjectPropertyHierarchyListingController + + + ObjectPropertyHierarchyListingController + /showObjectPropertyHierarchy + + + + DataPropertyHierarchyListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.DataPropertyHierarchyListingController + + + DataPropertyHierarchyListingController + /showDataPropertyHierarchy + + + + PropertyWebappsListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.PropertyWebappsListingController + + + PropertyWebappsListingController + /listPropertyWebapps + + + + DatatypePropertiesListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.DatatypePropertiesListingController + + + DatatypePropertiesListingController + /listDatatypeProperties + + + + DataPropertyStatementListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.DataPropertyStatementListingController + + + DataPropertyStatementListingController + /listDataPropertyStatements + + + + ObjectPropertyStatementListingController + edu.cornell.mannlib.vitro.webapp.controller.edit.listing.ObjectPropertyStatementListingController + + + ObjectPropertyStatementListingController + /listObjectPropertyStatements + + + + EntityListController + edu.cornell.mannlib.vitro.webapp.controller.EntityListController + + + EntityListController + /entitylist + + + + SearchController + edu.cornell.mannlib.vitro.webapp.search.controller.PagedSearchController + + + SearchController + /search + + + + SearchController + /search.jsp + + + SearchController + /fedsearch + + + SearchController + /searchcontroller + + + + AdminController + edu.cornell.mannlib.vitro.webapp.controller.AdminController + + + AdminController + /adminCon + + + + TermsOfUseController + edu.cornell.mannlib.vitro.webapp.controller.TermsOfUseController + + + TermsOfUseController + /termsOfUse + + + + CommentsController + edu.cornell.mannlib.vitro.webapp.controller.CommentsController + + + CommentsController + /comments + + + + JSON Service + edu.cornell.mannlib.vitro.webapp.controller.JSONServlet + + + JSON Service + /dataservice + + + + TabEntitiesController + edu.cornell.mannlib.vitro.webapp.controller.TabEntitiesController + + + TabEntitiesController + /TabEntitiesController + + + + + TabController + edu.cornell.mannlib.vitro.webapp.controller.TabController + + + TabController + /index.jsp + + + + + + EntityMergedPropertyListController + edu.cornell.mannlib.vitro.webapp.controller.EntityMergedPropertyListController + + + EntityMergedPropertyListController + /entityMergedPropList + + + + DashboardPropertyListController + edu.cornell.mannlib.vitro.webapp.controller.DashboardPropertyListController + + + DashboardPropertyListController + /dashboardPropList + + + + dwr-invoker + uk.ltd.getahead.dwr.DWRServlet + + debug + true + + + logLevel + DEBUG + + + + dwr-invoker + /dwr/* + + + + sendmail + edu.cornell.mannlib.vitro.webapp.controller.ContactMailServlet + 5 + + + + entity + edu.cornell.mannlib.vitro.webapp.controller.EntityController + + + + updateEntityFlags + edu.cornell.mannlib.vitro.webapp.UpdateEntityFlagServlet + + + + + CloneEntityServlet + edu.cornell.mannlib.vitro.webapp.controller.edit.CloneEntityServlet + + + CloneEntityServlet + /cloneEntity + + + + authenticate + edu.cornell.mannlib.vitro.webapp.controller.edit.Authenticate + + + shibauthenticate + edu.cornell.mannlib.vitro.webapp.controller.edit.ShibauthAdminAuthenticate + + + + logout + edu.cornell.mannlib.vitro.webapp.controller.edit.Logout + + properties + WEB-INF/classes/formbeans/Login_forms.properties + + + + + + browsecontroller + edu.cornell.mannlib.vitro.webapp.controller.BrowseController + 5 + + + + pubsbyorg + edu.cornell.mannlib.vitro.webapp.controller.vclass.PubsByDepartmentServlet + + workspaceDir + /usr/local/services/vivo/logs + + + + + + coauthors + edu.cornell.mannlib.vitro.webapp.controller.vclass.CoAuthorServlet + + workspaceDir + /usr/local/services/vivo/logs + + + + + + generic_create + edu.cornell.mannlib.vitro.webapp.GenericDBCreate + + + + + uploadImages + edu.cornell.mannlib.vitro.webapp.controller.edit.UploadImagesServlet + + workspaceDir + + /usr/local/src/Vitro/dream/common/web + + + + + + generic_editprep + edu.cornell.mannlib.vitro.webapp.GenericDBEditPrep + + + + generic_update + edu.cornell.mannlib.vitro.webapp.GenericDBUpdate + + + + generic_delete + edu.cornell.mannlib.vitro.webapp.GenericDBDelete + + + + SparqlQuery + edu.cornell.mannlib.vitro.webapp.controller.SparqlQueryServlet + + + + SparqlQuery + /admin/sparqlquery + + + + authtest + edu.cornell.mannlib.vitro.webapp.auth.AuthTestController + + + authtest + /authtest + + + + + fetch + /fetch + + + sendmail + /sendmail + + + entity + /entity + + + entity + /entity/* + + + entity + /individual/* + + + updateEntityFlags + /updateEntityFlags + + + authenticate + /authenticate + + + shibauthenticate + /shibauthenticate + + + logout + /logout + + + browsecontroller + /browsecontroller + + + pubsbyorg + /pubsbyorg + + + coauthors + /coauthors + + + uploadImages + /uploadImages + + + generic_create + /generic_create + + + generic_editprep + /generic_editprep + + + generic_update + /generic_update + + + generic_delete + /generic_delete + + + + + + /WEB-INF/tlds/database.tld + /WEB-INF/tlds/database.tld + + + + http://java.sun.com/jstl/core + /WEB-INF/tlds/c.tld + + + + http://java.sun.com/jstl/functions + /WEB-INF/tlds/fn.tld + + + + http://vitro.mannlib.cornell.edu/edit/tags + /WEB-INF/tlds/form.tld + + + + http://vitro.mannlib.cornell.edu/vitro/tags + /WEB-INF/tlds/vitroForm.tld + + + + http://vitro.mannlib.cornell.edu/vitro/tags/PropertyEditLink + /WEB-INF/tlds/PropertyEditLink.tld + + + + http://mannlib.cornell.edu/vitro/ListSparqlTag/0.1/ + /WEB-INF/tlds/ListSparqlTag.tld + + + + http://jakarta.apache.org/taglibs/string-1.1 + /WEB-INF/tlds/taglibs-string.tld + + + + + + + + + + + + + + org.apache.axis.transport.http.AxisHTTPSessionListener + + + + AxisServlet + org.apache.axis.transport.http.AxisServlet + + + + AxisAdminServlet + org.apache.axis.transport.http.AdminServlet + 100 + + + + SOAPMonitorService + org.apache.axis.monitor.SOAPMonitorService + + SOAPMonitorPort + 5001 + + 100 + + + + AxisAdminServlet + /AxisAdminServlet + + + + AxisServlet + /servlet/AxisServlet + + + + AxisServlet + *.jws + + + + AxisServlet + /services/* + + + + SOAPMonitorService + /SOAPMonitor + + + + xsd + text/xml + + + wsdl + text/xml + + + diff --git a/doc/install.txt b/doc/install.txt new file mode 100644 index 00000000..e59a6b5b --- /dev/null +++ b/doc/install.txt @@ -0,0 +1,204 @@ + +------------------------------------------------------------------------------- + +This is a brief summary of the VIVO installation process. A more detailed +explanation of the procedure can be found at: + + http://vivoweb.org/support/user-guide/installation + +The VIVO user guide is available at: + + http://vivoweb.org/support/user-guide + +PLEASE NOTE: It is assumed that you are performing a clean install, including +emptying an existing database and removing a previous installation from the +tomcat webapps directory. Product functionality may not be as expected if you +install over an existing installation of an earlier version. + +------------------------------------------------------------------------------- + + * I. Install required software + * II. Create an empty MySQL database + * III. Download the VIVO code distribution + * IV. Specify deployment properties + * V. Compile and deploy + * VI. Set Tomcat JVM Parameters + * VII. Start Tomcat + * VIII. Log in and add RDF data + * IX. Create an initial Lucene search index + +------------------------------------------------------------------------------- + +I. Install required software + +Before installing VIVO, make sure that the following software is installed on +the desired machine: + + * Java (SE) 1.5 or higher + * Apache Tomcat 5.x or higher* + * Apache Ant + * MySQL 4.1 or higher + * Subversion client + +------------------------------------------------------------------------------- + +II. Create an empty MySQL database + +Decide on a database name, username, and password. Log into your mysql server +and create a new database in MySQL that uses UTF-8 encoding. You will need +these values for step IV when you configure the deployment properties. At the +mysql command line you can create the database and user with these commands +substituting your values for "dbname", "username", and "password". Most of the +time, the "hostname" will equal "localhost". + +CREATE DATABASE dbname CHARACTER SET utf8; + +Grant access to a database user. For example: + +GRANT ALL ON dbname.* TO 'username'@'hostname' IDENTIFIED BY 'password'; + +Keep track of the database name, username, and password for the next step. + +------------------------------------------------------------------------------- + +III. Download the VIVO code distribution + +Download either a zip or gz file and unpack it on your web server: +ftp://download.mannlib.cornell.edu/pub/Vivo/rel-0.9.zip +ftp://download.mannlib.cornell.edu/pub/Vivo/rel-0.9.tar.gz + +------------------------------------------------------------------------------- + +IV. Specify deployment properties + +At the top level of the unpacked distribution, copy the file +example.deploy.properties to a file named simply deploy.properties. This file +sets several properties used in compilation and deployment. + + Directory where tomcat is installed +property name: tomcat.home +example value: /usr/local/tomcat + + Name of your VIVO application +property name: webapp.name +example value: vivo + + Directory where uploaded files will be stored +property name: upload.directory +example value: /usr/local/vivo/data/uploads + + Directory where the Lucene search index will be built. +property name: LuceneSetup.indexDir +example value: /usr/local/vivo/data/luceneIndex + + Specify the namespace in which the Vitro editor should create new ABox and portal resources + Note that the trailing slash is essential. +property name: Vitro.defaultNamespace +example value: http://vivo.mydomain.edu/individual/ + + Specify an SMTP host that the form will use for sending e-mail (Optional) +property name: Vitro.smtpHost +example value: smtp.servername.edu + + Specify the JDBC URL of your database. Change the end of the + URL to reflect your database name (if it is not "vivo"). +property name: VitroConnection.DataSource.url +example value: jdbc:mysql://localhost/vivo + + Change the username to match the authorized user you created in MySQL +property name: VitroConnection.DataSource.username +example value: username + + Change the password to match the password you created in MySQL +property name: VitroConnection.DataSource.password +example value: password + + Specify the name of your first admin user for the VIVO application. This user + will have an initial password of 'defaultAdmin'. This will be changed on first + login. +property name: initialAdminUser +example value: defaultAdmin + +------------------------------------------------------------------------------- + +V. Compile and deploy + +At the command line, from the top level of the unpacked distribution directory, +type: + +ant clean deploy + +to build VIVO and deploy to Tomcat's webapps directory. + +------------------------------------------------------------------------------- + +VI. Set Tomcat JVM Parameters + +Currently, VIVO copies the contents of your RDF database into memory in order +to serve Web requests quickly. (The in-memory copy and the underlying database + are kept in synch as edits are performed.) + +VIVO will require more memory than that allocated to Tomcat by default. With +most installations of Tomcat, the setenv.sh or setenv.bat file in Tomcat's bin +directory is a convenient place to set the memory parameters. For example: +export CATALINA_OPTS="-Xms1024m -Xmx1024m -XX:MaxPermSize=64m" sets Tomcat to +allocate an initial heap of 1024 megabytes, a maximum heap of 1024 megabytes, +and a PermGen space of 64 megs. 1024 megabytes is a minimum practical heap size +for production installations storing data for large academic institutions, and +additional heap space is preferable. For testing with small sets of data, 256m +to 512m should be sufficient. + +If an OutOfMemoryError is encountered during VIVO execution, increasing the +heap parameters is the typical remedy. + +------------------------------------------------------------------------------- + +VII. Start Tomcat + +Most Tomcat installations can be started by running startup.sh or startup.bat +in Tomcat's bin directory. Point your browser to http://localhost:8080/vivo/ +to test the application. + +If Tomcat does not start up, or the VIVO application is not visible, check the +catalina.out file in Tomcat's logs directory. (More information about detailed +error logging to be added here.) + +------------------------------------------------------------------------------- + +VIII. Log in and add RDF data + +If the startup was successful, you will see a relatively empty screen with the +VIVO logo in the header. Click the "Log in" link near the upper right corner. +Log in with the initialAdminUser username you set up in step IV. The initial +password the initialAdminUser is defaultAdmin. On first login, you will be +prompted to select a new password and verify it a second time. + +After verifying your new password, you will be presented with a menu of +editing options. Here you can create OWL classes, object properties, datatype +properties, and configure the display of data. Currently, any classes you wish +to make visible on your website must be part of a Class Group, and there a +number of visibility and display options available for each ontology entity. +More documentation is forthcoming. + +VIVO comes with an ontology, but you may also upload another ontology from an +RDF file. Under the "Advanced Data Tools", click "Add/Remove RDF Data." Note +that Vitro currently works best with OWL-DL ontologies and has only limited +support for pure RDF data. You can enter a URL pointing to the RDF data you +wish to load or upload a file on your local machine. Ensure that the "add RDF" +radio button is selected. You will also likely want to check "create +classgroups automatically." Clicking the "Index" tab in the navigation bar at +the top left of the page will show a simple index of the knowledge base. +See more documentation for configuring VIVO at vivoweb.org. + +------------------------------------------------------------------------------- + +IX. Create an initial Lucene search index + +Invoke the indexing servlet by requesting http://localhost:8080/vivo/SearchIndex + +You will not see any output to the browser (though this will change in future +versions). When your browser switches to a blank screen, the indexing has +completed and the search box on the Vitro portal will be usable. Individuals +that are created, edited, or deleted from the Vitro editing interface will +trigger incremental updates of the search index. + diff --git a/doc/license.txt b/doc/license.txt new file mode 100644 index 00000000..dc0434a5 --- /dev/null +++ b/doc/license.txt @@ -0,0 +1,25 @@ +Copyright (c) ${year}, Cornell University +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the name of Cornell University nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/example.deploy.properties b/example.deploy.properties new file mode 100644 index 00000000..56c6512b --- /dev/null +++ b/example.deploy.properties @@ -0,0 +1,67 @@ +# ----------------------------------------------------------------------------- +# +# VIVO deployment properties +# +# This file is provided as example.deploy.properties. +# +# Save a copy of this file as deploy.properties, and edit the properties as +# needed for your deployment. +# +# ----------------------------------------------------------------------------- + +# +# The base install directory for your Tomcat server. The VIVO application +# will be deployed in the /webapps directory below this base. +# +tomcat.home = /usr/local/tomcat + +# +# The name of the VIVO application. This will be used as the name of the +# subdirectory within your Tomcat server's /webapps directory. It also appears +# in the URL for the application. For example, http://my.vivo.server/vivo +# +webapp.name = vivo + +# +# The location where the VIVO application will store uploaded files +# (usually images). You should arrange for these files to be backed up in some +# way. +# +upload.directory = /user/local/vivo/data/uploads + +# +# The location where the VIVO application will create its Lucene search +# index. +# +LuceneSetup.indexDir = /user/local/vivo/data/luceneIndex + +# +# This namespace will be used when generating URIs for objects created in the +# editor. Change it to reflect your own domain. For example, Cornell's +# namespace is http://vivo.cornell.edu/individual/ +# +# Note: it is essential that this namespace end with a trailing slash. +# +Vitro.defaultNamespace = http://vivo.mydomain.edu/individual/ + +# +# SMTP host which the "Contact Us" form can use to send mail. If this is left +# empty, the "Contact Us" form will be disabled. +# +Vitro.smtpHost = + +# +# The basic parameters for a MySQL database connection. Change the end of the +# URL to reflect your database name (if it is not "vitro"). Change the username +# and password to match the authorized user you created in MySQL. +# +VitroConnection.DataSource.url = jdbc:mysql://localhost/vitrodb +VitroConnection.DataSource.username = vitrodbUsername +VitroConnection.DataSource.password = vitrodbPassword + +# +# The name of your first admin user for the VIVO application. The password for +# for this user is initially set to "defaultAdmin", but you will be asked to +# change the password the first time you login. +# +initialAdminUser = defaultAdmin \ No newline at end of file diff --git a/model/init-data/initialSiteConfig.rdf b/model/init-data/initialSiteConfig.rdf new file mode 100644 index 00000000..f4eaae60 --- /dev/null +++ b/model/init-data/initialSiteConfig.rdf @@ -0,0 +1,48 @@ + + + + + + -1 + <h3>Welcome! You have successfully installed VIVO!</h3> + +<p>Your next step is to <a href="siteAdmin?home=1&login=block">login</a> and change your password. You can find the login link in the header on the right above.</p> + +<p>Please see the <a href="http://vivoweb.org/support/user-guide" target="_blank">VIVO User Guide</a> for help. The user guide includes information on <a href="siteAdmin?home=1">Site Administration</a>. You may want to read about the <a href="http://vivoweb.org/support/user-guide/site-configuration" target="_blank">Site Configuration</a> topics next:</p> +<ul> +<li><a href="http://vivoweb.org/support/user-guide/site-information" target="_blank">Edit site information</a></li> +<li><a href="http://vivoweb.org/support/user-guide/tab-management" target="_blank">Manage tabs</a></li> +<li><a href="http://vivoweb.org/support/user-guide/managing-user-accounts" target="_blank">Manage user accounts</a></li> +</ul> + Home + + + VIVO + enabling national networking of scientists + true + 0 + 0 + 0 + + 1 + 0 + 0 + VIVO Project + <p>The VIVO National Network 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 HR, grants, course, and faculty activity databases.</p> + + + +<p>See more information on the <a href="http://vivoweb.org">VIVO Project</a>.</p> + themes/vivo-basic/ + + + diff --git a/model/submodels/geo2vivo.n3 b/model/submodels/geo2vivo.n3 new file mode 100644 index 00000000..979a7861 --- /dev/null +++ b/model/submodels/geo2vivo.n3 @@ -0,0 +1,25 @@ +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix owl: . + + + owl:equivalentClass + . + + + rdfs:subClassOf + . + + + rdfs:subClassOf + . + + + rdfs:subClassOf + . + + + rdfs:subClassOf + . + diff --git a/model/submodels/geopolitical.owl.rdf b/model/submodels/geopolitical.owl.rdf new file mode 100644 index 00000000..f25497c0 --- /dev/null +++ b/model/submodels/geopolitical.owl.rdf @@ -0,0 +1,21011 @@ + + + + 1 + + + + + 1 + + + + + last Update: 30 April 2009 + FAOSTAT http://faostat.fao.org + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + + + + + 1 + + + + FAO estimate + Нидерланды + EUR or € + 1985 + the Netherlands + 2009 + the Kingdom of the Netherlands + el Reino de los Países Bajos + + يورو + + + Paesi Bassi + 1914.0 + 528 + millions of US dollars + NLD + 860336.0 + 53.55 + 12.03 + Netherlands + 2008 + olandese + + евро + нидерландский + 150 + + Data reported on country official publications or web sites (Official) or trade country files. + 3376.0 + 1000 Ha + Regno dei Paesi Bassi + + 177 + Países Bajos + euro + 5142 + NL + Paesi Bassi + 欧 元 + + NET + 1000 Ha + 荷 兰 + euro + Official data reported on FAO Questionnaires from countries + Pays-Bas + Королевство Нидерландов + 荷兰的 + مملكة هولندا + هولندا + néerlandais + los Países Bajos + le Royaume des Pays-Bas + 16592.0 + 1000 + 9999 + neerlandés + Netherlands + 荷兰王国 + euro + 7.22 + + هولندا + -70.06 + Netherlands + هولندي + 15459 + Нидерланды + Estimated + 荷兰王国 + 2007 + + les Pays-Bas + euro + 2007 + + + Estimated + Fiji + + 斐 济 + Figi + FIJ + -180.0 + 斐济的 + فيجي + Fiji + Фиджи + 斐 济 + Fiji + Республика Острова Фиджи + Official data reported on FAO Questionnaires from countries + 9999 + -12.46 + 1827.0 + Fiji + دولار + dollaro delle Figi + Fidji + 428.0 + доллар + + dollar + 3527.0 + FAO estimate + + فيجي + FJI + Fiji + 1985 + dollar + Фиджи + 849.0 + + + figiano + 2895 + des Fidji + 2007 + 2008 + of Fiji + 83 + 180.0 + les Fidji + millions of US dollars + 2007 + من فيجي + Manual Estimation + 66 + la République des Îles Fidji + 242 + dólar + -20.67 + 15409 + Repubblica delle Isole Figi + the Republic of the Fiji Islands + Figi + 1000 + de Fiji + la República de las Islas Fiji + 2009 + F$ + + 1000 Ha + جمهورية جزر فيجي + FJ + фиджийский + + 1000 Ha + + 斐济群岛共和国 + + + + Albania + Albania + 42.65 + 9999 + 阿尔巴尼亚共和国 + Албания + la República de Albania + + albanés + 19.26 + 阿尔巴尼亚的 / 阿尔巴尼亚人 + lek + the Republic of Albania + 3 + + 列克 + Albania + Албания + 1000 + Albania + Repubblica d'Albania + 12295.0 + AL + la République d'Albanie + lek + + Albania + جمهورية ألبانيا + ألبانيا + + лек + lek + 1000 Ha + 3155.0 + ألبانيا + 1119.0 + 2008 + + 008 + + Albanian + lek + albanais + 39.65 + + + 2007 + lek + 阿尔巴尼亚 + 3 + Official data reported on FAO Questionnaires from countries + 阿尔巴尼亚 + Albania + ALB + 21.06 + ليك + 1985 + l'Albanie + ألباني + millions of US dollars + 241 + албанский + 14640 + 1000 Ha + 2007 + + Albania + FAO estimate + Estimated + albanese + Manual Estimation + 2009 + + 2740.0 + Albanie + ALB + + Республика Албания + + + + + The value of the datatype property *validUntil* associated to a particular area (territory or group) indicates the area's last year of validity. In case the area is currently valid, this value is set by default to 9999. + + + + + + + 1 + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + millions of US dollars + + bangladese + Бангладеш + бангладешский + taka + 1000 Ha + така + 孟加拉国的 / 孟加拉国人 + بنغلاديش + Bangladesh + la República Popular de Bangladesh + 2009 + 塔 卡 + Бангладеш + 孟加拉国 + 050 + 1985 + bangladais + Bangladesh + Bangladesh + BGD + + 孟加拉国 + 26.63 + + la République populaire du Bangladesh + Repubblica popolare del Bangladesh + taka + + + تاكا + 2007 + FAO estimate + of Bangladesh + Bangladesh + 23 + 15371 + taka + 9050.0 + 16 + + + 162221.0 + + 9999 + BD + بنغلاديشي + 孟加拉人民共和国 + Manual Estimation + + 1000 + 2007 + بنغلاديش + 810 + + Народная Республика Бангладеш + 88.03 + le Bangladesh + + 20.59 + Bangladesh + Bangladesh + 78992.0 + 1000 Ha + Manual Estimation + taka + de Bangladesh + Bangladesh + 2008 + + جمهورية بنغلاديش الشعبية + BGD + Estimated + 13017.0 + Bangladesh + + Tk + the People's Republic of Bangladesh + 92.67 + + + + 1 + + + + + + + + CEMAC + Central African Economic and Monetary Community + + + Communauté économique et monétaire de l'Afrique centrale + CEMAC + 中部非洲经济及货币共同体 + CEMAC + 9999 + المجموعة الاقتصادية والنقدية لوسط أفريقيا + Comunidad Económica y Monetaria de África Central + + + Communauté économique et monétaire de l'Afrique centrale + Comunidad Económica y Monetaria de África Central + + + + Central African Economic and Monetary Community + Центральноафриканское валютно-экономическое сообщество + 52605 + + + Guyana + 1985 + 1000 + جمهورية غيانا + 1158.0 + + 328 + + le Guyana + 19685.0 + + 2008 + 762.0 + + + + la República de Guyana + 91 + Guyana + GUY + 圭亚那的 + 15421 + Guyana + Guyana + من جمهورية غيانا + dólar + 圭亚那 + -61.39 + GUY + Guyana + Repubblica della Guyana + dollar + Manual Estimation + 圭亚那 + 107 + غيانا + FAO estimate + غيانا + guyanien + 8.55 + GY + guyanese + Estimated + guyanés + + 2009 + دولار + Guyana + Manual Estimation + -56.48 + + 1680.0 + Гайана + 9999 + 2007 + доллар + 1.18 + 3445 + + Республика Гайана + Guyanese + + гайанский + the Republic of Guyana + Guyana + 1000 Ha + 圭亚那共和国 + + + G$ + dollaro guianese + Guyana + millions of US dollars + Гайана + 2007 + 1000 Ha + dollar + + la République du Guyana + + + + + + + ميكرونيزيا + Micronésie + Micronesia + Micronesia + + 1991 + Микронезия + + + 密克罗尼西亚 + Micronesia + Micronesia + ميكرونيزيا + 密克罗尼西亚 + Micronésie + + 密克罗尼西亚 + Micronesia + 057 + + ميكرونيزيا + Micronesia + + Micronesia + Micronesia + Микронезия + 5503 + 84969 + Micronesia + Micronésie + 9999 + Микронезия + + + + FAOSTAT http://faostat.fao.org/ + last update: 21 September 2009 + + + + + + + + Salvadorean + 75 + + ¢ + El Salvador + salvadorien + колон + كولون + 1000 Ha + 2007 + 萨尔瓦多 + El Salvador + 2508 + ELS + Repubblica di El Salvador + Сальвадор + 2009 + la République d'El Salvador + Сальвадор + El Salvador + + 222 + El_Salvador + 2072.0 + Manual Estimation + 22115.0 + 科 朗 + El Salvador + colón + Республика Эль-Сальвадор + colón + 萨尔瓦多 + 1000 + 9999 + colón salvadoregno + salvadoreño + سلفادوري + 14.45 + 13.15 + 60 + 萨尔瓦多共和国 + السلفادور + El Salvador + Estimated + 1556.0 + Manual Estimation + SV + El Salvador + 2007 + FAO estimate + сальвадорский + + + + السلفادور + 1985 + + millions of US dollars + El Salvador + 15406 + + -90.12 + + la República de El Salvador + the Republic of El Salvador + جمهورية السلفادور + salvadoregno + 2008 + 萨尔瓦多的 + colón + + 6163.0 + SLV + 1000 Ha + El Salvador + -87.69 + + + + UN Statistics Division http://unstats.un.org/unsd/methods/m49/m49alpha.htm + + + + 138 + 2007 + 14.54 + the United Mexican States + peso + песо + -118.37 + Mexico + + Manual Estimation + + 1000 Ha + 1085951.0 + Mexico + 2009 + 墨西哥 + + 109610.0 + Mexique + 15452 + 106800.0 + المكسيك + 162 + Мексика + 484 + + peso messicano + -86.71 + MEX + México + + México + + messicano + millions of US dollars + بيسو + MX + 2008 + 2007 + Estimated + 比索 + + + Mexico + Mexican + + Mex$ + 194395.0 + mexicano + 1000 + 9999 + 32.72 + Messico + 墨西哥的 + les États-Unis du Mexique + MEX + Messico + peso + المكسيك + los Estados Unidos Mexicanos + мексиканский + 墨西哥合众国 + Stati Uniti messicani + 4792 + FAO estimate + الولايات المتحدة المكسيكية + Мексиканские Соединенные Штаты + Manual Estimation + مكسيكي + 1985 + 墨西哥 + le Mexique + Мексика + mexicain + 1000 Ha + peso + + + Eritrea + Estimated + + إريتريا + 36.44 + Érythrée + 1000 Ha + 5073.0 + 厄立特里亚 + millions of US dollars + 9999 + эритрейский + Eritrea + l'Érythrée + nakfa + Stato d'Eritrea + Eritrea + Manual Estimation + + Manual Estimation + 2007 + Eritrea + 纳克法 + 2008 + إريتريي + + FAO estimate + إريتريا + + + 1000 + + + l'Érythrée + eritreo + 12.36 + 厄立特里亚的 + + 厄立特里亚 + ERI + + 34927 + 43.12 + 232 + ERN + + 1993 + 1000 Ha + + + Эритрея + 7542.0 + 10100.0 + إريتريا + 2009 + Eritrea + Eritrea + накфа + 1654.0 + + érythréen + 18.02 + + + 2007 + 2810 + Eritrea + + nakfa + eritreo + Eritrea + 厄立特里亚 + 178 + 77 + ERI + + nakfa + Эритрея + ER + Eritrea + Eritrean + Эритрея + ناكفا + nakfa + + + 13996.0 + 塔吉克斯坦 + + 36.67 + Manual Estimation + + + tagiko + سومونى + таджикский + the Republic of Tajikistan + + + 41.04 + 208 + + 33246 + TAJ + 1000 Ha + 1991 + 239 + Tayikistán + 塔吉克斯坦共和国 + Tajik + 67.39 + جمهورية طاجيكستان + Tajikistan + TJK + 塔吉克斯坦 + FAO estimate + 2009 + Tagikistan + la République du Tadjikistan + Республика Таджикистан + millions of US dollars + 4581.0 + tayiko + 1000 + 1000 Ha + + 6952.0 + Tayikistán + 20525 + tadjik + + 2007 + + le Tadjikistan + 9999 + 2007 + Tajikistan + طاجيكستان + + 5134.0 + + 索莫尼 + Tagikistan + + TJ + Tadjikistan + Manual Estimation + somoni + Таджикистан + 2008 + + Tajikistan + Repubblica del Tagikistan + طاجيكستاني + 塔吉克的 + + طاجيكستان + сомони [м.] + SM + Таджикистан + 75.14 + la República de Tayikistán + somony + 762 + + + Estimated + + + MAR + + 2009 + -0.99 + 44630.0 + DH + 2007 + 迪拉姆 + Марокко + Marruecos + 1000 Ha + + MA + + dirham + المغرب + 86329.0 + درهم + 1000 + + + марокканский + 504 + 143 + 4940 + marocchino + the Kingdom of Morocco + 2007 + dirham + 9999 + Morocco + 31993.0 + Marocco + el Reino de Marruecos + 35.92 + Moroccan + 1000 Ha + 摩洛哥 + 15454 + 摩洛哥的 + marroquí + 2008 + مغربي + millions of US dollars + -13.18 + 27.66 + Official data reported on FAO Questionnaires from countries + + + 29960.0 + Marocco + + MOR + 摩洛哥 + 摩洛哥王国 + 1985 + le Maroc + Королевство Марокко + + + Марокко + المملكة المغربية + Maroc + le Royaume du Maroc + 169 + Estimated + + дирхам + + Morocco + marocain + Manual Estimation + dirham + Morocco + Marruecos + FAO estimate + Regno del Marocco + المغرب + + dirham marocchino + + + 14077.0 + lempira + Repubblica di Honduras + 1985 + Honduras + 洪都拉斯的 + la République du Honduras + 1000 + HN + Manual Estimation + لمبيرا + Республика Гондурас + + 95 + + جمهورية هندوراس + + 16.51 + 1000 Ha + 2008 + 12.98 + 111 + 3651 + + 伦皮拉 + Honduras + Honduras + 洪都拉斯 + la República de Honduras + 15423 + millions of US dollars + FAO estimate + + hondureño + 2007 + هندوراس + 7466.0 + HND + L + lempira + هندوراسى + HON + hondurien + 2009 + Honduras + Honduras + lempira + 洪都拉斯 + lempira + гондурасский + + Estimated + 2007 + هندوراس + + 1000 Ha + + + + Honduras + -89.35 + Manual Estimation + honduregno + 11189.0 + + 3128.0 + the Republic of Honduras + le Honduras + + + 洪都拉斯共和国 + Гондурас + лемпира + 9999 + 340 + Honduras + Honduran + Гондурас + -83.15 + Honduras + + + Cayman Islands + 2009 + Isole Cayman + C$ + (из/ житель) Каймановых островов + de las Islas Caimán + 1000 + 开曼群岛 + من جزر كايمان + 36 + + 19015 + CYM + FAO estimate + les Îles Caïmanes + Isole Cayman + + Cayman Islands + dollar + 1000 Ha + Cayman_Islands + 1000 Ha + 开曼的/开曼人 + les Îles Caïmanes + caïmanais + جزر كايمان + Islas Caimán + 开曼群岛 + Islas Caimán + 136 + dollar + dólar + 1400 + Data reported on country official publications or web sites (Official) or trade country files. + Caymanian + جزر كايمان + 3.0 + 2007 + + 26.0 + Islas Caimán + 48 + delle Isole Cayman + 1985 + доллар + Manual Estimation + 开曼群岛 + 2007 + دولار + CAY + dollaro delle Isole Cayman + Cayman Islands + les Îles Caïmanes + KY + Isole Cayman + 9999 + 56.0 + جزر كايمان + + + من جزر فيرجين التابعة للولايات المتحدة + des Îles Vierges américaines + de Islas Vírgenes (EE.UU.) + 美属维尔京群岛 + dollaro USA + Islas Vírgenes (EE.UU.) + 258 + Islas Vírgenes (EE.UU.) + 2009 + 2007 + Îles Vierges américaines + 1000 Ha + VI + UVI + 19038 + Isole Vergini americane + United States Virgin Islands + 850 + 1000 Ha + Виргинские острова (США) + 4.0 + + 2007 + + United States Virgin Islands + جزر فيرجين التابعة للولايات المتحدة + US dollar + VIR + les Îles Vierges américaines + Виргинские острова США + Isole Vergini degli Stati Uniti + United States Virgin Islands + 1000 + of the United States Virgin Islands + 美属维尔京群岛 + جزر فيرجين التابعة للولايات المتحدة + 美属维尔京群岛 + (из/ житель) Американских Виргинских островов + Manual Estimation + доллар + 240 + 110.0 + + FAO estimate + las Islas Vírgenes (EE.UU.) + Isole Vergini americane + 美 元 + delle Isole Vergini americane + جزر فيرجين التابعة للولايات المتحدة + Американские Виргинские острова + 8256 + 美属维尔京群岛人/美属维尔京群岛的 + les Îles Vierges américaines + دولار أمريكى + 35.0 + Data reported on country official publications or web sites (Official) or trade country files. + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + + LAO + la República Democrática Popular Lao + كيب + 15438 + лаосский + 6320.0 + 13.91 + 9999 + 2129.0 + جمهورية لاو الديمقراطية الشعبية + + millions of US dollars + Repubblica democratica popolare lao + la République démocratique populaire lao + kip + + + جمهورية لاو الديمقراطية الشعبية + Лаосская Народно- Демократическая Республика + République démocratique populaire lao + 107.7 + 100.1 + + the Lao People's Democratic Republic + 基 普 + + la República Democrática Popular Lao + República Democrática Popular Lao + 139 + 120 + the Lao People's Democratic Republic + Repubblica democratica popolare lao + 22.51 + kip + 老挝人民民主共和国 + 2007 + Data reported on country official publications or web sites (Official) or trade country files. + 老挝人民民主共和国 + 418 + кип + + 2007 + FAO estimate + + LAO + lao + 1000 Ha + + Laos + LA + 2008 + لاوي + 23080.0 + + Repubbica democratica popolare lao + Лаосская Народно- Демократическая Республика + + Lao People's Democratic Republic + + Lao + + lao + Лаосская Народно- Демократическая Республика + 1000 + + Estimated + 12076 + kip + 1985 + 2009 + 5195.0 + 老挝的 + جمهورية لاو الديمقراطية الشعبية + laotiano + 老挝人民民主共和国 + + Manual Estimation + kip + la République démocratique populaire lao + 1000 Ha + + + + 1000 Ha + dollar des États-Unis + dólar de EE.UU. + Stati Uniti d'America + 美 元 + Stati Uniti d'America + 179.78 + the United States of America + dollaro USA + Estados Unidos de América + 15506 + + statunitense + the United States of America + Manual Estimation + 美利坚合众国 + los Estados Unidos de América + 美 国 + Соединенные Штаты Америки + 美利坚合众国 + + + + + американский + دولار الولايات المتحدة الأمريكية + 71.39 + United_States + أمريكي + 1000 + US + Estimated + (of the) United States (of America) + millions of US dollars + US dollar + FAO estimate + USA + 15095 + 231 + 314659.0 + les États-Unis d'Amérique + los Estados Unidos de América + 1985 + États-Unis d'Amérique + Соединенные Штаты Америки + Соединенные Штаты Америки + + الولايات المتحدة الأمريكية + 916192.0 + 2007 + 2009 + les États-Unis d'Amérique + de los Estados Unidos (de América) + الولايات المتحدة الأمريكية + 5.87 + 2008 + Manual Estimation + 2007 + -179.15 + Stati Uniti d'America + 411158.0 + الولايات المتحدة الأمريكية + + USA + 美国的 + 1000 Ha + des États-Unis (d'Amérique) + 259 + 840 + United States of America + 1.4204322E7 + доллар + 9999 + + + + + 1985 + 1997 + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + East_Timor + Manual Estimation + TL + من تيمور- ليشتى + + из/житель Тимора-Лешти + 2008 + + 东帝汶 + تيمور- ليشتى + 1000 Ha + Timor-Leste + 9999 + 176 + Timor-Leste + Repubblica democratica di Timor-Leste + دولار الولايات المتحدة الأمريكية + 美 元 + + 1985 + dollaro USA + + Тимор-Лешти + 40152 + + Timor-Leste + la República Democrática de Timor-Leste + + جمهورية تيمور- ليشتى الديمقراطية + + 东帝汶 + + Тимор-Лешти + 388.0 + US dollar + of Timor-Leste + 1134.0 + 2009 + доллар + Data reported on country official publications or web sites (Official) or trade country files. + TLS + the Democratic Republic of Timor-Leste + تيمور- ليشتى + Timor-Leste + le Timor-Leste + 242 + Timor-Leste + 东帝汶民主共和国 + Estimated + + dólar de EE.UU. + 498.0 + + TIM + 37893 + 东帝汶的 + + timorense + millions of US dollars + Timor-Leste + 2007 + di Timor-Leste + 2007 + la République démocratique du Timor-Leste + 1000 Ha + Демократическая Республика Тимор-Лешти + timorais + dollar des États-Unis + 1000 + 626 + Timor-Leste + + FAO estimate + 1487.0 + + + la République du Rwanda + + руандийский + Rwanda + франк + 9998.0 + Estimated + + Ruanda + 2007 + FAO estimate + + فرنك + 卢旺达共和国 + -2.84 + 1985 + 4457.0 + + 2008 + Repubblica del Ruanda + Rwanda + 30.9 + + franco + + franc + ruandese + + franco ruandese + 9999 + Руанда + + + 1000 + + 1925.0 + le Rwanda + جمهورية رواندا + RW + 28.86 + franc + rwandés + 卢旺达 + Руанда + 646 + Rwanda + 15476 + 法 郎 + 184 + RWA + 2467.0 + رواندا + Rwandan + رواندي + 卢旺达 + Manual Estimation + la República de Rwanda + Rwanda + Rwanda + + RWA + 1000 Ha + 卢旺达的 + 2009 + 205 + + + 2007 + the Republic of Rwanda + + 6717 + Ruanda + Руандийская Республика + Rwanda + + + رواندا + rwandais + + -1.05 + 1000 Ha + millions of US dollars + Manual Estimation + + + franco CFA + -13.64 + 1985 + Repubblica di Guinea-Bissau + franco CFA (Communauté financière africaine) + Гвинея-Бисау + + Manual Estimation + + 非洲法郎 + 9999 + 12.67 + 15420 + франк КФА + غينيا - بيساو + Guinea-Bissau + فرنك الجماعة المالية الأفريقية + Guinea-Bissau + 175 + 2007 + bissau-guinéen + 几比的 + 430.0 + 2812.0 + 105 + 1000 Ha + franc CFA (Communauté financière africaine) + 1000 + la República de Guinea-Bissau + Guinea-Bissau + Guinea-Bissau + + the Republic of Guinea-Bissau + 2008 + + Гвинея-Бисау + جمهورية غينيا بيساو + 1000 Ha + 10.92 + + 几内亚比绍 + Guinea-Bissau + Guinea-Bissau + la République de Guinée-Bissau + GNB + 1611.0 + (из/житель) Гвинеи-Бисау + -16.67 + + 1630.0 + + Guinea-Bissau + of Guinea-Bissau + + Guinée-Bissau + GW + millions of US dollars + + de Guinea-Bissau + la Guinée-Bissau + 3427 + GBS + من غينيا بيساو + Республика Гвинея-Бисау + 2009 + 几内亚比绍 + FAO estimate + 2007 + Manual Estimation + 624 + Estimated + + della Guinea-Bissau + + غينيا - بيساو + 几内亚比绍共和国 + + + + CFA franc (Communauté financière africaine) + + + + + 2671.0 + Mongolian + 115996.0 + MON + 41.57 + 蒙 古 + Mongolia + 15453 + 167 + тугрик + Mongolia + Mongolia + + Mongolia + MN + + Монголия + 496 + 155356.0 + 1000 + 蒙 古 + 1000 Ha + + Монголия + + 2009 + توغروغ + + Mongolia + 图格里克 + + Mongolia + 蒙古国 + + mongol + Mongolia + millions of US dollars + mongolo + togrog + Mongolia + 2007 + MNG + la Mongolie + FAO estimate + منغوليا + 蒙古的 + منغوليا + 4908 + Mongolia + Estimated + + 2008 + 1985 + 9999 + mongol + togrog + 141 + монгольский + 5259.0 + 52.15 + منغولي + + Manual Estimation + + Mongolie + منغوليا + Монголия + la Mongolie + 119.92 + 2007 + 87.69 + Tog + tughrik + Manual Estimation + 1000 Ha + + Mongolia + + + Unión Económica y Monetaria del África Occidental + + 西非经济与货币联盟 + Union économique et monétaire ouest-africaine + الاتحاد الاقتصادى والنقدى لغرب أفريقيا + West African Economic and Monetary Union + West African Economic and Monetary Union + UEMAO + 47736 + + UEMOA + WAEMU + + + Unión Económica y Monetaria del África Occidental + + + + + + 9999 + Union économique et monétaire ouest-africaine + Западноафриканское валютно-экономическое сообщество + + + + 1 + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + Cote_dIvoire + 2009 + 1000 Ha + 384 + Côte d'Ivoire + IVC + Côte d'Ivoire + CI + + de Côte d'Ivoire + + 21075.0 + la República de Côte d'Ivoire + + 15396 + جمهورية كوت ديفوار + 2008 + la Côte d'Ivoire + 科特迪瓦共和国 + + Côte d'Ivoire + Кот-д'Ивуар + millions of US dollars + FAO estimate + ivoirien + من جمهورية كوت ديفوار + + + franco CFA (Communauté financière africaine) + ivoriano + 1000 Ha + فرنك الجماعة المالية الأفريقية + Manual Estimation + Côte d'Ivoire + Manual Estimation + Côte d'Ivoire + 2007 + 10.74 + Côte d'Ivoire + + + Repubblica della Côte d'Ivoire + franco CFA + -8.6 + 66 + 20200.0 + Estimated + كوت ديفوار + 4.36 + ивуарский + franc CFA (Communauté financière africaine) + 31800.0 + Côte d'Ivoire + 9999 + франк КФА + 科特迪瓦 + la République de Côte d'Ivoire + 科特迪瓦 + + Ivorian + + 1985 + 科特迪瓦的 / 科特迪瓦人 + + 4027 + -2.49 + CFA franc (Communauté financière africaine) + + Республика Кот-д'Ивуар + Кот-д'Ивуар + + + 1000 + CIV + 非洲法郎 + 107 + + the Republic of Côte d'Ivoire + 23414.0 + كوت ديفوار + 2007 + + + + 安哥拉共和国 + جمهورية أنغولا + ангольский + 2007 + أنغولا + la République d'Angola + 417 + angolano + Angola + kwanza + + 24.08 + 8 + + Angola + Data reported on country official publications or web sites (Official) or trade country files. + Angola + angoleño + kwanza + 57590.0 + + AO + 2008 + + Angolan + 9999 + 1000 Ha + FAO estimate + Республика Ангола + кванза + 18498.0 + + أنغولى + + 1000 + 安哥拉的 / 安哥拉人 + 11.67 + Manual Estimation + AGO + كوانزا + + Kz + Repubblica d'Angola + 1000 Ha + Angola + Ангола + 2009 + Angola + 2007 + 宽扎 + + the Republic of Angola + Ангола + angolais + Angola + 83383.0 + Angola + ANG + kwanza + + + 安哥拉 + + -4.37 + 024 + + kwanza + 124670.0 + + l'Angola + أنغولا + 1985 + + millions of US dollars + la República de Angola + -18.04 + + Angola + Estimated + + 15364 + 7 + 安哥拉 + + + 文莱达鲁萨兰国 + Brunei Darussalam + 527.0 + برونى دار السلام + 文莱的 / 文莱人 + 400.0 + 11.4 + dólar + 2007 + 文莱达鲁萨兰国 + del Brunei + 1000 + 11471.0 + Manual Estimation + + le Brunéi Darussalam + de Brunei Darussalam + Brunei Darussalam + FAO estimate + 40 + + بروني دار السلام + + dollaro del Brunei + دولار + 1985 + Brunei Darussalam + Stato di Brunei Darussalam + dollar + Estimated + Brunéi Darussalam + 19014 + Brunei + BRU + بروني + 9999 + brunéien + Бруней-Даруссалам + Brunei Darussalam + Brunei + 2007 + بروني دار السلام + BRN + + брунейский + Brunei Darussalam + dollar + B$ + 1000 Ha + BN + 1125 + 2007 + Бруней-Даруссалам + + of Brunei Darussalam + 26 + 096 + le Brunéi Darussalam + 1000 Ha + Brunei Darussalam + + 文莱达鲁萨兰国 + доллар + 2009 + Бруней-Даруссалам + millions of US dollars + Manual Estimation + + + + Consejo de Cooperación de los Estados Árabes del Golfo + + + + + Conseil de coopération des États arabes du Golfe + Cooperation Council for the Arab States of the Gulf + 海湾阿拉伯国家合作委员会 + + + Consejo de Cooperación del Golfo + 9999 + + Cooperation Council for the Arab States of the Gulf + CCASG + Совет сотрудничества арабских государств Персидского залива + Conseil de coopération des États arabes du Golfe + CCG + + + rand + + R + la República de Sudáfrica + South African + 202 + Manual Estimation + ZA + 1000 + + 3.33 + + 2007 + sudafricano + 1985 + جمهورية جنوب أفريقيا + Южная Африка + + جنوب أفريقي + Sudáfrica + 南 非 + 南非的 + + 9999 + + sud-africain + sudafricano + جنوب أفريقيا + FAO estimate + Estimated + ранд + -54.47 + la République sud-africaine + Repubblica del Sudafrica + южноафриканский + South_Africa + -22.13 + + 南 非 + راند + 121447.0 + 15535 + 227 + Afrique du Sud + ZAF + 99378.0 + Sudafrica + + 兰 特 + 2008 + 南非共和国 + 710 + + 1000 Ha + Manual Estimation + Южная Африка + 276764.0 + + 1000 Ha + جنوب أفريقيا + 38.0 + the Republic of South Africa + + 2007 + SAF + Sudafrica + + South Africa + Sudáfrica + Южно-Африканская Республика + 2009 + millions of US dollars + + South Africa + l'Afrique du Sud + 50110.0 + 7252 + + + costa-ricien + كوستاريكى + 2007 + 哥斯达黎加共和国 + Costa Rica + 1920 + la República de Costa Rica + le Costa Rica + ¢ + كولون + -87.1 + 5106.0 + Costa Rica + 哥斯达黎加的 / 哥斯达黎加人 + 61 + costarricense + Коста-Рика + Costa Rican + 2007 + + the Republic of Costa Rica + + 1985 + 188 + colón costaricano + COS + la République du Costa Rica + Costa Rica + 2009 + 48 + Repubblica di Costa Rica + + 哥斯达黎加 + 2750.0 + millions of US dollars + коста-риканский + 5.5 + Costa Rica + 2008 + Costa Rica + Manual Estimation + 哥斯达黎加 + + колон + 1000 + costaricano + + كوستاريكا + colón + 15395 + Costa Rica + 11.21 + FAO estimate + CRI + CR + colón + 科 朗 + Estimated + Costa_Rica + + Республика Коста-Рика + 1000 Ha + 4579.0 + جمهورية كوستاريكا + + + 1000 Ha + -82.56 + + كوستاريكا + 9999 + colón + Costa Rica + Manual Estimation + 29834.0 + Коста-Рика + + + + 巴 西 + Brasile + la República Federativa del Brasil + 37 + + + (жен.) бразильянка + 845942.0 + 1000 + الجمهورية الاتحادية البرازيلية + Brazil + la République fédérative du Brésil + 5.26 + -29.3 + -73.99 + real + Brasil + 巴西的 / 巴西人 + + + + Бразилия + + 076 + 2008 + the Federative Republic of Brazil + Brésil + 1985 + 21 + 193734.0 + 1070 + Федеративная Республика Бразилия + FAO estimate + риал + 9999 + Repubblica federativa del Brasile + + real + Brazil + 2009 + Manual Estimation + + R$ + ريالهئال + + BRA + + البرازيل + + Manual Estimation + Brazil + + 1000 Ha + le Brésil + BR + 巴西联邦共和国 + brasileño + BRA + 1000 Ha + + Brasile + millions of US dollars + 263500.0 + Бразилия + 52486 + برازيلي + + 1612539.0 + -33.74 + brasiliano + real brasiliano + 2007 + 雷亚尔 + 巴 西 + brésilien + 2007 + + + el Brasil + Brazilian + Estimated + real + البرازيل + + + Africa Central + 1985 + + 中部非洲 + أفريقيا الوسطى + 9999 + Africa Central + + Afrique centrale + + Центральная Африка + + + middle Africa + 中部非洲 + 84956 + + أفريقيا الوسطى + Africa centrale + أفريقيا الوسطى + middle Africa + 017 + Africa Central + Africa centrale + + Africa centrale + 中部非洲 + + + Afrique centrale + 5102 + middle Africa + + Центральная Африка + Afrique centrale + Центральная Африка + + + + 1 + + + + 1985 + 2007 + franc + Djibouti + DJI + франк + + Djibouti + djiboutien + + la República de Djibouti + Республика Джибути + 9999 + + DJI + + Djibouti + + جيبوتي + 70 + 2008 + + Djibouti + 1000 + 10.91 + فرنك + 1000 Ha + 1000 Ha + 2346 + 吉布提的 / 吉布提人 + franco + Manual Estimation + من جمهورية جيبوتي + de Djibouti + 15401 + + 2007 + of Djibouti + джибутийский + gibutiano + + franco gibutiano + Manual Estimation + 1701.3 + + + 2318.0 + 864.0 + Repubblica di Gibuti + + 43.42 + 法 郎 + Djibouti + + the Republic of Djibouti + Gibuti + 72 + 41.78 + la République de Djibouti + 吉布提 + Djibouti + Djibouti + + millions of US dollars + Gibuti + + جيبوتي + 875.0 + franc + DJ + Джибути + 262 + جمهورية جيبوتي + + + 吉布提共和国 + Джибути + Estimated + 12.71 + 2009 + 吉布提 + FAO estimate + + + euro + 827.0 + 6543 + (из/ житель) Реюньона + REU + 1985 + 留尼汪人/留尼汪的 + يورو + رييونيون + 2007 + Riunione + 欧 元 + 250.0 + Dipartimento della Riunione + + de Reunión + Reunión + Réunion + FAO estimate + 留尼汪 + 1000 Ha + réunionnais + رييونيون + la Réunion + 9999 + 1000 Ha + euro + Data reported on country official publications or web sites (Official) or trade country files. + RE + من ريبونيون + 638 + 206 + евро + REU + + la Réunion + Réunion + 182 + EUR or € + euro + euro + 1000 + 留尼汪 + 19030 + of Réunion + 2007 + Manual Estimation + رييونيون + Réunion + della Riunione + Reunión + Réunion + 留尼汪 + Riunione + 2009 + Reunión + 47.0 + + + + + + + + UN Cartographic Section + + + + + + + 2009 + Guam + 1000 + 101 + 1000 Ha + 19.0 + Manual Estimation + 美元 + Manual Estimation + 88 + Guam + FAO estimate + dólar de EE.UU. + 1985 + Guam + 7927 + 2007 + Guam + 178.0 + + Guam + доллар + dollaro USA + غوامياني + guamien + Guam + (изб житель) Гуама + Guam + GUM + Guam + Guamanian + 关岛人/关岛的 + Guam + Guam + GU + Guam + Guam + di Guam + 54.0 + Guam + + دولار + 9999 + 3408 + 1000 Ha + US dollar + 2007 + dollar des États-Unis + + guameño + 316 + + + di Myanmar + + Myanmar + of Myanmar + 1000 + de Myanmar + اتحاد ميانمار + 101.17 + K + + 2007 + + 50020.0 + 92.2 + ميانمار + ميانماري + 28.54 + l'Union du Myanmar + + Мьянма + 2007 + the Union of Myanmar + Myanmar + 65352.0 + Myanmar + + Myanmar + + kyat + + 1985 + millions of US dollars + 28 + la Unión de Myanmar + + Unione di Myanmar + le Myanmar + 2008 + 15456 + киат + Союз Мьянма + kyat + 1155 + Myanmar + 1000 Ha + 104 + + 缅 甸 + MMR + 1000 Ha + + MM + мьянманский + 缅甸的 + 2009 + Official data reported on FAO Questionnaires from countries + Official data reported on FAO Questionnaires from countries + + 9999 + ميانمار + + FAO estimate + كيات + Myanmar + 11984.0 + rce/Myanmar + MYA + Estimated + 171 + 缅甸联邦 + Мьянма + + 缅 甸 + du Myanmar + 9.6 + Myanmar + + + 173 + 526966.0 + 15472 + 1000 Ha + 兹罗提 + 2007 + + بولندا + FAO estimate + 16177.0 + 24.15 + بولندا + the Republic of Poland + Polonia + la República de Polonia + польский + 54.84 + + 波兰的 + + Республика Польша + Polonia + millions of US dollars + Estimated + Repubblica di Polonia + polonais + + + zloty + + polacco + 9999 + + 2008 + Польша + POL + + Polonia + 2009 + + + 616 + POL + polaco + Poland + بولندي + 198 + جمهورية بولندا + zloty + 1985 + 1000 Ha + PL + 6055 + Poland + زلوتى + 2007 + 30425.0 + Польша + 波兰共和国 + 14.12 + + Polonia + злотый + Official data reported on FAO Questionnaires from countries + + Polish + + 49.04 + ZI + 1000 + Pologne + 波 兰 + Data reported on country official publications or web sites (Official) or trade country files. + 波 兰 + la République de Pologne + + la Pologne + 38074.0 + Poland + + + Isole Cook + + 4.0 + 184 + the Cook Islands + + 9999 + 库克群岛 + + Cook Islands + FAO estimate + $NZ + جزر كوك + Isole Cook + + 1000 Ha + dollar néo-zélandais + جزر كوك + -165.83 + New Zealand dollar + 2009 + Data reported on country official publications or web sites (Official) or trade country files. + + + 1000 + -8.96 + des Îles Cook + Острова Кука + 1000 Ha + -21.95 + Isole Cook + Îles Cook + 1850 + 15394 + delle Isole Cook + Islas Cook + las Islas Cook + 2007 + دولار نيوزيلندي + 新西兰元 + 20.0 + COK + dollaro neozelandese + 库克群岛 + Manual Estimation + 库克群岛 + + CKI + من جزر كوك + 1985 + les Îles Cook + of the Cook Islands + les Îles Cook + 库克群岛的 / 库克群岛人 + 60 + the Cook Islands + 2007 + جزر كوك + Cook_Islands + 47 + + dólar neozelandés + de las Islas Cook + 24.0 + Острова Кука + (из/житель) Островов Кука + CK + -157.32 + новозеландский доллар + las Islas Cook + Острова Кука + + + BDI + -2.31 + 法 郎 + 30.85 + Repubblica di Burundi + burundiano + 29 + بوروندي + 2007 + 8303.0 + 布隆迪的 / 布隆迪人 + бурундийский + بوروندي + burundese + 2009 + 布隆迪 + + 2008 + le Burundi + FAO estimate + la República de Burundi + 43 + 15382 + Manual Estimation + + + + Burundi + BDI + franco burundese + بوروندي + Бурунди + + 9999 + Manual Estimation + of Burundi + 28.99 + franc + -4.47 + 108 + 1000 Ha + Бурунди + Республика Бурунди + 2568.0 + F Bu + 1159 + + Burundi + جمهورية بوروندي + the Republic of Burundi + + Burundi + + + millions of US dollars + + franco + franc + 1000 Ha + + + Estimated + 2295.0 + فرنك + Burundi + la République du Burundi + 1000 + burundais + BI + Burundi + + 布隆迪共和国 + + + 1985 + франки + + 布隆迪 + Burundi + 1163.0 + 2007 + Burundi + Burundi + + + peso + 2517.0 + Estimated + République dominicaine + доминиканский + 2364 + 2009 + la República Dominicana + 1985 + 72 + the Dominican Republic + + Доминиканская Республика + Repubblica dominicana + الجمهورية الدومينيكية + 多米尼加共和国 + الجمهورية الدومينيكية + la République dominicaine + 多米尼加共和国 + 4832.0 + + + دومينيكي + Repubblica dominicana + Manual Estimation + 15403 + 多米尼加的 / 多米尼加人 + 19.93 + 1000 Ha + الجمهورية الدومينيكية + Доминиканская Республика + 多米尼加共和国 + + DOM + + 1000 + -72.01 + Repubblica dominicana + Dominican Republic + peso + FAO estimate + 比 索 + Manual Estimation + песо + 2007 + بيسو + Dominica + 2007 + 214 + + millions of US dollars + 1000 Ha + 56 + Dominican Republic (the) + República Dominicana + 10090.0 + Dominican + dominicano + + 17.54 + + 9999 + Доминиканская Республика + 2008 + peso + DOM + -68.33 + DO + peso dominicano + la République dominicaine + dominicain + dominicano + 45790.0 + + la República Dominicana + + + Saint Kitts and Nevis + 1985 + Saint-Kitts-et-Nevis + Сент-Китс и Невис + + 17.09 + 圣基茨和尼维斯 + Сент-Китс и Невис + Saint-Kitts-et-Nevis + سانت كيتس ونيفيس + FAO estimate + STK + 188 + من سانت كيتس ونيفس + + + Saint Kitts y Nevis + Federazione di Saint Cristopher e Nevis + + Manual Estimation + 东加勒比元 + 2007 + Saint Christopher e Nevis + 52.0 + KNA + KN + 1000 Ha + + dollar des Caraïbes orientales + 圣基茨和尼维斯的 + Estimated + dollaro dei Caraibi orientali + 15477 + 8808 + -62.54 + dólar del Caribe oriental + 2008 + 2009 + di Saint Cristopher e Nevis + Saint_Kitts_and_Nevis + EC$ + 17.42 + + Saint Kitts and Nevis + EC dollar (East Caribbean dollar) + millions of US dollars + 5.0 + Manual Estimation + 540.0 + سانت كيتس ونيفيس + Saint Christopher e Nevis + de Saint Kitts y Nevis + Saint Kitts y Nevis + de Saint-Kitts-et-Nevis + Saint-Kitts-et-Nevis + 1000 Ha + + سانت كيتس ونيفيس + دولار شرق الكاريبى + 圣基茨和尼维斯 + + 1000 + Saint Kitts and Nevis + (из/житель) Сент-Китса и Невиса + 26.0 + 208 + of Saint Kitts and Nevis + 9999 + 2007 + Сент-Китс и Невис + 659 + Saint Kitts y Nevis + + 圣基茨和尼维斯 + восточнокарибские доллары + -62.87 + + + + + + + + тала + Самоа + -172.83 + Samoa + -14.05 + samoan + FAO estimate + -171.45 + ساموا + Samoa + 6772 + + 2008 + WSM + + + 萨摩亚的 + دولة ساموا المستقلة + -13.44 + samoano + Samoa + 212 + samoano + 1985 + 萨摩亚 + + 2007 + Самоа + 1000 Ha + + ساموا + 523.0 + l'État indépendant du Samoa + 179.0 + Samoa + 15480 + Samoa + + + + 882 + 283.0 + el Estado Independiente de Samoa + SAT + 2007 + 2009 + 9999 + millions of US dollars + ساموي + Stato indipendente di Samoa + Manual Estimation + le Samoa + 萨摩亚 + Samoa + Manual Estimation + Независимое Государство Западное Самоа + Samoan + Samoa + + 塔 拉 + самоанский + Estimated + 1000 Ha + تالا + 86.0 + 萨摩亚独立国 + Samoa + WS + SAM + 244 + the Independent State of Samoa + 1000 + + + + AGROVOC http://www.fao.org/aims/ + + + + + 1985 + بولينيزيا الفرنسية + Polynésie française + franco CFP (Colonies françaises du Pacifique) + polinesiano + + Manual Estimation + 法属波利尼西亚 + 法属波利尼西亚 + Polinesia Francesa + 波利尼西亚人/波利尼西亚的 + франк КФП + بولينيزيا الفرنسية + Polinesia francese + 1000 Ha + French Polynesia + PYF + من بولينيزيا الفرنسية + Polinesia Francesa + 1000 + 2009 + 366.0 + French Polynesia + franc CFP (Colonies françaises du Pacifique) + 269.0 + la Polynésie française + polinesio + + FAO estimate + + Polinesia francese + Polinesia Francesa + 太平洋法郎 + French_Polynesia + 45.0 + 1000 Ha + Polynesian + la Polynésie française + 2007 + CFP franc (Colonies françaises du Pacifique) + 3094 + French Polynesia + 9999 + FPL + 258 + 19017 + полинезиец + Manual Estimation + Territorio della Polinesia francese + 70 + 2007 + 87 + polynésien + franco CFP + فرنك المستعمرات الفرنسية فى المحيط الهادى + PF + بولينيزيا الفرنسية + 法属波利尼西亚 + + + + 1 + + + + BF + + franco CFA (Communauté financière africaine) + 233 + 8081 + 7948.0 + 布基纳法索 + 布基纳法索的 / 布基纳法索人 + 2009 + 1000 + FAO estimate + 2007 + 布基纳法索 + 1000 Ha + Burkina Faso + + Burkina Faso + + le Burkina Faso + + of Burkina Faso + BFA + بوركينا فاسو + + + Burkina Faso + 2008 + franco CFA + millions of US dollars + + + 15757.0 + Manual Estimation + Estimated + Burkina Faso + 27360.0 + + 2007 + بوركيني، من بوركينا فاسو + 2.4 + Буркина-Фасо + burkinabé + + 15.08 + 9.41 + Буркина-Фасо + Manual Estimation + + Burkina Faso + + 9999 + + le Burkina Faso + + 42 + CFA franc (Communauté financière africaine) + + بوركينا فاسو + Burkina Faso + 非洲法郎 + 1985 + بوركينا فاسو + Burkina Faso + -5.52 + франк КФА + + 854 + 15381 + Burkina_Faso + 1000 Ha + franc CFA (Communauté financière africaine) + Burkina Faso + 11260.0 + Burkina Faso + + فرنك الجماعة المالية الأفريقية + BKF + + + + de Burkina Faso + Буркина-Фасо + 布基纳法索 + буркинийский + Burkina Faso + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + of the Holy See + euro + 9999 + Святейший Престол + + 欧 元 + VAT + FAO estimate + HLS + 19021 + 1985 + la Santa Sede + Santa Sede + Holy See + Santa Sede + من (أو تابع لـ) الكرسي الرسولي + le Saint-Siège + + le Saint-Siège + евро + 教廷 + الكرسي الرسولي + du Saint-Siège + 110 + 3645 + (от) Святого Престола + Holy See + 教廷的 + la Santa Sede + + Святейший Престол + 1.0 + euro + الكرسي الرسولي + della Santa Sede + + VA + 教廷 + 1000 + euro + de la Santa Sede + Святейший Престол + Holy_See_(Vatican_City) + Holy See + يورو + euro + + Saint-Siège + 94 + Santa Sede + 2009 + EUR or € + 教廷 + الكرسي الرسولي + Santa Sede + 336 + + + 15486 + 225 + 2008 + 所罗门群岛的 + + Îles Salomon + 090 + 168.83 + Соломоновы Острова + 523.0 + salomonais + 7230 + + + دولار + + Соломоновы Острова + dólar + of the Solomon Islands + Manual Estimation + 84.0 + Solomon_Islands + + 2799.0 + 1000 Ha + SLB + 所罗门群岛 + les Îles Salomon + 9999 + SB + سليماني + dollaro delle Isole Salomone + dollar + 2007 + Solomon Islands + Соломоновы Острова + -5.42 + جزر سليمان + Solomon Islands + Isole Salomone + dollar + les Îles Salomon + 所罗门群岛 + Isole Salomone + جزر سليمان + 25 + Estimated + 1000 Ha + + 2009 + + + 所罗门群岛 + FAO estimate + 1000 + 1985 + Manual Estimation + de las Islas Salomón + + (из/житель) Соломоновых Островов + millions of US dollars + SOI + + las Islas Salomón + 155.51 + delle Isole Salomone + + + доллар + 2007 + Islas Salomón + + Isole Salomone + -12.29 + Solomon Islands + las Islas Salomón + جزر سليمان + 647.0 + SI$ + + + + 1 + + + + + south-eastern Asia + Asia sudoriental + Asia du sud-est + Юго-Восточная Азия + جنوب شرقي آسيا + 东南亚 + + Юго-Восточная Азия + Asia sud orientale + + 9999 + Юго-Восточная Азия + + 东南亚 + 1985 + south-eastern Asia + Asia du sud-est + + + + south-eastern Asia + + + + Asia sudoriental + Asia sud orientale + جنوب شرقي آسيا + 84959 + Asia sud orientale + Asia du sud-est + جنوب شرقي آسيا + Asia sudoriental + 035 + + 5304 + + 东南亚 + + + 塞尔维亚和黑山 + Serbia and Montenegro + + Serbia_and_Montenegro + Serbie-Monténégro + 塞尔维亚和黑山 + 891 + Serbia y Montenegro + + 2006 + 219 + Serbia y Montenegro + YUG + Serbie-Monténégro + 186 + Serbia y Montenegro + 塞尔维亚和黑山 + + + SCG + 37896 + CS + Serbia and Montenegro + Serbie-Monténégro + 2003 + + + + 1 + + + + 1400091.0 + Estimated + + Manual Estimation + 46 + le Canada + Data reported on country official publications or web sites (Official) or trade country files. + 1000 Ha + كندا + 加拿大 + el Canadá + 加拿大 + canadiense + dólar + كندى + millions of US dollars + + 33 + 1985 + + CAN + + Канада + 1236 + 2009 + канадский + + 1000 + 83.21 + el Canadá + 67600.0 + Canada + canadien + Canada + -141.0 + Canada + 33573.0 + 加拿大 + 909351.0 + Canada + 2007 + Канада + CAN + FAO estimate + Canada + Canadian + Канада + 9999 + 41.71 + dollar + 15385 + 2008 + + доллар + + le Canada + canadese + dollaro canadese + dollar + Can$ + Canada + 加拿大的 / 加拿大人 + دولار + CA + كندا + 124 + كندا + Canadá + + -52.62 + 1000 Ha + Canada + 2007 + Canada + + + + 1 + + + + + 1 + + + + 24.0 + Chad + chadiano + la República del Chad + 39 + 15388 + 13.47 + + franc CFA (Communauté financière africaine) + millions of US dollars + TD + + + جمهورية تشاد + 乍得的 + 148 + + + + 1487 + + + 乍 得 + el Chad + + Estimated + + 乍得共和国 + 2009 + Chad + CHD + 1000 Ha + la République du Tchad + + فرنك الجماعة المالية الأفريقية + 49330.0 + Tchad + + 1985 + le Tchad + Chad + 8361.0 + Чад + + 50 + FAO estimate + 7.45 + تشادي + + франк КФА + + + 11206.0 + 2007 + 乍 得 + tchadien + Республика Чад + Ciad + Чад + Chad + تشاد + franco CFA (Communauté financière africaine) + 1000 Ha + Chadian + + 1000 + franco CFA + 23.45 + 2007 + Manual Estimation + CFA franc (Communauté financière africaine) + чадский + Manual Estimation + the Republic of Chad + + ciadiano + 2008 + 125920.0 + + TCD + Repubblica del Ciad + Ciad + 9999 + + 非洲法郎 + تشاد + + + + + + + + + 1 + + + + + 2007 + afghani + 9999 + Афганистан + 2009 + 1000 Ha + + Afghan + 2007 + Afghanistan + + + 004 + AFG + 1000 Ha + 阿富汗 + Afghanistan + 1985 + + 阿富汗的 / 阿富汗人 + أفغاني + أفغانساتى + Афганистан + 2 + + The Islamic Republic of Afghanistan + 163 + + 阿富汗尼 + Official data reported on FAO Questionnaires from countries + Afganistán + afgano + 38.48 + + el Afganistán + AFG + Af + 2007 + millions of US dollars + 1 + afghani + + la République islamique d'Afghanistan + أفغانستان + 28150.0 + 10170.0 + l'Afghanistan + afgano + la República Islámica del Afganistán + + Estimated + Afghanistan + + 29.38 + + Afghanistan + афганский + + 阿富汗伊斯兰共和国 + 65223.0 + 阿富汗 + جمهورية أفغانستان الإسلامية + афгани + AF + Manual Estimation + أفغانستان + afghan + 1000 + Afghanistan + afghani + + + + + 38661.0 + afgani + la Repubblica islamica dell'Afghanistan + 60.48 + 74.88 + Исламская республика Афганистан + + Afghanistan + 15362 + FAO estimate + + + millions of US dollars + 阿根廷 + Argentina + + peso + аргентинский + la République argentine + Manual Estimation + la República Argentina + peso + 阿根廷的 / 阿根廷人 + أرجنتينى + Argentina + -73.58 + 1000 + + 603 + песо + + 2008 + 2007 + Аргентина + 1000 Ha + Argentina + بيسو + 阿根廷 + Argentine + -53.59 + 12 + ARG + la Argentina + 15366 + + 比 索 + Argentina + l'Argentine + 032 + Argentina + + 9 + 2009 + peso argentino + AR + argentin + الأرجنتين + Аргентина + Аргентинская Республика + Repubblica argentina + peso + + 328385.0 + FAO estimate + argentino + جمهورية الأرجنتين + 1985 + argentino + + ARG + الأرجنتين + Argentine + + the Argentine Republic + 2007 + + + 1000 Ha + + 40276.0 + -55.05 + + Estimated + 133350.0 + 9999 + Manual Estimation + -21.78 + 阿根廷共和国 + $Arg + 273669.0 + Argentina + + + + + + + + + + + + + Caribbean Community + + + CARICOM + Comunidad del Caribe + + + + 加勒比共同体 + 9999 + + + المجموعة الكاريبية + + Communauté des Caraïbes + Caribbean Community and Common Market + + + CARICOM + + Карибское сообщество + + + CARICOM + Comunidad del Caribe + Communauté des Caraïbes + 47982 + + + 1000 Ha + 226.0 + euro + Guyane française + 1000 + EUR or € + 法属圭亚那人/法属圭亚那的 + 法属圭亚那 + euro + + French Guiana + 2007 + 法属圭亚那 + евро + 1985 + + Guayana francesa + guyanais + French Guiana + French Guiana + 2009 + Guayana francesa + 8815.0 + (из/ житель) Французской Гвианы + 19016 + euro + Dipartimento della Guiana francese + FGU + 86 + 9999 + من غيانا الفرنسية + la Guyane française + 2007 + Guayana francesa + 欧 元 + 69 + 254 + la Guyane française + غوايانا الفرنسية + + + della Guyana francese + يورو + GUF + Guiana francese + غوايانا الفرنسية + Guiana francese + 法属圭亚那 + غوايانا الفرنسية + 3093 + 1000 Ha + FAO estimate + 23.0 + of French Guiana + euro + Manual Estimation + GF + de Guayana francesa + + + Южная Америка + Amérique du Sud + 005 + América del Sur + + América del Sur + 9999 + + 南美洲 + + + + South America + + Amérique du Sud + Amérique du Sud + أمريكا الجنوبية + 5207 + America del Sud + 南美洲 + 1985 + + 84957 + America del Sud + أمريكا الجنوبية + Южная Америка + America del Sud + + أمريكا الجنوبية + + + 南美洲 + América del Sur + South America + + + Южная Америка + + South America + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + + 1000 + millions of US dollars + 26.62 + MDA + la República de Moldova + молдавский + 列 伊 + + moldovo + Moldavia + 48.49 + 3289.0 + جمهورية مولدوفا + République de Moldova + 摩尔多瓦的 + 摩尔多瓦共和国 + 146 + República de Moldova + + Республика Молдова + + جمهورية مولدوفا + 摩尔多瓦共和国 + moldove + MDL + République de Moldova + 2007 + Republic of Moldova + 2009 + ليّ + 2007 + лей + Official data reported on FAO Questionnaires from countries + FAO estimate + 20524 + 6048.0 + + 2483.0 + + 9999 + leu moldavo + República de Moldova + 165 + the Republic of Moldova + + Repubblica di Moldova + مولدوفي + leu + Republic of Moldova + 45.46 + la République de Moldova + + Республика Молдова + MOL + 2008 + + 30.16 + 33245 + Official data reported on FAO Questionnaires from countries + 498 + Республика Молдова + 1000 Ha + 1991 + Moldavia + Moldova + moldavo + + MD + + Estimated Excludes data for Transnistria. + 3604.0 + Moldovan + 1000 Ha + 摩尔多瓦共和国 + جمهورية مولدوفا + + + 10982.0 + 2009 + 2007 + 2007 + 192 + 23.28 + CUB + 19.83 + Estimated + 11204.0 + Cuba + + peso + cubain + Cuba + peso cubano + 49 + Cuba + CUB + the Republic of Cuba + -84.95 + Куба + 1000 + Cuba + peso + Республика Куба + 1985 + كوبي + 2008 + + كوبا + 15397 + -74.14 + بيسو + la República de Cuba + 比 索 + кубинский + peso + 6620.0 + millions of US dollars + $ + песо + 古 巴 + Cuba + Куба + + + + Cuba + 古巴共和国 + la République de Cuba + 1000 Ha + Official data reported on FAO Questionnaires from countries + جمهورية كوبا + + 9999 + 63 + + Repubblica di Cuba + 1997 + 古巴的 / 古巴人 + Cuba + 古 巴 + Cuba + cubano + كوبا + CU + cubano + Cuba + FAO estimate + Cuban + 1000 Ha + + + 列支敦士登公国 + 438 + Liechtenstein + + 1000 Ha + + 2007 + Liechtenstein + Лихтенштейн + Лихтенштейн + LIE + لختنشتاين + de Liechtenstein + Manual Estimation + 36.0 + лихтенштейнский + + 6.0 + Data reported on country official publications or web sites (Official) or trade country files. + 146 + LI + 列支敦士登的 + of Liechtenstein + Княжество Лихтенштейн + لختنشتاين + Estimated + 瑞士法郎 + 4315 + franc + Liechtenstein + 16.0 + 1000 + le Liechtenstein + del Liechtenstein + + FAO estimate + the Principality of Liechtenstein + Liechtenstein + la Principauté du Liechtenstein + millions of US dollars + ليختنشتايني + 2008 + 2007 + 列支敦士登 + liechtensteinois + LIE + франк + Liechtenstein + إمارة لختنشتاين + Liechtenstein + فرنك سويسرى + franc suisse + 列支敦士登 + 19024 + + 125 + + Liechtenstein + Principato del Liechtenstein + Liechtenstein + 1000 Ha + franco + 9999 + 2009 + el Principado de Liechtenstein + 1985 + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + + Папуа-Новая Гвинея (вторая часть скл.) + بابوا غينيا الجديدة + la Papouasie-Nouvelle-Guinée + كينا + papouan-néo-guinéen + 168 + PNG + 15468 + Stato indipendente di Papua Nuova Guinea + Manual Estimation + + 8168.0 + + + + + Папуа-Новая Гвинея (вторая часть скл.) + millions of US dollars + kina + PNG + кина + Papua New Guinea + 2007 + Papua Nuova Guinea + بابوا غينيا الجديدة + + 1000 + بابوا غينيا الجديدة + Papua Nueva Guinea + PG + kina + 192 + 1000 Ha + Papua Nueva Guinea + 598 + папуа-новогвинейский + Papua New Guinea + + Manual Estimation + of Papua New Guinea + la Papouasie-Nouvelle-Guinée + 巴布亚新几内亚 + Papua New Guinea + Papouasie-Nouvelle-Guinée + 巴布亚新几内亚 + Papua Nueva Guinea + FAO estimate + 2007 + + Papua_New_Guinea + 9999 + Estimated + 巴新的 + + + 2009 + 5555 + Папуа-Новая Гвинея (вторая часть скл.) + 1000 Ha + 6732.0 + K + 45286.0 + kina + 2008 + papua + 1040.0 + + de Papua Nueva Guinea + من بابوا غينيا الجديدة + 巴布亚新几内亚 + 1985 + -11.66 + Papua Nuova Guinea + -1.13 + kina + 159.49 + 140.87 + 基 那 + + + 122019.0 + + the Republic of Mali + maliense + 马 里 + + + maliano + 13010.0 + 9999 + + Manual Estimation + فرنك الجماعة المالية الأفريقية + + جمهورية مالي + Mali + 25.0 + 1985 + 2009 + + MLI + Mali + 4.24 + 10.16 + Malí + ML + + MLI + + millions of US dollars + Мали + Manual Estimation + 155 + 马里的 + مالي + + 466 + 马里共和国 + franco CFA + مالي + + malien + Malí + + франк КФА + Malian + 15448 + 1000 + 2008 + Mali + 133 + Estimated + + 2007 + + + + + 非洲法郎 + CFA franc (Communauté financière africaine) + + -12.24 + 马 里 + Мали + 39619.0 + Mali + la République du Mali + + Mali + 4540 + Mali + 1000 Ha + 8740.0 + + 2007 + franc CFA (Communauté financière africaine) + + Repubblica del Mali + FAO estimate + + 1000 Ha + مالي + Республика Мали + franco CFA (Communauté financière africaine) + le Mali + малийский + la República de Malí + + + + 1 + + + + + من ترينيداد وتوباغو + 1985 + (из/житель) Тринидада и Тобаго + 54.0 + + + TRI + of Trinidad and Tobago + Тринидад и Тобаго (ед. число, муж. род) + the Republic of Trinidad and Tobago + Trinidad and Tobago + 2007 + Trinité-et-Tobago + 7933 + de Trinidad y Tabago + 1000 + la República de Trinidad y Tabago + la République de Trinité-et-Tobago + 特立尼达和多巴哥共和国 + ترينيداد وتوباغو + доллар + -60.52 + Республика Тринидад и Тобаго + + 2008 + 15499 + + دولار + la Trinité-et-Tobago + 9999 + + dollar + 1000 Ha + Trinidad_and_Tobago + جمهورية ترينيداد وتوباغو + -61.93 + + Тринидад и Тобаго (ед. число, муж. род) + TT$ + Repubblica di Trinidad e Tobago + FAO estimate + + 2009 + Estimated + TT + 246 + Trinidad e Tobago + di Trinidad e Tobago + Manual Estimation + 780 + Official data reported on FAO Questionnaires from countries + ترينيداد وتوباغو + 特立尼达和多巴哥 + millions of US dollars + Trinidad y Tabago + Trinidad y Tabago + 23898.0 + 2007 + dollaro di Trinidad e Tobago + 1000 Ha + Trinidad and Tobago + + 220 + 1339.0 + TTO + 513.0 + + Trinidad e Tobago + dollar + 10.04 + de la Trinité-et-Tobago + 特立尼达和多巴哥 + 特多的 + dólar + 11.35 + + + + + + + أوروبا الشرقية + 9999 + + + Europe de l'Est; Europe orientale + Восточная Европа + Europa orientale + + + Europa oriental + + Europa oriental + + + Europe de l'Est; Europe orientale + 东欧 + 84916 + eastern Europe + Europa orientale + 5405 + 151 + + Восточная Европа + 东欧 + أوروبا الشرقية + 东欧 + + + Europa orientale + eastern Europe + Восточная Европа + 1993 + Europa oriental + eastern Europe + أوروبا الشرقية + + Europe de l'Est; Europe orientale + + + + 1 + + + + + + 23837.0 + + ghanés + ghaniano + 加纳共和国 + ghanéen + the Republic of Ghana + 加纳的 + la République du Ghana + 9999 + cedi + + 11.18 + Гана + + ¢ + 15415 + Estimated + 4.74 + ганский + 加 纳 + 2007 + millions of US dollars + 1985 + cedi + GHA + + 22754.0 + 塞 地 + la República de Ghana + Manual Estimation + 2007 + Ghana + FAO estimate + GH + Ghana + جمهورية غانا + + + + 2008 + غاني + Ghana + + cedi + le Ghana + Repubblica del Ghana + سيدى + седи + Республика Гана + 3253 + 1.19 + 1000 + Ghana + غانا + + Ghana + -3.25 + غانا + 288 + Manual Estimation + 2009 + GHA + 1000 Ha + 16123.0 + Ghana + Ghanaian + 14850.0 + Ghana + cedi + Гана + 1000 Ha + + + 81 + 94 + Ghana + 加 纳 + + + + + دولة جزرية صغيرة نامية + + + + + + + + + + 1991 + + 1310 + + + + + 小岛屿发展中国家 + 378 + 小岛屿发展中国家 + + pequeños Estados insulares en desarrollo + SIDS + + + + petits États insulaires en développement + малое островное развивающееся государство + الدول النامية الجزرية الصغيرة + + + + 小岛屿发展中国家 + 722 + МОРС + + + + + + + + + + + Small Island Developing States + + + + малые островные развивающиеся страны + petits États insulaires en développement + + + petits États insulaires en développement + + 9999 + small island developing States + + + UN -OHRLLS http://www.un.org/special-rep/ohrlls/sid/default.htm + + + SIDS + + + الدول النامية الجزرية الصغيرة + PEID + + Piccoli stati insulari in via di sviluppo + + PEID + + + + + + + + + + + + + + ISO 3166-1 http://www.iso.org/iso/country_codes/iso_3166_code_lists.htm + + + + 110 + اليابان + Japan + 392 + Япония + Giappone + + 日 本 + 45.52 + 4650.0 + FAO estimate + + le Japon + 4039 + 1985 + 15434 + 日本国 + 146.02 + yen + + Japon + 24.04 + ياباني + ين + JP + 1000 + 126 + yen + japonais + японский + el Japón + Япония + 2009 + japonés + 9999 + 127156.0 + Estimated + yen + JPN + اليابان + 1000 Ha + JPN + иена [скл.] + Japan + 36450.0 + le Japon + 日本的 + 122.93 + Giappone + + el Japón + millions of US dollars + + yen + 2008 + Japan + 1000 Ha + + Official data reported on FAO Questionnaires from countries + 4909272.0 + giapponese + 日 本 + اليابان + 2007 + Giappone + Япония + 2007 + Japón + Japan + Japanese + 元(圆)圆 + + + ABW + + 14 + 9999 + 532 + أروبا + 22.0 + + + ARU + Aruba + 1986 + AW + Aruba + Aruba + + 79203 + 650.0 + 阿鲁巴岛 + + + 托克劳 + Tokelau + New Zealand dollar + دولار نيوزيلندى + 新西兰元 + dollaro neozelandese + 1.0 + 244 + Tokelau + 19035 + новозеландский доллар + 772 + Tokélaou + dólar neozelandés + TKL + جزر توكيلاو + Tokelau + 2009 + Tokelau + 9999 + of Tokelau + (из/ житель) Токелау + Tokelau + dollar néo-zélandais + Tokelau + Tokelau + Tokélaou + tokélaouan + Tokelau + من جزر توكيلاو + Tokélaou + 1000 Ha + Tokelau + 托克劳 + FAO estimate + 托克劳 + 托克劳人/托克劳的 + + جزر توكيلاو + tokelauano + TK + 1985 + Data reported on country official publications or web sites (Official) or trade country files. + 1.0 + 1000 + 218 + جزر توكيلاو + $NZ + de Tokelau + TOK + + 244 + 2007 + Tokelau + + + + ميلانيزيا + Melanesia + 美拉尼西亚 + Mélanésie + + 美拉尼西亚 + 1985 + Melanesia + ميلانيزيا + Melanesia + Mélanésie + ميلانيزيا + Меланезия + 9999 + Melanesia + Melanesia + Melanesia + 5502 + Меланезия + + + 美拉尼西亚 + Melanesia + 84963 + Melanesia + 054 + Меланезия + + Mélanésie + Melanesia + + + + UN Cartographic Section + + + + + + + + + + + + + + 1000 Ha + 40180.0 + 突尼斯的 + динар + la Tunisie + 2007 + Manual Estimation + دينار + 15500 + Tunisian + Estimated + + dinar + Tunisia + 2009 + تونسي + TN + Tunisia + 2007 + + Tunisia + Тунисская Республика + + 9826.0 + Tunisie + 突尼斯共和国 + the Republic of Tunisia + 248 + 突尼斯 + Тунис + dinaro tunisino + + la República de Túnez + 222 + 7.52 + Túnez + 8007 + + 1000 Ha + tunisien + تونس + tunecino + TUN + 2008 + + 788 + Manual Estimation + الجمهورية التونسية + tunisino + تونس + 突尼斯 + + тунисский + millions of US dollars + Repubblica tunisina + FAO estimate + + la République tunisienne + 15536.0 + 第纳尔 + + Tunisia + 1000 + 37.54 + Túnez + 9999 + 30.24 + TUN + 1985 + D + 11.59 + Тунис + + Tunisia + 10272.0 + + + + 2175 + 720 + + Democratic_Yemen + Democratic_Yemen + 1985 + 1990 + + + + + Intergovernmental Authority on Development + Intergovernmental Authority on Drought and Development + Autoridad Intergubernamental sobre el Desarrollo + + + + Australie et Nouvelle-Zélande + Australia y Nueva Zelandia + + 澳大利亚和新西兰 + Australia y Nueva Zelandia + Australia e Nuova Zelanda + 84958 + + أستراليا ونيوزيلندا + 澳大利亚和新西兰 + Australia and New Zealand + 澳大利亚和新西兰 + أستراليا ونيوزيلندا + أستراليا ونيوزيلندا + Австралия и Новая Зеландия + Australia and New Zealand + 5501 + Австралия и Новая Зеландия + 9999 + Australia and New Zealand + Australia e Nuova Zelanda + Australia e Nuova Zelanda + Australia y Nueva Zelandia + 1985 + Australie et Nouvelle-Zélande + Australie et Nouvelle-Zélande + 053 + Австралия и Новая Зеландия + + + + 1 + + + + + + + + western Asia + + + Asie occidentale; Asie de l'Ouest + + آسياالغربية + Asia occidentale + + Asia occidental + + Западная Азия + 西亚 + 145 + 西亚 + + Asia occidental + Asia occidentale + + آسياالغربية + + + + Западная Азия + + Asia occidentale + + 15264 + 1991 + Asie occidentale; Asie de l'Ouest + 9999 + Asia occidental + آسياالغربية + + Asie occidentale; Asie de l'Ouest + + + 5305 + Западная Азия + + western Asia + 西亚 + + + western Asia + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + 安第斯共同体 + CAN + Андское сообщество + Communauté Andine + + 2006 + CAN + 9999 + + Andean Community + + + 56313 + مجموعة الأنديز + Comunidad Andina + CAN + Comunidad Andina + + http://en.wikipedia.org/wiki/Andean_Community_of_Nations + Communauté Andine + Andean Community + + + + Data reported on country official publications or web sites (Official) or trade country files. + millions of US dollars + 71.0 + 50.75 + 2007 + + 9999 + 卡塔尔 + ريال + катарский + قطري + 2009 + qatariano + دولة قطر + Катар + the State of Qatar + riyal + 26.16 + 1409.0 + FAO estimate + 51.63 + 24.47 + of Qatar + 2007 + le Qatar + риал + Государство Катар + Manual Estimation + 里亚尔 + + 1000 + 179 + Stato del Qatar + Qatar + 634 + + Qatar + Qatar + 卡塔尔国 + 1985 + QAT + 卡塔尔的 + Qatar + + 卡塔尔 + 6395 + 52722.0 + QA + 1000 Ha + Qatar + قطر + el Estado de Qatar + qatarien + Катар + 1159.0 + 201 + + l'État du Qatar + + QAT + Qatar + rial qatariano + قطر + Estimated + de Qatar + Qatar + Qatar + 15474 + 2007 + QR + + 1000 Ha + + + 津巴布韦的 + Zimbabwe + 津巴布韦 + 2008 + Manual Estimation + Zimbabwe + Zimbabwean + + -22.42 + Республика Зимбабве + ZIM + جمهورية زمبابوي + millions of US dollars + Repubblica dello Zimbabwe + 1985 + زمبابوي + Z$ + + 15450.0 + Zimbabwe + 1000 Ha + 2009 + 津巴布韦 + доллар + 12523.0 + zimbabwéen + la République du Zimbabwe + Зимбабве + Зимбабве + 33.05 + 25.24 + دولار + + Manual Estimation + 181 + + 津巴布韦共和国 + 2007 + زمبابوي + Zimbabwe + + Zimbabwe + le Zimbabwe + 8516 + ZW + + + the Republic of Zimbabwe + зимбабвийский + 9999 + Zimbabwe + la República de Zimbabwe + 2007 + ZWE + zimbabwano + 1000 Ha + + + + + zimbabwense + + Zimbabwe + FAO estimate + dollar + + 1000 + Estimated + 716 + + 38685.0 + + + + 271 + -15.61 + 15515 + زمبابوي + Zimbabwe + + + Philippines + Filipinas + Repubblica delle Filippine + الفلبين + 2009 + Filippine + Manual Estimation + Philippine + 15471 + Philippines + Manual Estimation + 9999 + 1000 Ha + philippin + جمهورية الفلبين + 菲律宾的 + the Philippines + Филиппины + the Republic of the Philippines + + 比 索 + Filippine + 2007 + 116.93 + филиппинский + 2007 + 2008 + PHI + Республика Филиппины + 菲律宾共和国 + + FAO estimate + 1000 + la República de Filipinas + + 1000 Ha + الفلبين + 196 + + 菲律宾 + 11500.0 + فلبيني + Филиппины + filippino + millions of US dollars + + Filipinas + 菲律宾 + بيسو + 91983.0 + Estimated + 1985 + filipino + + 171 + 4.65 + PHL + 5783 + la République des Philippines + + peso + peso filippino + + Philippines + 20.84 + 126.6 + 29817.0 + PH + 608 + + песо + 166909.0 + + les Philippines + + + la República de Palau + la République des Palaos + 6.88 + Palaos + the Republic of Palau + 182.0 + FAO estimate + 189 + + 9999 + + + بالاو + 1000 Ha + Palau + Palau + + 585 + 2009 + + Республика Палау + de Palau + palauano + 2008 + Estimated + بالاوي + 帕 劳 + 3632 + 180 + Palau + of Palau + جمهورية بالاو + les Palaos + палауанский + 帕劳的 + + TTP + Палау + 帕劳共和国 + 46.0 + 20.0 + 帕 劳 + بالاو + Manual Estimation + + 1000 Ha + Palau + Палау + 美 元 + 134.65 + Palau + Palau + 134.13 + 6.0 + 1000 + millions of US dollars + US dollar + palaosien + 2007 + + 1991 + 33221 + PLW + Manual Estimation + dollaro USA + دولار الولايات المتحدة + Palau + доллар + 7.73 + 2007 + Repubblica di Palau + PW + + + + أوروبا الشمالية + Северная Европа + 9999 + + northern Europe + + Europa settentrionale + Europe septentrionale + Северная Европа + Europe septentrionale + أوروبا الشمالية + Северная Европа + أوروبا الشمالية + northern Europe + Europa settentrionale + northern Europe + 5402 + Europa septentrional + 北欧 + 15230 + + + + 1991 + 154 + + Europa septentrional + Europe septentrionale + + Europa settentrionale + + 北欧 + 北欧 + + + Europa septentrional + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + + 1 + + + + Саудовская Аравия + + Manual Estimation + Arabie saoudite + SRIs + 467601.0 + 沙特的 + 2007 + + SAU + 沙特阿拉伯王国 + Estimated + l'Arabie saoudite + + + Arabia Saudita + 15482 + Saudi Arabia + + المملكة العربية السعودية + 15.66 + FAO estimate + 1985 + Саудовская Аравия + 173625.0 + + el Reino de Arabia Saudita + millions of US dollars + riyal saudita + Saudi_Arabia + + + 沙特阿拉伯 + 里亚尔 + la Arabia Saudita + Arabia Saudita + المملكة العربية السعودية + 2007 + سعودي + ريال + the Kingdom of Saudi Arabia + 沙特阿拉伯 + 2008 + саудоаравийский + 1000 Ha + Королевство Саудовская Аравия + + Regno dell'Arabia Saudita + المملكة العربية السعودية + + 214969.0 + 25721.0 + Manual Estimation + 32.15 + 34.5 + SA + árabe saudita + Saudi Arabia + 6822 + 1000 + + 55.67 + 215 + SAU + + риял + 2009 + + le Royaume d'Arabie saoudite + 1000 Ha + saudiano + + 682 + 194 + Arabia Saudita + Saudi Arabian + saoudien + 9999 + riyal + + + + 9999 + SADC + Comunidad para el Desarrollo del África Austral + + + + Сообщество южно-африканского развития + الجماعة الانمائية للجنوب الأفريقى + + + Southern African Development Community + Southern African Development Community + Comunidad para el Desarrollo del África Austral + 南部非洲发展共同体 + + SADC + Communauté du développement de l'Afrique australe + + Communauté du développement de l'Afrique australe + 50113 + + + + + + SADC + + + + + 7568.0 + 488470.0 + SWI + Manual Estimation + la Suisse + Svizzera + 4000.0 + 瑞士联邦 + 7558 + 47.8 + Suiza + 9999 + 1000 + فرنك + FAO estimate + 45.82 + سويسرا + франк + 2008 + швейцарский + + 瑞士的 / 瑞士人 + CH + 1985 + Confederazione svizzera + franc + سويسري + + 2009 + 756 + 1000 Ha + 1000 Ha + 法 郎 + Switzerland + 2007 + + Швейцария + franc + Швейцарская Конфедерация + 2007 + the Swiss Confederation + la Confédération suisse + + CHE + + 瑞 士 + + Switzerland + Suisse + 237 + 瑞 士 + 211 + Swiss + 10.49 + + سويسرا + Switzerland + svizzero + suisse + millions of US dollars + الاتحاد السويسري + Estimated + la Confederación Suiza + Suiza + Швейцария + franco svizzero + + 15494 + Manual Estimation + 5.97 + franco + 1561.0 + suizo + Svizzera + + + جنيه + + Gibraltar + Gibraltar + livre de Gibraltar + جبل طارق + FAO estimate + Gibraltar + (из/ житель) Гибралтара + 31.0 + 2009 + 1000 Ha + 直布罗陀 + 1.0 + Gibilterra + 7671 + Гибралтарский фунт + Gibraltar pound + 直布罗陀 + + 2007 + Gibilterra + GIB + 直布罗陀人/直布罗陀的 + 直布罗陀 + di Gibilterra + + Gibilterra + 1000 + Gibraltar + Gibraltarian + Gibraltar + Data reported on country official publications or web sites (Official) or trade country files. + Gibraltar + 82 + 3257 + Gibraltar + libra de Gibraltar + gibraltareño + 1985 + sterlina di Gibilterra + 292 + 直布罗陀镑 + Gibraltar + Gibraltar + من جبل طارق + Gibraltar + GI + جبل طارق + gibraltarien + 9999 + جبل طارق + 95 + £ + + + + 1 + + + + + + + + + драм [м.] + l'Arménie + 1991 + dram + 2009 + Estimated + Armenia + 2820.0 + 亚美尼亚共和国 + 051 + جمهورية أرمينيا + أرمينيا + the Republic of Armenia + + la República de Armenia + dram + armenio + dram + 11917.0 + Armenian + 43.46 + Armenia + + 1 + + + la République d'Arménie + 1000 + Manual Estimation + + درام + Armenia + армянский + 1000 Ha + 2007 + arménien + ARM + + Manual Estimation + AM + ARM + + + Armenia + Arménie + 亚美尼亚 + أرمنى + 亚美尼亚的 / 亚美尼亚人 + 3083.0 + Armenia + 1000 Ha + 41.3 + + 亚美尼亚 + + 德拉姆 + Repubblica d'Armenia + Armenia + + FAO estimate + 38.84 + 46.63 + 1615.0 + 20521 + 9999 + millions of US dollars + dram + + Армения + أرمينيا + 2008 + 13 + 8926 + 2007 + + Республика Армения + Армения + Armenia + + dram + armeno + + + + + + + + 美洲 + Americhe + Americhe + 5200 + + + + + Amériques + + + + + Americas + + + + + + + Amériques + + الأمريكتان + 1985 + + + + Americhe + 美洲 + 9999 + Américas + + + + Северная и Южная Америка + + + + Américas + 美洲 + + 019 + + Северная и Южная Америка + + 74166 + الأمريكتان + Américas + Amériques + + Americas + + Americas + + Северная и Южная Америка + الأمريكتان + + + + + 1 + + + + + le Koweït + Manual Estimation + Kuwait + 9999 + 4119 + 2007 + الكويت + 118 + 154.0 + كويتي + Kuwait + kuwaití + Manual Estimation + динар + KW + Stato del Kuwait + 1782.0 + + 1985 + 15437 + KWT + 1000 + l'État du Koweït + FAO estimate + dinar + кувейтский + + Kuwait + + دولة الكويت + 48.43 + KUW + 科威特 + 科威特的 + 第纳尔 + Kuwait + koweïtien + 137 + 28.52 + الكويت + dinaro kuwaitiano + Kuwaiti + 46.55 + 1000 Ha + 2007 + Estimated + + Kuwait + Iيناردينار + Koweït + + 科威特国 + 科威特 + 2009 + Kuwait + millions of US dollars + KD + the State of Kuwait + 112116.0 + el Estado de Kuwait + Государство Кувейт + 1000 Ha + Кувейт + kuwaitiano + + 414 + 30.09 + Kuwait + 2985.0 + 2007 + + + Кувейт + + + + 1 + + + + Isole Falkland + 1985 + 9999 + livre + جنيه + 81 + Falkland Islands (Malvinas) + 福克兰群岛(马尔维纳斯) + Falkland Islands + Фолклендские (Мальвинские) острова + les Îles Falkland (Malvinas) + 24504 + las Islas Malvinas (Falkland Islands) + 3.0 + 238 + FLK + جزر فوكلاند (مالفيناس) + des Îles Falkland (Malvinas) + les Îles Falkland (Malvinas) + las Islas Malvinas (Falkland Islands) + £ + Фолклендские (Мальвинские) острова + delle Isole Falklands (Malvinas) + (من جزر فوكلاند (مالفيناس + 福克兰群岛 + Isole Falkland + Data reported on country official publications or web sites (Official) or trade country files. + 2009 + Data reported on country official publications or web sites (Official) or trade country files. + Falkland_Islands_(Islas_Malvinas) + + 福克兰群岛(马尔维纳斯) + libra + 1000 + + 2007 + фунт + pound + 福克兰群岛人(马尔维纳斯群岛人)/福克兰群岛的(马尔维纳斯群岛的 + Фолклендские (Мальвинские) острова + 1118.0 + Isole Falkland + de las Islas Malvinas (Falkland Islands) + 1217.0 + FK + + Îles Falkland + جزر فوكلاند (مالفيناس) + جزر فوكلاند (مالفيناس) + Islas Malvinas + FAO estimate + of the Falkland Islands (Malvinas) + 65 + 2007 + 2783 + the Falkland Islands (Malvinas) + sterlina + (из/ житель) Фолклендских (Мальвинских) островов + 1000 Ha + 1000 Ha + + + santalucense + 东加勒比元 + 2009 + Saint Lucia + 662 + 1011.0 + Sainte-Lucie + -61.08 + 11.0 + saint-lucien + 圣卢西亚 + 圣卢西亚的 + 1000 + 61.0 + Saint_Lucia + millions of US dollars + Saint Lucia + Сент-Люсия + + dólar del Caribe oriental + Santa Lucía + dollaro dei Caraibi orientali + Saint Lucia + سانت لوسيا + + Сент-Люсия + Saint Lucian + 189 + dollar des Caraïbes orientales + + 13.7 + 15478 + Sainte-Lucie + Saint Lucia + 209 + Santa Lucía + من سانت لوسيا + восточнокарибский + Saint Lucia + STL + Manual Estimation + di Saint Lucia + Manual Estimation + + + Estimated + Saint Lucia + LCA + + 圣卢西亚 + 1985 + 9999 + 圣卢西亚 + 14.11 + 1000 Ha + 2008 + сент-люсийский + EC$ + LC + Sainte-Lucie + EC dollar (East Caribbean dollar) + دولار شرق الكاريبى + 1000 Ha + Santa Lucía + + 2007 + 172.0 + + FAO estimate + 7349 + 2007 + + سانت لوسيا + Сент-Люсия + -60.87 + سانت لوسيا + + + + 1 + + + + + Fisheries Global Information System http://www.fao.org/figis/servlet/RefServlet + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + Georgia + 29137 + Georgia + GE + + la Géorgie + 2517.0 + GEO + IورIى + 1991 + 格鲁吉亚 + + 2007 + lari + 6949.0 + + 1000 + 4260.0 + 73 + + 1000 Ha + 40.01 + + грузинский + + лари + 格鲁吉亚 + lari + Georgia + جورجيا + georgiano + FAO estimate + 268 + جورجيا + + GEO + Géorgie + géorgien + la Géorgie + 9999 + 1000 Ha + Estimated + lari + Грузия + Georgia + 46.72 + Georgia + Georgia + 格鲁吉亚 + 33250 + millions of US dollars + Manual Estimation + 41.04 + 格鲁吉亚的 + Georgia + 43.58 + جورجيا + + 12793.0 + 2008 + 2009 + Georgia + 拉 利 + georgiano + لارى + Грузия + + + Georgian + + + + + 2007 + Georgia + 92 + lari + Georgia + Грузия + + + letón + 15531 + 55.67 + латвийский + 119 + 9999 + lats + Official data reported on FAO Questionnaires from countries + Латвийская Республика + Lettonia + + 33783.0 + Estimated + لاتفيا + 2009 + Latvia + LVA + 2249.0 + + Letonia + la Lettonie + لاتفيا + LAT + FAO estimate + la République de Lettonie + + 2008 + 拉脱维亚共和国 + جمهورية لاتفيا + LVL + 20.97 + 1839.0 + 28.24 + 1000 + + + 2007 + millions of US dollars + Lettonie + 1991 + 1000 Ha + لاتفي + Латвия + lats + 1000 Ha + la República de Letonia + + لات + Lettonia + lettone + 58.08 + + 428 + + 拉 特 + лат + Letonia + Latvia + + Latvian + letton + + 拉脱维亚的 + 6225.0 + 2007 + the Republic of Latvia + Official data reported on FAO Questionnaires from countries + Repubblica di Lettonia + 拉脱维亚 + 12103 + + Latvia + lat + Латвия + + LV + 140 + 拉脱维亚 + + + + + + + Isole Vergini britanniche + 1097 + delle Isole Vergini britanniche + VGB + of the British Virgin Islands + Islas Vírgenes Británicas + 23.0 + + 1000 Ha + dollaro USA + (из/ житель) Британских Виргинских островов + 英属维尔京群岛 + + British_Virgin_Islands + FAO estimate + las Islas Vírgenes Británicas + + جزر فيرجين البريطانية + les Îles Vierges britanniques + 1985 + British Virgin Islands + 英属维尔京群岛人/英属维尔京群岛的 + 2007 + las Islas Vírgenes Británicas + доллар + 19018 + 2009 + Data reported on country official publications or web sites (Official) or trade country files. + 9999 + 092 + 1000 + من جزر فيرجين البريطانية + 2007 + VG + Manual Estimation + دولار أمريكى + 8.0 + 239 + US dollar + 1000 Ha + جزر فيرجين البريطانية + de las Islas Vírgenes Británicas + جزر فيرجين البريطانية + 英属维尔京群岛 + Isole Vergini britanniche + the British Virgin Islands + Isole Vergini britanniche + 15.0 + Îles Vierges britanniques + British Virgin Islands + 英属维尔京群岛 + des Îles Vierges britanniques + les Îles Vierges britanniques + BVI + 39 + 美 元 + + + + Fisheries Global Information System http://www.fao.org/figis/servlet/RefServlet + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + + 1 + + + + + 内陆发展中国家 + pays en développement sans littoral + 内陆发展中国家 + países en desarrollo sin litoral + + land-locked developing country + + + + بلد نام غير ساحلي + + 432 + + + PDL + + + + + + + + + + UN -OHRLLS http://www.un.org/special-rep/ohrlls/lldc/default.htm + + + البلدان النامية غير الساحلية + + + + البلدان النامية غير الساحلية + + 内陆发展中国家 + + + 51144 + + PDL + + pays en développement sans littoral + развивающиеся страны, не имеющие выхода к морю + land-locked developing country + развивающаяся страна, не имеющая выхода к морю + LLDCs + 9999 + 1993 + + pays en développement sans littoral + + + 402 + + + + + + 1 + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + Estimated + + Oman + + + 35729.0 + риал оманский + Оман + 5345 + 2007 + ريال عماني + 15465 + + 阿曼里亚尔 + Omani + 52.0 + millions of US dollars + + Data reported on country official publications or web sites (Official) or trade country files. + 26.39 + + 59.84 + + 512 + la Sultanía de Omán + Omán + 16.65 + FAO estimate + omaní + 阿 曼 + + عماني + OMN + Oman + rial omanita + Oman + оманский + Оман + Oman + omanais + 1799.0 + RO + 阿 曼 + 阿曼苏丹国 + 221 + the Sultanate of Oman + 2009 + عمان + omano + 187 + 1000 Ha + OMA + Omán + عمان + + Manual Estimation + 2007 + سلطنة عمان + 2845.0 + 1000 + 9999 + Sultanato dell'Oman + Oman + Султанат Оман + + 1985 + 30950.0 + l'Oman + Oman + OM + le Sultanat d'Oman + 2007 + 1000 Ha + omani rial + 阿曼的 + + + + Fisheries Global Information System http://www.fao.org/figis/servlet/RefServlet + + + + 1000 Ha + 2007 + 美 元 + Turks and Caicos Islands + 33.0 + جزر تركس وكايكوس + Îles Turques et Caïques + доллар + 2007 + 特克斯和凯科斯群岛 + Isole Turks e Caicos + 8018 + 2009 + من جزر تركس وكايكوس + Islas Turcas y Caicos + 95.0 + TCI + Turks and Caicos Islands + TC + Isole Turks e Caicos + Manual Estimation + 特克斯和凯科斯群岛 + TCA + FAO estimate + delle isole Turks e Caicos + دولار الولايات المتحدة + 9999 + of the Turks and Caicos Islands + 224 + جزر تركس وكايكوس + Islas Turcas y Caicos + 1000 + 1000 Ha + dollaro USA + de las Islas Turcas y Caicos + Turks and Caicos Islands + Isole Turks e Caicos + 1985 + 1.0 + + les Îles Turques et Caïques + 251 + Data reported on country official publications or web sites (Official) or trade country files. + (из/ житель) Теркс и Кайкос островов + les Îles Turques et Caïques + جزر تركس وكايكوس + dollar des États-Unis + 796 + US dollar + 19036 + Turks_and_Caicos_Islands + 特克斯和凯科斯群岛 + + 特克斯和凯科斯群岛人/特克斯和凯科斯群岛的 + des îles Turques et Caïques + Islas Turcas y Caicos + + + 2007 + + won + 朝鲜民主主义人民共和国的 + 67 + 朝鲜民主主义人民共和国 + 124.2 + de la República Popular Democrática de Corea + вона + la República Popular Democrática de Corea + 408 + 9999 + من (أو تابع لـ) جمهورية كوريا الشعبية الديمقراطية + Manual Estimation + 130.69 + + + la République populaire démocratique de Corée + 1985 + (из/житель) Корейской Народно-Демократической Республики + Корейская Народно- Демократическая Республика + 3050.0 + 12041.0 + جمهورية كوريا الشعبية الديمقراطية + + Repubblica popolare democratica di Corea + 1000 + 2009 + KP + 43.01 + 116 + Корейская Народно- Демократическая Республика + + 23906.0 + Manual Estimation + 15399 + Korea_North + República Popular Democrática de Corea + la République populaire démocratique de Corée + 朝鲜民主主义人民共和国 + 2007 + + + + 朝鲜民主主义人民共和国 + 1000 Ha + FAO estimate + won nordcoreano + la República Popular Democrática de Corea + جمهورية كوريا الشعبية الديمقراطية + Корейская Народно- Демократическая Республика + République populaire démocratique de Corée + 4115 + 37.65 + the Democratic People's Republic of Korea + + of the Democratic People's Republic of Korea + جمهورية كوريا الشعبية الديمقراطية + + 1000 Ha + Repubblica popolare democratica di Corea + de la République populaire démocratique de Corée + della Repubblica popolare democratica di Corea + + DRK + Repubblica popolare democratica di Corea + + the Democratic People's Republic of Korea + + PRK + Democratic People's Republic of Korea + + + Nuova Zelanda + نيوزيلندي + نيوزيلندا + 新西兰的 + 2008 + la Nouvelle-Zélande + FAO estimate + 新西兰 + 130693.0 + 新西兰 + 12286.0 + 156 + + Data reported on country official publications or web sites (Official) or trade country files. + Nueva Zelandia + + 15460 + Nuova Zelanda + -178.44 + millions of US dollars + + Nouvelle-Zélande + dollar + Новая Зеландия + 1000 + New_Zealand + Новая Зеландия + новозеландский + 179 + $NZ + dollaro neozelandese + NZE + 9999 + 2007 + dollar + 新西兰 + New Zealand + + доллар + -29.24 + of New Zealand + neozelandese + neo-zélandais + New Zealand + New Zealand + Новая Зеландия + 1985 + + 554 + نيوزيلندا + NZ + نيوزيلندا + NZL + 2009 + دولار + -52.61 + 4266.0 + Nueva Zelandia + 26771.0 + dólar + 178.84 + + Nueva Zelandia + + Nuova Zelanda + 1000 Ha + 1000 Ha + neozelandés + 5164 + 2007 + Estimated + la Nouvelle-Zélande + + + Data reported on country official publications or web sites (Official) or trade country files. + micronesiano + Micronesia (Federated States of) + ميكرونيزيا + 163 + 2007 + Micronesia_Federated_States_of + (из/житель) Федеративных Штатов Микронезии + + Федеративные Штаты Микронезии + FSM + 9.78 + FM + Микронезия (Федеративные Штаты) + US dollar + of the Federated States of Micronesia + ميكرونيزي، من ولايات ميكرونيزيا الموحدة + dollaro USA + Manual Estimation + + ولايات ميكرونيزيا الموحدة + Micronesia (Stati federati di) + 密克罗尼西亚联邦 + 145 + 1991 + 1000 Ha + dollar des États-Unis + + 1000 Ha + доллар + les États fédérés de Micronésie + Estimated + Микронезия (Федеративные Штаты) + MIC + + 583 + 70.0 + 1000 + 2008 + dólar de EE.UU. + Micronesia (Estados Federados de) + Micronesia (Stati federati di) + Micronesia (Federated States of) + 密克罗尼西亚(联邦) + Micronésie (États fédérés de) + + des États fédérés de Micronésie + Micronésie (États fédérés de) + 2009 + millions of US dollars + + 2007 + the Federated States of Micronesia + 247.0 + 163.04 + 23.5 + los Estados Federados de Micronesia + 9999 + 密克罗尼西亚(联邦) + 138.06 + 4805 + 15518 + 密克罗尼西亚的 + 5.26 + Micronesia (Estados Federados de) + + + 111.0 + FAO estimate + de los Estados Federados de Micronesia + دولار الولايات المتحدة + + ميكرونيزيا + Stati federati di Micronesia + + + + la Jamahiriya Árabe Libia Popular y Socialista + Ливийская Арабская Джамахирия + 25.15 + Manual Estimation + FAO estimate + 434 + Libia + 4312 + Ливийская Арабская Джамахирия + + Libia + 2009 + 第纳尔 + la Jamahiriya arabe libyenne populaire et socialiste + dinar + + + libyen + + 9999 + libio + + 阿拉伯利比亚民众国 + libico + الجماهيرية العربية الليبية الشعبية الاشتراكية + 阿拉伯利比亚民众国 + 33.17 + 9.38 + + the Socialist People's Libyan Arab Jamahiriya + the Libyan Arab Jamahiriya + LIB + 145 + Социалистическая Народная Ливийская Арабская Джамахирия + динар + ليبي + Jamahiriya Árabe Libia + 2007 + LD + Libyan + la Jamahiriya Árabe Libia + 1000 Ha + 19.51 + 1985 + 175954.0 + Libyan Arab Jamahiriya + + 15442 + 1000 + Libya + Jamahiriya arabe libyenne + 利比亚的 + دينار + 1000 Ha + 6420.0 + + 2007 + 15550.0 + 124 + + + + الجماهيرية العربية الليبية + ливийский + LY + Data reported on country official publications or web sites (Official) or trade country files. + 阿拉伯利比亚人民社会主义民众国 + Gran Giamahiria araba libica popolare socialista + LBY + dinaro libico + الجماهيرية العربية الليبية + + la Jamahiriya arabe libyenne + + + + + + بلجيكا + + евро + 2.54 + 27 + 255 + + 比利时王国 + Bélgica + Bélgica + BEL + 2008 + 2007 + el Reino de Bélgica + euro + 2009 + la Belgique + Королевство Бельгия + belga + BE + millions of US dollars + 比利时的 / 比利时人 + 1000 + Estimated + + FAO estimate + 1000 Ha + 3028.0 + 15373 + Бельгия + + Belgium + Belgio + Data reported on country official publications or web sites (Official) or trade country files. + 1370.0 + бельгийский + Belgio + euro + Belgique + Belgium + 6.41 + 51.5 + + Regno del Belgio + + 欧 元 + Official data reported on FAO Questionnaires from countries + 1000 Ha + BEL + 比利时 + بلجيكي + euro + 056 + 2007 + 49.5 + 870 + + belge + + + Belgium + Belgian + 1985 + Бельгия + يورو + euro + 10647.0 + مملكة بلجيكا + بلجيكا + 比利时 + le Royaume de Belgique + 497586.0 + + + the Kingdom of Belgium + belga + 9999 + + + + 1 + + + + + 120 + 8.49 + Camerun + الكاميرون + Cameroonian + + le Cameroun + + 1.65 + Repubblica del Camerun + Manual Estimation + CMR + + 9160.0 + franc CFA (Communauté financière africaine) + Cameroon + 2009 + камерунский + 23396.0 + Республика Камерун + франк КФА + franco CFA (Communauté financière africaine) + 1000 + فرنك الجماعة المالية الأفريقية + Camerún + la République du Cameroun + la República del Camerún + FAO estimate + 47271.0 + الكاميرون + 15384 + millions of US dollars + Камерун + + 16.19 + 13.07 + + the Republic of Cameroon + + 1000 Ha + 19522.0 + 32 + Official data reported on FAO Questionnaires from countries + franco CFA + 2007 + 1229 + 1000 Ha + + el Camerún + camerunés + كاميروني + + + 2007 + + Cameroun + + 喀麦隆 + Cameroon + 喀麦隆的 / 喀麦隆人 + جمهورية الكاميرون + Cameroon + 非洲法郎 + + camerounais + + 喀麦隆共和国 + Estimated + CM + 2008 + 喀麦隆 + 45 + CMR + + + Camerun + CFA franc (Communauté financière africaine) + + 9999 + camerunese + Камерун + 1985 + + + Bahraini + Manual Estimation + BD + BAH + millions of US dollars + 巴林的 / 巴林人 + 第纳尔 + Manual Estimation + le Royaume de Bahreïn + BH + + Estimated + FAO estimate + Королевство Бахрейн + bahreinita + 780 + Бахрейн + динар + 1000 Ha + بحريني + + the Kingdom of Bahrain + 15370 + dinar + bahreïnien + BHR + 1985 + бахрейнский + 10.0 + + 2007 + + Bahrain + Bahrein + 791.0 + Bahrain + 25.55 + 2007 + 15828.0 + 2009 + 1000 Ha + + 巴林王国 + + 巴 林 + دينار + 048 + 21 + Bahrein + + de Bahrein + Regno del Bahrein + 13 + 26.29 + مملكة البحرين + 巴 林 + Bahrein + Bahreïn + 9999 + dinar + البحرين + Bahreïn + 71.0 + البحرين + 1000 + Bahrain + dinar + 50.38 + dinaro del Bahrein + Бахрейн + + 50.82 + Bahrein + 2007 + el Reino de Bahrein + + + + 1 + + + + 48073.0 + + Estimated + جمهورية إيران الإسلامية + 25.06 + iraniano + 102 + iranien + + Iranian + rial iraniano + FAO estimate + + 162855.0 + 伊朗伊斯兰共和国 + Irán (República Islámica del) + 2007 + 伊 朗(伊斯兰共和国) + 1985 + Rls + IR + 44.04 + + 9999 + 39.78 + the Islamic Republic of Iran + Repubblica islamica dell'Iran + Iran (République islamique d') + + iraní + 15428 + millions of US dollars + + иранский + IRN + IRA + + rial + Official data reported on FAO Questionnaires from countries + ريال + + + Iran (Islamic Republic of) + Iran + إيراني + Iran + 63.32 + 2008 + 364 + + Official data reported on FAO Questionnaires from countries + 1000 Ha + + Iran + 1000 + إيران + Irán (República Islámica del) + 伊 朗(伊斯兰共和国) + 里亚尔 + 2007 + + 1000 Ha + Iran (République islamique d') + Иран (Исламская Республика) + إيران + + 伊朗的 + la República Islámica del Irán + 2009 + 74196.0 + + 3940 + риал + Iran (Islamic Republic of) + rial + Исламская Республика Иран + 385143.0 + Иран (Исламская Республика) + la République islamique d'Iran + 117 + + + 1985 + Togo + le Togo + Togo + 2823.0 + 217 + Togo + + Togo + 多哥的 + + + 15497 + توغو + فرنك الجماعة المالية الأفريقية + franco CFA + Togo + 非洲法郎 + CFA franc (Communauté financière africaine) + Тоголезская Республика + 多 哥 + + توغوي + 6.1 + TOG + FAO estimate + togolés + 3630.0 + 2008 + Manual Estimation + Togo + توغو + TG + Togolese + Manual Estimation + 多 哥 + 1000 Ha + the Togolese Republic + 9999 + + -0.15 + + togolese + + Того + Repubblica del Togo + 1000 + + franco CFA (Communauté financière africaine) + 6619.0 + franc CFA (Communauté financière africaine) + Estimated + 11.15 + + 768 + 7801 + الجمهورية التوغوية + 243 + 5439.0 + 1000 Ha + la République togolaise + 多哥共和国 + 1.8 + + 2009 + тоголезский + + + millions of US dollars + франк КФА + togolais + Того + 2007 + + 2007 + TGO + + Togo + + la República Togolesa + el Togo + + + Paraguay + 9999 + Paraguayan + 1000 + Paraguay + Manual Estimation + la República del Paraguay + Paraguay + Repubblica del Paraguay + 2007 + guaraní + guaraní + + 600 + paraguaiano + 2008 + 1000 Ha + 2007 + باراغوايي + + paraguayo + G + + + Парагвай + la République du Paraguay + 194 + FAO estimate + -62.65 + el Paraguay + 瓜拉尼 + Paraguay + PY + le Paraguay + 1000 Ha + millions of US dollars + paraguayen + the Republic of Paraguay + Республика Парагвай + + + PAR + 巴拉圭的 + + -27.61 + + Paraguay + جمهورية باراغواي + + 巴拉圭共和国 + باراغواي + гуарани + 15977.0 + + 15469 + باراغواي + غواراني + 20400.0 + + 巴拉圭 + 6349.0 + 39730.0 + Парагвай + -54.26 + 5560 + Paraguay + 2009 + Estimated + 169 + 巴拉圭 + -19.34 + парагвайский + 1985 + Paraguay + PRY + + + + 1 + + + + + la República de Nicaragua + NIC + 15.03 + кордоба + N + 11999.0 + Никарагуа + 尼加拉瓜的 + 1000 Ha + Nicaragua + Nicaragua + 尼加拉瓜 + Manual Estimation + 157 + + 2009 + Nicaragua + NI + + 5743.0 + the Republic of Nicaragua + Nicaraguan + 2007 + + Official data reported on FAO Questionnaires from countries + + + + nicaraguayen + 15461 + 2008 + NIC + 尼加拉瓜共和国 + 9999 + نيكاراغوي + millions of US dollars + Nicaragua + -87.69 + никарагуанский + Nicaragua + 1000 + Nicaragua + نيكاراغوا + nicaraguegno + Республика Никарагуа + nicaragüense + 科多巴 + 6592.0 + 尼加拉瓜 + 1000 Ha + كوردوبا + FAO estimate + la République du Nicaragua + 5171 + Nicaragua + Estimated + cordoba + -82.73 + córdoba + + Nicaragua + + 10.71 + Никарагуа + 2007 + 5200.0 + + + 558 + 180 + Repubblica di Nicaragua + le Nicaragua + + 1985 + نيكاراغوا + جمهورية نيكاراغوا + + + + 1 + + + + 1000 Ha + Mauricio + la République de Maurice + 毛里求斯共和国 + + rupia mauriziana + millions of US dollars + MAR + روبية + mauriziano + Маврикий + 1000 Ha + -10.33 + Maurizio + جمهورية موريشيوس + 卢 比 + Mauritius + + 15451 + 160 + موريشيوس + 毛里求斯 + 2007 + Mauritian + 101.0 + mauricien + موريشيوس + Mauritius + Manual Estimation + 2008 + 203.0 + MU + MUR + 63.5 + Маврикий + موريشيوسي + mauriciano + 1288.0 + 1000 + 毛里求斯 + + Mauricio + rupee + + + 9999 + 480 + 2007 + 137 + Repubblica di Maurizio + la República de Mauricio + Estimated + + рупия + + Official data reported on FAO Questionnaires from countries + FAO estimate + маврикийский + + the Republic of Mauritius + Maurizio + 2009 + Maurice + + 毛里求斯的 + 4662 + MUS + -20.53 + Республика Маврикий + Mauritius + 8651.0 + 1985 + 56.57 + Maurice + + + + + + + + + 1 + + + + São Tomé e Príncipe + Сан-Томе и Принсипи + + Manual Estimation + جمهورية سان تومي وبرنسيبي الديمقراطية + 175.0 + (из/житель) Сан-Томе и Принсипи + 1000 + Sao_Tome_and_Principe + STP + 2008 + 圣多美和普林西比 + + dobra + 1000 Ha + di São Tomé e Príncipe + 2007 + 96.0 + of Sao Tome and Principe + de Sao Tomé-et-Principe + 圣多美和普林西比民主共和国 + Db + + 1.7 + la República Democrática de Santo Tomé y Príncipe + Сан-Томе и Принсипи + من سان تومي وبرنسيبي + FAO estimate + دوبرا + Sao Tome and Principe + + 圣多美和普林西比 + 214 + 57.0 + + STP + 6.46 + 193 + Estimated + 7.46 + 6790 + 1000 Ha + 1985 + 163.0 + the Democratic Republic of Sao Tome and Principe + São Tomé e Príncipe + + 多布拉 + Sao Tomé-et-Principe + Sao Tomé-et-Principe + Repubblica democratica di São Tomé e Príncipe + 圣普的 + + Manual Estimation + ST + + 2009 + + 15481 + la République démocratique de Sao Tomé-et-Principe + + de Santo Tomé y Príncipe + -0.01 + Santo Tomé y Príncipe + Демократическая Республика Сан-Томе и Принсипи + + + millions of US dollars + سان تومي وبرنسيبي + добра + 2007 + 678 + Santo Tomé y Príncipe + سان تومي وبرنسيبي + Sao Tome and Principe + dobra + 9999 + + + + 159 + نيرة + + 2.66 + 2008 + 15463 + 2007 + Нигерия + 1000 Ha + + نيجيري + 尼日利亚 + + Nigeria + + + Nigéria + جمهورية نيجيريا الاتحادية + NGA + Nigeria + 1000 + 212080.0 + 154729.0 + 1985 + le Nigéria + naira + + 91077.0 + Nigeria + نيجيريا + + nigeriano + نيجيريا + + Manual Estimation + 5182 + 奈 拉 + NIR + Repubblica federale della Nigeria + Федеративная Республика Нигерия + + Nigeria + the Federal Republic of Nigeria + nigérian + 2007 + найра + 78500.0 + 尼日利亚 + millions of US dollars + FAO estimate + + Manual Estimation + Nigeria + + 566 + la République fédérale du Nigéria + nigeriano + 尼日利亚联邦共和国 + 14.68 + + 4.28 + + naira + Estimated + Нигерия + Nigerian + Nigeria + + + нигерийский + NG + 13.89 + 2009 + 9999 + la República Federal de Nigeria + naira + 1000 Ha + 182 + Nigeria + 尼日利亚的 + + + + 1 + + + + يورو + إسبانيا + 27.64 + 49898.0 + 43.79 + Spanish + 9999 + 西班牙的 + Spain + FAO estimate + euro + + euro + + + Manual Estimation + l'Espagne + + 15488 + 1000 Ha + SPA + Estimated + إسبانيا + espagnol + ES + Spagna + Spagna + 203 + 西班牙王国 + 2009 + مملكة إسبانيا + Королевство Испания + Испания + euro + + Regno di Spagna + 2007 + + español + millions of US dollars + 1604174.0 + Espagne + España + + 28660.0 + + 724 + + 1000 Ha + 2008 + 1985 + Spain + + el Reino de España + le Royaume d'Espagne + 欧 元 + испанский + the Kingdom of Spain + EUR or € + spagnolo + 2007 + Manual Estimation + 西班牙 + 1000 + + 西班牙 + España + 4.33 + ESP + 229 + Испания + 7273 + -18.17 + إسباني + + евро + Spain + 44904.0 + euro + + + + 中美洲农业理事会 + 56426 + CAC + المجلس الزراعي لأمريكا الوسطى + + Consejo Agropecuario Centroamericano + + CAC + + CAC + Central American Council of Agriculture + + + Conseil agricole d'Amérique centrale + Central American Agricultural Council + 9999 + + + Центральноамериканский сельскохозяйственный совет + + + 1000 + + dólar de EE.UU. + جمهورية جزر مارشال + + 62.0 + las Islas Marshall + 158.0 + Marshall + MH + 2008 + + (из/житель) Маршалловых Островов + 1991 + 584 + Estimated + 9999 + Маршалловы Острова + millions of US dollars + جزر مارشال + + 165.53 + Marshall Islands + de las Islas Marshall + 马绍尔群岛 + 马绍尔群岛的 + the Marshall Islands + les Îles Marshall + من جزر مارشال، مارشالي + MHL + la República de las Islas Marshall + + Îles Marshall + marshallais + جزر مارشال + доллар + + Marshall_Islands + MAS + Marshall + 15519 + 2009 + 172.0 + Data reported on country official publications or web sites (Official) or trade country files. + 2007 + 马绍尔群岛共和国 + Manual Estimation + Республика Маршалловы Острова + 14.0 + dollaro USA + of the Marshall Islands + FAO estimate + 马绍尔群岛 + + + 127 + dollar des États-Unis + US dollar + Islas Marshall + 1000 Ha + 14.62 + 157 + 2007 + marshallese + دولار أمريكى + la République des Îles Marshall + 4630 + 1000 Ha + 18.0 + Маршалловы Острова + + 4.57 + the Republic of the Marshall Islands + Repubblica delle Isole Marshall + + + millions of US dollars + 52.38 + 40.22 + Украина + + 15070 + + + Ukraine + Ucrania + grivna + 乌克兰的 + Украина + 1000 + 1991 + Official data reported on FAO Questionnaires from countries + + 乌克兰 + гривна + UKR + 16378 + Ucraina + 2009 + Ukraine + 2007 + 254 + 44.38 + + 804 + + 2007 + ukrainien + Ukraine + + 9999 + Ucraina + Official data reported on FAO Questionnaires from countries + + Ukrainian + 乌克兰 + 2008 + 57933.0 + + Ucraina + + 230 + украинский + UKR + 1000 Ha + UA + أوكرانيا + Украина + + أوكراني + 41266.0 + أوكرانيا + + 22.16 + l'Ukraine + 1000 Ha + Ucrania + + 格里夫尼亚 + أوكرانيا + هريفنيا + + 乌克兰 + Hrv + ucraino + Estimated + hryvnia + 45708.0 + Ucrania + Ukraine + l'Ukraine + Ukraine + FAO estimate + 180355.0 + ucranio + + + + 1 + + + + евро + euro + 1000 Ha + 300 + EUR or € + Grecia + Греческая Республика + euro + + Greece + + 29.6 + greco + FAO estimate + grec + Manual Estimation + the Hellenic Republic + GRE + 84 + 2007 + 欧 元 + 11161.0 + 97 + + 41.74 + Греция + + 希腊共和国 + 12890.0 + + la República Helénica + Greek + + الجمهورية الهيلانية + 1000 Ha + 希 腊 + يوناني + euro + 1985 + Repubblica ellenica + la Grèce + + + 1000 + euro + Estimated + 2007 + 3373 + Grecia + GR + 15416 + 9999 + اليونان + 2008 + la République hellénique + + + griego + GRC + + 希腊的 + millions of US dollars + Greece + греческий + Греция + 19.38 + Grèce + Grecia + Greece + يورو + 8280.0 + Grecia + 356796.0 + 希 腊 + اليونان + 2009 + 34.8 + + + + UN Cartographic Section + + + + + + آسيا الشرقية + 1985 + Восточная Азия + + 5302 + 东亚 + 030 + آسيا الشرقية + آسيا الشرقية + eastern Asia + + 东亚 + Asia orientale + Asie orientale + 9999 + Asie orientale + + 15203 + Asia orientale + Asia oriental + + eastern Asia + eastern Asia + Asia orientale + 东亚 + Восточная Азия + + Asie orientale + Восточная Азия + Asia oriental + Asia oriental + + + + Сьерра-Леоне (обе части нескл.) + the Republic of Sierra Leone + + Manual Estimation + Sierra Leone + + + 694 + la República de Sierra Leona + 1000 Ha + Sierra_Leone + 197 + + جمهورية سيراليون + 221 + سيراليون + Sierra Leona + + 2007 + SL + Repubblica di Sierra Leone + + la République de Sierra Leone + sierraleonese + + ليون + Le + сьерра-леонский + -13.3 + + 9999 + 利 昂 + sierraleonés + -10.28 + Sierra Leone + 1985 + 1000 Ha + 5696.0 + 2007 + 1000 + SLE + + 7162.0 + 7057 + + millions of US dollars + FAO estimate + 9.99 + Sierra Leone + 1953.0 + 3180.0 + Sierra Leonean + Республика Сьерра-Леоне + Сьерра-Леоне (обе части нескл.) + 2009 + Sierra Leone + Sierra Leona + + la Sierra Leone + SIL + سيراليوني + 2008 + 塞拉利昂 + Sierra Leone + 6.94 + 15485 + Estimated + + leone + 塞拉利昂的 + leone + سيراليون + леоне + sierra-léonien + 塞拉利昂共和国 + Manual Estimation + 塞拉利昂 + + + SE + سويدي + 69.06 + 瑞典的 + Королевство Швеция + + 2007 + + крона + 1000 Ha + + Svezia + la Suède + 210 + 2007 + corona svedese + 55.34 + 9249.0 + 1000 Ha + 瑞 典 + Sweden + krona + шведский + 1000 + Швеция + 24.16 + + Swedish + svedese + suédois + Sweden + sueco + + السويد + + 1985 + 2008 + Suecia + Svezia + SKr + Data reported on country official publications or web sites (Official) or trade country files. + Suède + SWE + 9999 + Regno di Svezia + 3136.0 + Sweden + 10.98 + مملكة السويد + Suecia + + le Royaume de Suède + Швеция + 2009 + 克 朗 + 480021.0 + millions of US dollars + السويد + the Kingdom of Sweden + el Reino de Suecia + 236 + 瑞典王国 + كرونا + 41033.0 + + 15493 + 752 + SWE + FAO estimate + 7549 + Estimated + Data reported on country official publications or web sites (Official) or trade country files. + 瑞 典 + + + + + + + + + أفريقيا الغربية + + Afrique occidentale + + 1985 + Africa occidentale + + África occidental + + + 011 + + + Западная Африка + + western Africa + أفريقيا الغربية + Afrique occidentale + 西非 + + África occidental + أفريقيا الغربية + Afrique occidentale + 5105 + + + + + 西非 + África occidental + Западная Африка + western Africa + 西非 + western Africa + Africa occidentale + + + Africa occidentale + 9999 + + 15263 + + Западная Африка + + + Official data reported on FAO Questionnaires from countries + 1000 Ha + 2007 + la República del Ecuador + доллар + -75.22 + équatorien + Ecuadorian + ECU + Республика Эквадор + + جمهورية إكوادور + 73 + Ecuador + 7412.0 + إكوادوري + the Republic of Ecuador + 厄瓜多尔共和国 + + 厄瓜多尔 + 13625.0 + + 1.66 + US dollar + 52572.0 + 9999 + -92.01 + 2009 + + 15404 + эквадорский + إكوادور + + Équateur + Ecuador + 厄瓜多尔 + Ecuador + -5.01 + Manual Estimation + dollaro USA + Ecuador + l'Équateur + dólar de EE.UU. + 1000 Ha + + Estimated + 1985 + + dollar des États-Unis + 2007 + ecuadoriano + Эквадор + millions of US dollars + 1000 + Repubblica dell'Ecuador + + 218 + EC + إكوادور + ECU + 2008 + la République de l'Équateur + FAO estimate + ecuatoriano + + 美 元 + el Ecuador + 58 + + دولار الولايات المتحدة الأمريكية + 2485 + 厄瓜多尔的 + 27684.0 + Ecuador + Эквадор + Ecuador + + + Namibia + Республика Намибия + + ناميبيا + FAO estimate + 8564.0 + намибийский доллар + la Namibie + 38805.0 + ناميبيا + دولار، راند + + 11.73 + Намибия + NAM + 147 + Namibia + Намибия + 2007 + namibiano + the Republic of Namibia + Namibia + namibien + Namibie + 2171.0 + la República de Namibia + Namibia + la République de Namibie + + 25.26 + namibiano + 1000 + NAM + Namibia + 516 + Estimated + Namibian + millions of US dollars + 纳米比亚共和国 + 9999 + 15457 + 2008 + Repubblica di Namibia + 纳米比亚 + + -16.96 + dólar namibiano + + ناميبي + + Namibian dollar + NA + 1000 Ha + 2007 + + Manual Estimation + 82329.0 + -28.96 + + Namibia + 5063 + 172 + 纳米比亚 + 纳米比亚的 + Manual Estimation + намибийский + + 1000 Ha + Namibia + + 兰特 + dollaro namibiano + جمهورية ناميبيا + R/N$ + 2009 + + + 1985 + + + + Global Administrative Unit Layers http://www.fao.org/geonetwork/srv/en/metadata.show?id=12691 + + + + جمهورية بلغاريا + 100 + the Republic of Bulgaria + BG + 1000 Ha + + 2008 + 28.61 + بلغاريا + Болгария + 1000 + 22.37 + 2007 + la República de Bulgaria + 2009 + Болгария + + 列 弗 + FAO estimate + 保加利亚 + lev + búlgaro + + 保加利亚的 / 保加利亚人 + 1985 + بلغاري + Official data reported on FAO Questionnaires from countries + Bulgaria + la République de Bulgarie + + 保加利亚 + 10861.0 + 27 + lev + 15380 + 7545.0 + Bulgaria + Bulgaria + + la Bulgarie + 5116.0 + Estimated + Official data reported on FAO Questionnaires from countries + + 1000 Ha + 保加利亚共和国 + bulgare + + болгарский + Bulgaria + 49900.0 + BUL + + BGR + lev (BGL) + 1145 + ليف + 41.24 + Bulgaria + + + lev + Bulgaria + 41 + bulgaro + Республика Болгария + 9999 + بلغاريا + + Repubblica di Bulgaria + + millions of US dollars + 44.21 + Bulgarian + 2007 + Bulgaria + лев + Bulgarie + lev + + + 1992 + Socialist_Federal_Republic_of_Yugoslavia_the + + 248 + + + + Socialist_Federal_Republic_of_Yugoslavia_the + + 1985 + 890 + + + + + + + + + + + LDCs + + 最不发达国家 + + + + 最不发达国家 + países menos adelantados + + + pays les moins avancés + + + + наименее развитые страны + + + + pays les moins avancés + least developed countries + 2943 + + 最不发达国家 + paesi meno avanzati + + + + + + + 199 + + наименее развитые страны + + + países menos adelantados + + + + + PMA + البلدان الأقل نموا + + + 9999 + + + + + + least developed countries + + البلدان الأقل نموا + + WTO http://www.wto.org/english/thewto_e/whatis_e/tif_e/org7_e.htm + البلدان الأقل نموا ;أقل البلدان نمو + países menos adelantados + + + + HPC + + + 415 + + 1993 + + + + pays les moins avancés + + + + + + + + + Mundo + + + + + + + + + + + + + + + + + + + + + 世界 + + + Mundo + + + + + + + + + + + + + + + + + World + + + + + + + + + + + + + + + + + + + + + + + + + + + + Monde + + + العالم + + + + + + + + العالم + 9999 + + + + весь мир + + Mondo + + World + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 世界 + + + + + + + + + + + + + 001 + + + + + + + + + + + весь мир + + + + + + + + + + Monde + Mondo + весь мир + + + + + + + + + Mundo + + + + + + + 84960 + + World + + + + + + + + + 世界 + 5000 + + + + + + + + + + + + + + + + العالم + Mondo + Monde + + + + + + + + + + + 2007 + + + + EC$ + Montserrat + Manual Estimation + 2007 + + восточнокарибский доллар + + 500 + 142 + EC dollar (East Caribbean dollar) + 2009 + 蒙特塞拉特 + Montserrat + de Montserrat + 9999 + FAO estimate + dollaro dei Caraibi orientali + de Montserrat + Montserrat + (из/ житель) Монтсеррата + دولار شرق الكاريبى + Montserrat + Montserrat + Montserrat + مونتسراطت + Monserrat + 10.0 + 东加勒比元 + MS + Montserrat + Monserrat + من مونتسيرات + 1985 + 168 + 蒙特塞拉特 + of Montserrat + 4927 + 1000 + مونتسراطت + 1000 Ha + Montserrat + MSR + 蒙特塞拉特人/蒙特塞拉特的 + MOT + di Monserrat + Data reported on country official publications or web sites (Official) or trade country files. + Montserrat + 6.0 + dólar del Caribe oriental + Montserrat + Monserrat + dollar des Caraïbes orientales + 2007 + + 蒙特塞拉特 + 19027 + 3.0 + مونتسراطت + 1000 Ha + + + + 1 + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + millions of US dollars + 2007 + 黎巴嫩的 + la República libanesa + Lebanon + Repubblica libanese + الجمهورية اللبنانية + لبناني + Manual Estimation + 687.1 + 1023.0 + 4244 + Lebanese + + libanés + pound + ливанский + 34.68 + Líbano + Manual Estimation + libanais + 4224.0 + sterlina libanese + 33.05 + 黎巴嫩 + Libano + 121 + FAO estimate + Ливан + 1000 Ha + the Lebanese Republic + 2009 + 2007 + 36.64 + + لبنان + Lebanon + 1000 + + + 1985 + 9999 + LL + 2008 + la République libanaise + 28660.0 + 1000 Ha + + Estimated + LBN + фунт + 422 + Liban + 黎巴嫩共和国 + + Lebanon + + el Líbano + ليرة + Ливанская Республика + 15439 + + 141 + le Liban + LB + Libano + 35.11 + Ливан + libanese + + 黎巴嫩 + لبنان + LEB + + + Montenegro + черногорец + + 2006 + ME + 1000 Ha + Estimated + Черногория + 4521.0 + euro + euro + 499 + le Monténégro + 1000 Ha + la Montenegro + montenegrino + 9999 + Montenegro + le Monténégro + الجبل الأسود + + 黑山 + Montenegro + FAO estimate + يورو + 黑山的 + Черногория + Черногория + Montenegro + Montenegrin + + من الجبل الأسود + + + MNE + + 514.0 + 273 + + montenegrino + euro + 2008 + Monténégrin + euro + Montenegro + + + الجبل الأسود + Monténégro + 1345.0 + Montenegro + 2007 + Montenegro + 49907 + Montenegro + 2007 + Montenegro + 72720 + 2009 + 1000 + 黑山 + 624.0 + евро + Data reported on country official publications or web sites (Official) or trade country files. + Manual Estimation + MNE + 2647 + الجبل الأسود + + EUR or € + 黑山 + millions of US dollars + + + -30.67 + 27.03 + лоти + 洛 蒂 + 1622.0 + + + millions of US dollars + Lesotho + + LSO + لوتى + مملكة ليسوتو + 1000 Ha + M + 1985 + el Reino de Lesotho + + Королевство Лесото + le Lesotho + + 莱索托 + 122 + 426 + Manual Estimation + 莱索托 + 莱索托王国 + 2304.0 + ليسوتي + LS + Лесото + 4284 + + Lesotho + + 142 + Лесото + 2009 + Lesotho + 1000 + + le Royaume du Lesotho + + ليسوتو + 1000 Ha + Lesotho + 15440 + de Lesotho + of Lesotho + + ليسوتو + 2067.0 + Estimated + the Kingdom of Lesotho + LES + Regno di Lesotho + Lesotho + 29.46 + 9999 + лесотский + 3035.0 + Lesotho + 2007 + 莱索托的 + + FAO estimate + du Lesotho; lesothan + -28.57 + Lesotho + 2008 + 2007 + + Lesotho + Manual Estimation + + del Lesotho + loti + + + 2007 + 2905 + 1000 Ha + + + 9999 + + 30409.0 + Official data reported on FAO Questionnaires from countries + euro + 欧 元 + + Data reported on country official publications or web sites (Official) or trade country files. + 31.58 + FI + Finlande + + millions of US dollars + FAO estimate + Finlandia + 19.47 + 5326.0 + فنلندي + 59.8 + Estimated + the Republic of Finland + Finland + 芬兰的 + يورو + 2008 + 84 + Финляндия + Finland + 1000 + 1985 + euro + 芬兰共和国 + Finlandia + 1000 Ha + + финский + euro + Finland + FIN + 2007 + فنلندا + finlandés + Finlandia + FIN + Финляндия + 271282.0 + 67 + 15410 + فنلندا + + Finnish + جمهورية فنلندا + EUR or € + Repubblica di Finlandia + 芬 兰 + euro + la República de Finlandia + Финляндская Республика + + 2009 + 246 + 芬 兰 + + la République de Finlande + finlandais + 70.09 + 2295.0 + la Finlande + + евро + Finlandia + finlandese + + + 丹 麦 + DNK + corona danese + Estimated + الدانمرك + + دانمركي + الدانمرك + el Reino de Dinamarca + 5470.0 + датский + + + Regno di Danimarca + крона + danese + + 15400 + 4243.0 + DKr + 克 朗 + 9999 + 丹麦的 / 丹麦人 + millions of US dollars + danois + + كرونة + 1985 + le Danemark + Дания + danés + 69 + DK + 342672.0 + DEN + Official data reported on FAO Questionnaires from countries + 2007 + 2008 + Danimarca + 208 + Denmark + corona + Official data reported on FAO Questionnaires from countries + Danish + couronne + 8.07 + 1000 Ha + + 2007 + + 15.16 + 丹 麦 + the Kingdom of Denmark + Denmark + le Royaume du Danemark + 丹麦王国 + krone + Дания + 57.74 + 2185 + Королевство Дания + Dinamarca + Dinamarca + Danemark + 2009 + FAO estimate + 1000 Ha + 2663.0 + 1000 + مملكة الدانمرك + 54.56 + Denmark + Danimarca + + 54 + + + Колумбия + + Colombia + 哥伦比亚的 / 哥伦比亚人 + COL + جمهورية كولومبيا + CO + Colombia + + 110950.0 + كولومبيا + COL + 57 + 2008 + peso + Repubblica di Colombia + كولومبيا + 13.39 + peso + بيسو + millions of US dollars + 1000 + 1985 + песо + 2009 + -81.73 + 45660.0 + 比 索 + Official data reported on FAO Questionnaires from countries + -66.87 + + Colombia + colombiano + peso colombiano + колумбийский + Colombia + 15391 + Colombia + Colombia + la República de Colombia + Colombian + 哥伦比亚 + -4.23 + 42436.0 + 9999 + Colombie + + 1767 + colombien + Республика Колумбия + Estimated + + + + 170 + peso + 哥伦比亚 + + + 哥伦比亚共和国 + colombiano + + 2007 + 1000 Ha + 2007 + Colombia + كولومبي + Колумбия + la Colombie + 242268.0 + Official data reported on FAO Questionnaires from countries + 1000 Ha + la République de Colombie + + + FAO estimate + the Republic of Colombia + 44 + + + 51 + Czechslovakia + Czechslovakia + + 1985 + + CZE + 200 + + 1993 + + + 2009 + جمهورية سنغافورة + 7077 + 1000 Ha + SG + сингапурский + Сингапур + دولار + + Repubblica di Singapore + + 新加坡 + سنغافورة + Singapur + 2007 + dollaro di Singapore + 4737.0 + SIN + + 新加坡共和国 + 181948.0 + 69.7 + singapourien + 9999 + 1000 + FAO estimate + + 2007 + Manual Estimation + S$ + سنغافورة + 新加坡的 + 1985 + Manual Estimation + SGP + 1000 Ha + 0.8 + + سنغافوري + la República de Singapur + Республика Сингапур + la République de Singapour + Singapour + the Republic of Singapore + + 19034 + Сингапур + dollar + Singapore + Singapore + 2008 + Singaporean + 新加坡 + 702 + 200 + доллар + Estimated + millions of US dollars + Singapour + Singapur + singapurense + dollar + 222 + Singapore + Singapore + dólar + singaporiano + Singapore + + + + + + + Repubblica ceca + + كورونا + Official data reported on FAO Questionnaires from countries + Чешская Республика + République tchèque + 216485.0 + 48.56 + 7725.0 + 65 + couronne + Czech + la République tchèque + 捷克共和国 + the Czech Republic + 33095 + CZE + CEH + CZ + + FAO estimate + 克 朗 + 1000 Ha + 1000 Ha + la République tchèque + + крона + чешский + + 203 + 2008 + 捷克共和国 + Repubblica ceca + la República Checa + tchèque + 2009 + 51.03 + CZK + ceco + Estimated + koruna + + República Checa + la República Checa + الجمهورية التشيكية + Repubblica ceca + 4249.0 + 10369.0 + corona + 捷克的 / 捷克人 + الجمهورية التشيكية + 9999 + + millions of US dollars + + Official data reported on FAO Questionnaires from countries + Czech_Republic + corona ceca + 捷克共和国 + الجمهورية التشيكية + checo + + 1993 + Чешская Республика + 18.86 + Чешская Республика + 12.1 + تشيكي + the Czech Republic + 32174 + 2007 + 2007 + Czech Republic + 1000 + 167 + + + Guadalupa + EUR or € + la Guadeloupe + della Guadalupa + of Guadeloupe + 169.0 + 1000 + 9999 + 2009 + 2007 + GUD + euro + 瓜德罗普 + 欧 元 + Manual Estimation + GP + 3406 + 1000 Ha + евро + + غواديالوب + يورو + Guadalupe + 1000 Ha + 465.0 + GLP + Dipartimento di Guadalupa + euro + 19020 + Guadalupe + 瓜德罗普人/瓜德罗普的 + 100 + FAO estimate + euro + Guadalupa + من غواديلوب + Guadeloupe + Data reported on country official publications or web sites (Official) or trade country files. + 87 + غوادالوب + 44.0 + 1985 + 瓜德罗普 + de Guadalupe + غواديالوب + + 312 + Guadalupe + (из/ житель) Гваделупы + 瓜德罗普 + 2007 + guadeloupéen + Guadeloupe + euro + Guadeloupe + la Guadeloupe + Guadeloupe + + + 2008 + 2007 + 9999 + 圣文森特和格林纳丁斯 + + dollaro dei Caraibi orientali + + 1000 Ha + Saint Vincent and the Grenadines + سانت فنسنت وجزر غرينادين + 圣文森特和格林纳丁斯的 + EC$ + 39.0 + Saint Vincent e Grenadine + 594.0 + Saint Vincent e Grenadine + سانت فنسنت وجزر غرينادين + Saint-Vincent-et-les Grenadines + di Saint Vincent e Grenadine + 109.0 + 圣文森特和格林纳丁斯 + de San Vicente y las Granadinas + Saint Vincent and the Grenadines + VC + دولار شرق الكاريبي + 14.0 + 1000 + 2009 + Saint-Vincent-et-les Grenadines + (из/житель) Сент-Винсента и Гренадин + millions of US dollars + dollar des Caraïbes orientales + + + + + EC dollar (East Caribbean dollar) + of Saint Vincent and the Grenadines + VCT + Сент-Винсент и Гренадины + 1985 + -61.12 + -61.47 + 2007 + Saint_Vincent_and_the_Grenadines + 12.58 + 东加勒比元 + STV + San Vicente y las Granadinas + Сент-Винсент и Гренадины + 1000 Ha + 15479 + Сент-Винсент и Гренадины + من سانت فنسنت وجزر غرينادين + Saint Vincent e Grenadine + FAO estimate + 191 + San Vicente y las Granadinas + Manual Estimation + восточнокарибский доллар + Saint-Vincent-et-les Grenadines + 13.38 + + 圣文森特和格林纳丁斯 + San Vicente y las Granadinas + Estimated + 211 + سانت فنسنت وجزر غرينادين + Saint Vincent and the Grenadines + 670 + dólar del Caribe oriental + + 7352 + Data reported on country official publications or web sites (Official) or trade country files. + de Saint-Vincent-et-les Grenadines + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + UN Statistics Division (M49): http://unstats.un.org/unsd/methods/m49/m49alpha.htm + + + + + 1 + + + + 89 + CFA franc (Communauté financière africaine) + Габонская Республика + millions of US dollars + Габон + франк КФА + 1985 + 5160.0 + + Manual Estimation + فرنك الجماعة المالية الأفريقية + 266 + 25767.0 + 15412 + 14.5 + -3.98 + + gabonés + el Gabón + + Gabón + the Gabonese Republic + + Габон + Estimated + 14435.0 + 3161 + 1000 Ha + 1475.0 + Manual Estimation + franco CFA + غابون + + + 2007 + + + 2.32 + Gabon + Gabon + franco CFA (Communauté financière africaine) + la República Gabonesa + 非洲法郎 + + Repubblica gabonese + la République gabonaise + 2008 + 1000 + gabonais + غابون + FAO estimate + 加蓬的 + + 74 + 2009 + le Gabon + 8.7 + Gabon + 2007 + 9999 + غابونى + 加 蓬 + 加 蓬 + 加蓬共和国 + الجمهورية الغابونية + GAB + GA + + gabonese + Gabonese + Gabon + GAB + Gabon + 1000 Ha + Gabon + franc CFA (Communauté financière africaine) + габонский + + + 东加勒比元 + Антигуа и Барбуда + + 1000 Ha + 2007 + de Antigua y Barbuda + 44.0 + di Antigua e Barbuda + ATG + 13.0 + 028 + восточнокарибский доллар + + Antigua e Barbuda + -61.91 + Data reported on country official publications or web sites (Official) or trade country files. + Manual Estimation + 9999 + 11 + dólar del Caribe oriental + من أنتيغوا وباربودا + Antigua and Barbuda + dollaro dei Caraibi orientali + of Antigua and Barbuda + 安提瓜和巴布达的 / 安提瓜和巴布达人 + Antigua y Barbuda + (из/житель) Антигуа и Барбуды + 17.0 + 15365 + -61.67 + Антигуа и Барбуда + 8 + 17.73 + millions of US dollars + + + 2009 + أنتيغوا وباربودا + 1985 + Antigua-et-Barbuda + dollar des Caraïbes orientales + 2007 + 88.0 + أنتيغوا وباربودا + 安提瓜和巴布达 + 1225.0 + + d'Antigua-et-Barbuda + Antigua y Barbuda + Antigua e Barbuda + Antigua-et-Barbuda + Antigua y Barbuda + 1000 + Antigua and Barbuda + 安提瓜和巴布达 + + FAO estimate + Antigua_and_Barbuda + Antigua-et-Barbuda + دولار شرق الكاريبى + 2008 + Antigua e Barbuda + 安提瓜和巴布达 + ANT + أنتيغوا وباربودا + Estimated + + 505 + + Антигуа и Барбуда + AG + Antigua and Barbuda + 1000 Ha + EC dollar (East Caribbean dollar) + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + -8.67 + 1985 + Argelia + 2008 + جزائرى + algérien + Алжир + + Argelia + la République algérienne démocratique et populaire + l'Algérie + 阿尔及利亚的 + + millions of US dollars + Алжирская Народная Демократическая Республика + + 1000 + Algeria + 15363 + DA + + 1000 Ha + la República Argelina Democrática y Popular + الجزائر + Repubblica algerina democratica e popolare + 阿尔及利亚 + Official data reported on FAO Questionnaires from countries + dinaro algerino + + + + 4 + 21.56 + Official data reported on FAO Questionnaires from countries + Algeria + 34895.0 + 1000 Ha + 2009 + algerino + 41252.0 + + + 012 + 18.96 + 阿尔及利亚 + 阿尔及利亚人民民主共和国 + dinar + динар + الجزائر + Algeria + + argelino + + Estimated + 9999 + دينار + 2007 + Алжир + Algeria + Algeria + + 第纳尔 + ALG + the People's Democratic Republic of Algeria + DZA + 2007 + Algerian + 259 + FAO estimate + 4 + 37.09 + алжирский + dinar + Algérie + الجمهورية الجزائرية الديمقراطية الشعبية + 238174.0 + DZ + + 173882.0 + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + + Congo + 1985 + the Republic of the Congo + Congo + 2008 + 15393 + 刚果的 / 刚果人 + + Congo + + Congolese + COG + congolese + + 1811 + + Республика Конго + la República del Congo + + 18.65 + franco CFA (Communauté financière africaine) + франк КФА + 178 + + CG + 46 + 34150.0 + congoleño + конголезский + 59 + + millions of US dollars + franco CFA + + 刚 果 + -5.03 + PRC + كونغولي + 3.7 + 刚果共和国 + 10545.0 + Estimated + 10699.0 + el Congo + + congolais + 1000 Ha + CFA franc (Communauté financière africaine) + Congo + Congo + جمهورية الكونغو + فرنك الجماعة المالية الأفريقية + 1000 Ha + Manual Estimation + الكونغو + 2009 + Конго + la République du Congo + + 2007 + الكونغو + + 2007 + + 3683.0 + le Congo + 刚 果 + Manual Estimation + the Congo + franc CFA (Communauté financière africaine) + 9999 + + 1000 + + Конго + 非洲法郎 + Repubblica del Congo + FAO estimate + + 11.21 + Congo_Republic_of_the + + + Беларусь + + بيلاروس + Беларусь + بيلاروسي + белорусский + 57 + 23.17 + + + 白俄罗斯共和国 + + belaruso + 9999 + Belarus + + rouble + rublo bielorusso + Bielorussia + 1991 + 32.77 + + + 2008 + Belarusian + Estimated + 白俄罗斯 + 112 + la République du Bélarus + рубль + bélarussien + Республика Беларусь + روبل + rublo + rouble + Bélarus + BYE + Manual Estimation + 白俄罗斯 + 33237 + Belarús + بيلاروس + 卢 布 + Bielorussia + + 56.16 + 1000 Ha + FAO estimate + 20290.0 + Manual Estimation + 16382 + + BY + + 1000 Ha + + + bielorusso + 2009 + + 2007 + 9634.0 + 2007 + la República de Belarús + 白俄罗斯的 / 白俄罗斯人 + the Republic of Belarus + + millions of US dollars + le Bélarus + جمهورية بيلاروس + Rbl + 60302.0 + 8950.0 + 1000 + Belarus + Repubblica di Bielorussia + Belarus + 51.26 + BLR + 26 + Belarús + + + + + + 1985 + 1992 + + + + + + + + + + Union_of_Soviet_Socialist_Republic_the + + + + + Union_of_Soviet_Socialist_Republic_the + 810 + 228 + + + + 1 + + + + LBR + 4307 + 利比里亚的 + LR + millions of US dollars + Liberia + 3955.0 + Estimated + Либерия + 8.55 + 15441 + + 1985 + + Libéria + دولار + 1000 + 2008 + Liberia + 2600.0 + 利比里亚共和国 + + + Liberia + либерийский + -11.52 + 9632.0 + dollar + liberiano + 2009 + dollaro liberiano + Manual Estimation + 430 + Liberia + 123 + + 利比里亚 + + liberiano + 2007 + + + dollar + + la República de Liberia + 2007 + доллар + Manual Estimation + Repubblica di Liberia + ليبري + + FAO estimate + the Republic of Liberia + libérien + 利比里亚 + dólar + جمهورية ليبريا + la République du Libéria + + + Liberia + -7.37 + Liberia + Liberian + + 1000 Ha + + ليبريا + ليبريا + 144 + $ + LIR + Liberia + 1000 Ha + 9999 + + 4.35 + le Libéria + Республика Либерия + 870.0 + Либерия + + + + 1 + + + + 260693.0 + Thailandia + baht + thailandese + THA + 7701 + Thailand + Таиланд + + 15496 + 1000 Ha + 9999 + 5.61 + Regno di Thailandia + Manual Estimation + 216 + تايلند + Thai + 2007 + tailandés + 105.64 + + Estimated + 764 + FAO estimate + + la Thaïlande + millions of US dollars + 2008 + 2007 + + baht + 19750.0 + 1000 + 240 + Thaïlande + + Thailand + Королевство Таиланд + + + le Royaume de Thaïlande + 1985 + مملكة تايلند + the Kingdom of Thailand + Thailandia + 51089.0 + تايلند + TH + el Reino de Tailandia + Tailandia + + 泰 国 + Таиланд + таиландский + B + thaïlandais + Tailandia + 1000 Ha + + 67764.0 + 97.35 + + бат + 泰 国 + 泰国的 + Thailand + تايلندى + 泰王国 + Manual Estimation + 20.47 + + 2009 + باهت + THA + + + 2007 + + Федеративная Демократическая Республика Эфиопия + + + + etíope + l'Éthiopie + FAO estimate + Manual Estimation + 35077.0 + إثيوبيا + 比 尔 + birr + 1000 Ha + 埃塞俄比亚 + + + 100000.0 + 2676 + + Эфиопия + эфиопский + 2009 + + + + + 1000 Ha + Etiopia + Ethiopian + 1000 + la República Democrática Federal de Etiopía + ETH + إثيوبيا + + 埃塞俄比亚 + Etiopia + 9999 + Ethiopia + + 82825.0 + birr + Br + la République fédérale démocratique d'Éthiopie + + بر + + 15408 + 32.99 + Estimated + إثيوبي + + Etiopía + etiope + + millions of US dollars + Éthiopie + ET + 26487.0 + 埃塞俄比亚联邦民主共和国 + 2007 + Ethiopia + the Federal Democratic Republic of Ethiopia + 2008 + Manual Estimation + 1993 + ETH + 3.41 + 231 + Ethiopia + быр + éthiopien + جمهورية إثيوبيا الديمقراطية الاتحادية + Repubblica federale democratica di Etiopia + 埃塞俄比亚的 + 47.98 + Эфиопия + 79 + + 238 + birr + + + Etiopía + birr + 14.9 + + + + 1 + + + + + Benin + 贝 宁 + Benin + BEN + + + Benin + le Bénin + Бенин + beninés + 53 + Benin + Bénin + Benin + 12.42 + + 204 + + 贝宁共和国 + + 875 + 1985 + BEN + + the Republic of Benin + 2007 + 6.23 + + 15375 + 1000 Ha + FAO estimate + franco CFA (Communauté financière africaine) + 2007 + 1000 Ha + 2008 + 3.85 + + بنن + + BJ + 11062.0 + franc CFA (Communauté financière africaine) + بنن + Республика Бенин + + beniniano + Benin + 贝 宁 + 9999 + 3520.0 + 1000 + la République du Bénin + فرنك الجماعة المالية الأفريقية + 0.77 + + + + Manual Estimation + 8935.0 + Manual Estimation + بنني + béninois + 2009 + franco CFA + 非洲法郎 + 6680.0 + 29 + бельгийский + Бенин + la República de Benin + франк КФА + CFA franc (Communauté financière africaine) + جمهورية بنن + Benin + CFAF + Estimated + + Repubblica del Benin + 比利时的 / 比利时人 + millions of US dollars + Beninese + + + + + + + + + 2007 + Мальдивская Республика + ملديف + + rupia maldiviana + 2008 + Maldives + the Republic of Maldives + MDV + 2007 + Maldive + rufiyaa + + maldivo + la République des Maldives + 马尔代夫共和国 + Data reported on country official publications or web sites (Official) or trade country files. + maldiviano + روفية + 1985 + 1000 + les Maldives + Maldives + Maldivas + Maldivas + FAO estimate + -0.7 + 73.08 + 1000 Ha + 132 + Мальдивские Острова (Мальдивы) + + 13.0 + 1260.0 + MV + la República de Maldivas + 462 + 309.0 + 73.58 + + 2009 + maldivien + ملديف + Maldive + 1000 Ha + 6.93 + + Maldives + Maldivian + ملديفي + Repubblica delle Maldive + + MDV + 马尔代夫 + руфия + мальдивский + Rf + جمهورية ملديف + 9999 + 4534 + 马尔代夫的 + + Maldives + 30.0 + Manual Estimation + 马尔代夫 + + 154 + 鲁菲亚 + 15447 + + Estimated + Мальдивские Острова (Мальдивы) + millions of US dollars + + + + 1 + + + + 7347 + sterlina di Sant'Elena + фунт + de Sainte-Hélène + STH + Santa Elena + Sant'Elena + of Saint Helena + 圣赫勒拿 + 39.0 + Sant'Elena e dipendenze + سانت هيلينا + Sainte-Hélène + FAO estimate + 654 + libra de Santa Elena + 19031 + + Sant'Elena + di Sant'Elena + Santa Elena + Saint_Helena + 1000 + 2007 + SHN + 4.0 + 圣赫勒拿人/圣赫勒拿 + St Helena pound + جنيه سانت هيلينا + Santa Elena + 207 + Saint Helena + 187 + + Sainte-Hélène + de Santa Elena + 2007 + Manual Estimation + Saint Helena + من سانت هيلينا + 2009 + 12.0 + 1000 Ha + livre de Sainte-Hélène + سانت هيلينا + £ + سانت هيلينا + (из/ житель) острова Святой Елены + Sainte-Hélène + 圣赫勒拿 + 圣赫勒拿 + Manual Estimation + 1985 + 1000 Ha + + SH + Saint Helena + 9999 + + + AMU + Unión del Magreb Árabe + 9999 + + UMA + Arab Maghreb Union + + Союз Арабского Магриба + + 49875 + Union du Maghreb arabe + Unión del Magreb Árabe + Arab Maghreb Union + + + Union du Maghreb arabe + 阿拉伯马格里布联盟 + + اتحاد المغرب العربى + UMA + + + + 1 + + + + EC dollar (East Caribbean dollar) + 2547 + (из/ житель) Ангильи + 1000 Ha + أنغويلا + de Anguilla + Anguilla + 258 + dollaro dei Caraibi orientali + 东加勒比元 + Data reported on country official publications or web sites (Official) or trade country files. + Anguilla + 安圭拉 + 660 + EC$ + + AI + Anguillan + 29189 + 2009 + أنغويلا + من أنغويلا + Anguilla + dólar del Caribe oriental + FAO estimate + Anguilla + دولار شرق الكاريبى + di Anguilla + 2007 + 安圭拉的/安圭拉人 + Isola d'Anguilla + Anguilla + Anguilla + 15.0 + Anguilla + 9 + 1985 + + Anguilla + ANL + 安圭拉 + 9.0 + d'Anguilla + Anguilla + + 1000 + أنغويلا + AIA + Anguilla + dollar des Caraïbes orientales + 安圭拉 + Anguilla + 9999 + Anguilla + восточнокарибский доллар + + + + صومالي + Сомалийская Республика + Somalia + الجمهورية الصومالية + 7237 + somalí + 41.0 + 索马里的 + shilling + сомалийский + 706 + + + + 51.42 + Somalia + 9999 + + + scellino somalo + millions of US dollars + 11.99 + la Somalie + 201 + SOM + -1.66 + Сомали + Somali + Repubblica somala + + + 62734.0 + la République somalienne + + 2007 + Estimated + + شلن + 先 令 + somalien + Manual Estimation + FAO estimate + 15487 + 1000 + Somalia + the Somali Republic + 索马里 + 2008 + + 2009 + + 9133.0 + 1985 + Somalia + Manual Estimation + So.Sh + Сомали + 226 + SOM + шиллинг + 1000 Ha + 44027.0 + + Somalia + Somalia + somalo + Somalia + SO + 2007 + + + 1000 Ha + la República Somalí + 索马里 + + الصومال + 索马里共和国 + الصومال + Somalie + + + + riel + مملكة كمبوديا + Cambogia + Cambodia + 5455.0 + riel + 9574.0 + Estimated + 2009 + + 115 + 2008 + Cambodia + el Reino de Camboya + Cambodge + 15383 + كمبوديا + камбоджийский + Cambodian + 116 + Cambodia + كمبوديا + 柬埔寨 + Камбоджа + 柬埔寨王国 + FAO estimate + Manual Estimation + riel + KHM + 柬埔寨的 + + 17652.0 + + 1985 + + Camboya + 1000 Ha + Cambogia + Manual Estimation + + cambodgien + 102.35 + CR + Camboya + риаль[м.] + 2007 + + + 瑞 尔 + + 9999 + CMB + 2007 + 9.91 + 柬埔寨 + Королевство Камбоджа + + le Royaume du Cambodge + 1000 Ha + 107.62 + Камбоджа + millions of US dollars + 1000 + كمبودي + 14.69 + le Cambodge + + camboyano + + riel + the Kingdom of Cambodia + cambogiano + KH + رييل + 44 + 4073 + Regno di Cambogia + 14805.0 + + + + + + + + + + 1 + + + + + 2008 + + República Federal Democrática de Nepal + 88.2 + Népal + 1000 Ha + روبية + 尼泊尔 + Непал + rupia nepalese + nepalés + 2007 + NEP + Federal Democratic Republic of Nepal + + nepalese + NP + le Népal + непальский + + نيبال + 1985 + 5124 + 9999 + millions of US dollars + Непал + République démocratique fédérale du Nepal + 29331.0 + + + FAO estimate + 尼泊尔 + نيبالي + 80.06 + 26.36 + + 1000 Ha + Nepal + népalais + نيبال + Nepal + Королевство Непал + Official data reported on FAO Questionnaires from countries + + Nr + 尼泊尔的 + 2007 + 1000 + Nepal + Nepal + 524 + 12615.0 + 30.43 + Nepal + 卢 比 + 15458 + + Nepal + NPL + 2009 + + + Nepal + Estimated + 尼泊尔 + + Nepalese + Manual Estimation + rupee + рупия + + 149 + + نيبال + 175 + 14335.0 + Nepal + 4210.0 + + + FAO estimate + + Chipre + 32.27 + livre + chypriote + 34.63 + 196 + Chypre + 1985 + millions of US dollars + 塞浦路斯共和国 + + قبرص + 塞浦路斯 + £C + + CY + la República de Chipre + кипрский + 2007 + 157.0 + 21277.0 + pound + the Republic of Cyprus + фунт + جنيه + 9999 + Cipro + Cyprus + Cyprus + Cyprus + 2080 + Repubblica di Cipro + Chipre + 34.59 + 15398 + 871.0 + Estimated + Кипр + libra + la République de Chypre + 1000 Ha + قبرصي + 64 + Cypriot + Cipro + 塞浦路斯的 / 塞浦路斯人 + قبرص + Республика Кипр + Chypre + Official data reported on FAO Questionnaires from countries + 1000 Ha + 2007 + Manual Estimation + chipriota + 35.69 + 塞浦路斯 + CYP + 924.0 + 1000 + 50 + CYP + Кипр + sterlina cipriota + جمهورية قبرص + 2007 + + + cipriota + 2009 + + + + + + السنغال + + la République du Sénégal + CFA franc (Communauté financière africaine) + senegalese + Sénégal + + 195 + франк КФА + + SEN + -17.53 + сенегальский + السنغال + 塞内加尔的 + Senegal + + 非洲法郎 + فرنك الجماعة المالية الأفريقية + Senegal + la República del Senegal + 塞内加尔 + 1985 + Senegal + 19253.0 + SN + Сенегал + + 16.69 + 1000 + Республика Сенегал + Manual Estimation + the Republic of Senegal + السنغالي + 2008 + -11.35 + 9999 + SEN + Estimated + + Manual Estimation + 2007 + 8637.0 + 15483 + + + le Sénégal + franco CFA (Communauté financière africaine) + + Senegal + + Senegal + Senegalese + 塞内加尔共和国 + 1000 Ha + + + el Senegal + 12.31 + franc CFA (Communauté financière africaine) + + + + 1000 Ha + 2007 + Repubblica del Senegal + Senegal + senegalés + Сенегал + + 686 + + 217 + + جمهورية السنغال + sénégalais + 13209.0 + 6970 + 塞内加尔 + millions of US dollars + 2009 + franco CFA + FAO estimate + 12534.0 + + + Estimated + + 55.05 + 15414 + 82167.0 + Alemania + 2008 + EUR or € + 德国的 / 德国人 + + 15.03 + Germany + + tedesco + Germania + 德意志联邦共和国 + + Германия + l'Allemagne + 9999 + la República Federal de Alemania + the Federal Republic of Germany + Germania + 5.87 + يورو + + 276 + Germany + + Repubblica federale di Germania + 47.27 + 16950.0 + 1000 + euro + + 1000 Ha + 欧 元 + 2009 + ألمانيا + Germany + DEU + Германия + + ألمانيا + немецкий + millions of US dollars + 2007 + 93 + + 3652824.0 + 德 国 + euro + 34877.0 + + + + Федеративая Республика Германия + DE + Allemagne + 1990 + + FAO estimate + + alemán + GER + 1000 Ha + German + euro + + 德 国 + la République fédérale d'Allemagne + 3245 + allemand + + + Alemania + 79 + euro + 2007 + + евро + جمهورية ألمانيا الاتحادية + Official data reported on FAO Questionnaires from countries + ألماني + + + + 3244 + 278 + + German_Democratic_Republic_the + German_Democratic_Republic_the + 1985 + 1990 + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + Lussemburgo + Luxemburgo + 6.53 + 256 + + لكسمبرغ + 486.0 + 卢森堡 + 2007 + 148 + 5.73 + 2007 + + + euro + Luxembourg + 卢森堡大公国 + of Luxembourg + euro + + 2009 + le Grand-Duché de Luxembourg + Luxembourg + euro + Люксембург + Luxembourg + люксембургский + 9999 + 1000 Ha + Granducato di Lussemburgo + 1985 + lussemburghese + Люксембург + евро + luxemburgués + Luxembourg + يورو + FAO estimate + + 131.0 + Official data reported on FAO Questionnaires from countries + 4471 + LUX + Великое Герцогство Люксембург + + 442 + 卢森堡 + el Gran Ducado de Luxemburgo + millions of US dollars + EUR or € + 49.45 + 卢森堡的 + 欧 元 + luxembourgeois + Estimated + 54257.0 + Luxemburgo + euro + le Luxembourg + the Grand Duchy of Luxembourg + 259.0 + 1000 + 15443 + Lussemburgo + LU + 1000 Ha + Official data reported on FAO Questionnaires from countries + LUX + 50.18 + + + لكسمبرغ + 2008 + دوقية لكسمبرغ الكبرى + + من لكسمبرغ + + + + Сообщество сахело-сахарских государств + + تجمع دول الساحل والصحراء + 53026 + + + + Communauté des États Sahélo-Sahariens + + + + Comunidad de Estados Sahelo-Saharianos + + Community of Sahel-Saharan States + + + + 9999 + + + 萨赫勒-撒哈拉国家共同体 + Comunidad de Estados Sahelo-Saharianos + + + Community of Sahel-Saharan States + + + CEN-SAD + + + 103 + 2009 + Data reported on country official publications or web sites (Official) or trade country files. + the Republic of Guatemala + 2008 + + 1000 Ha + 9999 + 38977.0 + quetzal + 320 + Guatemala + guatemalteco + Гватемала + 2007 + quetzal + Guatemala + -88.23 + Q + 15418 + غواتيمالا + millions of US dollars + GUA + Guatemalan + + quetzal + -92.23 + la République du Guatemala + 危地马拉 + + 危地马拉的 + + 危地马拉共和国 + 3418 + + 1000 + Estimated + Manual Estimation + + гватемальский + 10716.0 + Гватемала + 2007 + غواتيمالا + FAO estimate + Guatemala + + la República de Guatemala + guatémaltèque + 1985 + 4464.0 + GTM + 13.74 + + Guatemala + 89 + Guatemala + 1000 Ha + جمهورية غواتيمالا + 危地马拉 + Guatemala + quetzal + guatemalteco + 17.82 + + 格查尔 + Guatemala + غواتيمالي + GT + Республика Гватемала + كتزال + Repubblica del Guatemala + + le Guatemala + + 14027.0 + Guatemala + + + + 1 + + + + + 克罗地亚的 + the Republic of Croatia + + 克罗地亚共和国 + 69332.0 + Official data reported on FAO Questionnaires from countries + Croatia + Croacia + HR + 克罗地亚 + 98 + 1000 + kuna + + Croacia + 191 + kuna + + Official data reported on FAO Questionnaires from countries + 5391.0 + 库 纳 + Estimated + 1000 Ha + HRK + كونا + 2008 + куна + + Repubblica di Croazia + 克罗地亚 + Croatia + جمهورية كرواتيا + CRO + + كرواتيا + FAO estimate + Croatia + + millions of US dollars + كرواتيا + Croatie + 25066 + la République de Croatie + 2007 + Croazia + 62 + 4416.0 + 1201.0 + 2007 + + 9999 + croato + + kuna + Республика Хорватия + + 19.44 + 46.53 + Croatian + Croazia + хорватский + kuna + 1000 Ha + la Croatie + croata + 33969 + 13.49 + كرواتيي + 1992 + HRV + Хорватия + 42.39 + croate + 2009 + + la República de Croacia + Хорватия + + + + + la Mauritanie + 乌吉亚 + ouguiya + UM + + 1000 Ha + جمهورية موريتانيا الإسلامية + + 478 + Mauritania + ouguiya + -17.07 + 103070.0 + موريتانيا + + mauritano + + + 27.3 + + 9999 + Data reported on country official publications or web sites (Official) or trade country files. + угия + Mauritania + Manual Estimation + Mauritania + موريتاني + أوقية + 3291.0 + 159 + Мавритания + мавританский + mauritano + + Mauritania + 2008 + millions of US dollars + the Islamic Republic of Mauritania + 1000 + 2007 + + FAO estimate + 2858.0 + + 2007 + MAU + 14.72 + 15450 + 136 + 毛里塔尼亚伊斯兰共和国 + 毛里塔尼亚的 + Repubblica islamica di Mauritania + 4660 + 2009 + موريتانيا + ouguiya + MR + Мавритания + 毛里塔尼亚 + + 毛里塔尼亚 + MRT + Исламская Республика Мавритания + Mauritania + + + -4.82 + Mauritania + Mauritania + Mauritanie + 39712.0 + mauritanien + + la República Islámica de Mauritania + la République islamique de Mauritanie + 1000 Ha + 1985 + Estimated + + Mauritanian + + + 南斯拉夫 + Yugoslavia + + Yugoslavia + Yougoslavie + Federal Republic of Yugoslavia + + Yougoslavie + Yugoslavia + + 南斯拉夫 + 1994 + Yugoslavia + 2003 + + + 2008 + 86.0 + Data reported on country official publications or web sites (Official) or trade country files. + + أندورا + andorran + 安道尔公国 + Andorran + + andorrano + 47.0 + + l'Andorre + 1000 + Andorre + أندوري + 1000 Ha + euro + إمارة أندورا + 安道尔的 / 安道尔人 + 7 + 26.0 + 6 + Andorra + euro + 2007 + Andorra + la Principauté d'Andorre + 403 + 2007 + + + يورو + 1985 + 9999 + + 1000 Ha + Estimated + + AD + Андорра + 安道尔 + 欧 元 + Княжество Андорра + Principato d'Andorra + millions of US dollars + 2009 + андоррский + euro + AND + Андорра + Andorra + the Principality of Andorra + Andorra + Andorra + Andorra + euro + andorrano + 19012 + Manual Estimation + el Principado de Andorra + евро + FAO estimate + 安道尔 + + أندورا + Andorra + AND + 020 + + + vietnamien + 8.42 + Вьетнам + + 15510 + 237 + FAO estimate + 2007 + Repubblica socialista del Vietnam + فييت نام + le Viet Nam + Viet Nam + 1985 + VNM + + Viet Nam + vietnamita + вьетнамский + + Viet Nam + + VIE + vietnamita + 9999 + Vietnamese + 2009 + la République socialiste du Viet Nam + 109.47 + + VN + + Manual Estimation + 8227 + 越南社会主义共和国 + جمهورية فييت نام الاشتراكية + + millions of US dollars + 90705.0 + دونغ + Vietnam + dong + донг + 2008 + Viet Nam + Социалистическая Республика Вьетнам + فييتنامي + Vietnam + 10072.0 + Manual Estimation + Vietnam + 88069.0 + dong + 704 + + 264 + the Socialist Republic of Viet Nam + 1000 Ha + + 23.39 + la República Socialista de Viet Nam + فييت نام + + 31007.0 + 1000 Ha + Estimated + 2007 + 越南的 + 越 南 + Viet Nam + 102.15 + Вьетнам + + 越 南 + 1000 + + + + + + + + + + + + Tanzania + the United Republic of Tanzania + tanzanien + Объединенная Республика Танзания + URT + + 7608 + 坦桑尼亚联合共和国 + + + la République-Unie de Tanzanie + 1000 Ha + Repubblica unita di Tanzania + 坦桑尼亚的 + + TSh + la République-Unie de Tanzanie + tanzaniano + + 1985 + 215 + scellino tanzaniano + Объединенная Республика Танзания + + la República Unida de Tanzanía + танзанийский + جمهورية تنزانيا المتحدة + 坦桑尼亚联合共和国 + 9999 + Data refer to mainland Tanzania only. Estimated + + 2007 + + Repubblica unita di Tanzania + + 2008 + United Republic of Tanzania + 1000 Ha + Tanzanian + 先 令 + Official data reported on FAO Questionnaires from countries + 40.45 + شلن + + Manual Estimation + + 坦桑尼亚联合共和国 + -0.99 + 834 + Объединенная Республика Танзания + + the United Republic of Tanzania + 43739.0 + 257 + шиллинг + FAO estimate + + 2009 + + la República Unida de Tanzanía + TZA + جمهورية تنزانيا المتحدة + + + 1000 + + تنزاني + República Unida de Tanzanía + shilling + + + 29.33 + tanzaniano + 20490.0 + TZ + 15505 + 88580.0 + République-Unie de Tanzanie + 34200.0 + millions of US dollars + -11.75 + Repubblica unita di Tanzania + جمهورية تنزانيا المتحدة + 2007 + + + + + + + + + + + + + 4026 + إيطاليا + 2007 + 意大利 + ITA + Manual Estimation + 1000 Ha + Italia + + + italien + + Official data reported on FAO Questionnaires from countries + 29414.0 + الجمهورية الإيطالية + 意大利的 + millions of US dollars + the Republic of Italy + Italy + 意大利共和国 + l'Italie + EUR or € + 59870.0 + 15432 + 2007 + Italian + + 1000 + Italy + 意大利 + Италия + 1985 + 47.09 + 18.52 + euro + 106 + Италия + Italia + إيطاليا + + 2009 + 9999 + ITA + 欧 元 + + 1000 Ha + 2008 + 35.49 + Repubblica italiana + Italy + + euro + IT + 6.62 + 13888.0 + 2293008.0 + إيطالي + + يورو + итальянский + 122 + euro + Итальянская Республика + + Italia + la République italienne + Estimated + 380 + italiano + italiano + + la República Italiana + + евро + euro + Italia + Italie + FAO estimate + + + + África austral + + الجنوب الأفريقى + + + + Africa del Sud + 南部非洲 + southern Africa + 南部非洲 + Africa del Sud + + الجنوب الأفريقى + Южная Африка + Южная Африка + southern Africa + الجنوب الأفريقى + 5104 + + África austral + Afrique australe + Africa del Sud + southern Africa + Afrique australe + Южная Африка + 南部非洲 + 15243 + África austral + Afrique australe + + + + 也门共和国 + йеменский + Yemeni + Yemen + + rial + + 1000 Ha + + ريال + + + la République du Yémen + Yemen + 41.82 + 887 + 也 门 + Yemen + 52797.0 + 里亚尔 + 9999 + le Yémen + Manual Estimation + 26576.0 + + Yemen + Йемен + rial + 1990 + FAO estimate + Estimated + yemenita + + yemení + 也门的 + 12.11 + + 23625.0 + 2007 + el Yemen + Manual Estimation + الجمهورية اليمنية + 54.54 + اليمن + Yémen + 1000 + 2007 + the Republic of Yemen + Йемен + 2009 + YEM + 23580.0 + + la República del Yemen + YE + yéménite + 8483 + риал + 249 + 2008 + rial yemenita + 1000 Ha + + Йеменская Республика + 15511 + اليمن + + Yemen + + + يمنى + YEM + + Yemen + YRls + millions of US dollars + 269 + 19.0 + 也 门 + Repubblica dello Yemen + + + + + UN cartographic maps (http://www.un.org/Depts/Cartographic/map/profile/world.pdf) + + + + + + + Fisheries Global Information System http://www.fao.org/figis/servlet/RefServlet + + + + + + 1 + + + + + + + + + + + + + Official data reported on FAO Questionnaires from countries + фунт + 760 + + República Árabe Siria + millions of US dollars + 阿拉伯叙利亚共和国 + 2007 + République arabe syrienne + + the Syrian Arab Republic + سوري + Syrian + 238 + + la République arabe syrienne + Syrian Arab Republic + 1000 + + 1000 Ha + + la República Árabe Siria + 18363.0 + الجمهورية العربية السورية + SYR + 35.61 + 37.32 + + Official data reported on FAO Questionnaires from countries + 阿拉伯叙利亚共和国 + الجمهورية العربية السورية + Сирийская Арабская Республика + 2007 + 1000 Ha + + 叙利亚的 + + lira siriana + + SY + FAO estimate + + Syria + 42.37 + 32.31 + + ليرة + la República Árabe Siria + siriano + сирийский + 13897.0 + 55204.0 + Сирийская Арабская Республика + syrien + + + pound + SYR + الجمهورية العربية السورية + 2009 + + sirio + + 1985 + + Siria + 212 + Siria + 阿拉伯叙利亚共和国 + Estimated + Сирийская Арабская Республика + 15495 + Repubblica araba siriana + LS + la République arabe syrienne + the Syrian Arab Republic + 9999 + 2008 + 7576 + 21906.0 + + + IGAD + + Autorité intergouvernementale sur le développement + 政府间发展管理局 + Intergovernmental Authority on Development + + Autoridad Intergubernamental sobre el Desarrollo + + + IGAD + + + Autoridad Intergubernamental sobre el Desarrollo + الهيئة الحكومية الدولية لتحقيق التنمية + Межправительственный орган по вопросам развития + IGAD + + 44556 + + Intergovernmental Authority on Development + 9999 + 政府间发展管理局 + Autorité intergouvernementale sur le développement + + + 2009 + Исландия + + آيسلندي + 冰岛共和国 + Республика Исландия + the Republic of Iceland + islandés + -24.53 + la République d'Islande + 2007 + Iceland + l'Islande + 114 + -13.49 + + جمهورية آيسلندا + Estimated + + 2281.0 + ISK + 1985 + Islande + Исландия + Manual Estimation + + Manual Estimation + 352 + Iceland + Islanda + 克 朗 + آيسلندا + ICE + 66.57 + 2007 + 1000 + 16658.0 + + + 冰 岛 + крона + 1000 Ha + 323.0 + آيسلندا + 15425 + исландский + corona islandese + la República de Islandia + 1000 Ha + 10025.0 + Islandia + Repubblica d'Islanda + ISL + 2008 + 9999 + 3785 + 冰岛的 + 63.39 + Icelandic + 99 + króna + 冰 岛 + Iceland + couronne + FAO estimate + Islanda + Islandia + millions of US dollars + islandais + islandese + كرونا + IS + + + + Полинезия + بولينيزيا + Polinesia + + Полинезия + Polinesia + + بولينيزيا + Полинезия + 84964 + + + + + Polinesia + Polynesia + 9999 + Polynesia + 5504 + + 1985 + Polinesia + Polynésie + Polinesia + Polynésie + + Polynésie + بولينيزيا + Polynesia + Polinesia + 061 + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + serbio + 2007 + динар + 2009 + dinar + Республика Сербия + Serbia + 56448 + Serbia + 塞尔维亚的 + millions of US dollars + + Сербия + Serbia + 1000 Ha + YUG + Serbia + + 9850.0 + serbe + la Serbia + + dinar + + Estimated + 1000 + + serbo + صربيا + + la Repubblica di Serbia + 塞尔维亚 + the Republic of Serbia + 49909 + 688 + Serbia + FAO estimate + серб + YUD + 2008 + Сербия + 9999 + of Serbia + dinaro + جمهورية صربيا + 5053.0 + + 50061.0 + Manual Estimation + 塞尔维亚 + + 2007 + la République de Serbie + 2648 + + Serbia + Serbie + la Serbie + la República de Serbia + من صربيا + 第纳尔 + 8836.0 + 2006 + + + 1000 Ha + 塞尔维亚共和国 + صربيا + + SRB + دينار + Official data reported on FAO Questionnaires from countries + + RS + 272 + + + + + + + + + آسيا الوسطى + + Центральная Азия + 5301 + Central Asia + Asia central + آسيا الوسطى + + 9999 + Asia central + Asia centrale + 中亚 + 中亚 + Asia centrale + Asie central + 84962 + + آسيا الوسطى + 1991 + + + Asie central + 143 + Asia central + Asie central + Центральная Азия + Asia centrale + Central Asia + 中亚 + Центральная Азия + + Central Asia + + + + 1 + + + + + + + آسيا + Asie + + Asia + + Asia + + + + + Asia + Asia + + 9999 + + Asia + 亚洲 + + + 亚洲 + + + + + + + + + + Asia + + + + + 亚洲 + Asia + Asie + Азия + Азия + + + + Asia + 1991 + Азия + + + آسيا + Asia + آسيا + + + + Asie + + + + 142 + + + + + + 84961 + 5300 + + + + + + + + + -19.16 + $NZ + دولار نيوزيلندى + Niue + + + la République de Nioué + dólar neozelandés + 1000 Ha + 1985 + Niue + la República de Niue + Республика Ниуэ + + NIU + the Republic of Niue + 7.0 + 26.0 + 2007 + -169.78 + 570 + NIU + Manual Estimation + + de Niue + Niue + di Niue + новозеландский доллар + 19029 + FAO estimate + 纽埃共和国 + 新西兰元 + dollaro neozelandese + Ниуэ + Nioué + 5202 + من نيوى + 2009 + Niue + Niue + جمهورية نيوى + 纽 埃 + Nioué + dollar néo-zélandais + Niue + + (из/ житель) Ниуэ + niouéen + 1.0 + New Zealand dollar + 纽 埃 + NU + 160 + + -169.95 + Repubblica di Niue + -18.95 + 2007 + نيوى + 1000 + 1000 Ha + + Niue + Ниуэ + + Niuean + 纽埃人/纽埃的 + 183 + نيوى + Data reported on country official publications or web sites (Official) or trade country files. + 9999 + + + + + 1000 + узбекский + Узбекистан + 2007 + UZ + 乌兹别克斯坦 + 15121 + 860 + 2008 + the Republic of Uzbekistan + 乌兹别克斯坦 + + SUM + 37.18 + أوزبكستان + 45.61 + + 乌兹别克的 + Uzbekistan + + + 2009 + uzbeko + millions of US dollars + Uzbekistán + Estimated + + Республика Узбекистан + 苏 姆 + + Uzbekistan + UZB + + + + ouzbek + 27488.0 + Repubblica dell'Uzbekistan + سوم + sum + Uzbekistan + 9999 + Узбекистан + Uzbekistan + uzbeco + + 20527 + 1000 Ha + la República de Uzbekistán + l'Ouzbékistan + 235 + Uzbekistan + 56.0 + Uzbek + أوزبكستان + UZB + сум + + 1000 Ha + 乌兹别克斯坦共和国 + Data reported on country official publications or web sites (Official) or trade country files. + 26640.0 + + 1991 + Uzbekistán + 42540.0 + أوزبكى أو أوزبكستانى + جمهورية أوزبكستان + 261 + + Manual Estimation + 73.13 + la République d'Ouzbékistan + 27918.0 + + + FAO estimate + 2007 + Ouzbékistan + + + + Organización de las Naciones Unidas para la Agricultura y la Alimentación + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Продовольственная + FAO + + + + + + + 46063 + ФАО + + + + + + + + + Organización de las Naciones Unidas para la Agricultura y la Alimentación + + + + + + + + + + + + + + Organisation des Nations Unies pour l'alimentation et l'agriculture + + 9999 + + + + + + + + + + + + + + + + + + + + + + + Food and Agriculture Organization of the United Nations + FAO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 联合国粮食及农业组织 + + + + + + + + + + + + + + + + + Organizzazione delle Nazioni Unite per l'alimentazione e l'agricoltura + 联合国粮食及农业组织 + + Organisation des Nations Unies pour l'alimentation et l'agriculture + + + + + + Продовольственная и сельскохозяйственная организация Объединенных Наций + + + + + + 2008 + + + + + + + + + + + + + + + + + + + + + + + + + + + Food and Agriculture Organization of the United Nations + + + + + + + + + + FAO + FAO + + منظمة الأغذية والزراعة للأمم المتحدة + + + + منظمة الأغذية والزراعة للأمم المتحدة + + + + + + + + + + + + + + Organizzazione delle Nazioni Unite per l'alimentazione e l'agricoltura + + + + + 1 + + + + + 230 + + + older_Ethiopia + older_Ethiopia + 1985 + 1993 + + + + 22.22 + FAO estimate + the Sudan + + SUD + SDN + 15490 + the Republic of the Sudan + Республика Судан + SD + 2007 + pound + la République du Soudan + ADD ARABIC NEW + Repubblica del Sudan + Sudanese + 苏丹的 + سوداني + 2007 + 736 + Судан + + 2009 + ADD CHINESE NEW + 21.84 + sudanés + soudanais + + + Sudan + la República del Sudán + + SD + 237600.0 + Sudan + 苏 丹 + libra + + el Sudán + Sudan + + Sudán + + динар + 1985 + + 42272.0 + + + Судан + Manual Estimation + 38.57 + le Soudan + Official data reported on FAO Questionnaires from countries + 苏 丹 + 40764 + السودان + 1000 Ha + 2008 + جمهورية السودان + millions of US dollars + суданский + 58443.0 + + 3.49 + + 9999 + + + + 1000 Ha + sudanese + 136773.0 + + sterlina sudanese + 7497 + + 206 + + + Sudan + 1000 + + 苏丹共和国 + + Estimated + السودان + Soudan + + + + Manual Estimation + 256.0 + FAO estimate + la Barbade + 13.34 + Barbados + 1985 + Barbados + Barbados + 1000 + + barbadiano + 9999 + la Barbade + 2007 + 814 + Барбадос + -59.65 + Barbade + + 巴巴多斯 + دولار بربادوسى + + барбадосский + + + BRB + Barbados + dólar + Barbados + Barbados + بربادوس + Barbados + Barbados + dollar + 13.05 + 2009 + 2007 + بربادوسى + millions of US dollars + 1000 Ha + 19.0 + + barbadense + Барбадос + 巴巴多斯 + -59.42 + dollaro di Barbados + dollar + 2007 + BAR + Data reported on country official publications or web sites (Official) or trade country files. + 15372 + 24 + доллар + + Barbados + بربادوس + 巴巴多斯 + + Barbadian + Барбадос + 43.0 + 3409.0 + BDS$ + 14 + barbadien + 052 + 巴巴多斯的 / 巴巴多斯人 + Barbados + Estimated + + بربادوس + BB + 1000 Ha + + + le Cap-Vert + 2008 + 2007 + + + + 1000 + escudo del Capo Verde + الرأس الأخضر + Cape Verde + la République du Cap-Vert + CPV + 1985 + FAO estimate + Cape Verde + Cabo Verde + + 506.0 + the Republic of Cape Verde + 佛得角共和国 + 1730.0 + + + Кабо-Верде + 78.0 + جمهورية الرأس الأخضر + 14.8 + escudo + 埃斯库多 + CV + la República de Cabo Verde + Cape Verdean + + -25.37 + capoverdiano + Cap-Vert + escudo + 17.21 + 47 + millions of US dollars + Республика Кабо-Верде + + Manual Estimation + الرأس الأخضر + 9999 + من الرأس الأخضر + 佛得角 + إسكودو + caboverdiano + 2009 + Estimated + CVI + 132 + cap-verdien + кабо-вердинский + 佛得角 + Repubblica del Capo Verde + 1267 + Capo Verde + Cabo Verde + 1000 Ha + -22.67 + эскудо + 403.0 + 佛得角的 / 佛得角人 + escudo + 15386 + Cape_Verde + Data reported on country official publications or web sites (Official) or trade country files. + + 2007 + Capo Verde + + 35 + + Кабо-Верде + 1000 Ha + + + Западная Европа + Europa occidentale + أوروبا الغربية + Europa occidentale + + 西欧 + Europe occidentale + western Europe + + أوروبا الغربية + + western Europe + Западная Европа + 5404 + 155 + 西欧 + + + Europe occidentale + + + Europa occidental + Europa occidental + + Europa occidentale + 84966 + 9999 + western Europe + Europe occidentale + Europa occidental + أوروبا الغربية + 西欧 + + Западная Европа + 1990 + + + la Norvège + + 1033.0 + 162 + Noruega + 2007 + millions of US dollars + 9999 + 2008 + + 449996.0 + Королевство Норвегия + نرويجي + krone + النرويج + Official data reported on FAO Questionnaires from countries + Regno di Norvegia + + النرويج + NOR + كرونة + 1000 Ha + 挪威的 + Norvegia + 1000 Ha + le Royaume de Norvège + 186 + норвежский + 挪 威 + + 挪威王国 + NOR + noruego + el Reino de Noruega + مملكة النرويج + крона + 578 + corona norvegese + + NKr + 57.97 + FAO estimate + Official data reported on FAO Questionnaires from countries + Norwegian + 80.75 + 1985 + Норвегия + + 2009 + 33.63 + Norway + + NO + 5234 + Norvège + Norway + Estimated + 克 朗 + norvegese + norvégien + 4.64 + 30428.0 + 15464 + Norvegia + 挪 威 + Norway + 1000 + the Kingdom of Norway + 2007 + + Норвегия + 4812.0 + Noruega + + + + + + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + + + + ngultrum + Official data reported on FAO Questionnaires from countries + ngultrum + Estimated + 1000 + 不丹王国 + + 31 + 26.71 + bhutanés + Bhutanese + el Reino de Bhután + Королевство Бутан + 2007 + + + 1000 Ha + مملكة بوتان + 28.33 + BT + نغولتروم + + BHU + + FAO estimate + + 不丹的 / 不丹人 + 562.0 + 3839.4 + le Bhoutan + Бутан + бутанский + + Bhutan + le Royaume du Bhoutan + ngultrum + bhoutanais + 92.13 + بوتاني + Bhutan + Bhutan + bhutanese + Bhoutan + 1985 + 不 丹 + 2009 + нгултрум + 不 丹 + ngultrum + 1359.0 + + BTN + + 9999 + 2007 + 18 + Bhután + 努尔特鲁姆 + + 2008 + 697.0 + 897 + Regno del Bhutan + + the Kingdom of Bhutan + Bhután + 064 + 1000 Ha + 15376 + Бутан + Bhutan + Nu + Bhutan + Manual Estimation + 88.77 + بوتان + + millions of US dollars + + بوتان + + + Lituanie + ليتواني + la República de Lituania + LT + lituanien + 53.9 + LTU + 26.87 + литовский + 2009 + + 3287.0 + Lithuania + + Литва + Lituania + 126 + 1991 + lita + ليتوانيا + 47341.0 + 立陶宛 + + 147 + Литва + 2695.0 + + LIT + Estimated + + 2008 + + the Republic of Lithuania + 2007 + FAO estimate + Data reported on country official publications or web sites (Official) or trade country files. + LTL + + Lithuanian + 1000 Ha + ليتوانيا + 1000 + Lituania + litas + 12204 + + Repubblica di Lituania + Lituania + Литовская Республика + 15532 + + 440 + лит + + 6268.0 + 2007 + 里塔斯 + 立陶宛共和国 + Lithuania + 立陶宛的 + 56.44 + ليتاس + litas + 立陶宛 + millions of US dollars + la République de Lituanie + lituano + + 20.95 + Lituania + Lithuania + la Lituanie + Data reported on country official publications or web sites (Official) or trade country files. + + 9999 + litas + جمهورية ليتوانيا + 1000 Ha + lituano + + + 2007 + Гренада + دولار شرق الكاريبى + + dollaro dei Caraibi orientali + 12.52 + -61.81 + 86 + Granada + Data reported on country official publications or web sites (Official) or trade country files. + + Grenada + 2008 + 34.0 + + + Grenada + 638.0 + Grenada + 308 + Гренада + GD + 1000 Ha + Granada + + 格林纳达的 + -61.38 + GRD + grenadin + Grenada + 99 + 13.0 + 格林纳达 + + غرينادا + гренадский + Granada + FAO estimate + غرينادى + dólar del Caribe oriental + غرينادا + Manual Estimation + Grenade + Grenadian + 3384 + la Grenade + dollar des Caraïbes orientales + Гренада + la Grenade + 9999 + 1000 Ha + 格林纳达 + + Grenada + 104.0 + 格林纳达 + + 2007 + granadino + Estimated + 东加勒比元 + 1000 + 2009 + EC dollar (East Caribbean dollar) + Grenada + 11.98 + غرينادا + 15417 + восточнокарибский доллар + Grenada + EC$ + di Grenada + GRN + 1985 + millions of US dollars + + + + + 1 + + + + 50.48 + Manual Estimation + 1000 Ha + 58154.0 + la République de Madagascar + MDG + + Malagasy + 43.18 + ariary + 2008 + Manual Estimation + malgascio + + + malgache + Estimated + MAG + ариари + Madagascar + 2009 + Madagascar + 马达加斯加 + Madagascar + 马达加斯加 + + Madagascar + ariary + 4510 + Repubblica del Madagascar + millions of US dollars + 1000 Ha + FAO estimate + Madagascar + + malgache + اريارى + + -25.61 + Республика Мадагаскар + 马达加斯加共和国 + Madagascar + 1000 + the Republic of Madagascar + ariary malgascio + Мадагаскар + + 129 + Madagascar + 450 + 19625.0 + + 1985 + جمهورية مدغشقر + la República de Madagascar + 9999 + 马达加斯加的 + -11.95 + مدغشقر + ملغاشي + Madagascar + 8970.0 + + 40843.0 + мадагаскарец + Madagascar + MG + + 150 + + 2007 + 15444 + ariary + Мадагаскар + FMG + 2007 + مدغشقر + 阿里亚里 + + + + 1 + + + + + + + + + + + 9999 + Commonwealth delle Bahamas + 20.91 + 778 + 1985 + the Bahamas + les Bahamas + bahamiano + 1001.0 + كمنولث جزر البهاما + + 1000 Ha + 20 + the Commonwealth of the Bahamas + Estimated + BS + доллар + dollar + millions of US dollars + 2009 + جزر البهاما + + جزر البهاما + Содружество Багамских Островов + 044 + Bahamas + 2008 + Bahamian + BHS + dollar + -72.73 + + Bahamas_The + 2007 + Bahamas + Bahamas + 27.03 + le Commonwealth des Bahamas + -79.31 + Багамские Острова + 巴哈马 + + 2007 + BD + Manual Estimation + bahamien + 巴哈马的 / 巴哈马人 + دولار + BHA + Багамские Острова + dollaro delle Bahamas + + + + el Commonwealth de las Bahamas + بهامي + dólar + 6935.0 + 342.0 + + FAO estimate + + 巴哈马国 + 1000 Ha + 14.0 + Manual Estimation + 1000 + Bahamas + Bahamas + багамский + 12 + 巴哈马 + 15369 + bahamés + las Bahamas + + + + + + + + 1 + + + + + + + + + the Kingdom of Swaziland + سوازيلند + свазилендский + 209 + FAO estimate + + Regno dello Swaziland + 2007 + Swazi + le Swaziland + Estimated + Swaziland + Swaziland + 748 + millions of US dollars + 7547 + + + Королевство Свазиленд + Свазиленд + 2008 + + + Swaziland + 15492 + 2007 + Manual Estimation + 斯威士兰 + + SZ + 32.14 + Swazilandia + -25.72 + + Manual Estimation + + E + 斯威士兰王国 + 斯威士兰的 + Swazilandia + + 1000 Ha + Swaziland + 1000 + swazi + Свазиленд + 30.79 + lilangeni + el Reino de Swazilandia + 9999 + + SWA + lilangeni + Swaziland + le Royaume du Swaziland + 235 + 斯威士兰 + 1000 Ha + 2009 + + 1985 + 里兰吉尼 + suazi + swazi + SWZ + سوازيلند + Swaziland + + ليلانغينى + + 1720.0 + лилангени + 2618.0 + مملكة سوازيلند + سوازيلندى + -27.32 + 1185.0 + 1342.0 + + + 1000 Ha + l'État d'Israël + 3972 + 1000 + nuevo sheqel + Official data reported on FAO Questionnaires from countries + new sheqel + + + 376 + إسرائيل + 2007 + 以色列的 + + 2008 + ISR + израильский + 以色列 + the State of Israel + Государство Израиль + Israel + + Израиль + + Estimated + israélien + Israël + + IL + Manual Estimation + + 199498.0 + 15431 + Stato d'Israele + Israel + Israel + 2164.0 + el Estado de Israel + 2007 + nuovo shekel + 34.25 + 105 + 新谢克尔 + israeliano + 2009 + 29.49 + новый шекель + 1985 + 121 + + Israeli + إسرائيلي + nouveau sheqel + الشيكل الجديد + ISR + 35.68 + israelí + Израиль + FAO estimate + Israele + Israele + Israël + + 33.28 + دولة إسرائيل + 1000 Ha + 以色列国 + 9999 + millions of US dollars + 7170.0 + 501.0 + 以色列 + Israel + Israel + + إسرائيل + + + Нигер + Niger + 1000 Ha + 5354.0 + Repubblica del Niger + + el Níger + + 562 + nigérien + 15462 + 1000 + نيجري + 0.17 + + 16.0 + 158 + + нигерский + FAO estimate + 尼日尔共和国 + + + + فرنك الجماعة المالية الأفريقية + Niger + + Níger + Niger + Республика Нигер + 2009 + the Niger + Manual Estimation + + النيجر + NER + + + 15290.0 + nigerino + la República del Níger + 23.53 + franco CFA + Niger + millions of US dollars + + جمهورية النيجر + 2007 + 尼日尔 + + franc CFA (Communauté financière africaine) + 2008 + la République du Niger + النيجر + + + (of the) Niger + CFA franc (Communauté financière africaine) + Estimated + 1985 + NE + 非洲法郎 + + the Republic of the Niger + 43515.0 + 2007 + + le Niger + + NER + + + franco CFA (Communauté financière africaine) + 1000 Ha + 9999 + + 11.7 + 尼日尔的 + 5181 + 126670.0 + франк КФА + nigerino + 尼日尔 + Niger + 181 + Нигер + + + le Commonwealth de la Dominique + millions of US dollars + Dominica + + Manual Estimation + 75.0 + 67.0 + 1985 + 2363 + 多米尼克的 / 多米尼克人 + Dominica + + Dominica + dollaro dei Caraibi orientali + Содружество Доминики + 1000 + of Dominica + Dominique + 15.64 + + dominiquais + DM + 55 + دومينيكا + di Dominica + Dominica + EC dollar (East Caribbean dollar) + FAO estimate + 15402 + the Commonwealth of Dominica + Data reported on country official publications or web sites (Official) or trade country files. + de Dominica + el Commonwealth de Dominica + 364.0 + 9999 + la Dominique + Доминика + دولار شرق الكاريبى + 2008 + دومينيكي + Dominica + dollar des Caraïbes orientales + 1000 Ha + 71 + Estimated + 2007 + DMA + EC$ + DMI + Dominica + 东加勒比元 + + dólar del Caribe oriental + 2007 + + 212 + 2009 + 多米尼克 + 1000 Ha + 多米尼克 + доминикский + دومينيكا + كمنولث دومينيكا + Dominica + 15.21 + Commonwealth di Dominica + + восточнокарибский доллар + -61.25 + Доминика + -61.49 + + + + 23.0 + 多米尼克国 + + + + 1 + + + + + + + + the Republic of San Marino + la República de San Marino + 2007 + sanmarinense + 192 + SNM + of San Marino + Saint-Marin + Manual Estimation + Estimated + + + euro + San_Marino + SM + euro + сан-маринский + SMR + Saint-Marin + 1703.0 + Сан-Марино + 19033 + Data reported on country official publications or web sites (Official) or trade country files. + saint-marinais + 674 + 2007 + San Marino + جمهورية سان مارينو + 圣马力诺的 + 圣马力诺共和国 + 圣马力诺 + San Marino + San Marino + 12.51 + 6778 + sammarinese + millions of US dollars + FAO estimate + سان مارينو + San Marino + يورو + 1000 + + 1.0 + San Marino + 2007 + 1000 Ha + euro + EUR or € + San Marino + la République de Saint-Marin + евро + سان مارينو + سان ماريني + 6.0 + Республика Сан-Марино + 9999 + + + 12.41 + 43.89 + + 43.99 + + 欧 元 + 1000 Ha + Repubblica di San Marino + Сан-Марино + 1985 + 31.0 + 213 + 2009 + 圣马力诺 + euro + + + millions of US dollars + 4266.0 + + 几内亚的 + guinéen + la Guinée + -15.08 + Guinée + + 2007 + 9999 + 几内亚 + 1000 + 1000 Ha + + Guinea + Guinean + franco + 324 + 10069.0 + Guinea + 106 + + la República de Guinea + + гвинейский + Estimated + FAO estimate + -7.64 + 2007 + Guinea + franco della Guinea + Guinea + Manual Estimation + 法 郎 + the Republic of Guinea + جمهورية غينيا + + غيني + + + 2009 + + 几内亚 + guineano + franc + Гвинейская Республика + 几内亚共和国 + 1000 Ha + + guineo + Manual Estimation + GIN + فرنك + Guinea + GN + غينيا + 24572.0 + + + Guinea + + franc + 12.67 + франк + + + Guinea + la République de Guinée + 13570.0 + Гвинея + 90 + + 1985 + + 15419 + 7.2 + 2008 + 3423 + GUI + Repubblica di Guinea + Гвинея + غينيا + + + Северная Америка + + América Septentrional; Norteamérica + + 北美洲 + 84970 + + أمريكا الشمالية + northern America + أمريكا الشمالية + Северная Америка + northern America + 1985 + 5203 + Северная Америка + America del Nord + América Septentrional; Norteamérica + 北美洲 + 021 + أمريكا الشمالية + Amérique septentrionale + America del Nord + 9999 + northern America + Amérique septentrionale + Amérique septentrionale + America del Nord + América Septentrional; Norteamérica + 北美洲 + + + + + UN Statistics Division http://unstats.un.org/unsd/methods/m49/m49chang.htm + + + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + + + + 1000 + 2007 + + the Republic of Hungary + венгерский + fiorino ungherese + Official data reported on FAO Questionnaires from countries + 5807.0 + Estimated + húngaro + Ungheria + HUN + millions of US dollars + 1000 Ha + forint + ungherese + Hungría + هنغاري + فورنت + + la República de Hungría + Hongrie + 1985 + 匈牙利 + + + HUN + 8961.0 + 45.75 + + 2009 + Hungary + هنغاريا + جمهورية هنغاريا + 9993.0 + 福 林 + + 15424 + Repubblica di Ungheria + Венгрия + 匈牙利的 + Ft + hongrois + Official data reported on FAO Questionnaires from countries + 9999 + + 48.58 + Ungheria + 2007 + 97 + 1000 Ha + + Hungary + FAO estimate + Hungarian + forint + forint + la Hongrie + + HU + 22.89 + هنغاريا + la République de Hongrie + Hungary + 16.12 + 匈牙利共和国 + + Венгрия + Венгерская Республика + Hungría + + + 154668.0 + форинт + 348 + + 3695 + 113 + + 2008 + 匈牙利 + + + Manual Estimation + 瓦努阿图 + вануатский + + 2007 + فانواتوي + the Republic of Vanuatu + -13.07 + 瓦努阿图的 + + Repubblica di Vanuatu + de Vanuatu + 548 + 170.21 + 2009 + Vanuatu + 9999 + Вануату + Vanuatu + + 147.0 + vatu + + 1219.0 + + di Vanuatu + VUT + вату + 5159 + millions of US dollars + + Vanuatu + 166.52 + Республика Вануату + 1000 + جمهورية فانواتو + 262 + Vanuatu + فانواتو + vatu + + Vanuatu + Vanuatu + Вануату + Estimated + de Vanuatu + 1000 Ha + la República de Vanuatu + فانواتو + فاتو + 瓦 图 + Vanuatu + 240.0 + 574.0 + 155 + -20.25 + 瓦努阿图 + Manual Estimation + + 瓦努阿图共和国 + + 2008 + VU + of Vanuatu + la République de Vanuatu + 15508 + + VT + Vanuatu + Vanuatu + + 1985 + FAO estimate + 1000 Ha + VAN + + 2007 + + + 009 + Oceanía + Oceania + Океания + 大洋洲 + 84968 + Oceania + Oceania + + + + + Océanie + Oceania + 5500 + + 大洋洲 + + Oceania + Océanie + أوسيانيا + + Океания + + + + 大洋洲 + 1991 + Oceanía + + Океания + + 9999 + Oceanía + + أوسيانيا + + Océanie + Oceania + + + + أوسيانيا + + + Unión Europea + 2007 + + Union européenne + + + Европейский союз + Европейский союз + l'Unione europea + الاتحاد الأوروبى + + 5706 + الاتحاد الأوروبى + + European Union + + + + + + + + + la Unión Europea + European Union + 50484 + European Union + + 欧盟 + + 9999 + + + + 欧盟 + + + Европейский cоюз + + + Unión Europea + 欧洲联盟 + Union européenne + + l'Union européenne + + + الاتحاد الأوروبى + + + + + + + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + egipcio + + مصر + + фунт + EGY + l'Égypte + 818 + + pound + Египет + Repubbica araba d'Egitto + 99545.0 + 3538.0 + + 埃 及 + Egipto + FAO estimate + 阿拉伯埃及共和国 + Египет + Арабская Республика Египет + + + Egypt + EGY + + جمهورية مصر العربية + Egypt + égyptien + millions of US dollars + LE + egiziano + Egitto + la République arabe d'Égypte + + Egyptian + 2007 + Egypt + 1000 + sterlina egiziana + 15405 + livre + Manual Estimation + the Arab Republic of Egypt + مصر + 9999 + جنيه + Egipto + 31.67 + مصري + Egitto + + 1000 Ha + 21.72 + Égypte + libra + la República Árabe de Egipto + Official data reported on FAO Questionnaires from countries + египетский + 24.7 + 59 + + + Estimated + 2008 + 82999.0 + EG + 埃 及 + 40765 + 2009 + + 埃及的 + + 2007 + 1985 + + 36.9 + + 1000 Ha + 2503 + 162818.0 + + + ECO + Economic Cooperation Organization + + منظمة التعاون الاقتصادى + 经济合作组织 + + + + + Organización de Cooperación Económica + + Economic Cooperation Organization + + + Организация экономического сотрудничества + Organización de Cooperación Económica + + 46046 + Organisation de coopération économique + OCE + ECO + + Organisation de coopération économique + 9999 + + + + 9999 + 2009 + + 1000 Ha + шиллинг + Repubblica dell'Uganda + 8038 + + 2007 + UGA + 乌干达共和国 + 226 + جمهورية أوغندا + Estimated + Ugandan + + Manual Estimation + 800 + + scellino ugandese + 35.04 + 12812.0 + + ugandés + 15502 + Uganda + + Uganda + Uganda + UGA + 29.57 + + 乌干达 + millions of US dollars + أوغندا + + Уганда + -1.48 + угандийский + + + 253 + 2008 + Uganda + ougandais + شلن + 先 令 + + U Sh + la República de Uganda + + la République de l'Ouganda + أوغندا + 乌干达 + 乌干达的 + Республика Уганда + Уганда + أوغندي + + FAO estimate + the Republic of Uganda + + + Uganda + 19710.0 + Uganda + + + shilling + 32710.0 + Ouganda + 1000 Ha + 1985 + 14529.0 + 4.22 + 1000 + UG + 2007 + + l'Ouganda + Uganda + Manual Estimation + ugandese + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + 260 + 2009 + la République orientale de l'Uruguay + 9999 + + بيسو + uruguayo + + 15507 + + 1000 Ha + جمهورية أوروغواي الشرقية + + peso + millions of US dollars + 1000 + уругвайский + 1000 Ha + Уругвай + 2007 + 乌拉圭 + Uruguay + Repubblica orientale dell'Uruguay + + FAO estimate + Uruguay + Uruguay + 17502.0 + + 乌拉圭 + 14683.0 + песо + -58.44 + Data reported on country official publications or web sites (Official) or trade country files. + Uruguay + UY + -34.98 + el Uruguay + URU + URY + Восточная Республика Уругвай + 858 + 32186.0 + 3361.0 + أوروغواي + Uruguay + the Eastern Republic of Uruguay + -30.08 + 2007 + أوروغواي + uruguayen + 比索 + Manual Estimation + + -53.07 + أوروغواي + peso uruguaiano + l'Uruguay + la República Oriental del Uruguay + 乌拉圭东岸共和国 + Uruguay + 2008 + + + uruguayano + 1985 + Uruguay + 234 + Estimated + Уругвай + Uruguayan + 乌拉圭的 + 8113 + + + + Fisheries Global Information System http://www.fao.org/figis/servlet/RefServlet + + + + + 886 + + Yemen + Yemen + 1985 + 1990 + + + venezolano + + + + FAO estimate + venezuelano + Венесуэла (Боливарианская Республика) + جمهورية فنزويلا البوليفارية + Bs + millions of US dollars + 862 + 玻利瓦尔 + Manual Estimation + 1000 + la République bolivarienne du Venezuela + Venezuela (República Bolivariana de) + vénézuélien + Venezuela (Repubblica bolivariana di) + боливар + 1000 Ha + Venezuela (République bolivarienne du) + VEN + + 委内瑞拉 (玻利瓦尔共和国) + 8186 + + 2009 + венесуэльский + فنزويلي + بوليفار + 1000 Ha + 0.74 + Estimated + Venezuela + Боливарианская Республика Венесуэла + bolivar + Venezuela (République bolivarienne du) + Venezuela (República Bolivariana de) + + -73.37 + 236 + 委内瑞拉 (玻利瓦尔共和国) + 313799.0 + -59.81 + 21350.0 + Manual Estimation + Venezuela (Bolivarian Republic of) + 28583.0 + the Bolivarian Republic of Venezuela + Венесуэла (Боливарианская Республика) + 88205.0 + 9999 + Repubblica bolivariana di Venezuela + la República Bolivariana de Venezuela + 12.2 + Venezuelan + 委内瑞拉的 + فنزويلا (جمهورية .. البوليفارية) + 1985 + + 委内瑞拉玻利瓦尔共和国 + 263 + 2007 + فنزويلا (جمهورية .. البوليفارية) + 15509 + Venezuela (Bolivarian Republic of) + 2008 + bolivar + + + VE + 2007 + VEN + Venezuela (Repubblica bolivariana di) + + + 南欧 + Europa meridional + southern Europe + + 9999 + + أوروبا الجنوبية + أوروبا الجنوبية + + southern Europe + 南欧 + + + Europa meridional + + + + Europa meridional + Южная Европа + 南欧 + + 2006 + southern Europe + + Europa meridionale + 15246 + Южная Европа + + 5403 + Europe méridionale + + + + Europe méridionale + + Europa meridionale + + 39 + Europa meridionale + أوروبا الجنوبية + Europe méridionale + Южная Европа + + + 38 + سري لانكا + 144 + of Sri Lanka + Sri Lanka + 6463.0 + 2360.0 + 2007 + سري لانكا + + 7345 + SRL + Sri Lanka + 5.91 + LKA + روبية + سري لانكي + + sri-lankais + millions of US dollars + roupie + Sri Lanka (fém.) + 9999 + + Sri Lanka + 40714.0 + Repubblica democratica socialista di Sri Lanka + 卢 比 + 15489 + + 1000 Ha + 斯里兰卡民主社会主义共和国 + + Шри-Ланка + + 9.83 + Sri Lanka + Manual Estimation + рупия + 1000 + la República Socialista Democrática de Sri Lanka + + 81.88 + Sri_Lanka + rupee + Демократическая Социалистическая Республика Шри-Ланка + de Sri Lanka + Sri Lanka + singalese + 79.65 + 斯里兰卡的 + 2008 + 2009 + Manual Estimation + Sri Lanka + + FAO estimate + + Sri Lanka + 斯里兰卡 + 斯里兰卡 + 20238.0 + 231 + + la République socialiste démocratique de Sri Lanka + Шри-Ланка + шри-ланкийский + the Democratic Socialist Republic of Sri Lanka + 1985 + 1000 Ha + جمهورية سري لانكا الاشتراكية الديمقراطية + LK + Estimated + rupia di Sri Lanka + rupia + 2007 + + + 19 + 108330.0 + 992 + boliviano + + 1000 Ha + + 16674.0 + 1000 Ha + Bolivian + 玻利维亚(多民族国) + + -9.68 + -57.46 + Bolivia (Stato plurinazionale della) + -22.9 + BOL + boliviano + بوليفيا (دولة - المتعددة القوميات) + -69.64 + 36828.0 + + 15377 + Bolivia (Plurinational State of) + Bolivie (État plurinational de) + 玻利维亚(多民族国) + BOL + Bolivia (Plurinational State of) + + Боливия (Многонациогнальное Государство) + + + + boliviano + bolivien + Bolivia (Estado Plurinacional de) + боливиано + 玻利维亚诺 + FAO estimate + boliviano + millions of US dollars + Manual Estimation + Многонациональное Государство Боливия + боливийский + Bolivia (Stato plurinazionale della) + 2009 + Data reported on country official publications or web sites (Official) or trade country files. + بوليفيا (دولة - المتعددة القوميات) + Bolivia + بوليفي + Estimated + Bolivie (État plurinational de) + + 1985 + 玻利维亚多民族国 + + + + Боливия (Многонациогнальное Государство) + el Estado Plurinacional de Bolivia + boliviano + BO + l'État plurinational de Bolivie + بوليفيا (دولة - المتعددة القوميات) + 玻利维亚的 / 玻利维亚人 + 2007 + + the Plurinational State of Bolivia + 068 + 1000 + + boliviano + Stato plurinazionale della Bolivia + Bs + بوليفيانو + 2008 + Bolivia (Estado Plurinacional de) + 9863.0 + 2007 + 33 + 9999 + + + + + + + + + + + + + + + + + 2006 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 46063 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2007 + + + + + + + + + les Samoa américaines + Samoa americane + 美属萨摩亚 + $ + samoan + 5 + 美 元 + 5.0 + American_Samoa + Samoa Americana + ساموا الأمريكية + 美属萨摩亚 + دولار الولايات المتحدة + FAO estimate + 萨摩亚人/萨摩亚的 + самоанец + 2007 + US dollar + 20.0 + American Samoa + 1000 + 9999 + dólar de EE.UU. + Data reported on country official publications or web sites (Official) or trade country files. + samoano + 336 + 1000 Ha + 1000 Ha + AMS + Samoan + 67.0 + 5 + 2009 + + + dollaro USA + Samoa américaines + les Samoa américaines + Manual Estimation + AS + Territorio delle Samoa americane + من ساموا + + Samoa Americana + 18433 + Samoa americane + dollar des États-Unis + American Samoa + ساموا الأمريكية + 2007 + 美属萨摩亚 + ساموا الأمريكية + 016 + долларn + Samoa Americana + ASM + samoano + 1985 + American Samoa + + + le Kazakhstan + KZ + تنغى + 1991 + 坚 戈 + 108 + Repubblica del Kazakistan + millions of US dollars + Kazakhstan + the Republic of Kazakhstan + 398 + Estimated + KAZ + 132 + كازاخستان + + T + FAO estimate + + 2007 + tenge + KAZ + + tenge + Kazakistan + 46.49 + la République du Kazakhstan + Kazakhstan + казахский + Kazakistan + + كازاخستان + Kazajstán + 207898.0 + тенге + جمهورية كازاخستان + 269970.0 + 87.31 + Manual Estimation + + 1000 Ha + tenge + 1000 Ha + + 哈萨克斯坦 + كازاخستانى + 哈萨克的 + 15637.0 + Kazajstán + 132229.0 + + + + 哈萨克斯坦共和国 + 55.43 + 2009 + + kazako + 40.55 + tenge + la República de Kazajstán + Казахстан + Kazakhstan + kazako + + 11952 + kazakh + 24383 + Manual Estimation + Республика Казахстан + Kazakh + 2008 + 2007 + + 哈萨克斯坦 + + 9999 + Казахстан + + 1000 + Kazakhstan + + + + australien + Australia + Австралия + 澳大利亚的 / 澳大利亚人 + 1000 Ha + millions of US dollars + Australia + 1000 Ha + австралийский + AUL + Австралия + Australia + 澳大利亚 + أسترالى + 768230.0 + Estimated + доллар + أستراليا + 1985 + dollaro australiano + Australia + 澳 元 + أستراليا + l'Australie + دولار أسترالى + + Official data reported on FAO Questionnaires from countries + Australia + Australian dollar + l'Australie + 澳大利亚 + 2007 + 036 + -9.23 + 21293.0 + Australia + australiano + 425449.0 + + 9999 + Australia + 2009 + + 159.11 + FAO estimate + 112.91 + أستراليا + australiano + Australia + 2007 + 17 + Official data reported on FAO Questionnaires from countries + + dollar australien + 10 + Australia + 1000 + Australia + 2008 + + AUS + dólar australiano + 澳大利亚 + Australian + Австралия + -54.76 + $A + 1015217.0 + Australie + 15367 + AU + 714 + + + + 1 + + + + Индонезия + ID + 印度尼西亚 + rupiah + 360 + جمهورية إندونيسيا + + Индонезия + Республика Индонезия + индонезийский + Repubblica di Indonesia + 48500.0 + 印度尼西亚 + indonesiano + 95.01 + Rp + 1985 + + 15427 + 1000 Ha + + Indonesia + Indonésie + FAO estimate + Estimated + 141.03 + إندونيسيا + 2008 + 1000 Ha + millions of US dollars + 5.91 + Indonesian + إندونيسي + Manual Estimation + 卢 比 + 101 + INS + рупия + the Republic of Indonesia + Indonesia + Indonesia + 3840 + Indonesia + Official data reported on FAO Questionnaires from countries + 1000 + 印度尼西亚共和国 + + + Indonesia + Indonesia + indonesio + Indonesia + + 印尼的 + -10.99 + 2007 + إندونيسيا + روبية + 2007 + + 9999 + + la République d'Indonésie + + 514389.0 + rupia indonesiana + 229965.0 + + + la República de Indonesia + l'Indonésie + 181157.0 + 2009 + 116 + IDN + indonésien + + + + metical + 梅蒂卡尔 + the Republic of Mozambique + 莫桑比克 + 莫桑比克共和国 + FAO estimate + 4964 + Mozambique + 22894.0 + 莫桑比克的 + + 1985 + + метикаль [м.] + + Mozambique + + جمهورية موزامبيق + 78638.0 + -26.87 + mozambiqueño + + la République du Mozambique + 15455 + MOZ + 40.85 + Mozambico + 2009 + Mt + Repubblica del Mozambico + Mozambican + + Mozambico + metical + + Mozambique + Mozambique + MZ + metical + موزامبيقى + Мозамбик + Республика Мозамбик + millions of US dollars + -10.48 + 9999 + 144 + + Мозамбик + + mozambicano + 170 + MOZ + 48800.0 + موزامبيق + متيكال + + 莫桑比克 + موزامبيق + Mozambique + le Mozambique + 1000 Ha + + + Mozambique + Data reported on country official publications or web sites (Official) or trade country files. + + + + 508 + Estimated + Manual Estimation + la República de Mozambique + 2007 + 9735.0 + + + мозамбикский + 1000 Ha + 2007 + 1000 + 30.22 + 2008 + mozambicain + + + Portugal + -6.19 + 199 + Португалия + + la República Portuguesa + 3496.0 + Portogallo + 1000 Ha + 2007 + 42.14 + 2008 + la République portugaise + portoghese + 6124 + 1985 + португальский + + + 葡萄牙 + 620 + euro + le Portugal + 葡萄牙 + Portugal + euro + 174 + + 30.14 + -31.27 + Portuguese + Portugal + 葡萄牙共和国 + euro + 1000 Ha + portugués + EUR or € + 2009 + евро + 15473 + + Data reported on country official publications or web sites (Official) or trade country files. + يورو + the Portuguese Republic + millions of US dollars + 10707.0 + 2007 + Portugal + Португалия + + 9150.0 + + + PT + portugais + جمهورية البرتغال + 欧 元 + Portogallo + البرتغال + برتغالي + 242689.0 + Portugal + Portugal + Repubblica portoghese + 1000 + FAO estimate + Estimated + PRT + Португальская Республика + البرتغال + 9999 + euro + POR + 葡萄牙的 + + + + 1 + + + + + 1 + + + + + Словакия + Slovacchia + + Sk + Slovaquie + 克 朗 + Slovakia + + 223 + + Data reported on country official publications or web sites (Official) or trade country files. + SLO + 16.84 + Словакия + 斯洛伐克 + كورونا + + 1993 + 47.73 + Slovakia + 32083 + SK + Eslovaquia + Словацкая Республика + Slovakia + 2009 + 22.57 + + 94957.0 + крона + slovaque + la République slovaque + + 2007 + 1000 Ha + 斯洛伐克 + 1000 + سلوفاكيا + slovacco + 5406.0 + FAO estimate + Slovacchia + koruna + الجمهورية السلوفاكية + millions of US dollars + Data reported on country official publications or web sites (Official) or trade country files. + Slovak + + 703 + Eslovaquia + Repubblica slovacca + 49.6 + 1000 Ha + corona slovacca + the Slovak Republic + 斯洛伐克共和国 + la República Eslovaca + Estimated + словацкий + 2008 + SVK + eslovaco + 4810.0 + + 199 + سلوفاكي + 斯洛伐克的 + + سلوفاكيا + 2007 + 9999 + + + + la Slovaquie + 1930.0 + 34926 + + + + + + + + + FAO estimate + won sudcoreano + de la República de Corea + 1985 + Repubblica di Corea + 130.93 + 1000 + Repubblica di Corea + 2007 + Korea_South + Республика Корея + (из/житель) Республики Корея + + جمهورية كوريا + Estimated + ROC + of the Republic of Korea + 38.61 + + 元(圆) + KR + République de Corée + la République de Corée + جمهورية كوريا + Republic of Korea + 1000 Ha + de la République de Corée + 4116 + Manual Estimation + + 大韩民国 + 1000 Ha + la République de Corée + 202 + + KOR + + won + كوري + 1840.0 + la República de Corea + 410 + 48333.0 + 929121.0 + ون + República de Corea + Repubblica di Corea + 2007 + вона + 125.08 + della Repubblica di Corea + 大韩民国 + 33.2 + Республика Корея + جمهورية كوريا + 117 + the Republic of Korea + the Republic of Korea + 2009 + 15517 + 大韩民国 + Республика Корея + 2008 + 9692.0 + Manual Estimation + millions of US dollars + + 9999 + 韩国的 + la República de Corea + + + + last update: October 2009 + World Bank, Data and Statistics, Quick reference tables http://siteresources.worldbank.org/DATASTATISTICS/Resources/GDP.pdf + + + + + 1 + + + + 68.17 + India + 6.75 + 2009 + + Manual Estimation + جمهورية الهند + Indian + la República de la India + + 9999 + + IND + Manual Estimation + 2008 + 1000 Ha + 356 + Inde + Индия + 3825 + 2007 + Estimated + + Repubblica dell'India + 1217490.0 + + + 179900.0 + the Republic of India + 1985 + 1000 + rupia indiana + indiano + 2007 + India + 100 + India + + + 35.99 + l'Inde + + 97.4 + 297319.0 + + 1000 Ha + 印度共和国 + هندي + + 115 + IND + indien + рупия + la République de l'Inde + الهند + 15426 + 1198003.0 + IN + 印 度 + indio + الهند + Республика Индия + 印度的 + 卢 比 + 印 度 + روبية + millions of US dollars + India + la India + + + + + roupie + FAO estimate + индийский + India + Индия + + India + + rupee + + + + 1 + + + + 2543.0 + denar + 代纳尔 + + l'ex-République yougoslave de Macédoine + 2007 + l'ex-République yougoslave de Macédoine + The former Yugoslav Republic of Macedonia + + + 40.85 + 1992 + 1000 Ha + millions of US dollars + 2008 + la ex República Yugoslava de Macedonia + Macedonia + + + L'ex Repubblica jugoslava di Macedonia + de la ex República Yugoslava de Macedonia + جمهورية مقدونيا اليوغوسلافية السابقة + جمهورية مقدونيا اليوغوسلافية السابقة + 2009 + macedone + 9999 + 1076.0 + Estimated + 42.37 + 前南斯拉夫的马其顿共和国 + 1000 Ha + l'ex-République yougoslave de Macédoine + 154 + MCD + 241 + L'ex Repubblica jugoslava di Macedonia + 9521.0 + + Official data reported on FAO Questionnaires from countries + + 35697 + 2042.0 + + de l'ex-République yougoslave de Macédoine + 20.46 + 前南马其顿的 + + dinaro macedone + la ex República Yugoslava de Macedonia + 前南斯拉夫的马其顿共和国 + денар + دينار + جمهورية مقدونيا اليوغوسلافية السابقة + бывшая югославская Республика Македония + The former Yugoslav Republic of Macedonia + The former Yugoslav Republic of Macedonia + + Manual Estimation + + FAO estimate + 2007 + 807 + 23.03 + 1000 + + la ex República Yugoslava de Macedonia + L'ex Repubblica jugoslava di Macedonia + 前南斯拉夫的马其顿共和国 + من جمهورية مقدونيا اليوغوسلافية السابقة + (из/житель) бывшей югославской Республики Македонии + MK + MKD + бывшая югославская Республика Македония + Mden + of the former Yugoslav Republic of Macedonia + бывшая югославская Республика Македония + 32263 + + + + + + + dollaro australiano + + 19028 + Nauru + dollar australien + 澳 元 + Nauru + 2009 + NR + the Republic of Nauru + 166.95 + NAU + 5093 + 1000 + Nauruan + 10.0 + جمهورية ناورو + доллар + Nauru + Республика Науру + Науру + nauruan + + 148 + la République de Nauru + FAO estimate + 1985 + науруанский + ناوروي + la República de Nauru + 2.0 + 2007 + -0.49 + Nauru + Data reported on country official publications or web sites (Official) or trade country files. + Nauru + Australian dollar + 瑙鲁的 + 瑙 鲁 + nauruano + 166.91 + Nauru + + + 瑙 鲁 + + Nauru + ناورو + ناورو + Nauru + Repubblica di Nauru + Nauru + Науру + -0.55 + دولار أسترالى + 173 + $A + + 520 + NRU + 瑙鲁共和国 + + nauruano + 9999 + dólar australiano + 1000 Ha + + + + GQ + la República de Guinea Ecuatorial + the Republic of Equatorial Guinea + + 2008 + 2805.0 + + 赤几的 + Manual Estimation + Equatorial Guinea + 1000 + FAO estimate + 15407 + + ecuatoguineano + 676.0 + della Guinea equatoriale + غينيا الاستوائية + Equatorial Guinea + + Repubblica di Guinea equatoriale + (из/житель) Экваториальной Гвинеи + 2007 + + + 2627 + 赤道几内亚 + غينيا الاستوائية + франк КФА + Республика Экваториальная Гвинея + 76 + 3.79 + de la Guinée équatoriale + GNQ + جمهورية غينيا الاستوائية + Estimated + 11.34 + + 18525.0 + Экваториальная Гвинея + + Guinea Ecuatorial + 2007 + la République de Guinée équatoriale + Guinée équatoriale + 5.6 + 1985 + 324.0 + Guinea equatoriale + + 9999 + فرنك الجماعة المالية الأفريقية + franco CFA (Communauté financière africaine) + franc CFA (Communauté financière africaine) + 赤道几内亚共和国 + + 2009 + 1000 Ha + 61 + + 赤道几内亚 + + 1000 Ha + Экваториальная Гвинея + 非洲法郎 + Equatorial_Guinea + 226 + la Guinée équatoriale + millions of US dollars + EQG + + Guinea Ecuatorial + -1.46 + CFA franc (Communauté financière africaine) + + Data reported on country official publications or web sites (Official) or trade country files. + من جمهورية غينيا الاستوائية + Guinea equatoriale + franco CFA + of Equatorial Guinea + + + + + + + + + 1367.0 + 152.0 + BZE + Manual Estimation + + دولار + بليز + 1000 Ha + + 2007 + Белиз + dollar + Belize + 2009 + 1000 + Belize + BZ$ + le Belize + بليز + bélizien + + 伯利兹 + FAO estimate + 2007 + Manual Estimation + Белиз + Belize + белизский + Belice + -87.48 + 1000 Ha + 084 + 307.0 + 15374 + le Belize + + + + Belize + Belice + + 15.89 + + 28 + 1985 + Belizean + -89.22 + Belice + belizeano + dollaro belizeano + Belize + 伯利兹 + 23 + BLZ + + بليز + beliceño + 2281.0 + Белиз + 2008 + 伯利兹的 / 伯利兹人 + 伯利兹 + 9999 + dólar + millions of US dollars + Belize + 871 + Belize + + BZ + доллар + Belize + dollar + 18.49 + + Estimated + + + بليزى + + + + Economic Community of Central African States + Communauté économique des États d'Afrique centrale + + + + 48090 + + المجموعة الاقتصادية لدول وسط أفريقيا + + Communauté économique des États d'Afrique centrale + + Comunidad Económica del África Central + + + Экономическое сообщество центральноафриканских государств + 9999 + CEAC + ECCAS + Economic Community of Central African States + + 中部非洲国家经济共同体 + CEEAC + + + Comunidad Económica del África Central + + + + + + + + + + + + PFRDV + + + + + + + + + + + + + + + + + + + + + + + PBIDA + + + 23475 + + страны с низким уровнем дохода и дефицитом продовольствия + + + + بلدان العجز الغذائى ذات الدخل المنخفض + + + + + بلدان العجز الغذائي ذات الدخل المنخفض + LIFDCs + países de bajos ingresos y con déficit de alimentos + + + + + + + + + + + + + + بلدان العجز الغذائى ذات الدخل المنخفض + + + + + + PFRDV + + pays à faible revenu et à déficit vivrier + + + + + + + low income and food deficit countries + + + 低收入缺粮国 + + + 低收入缺粮国 + + 低收入缺粮国 + PBIDA + 5815 + + + + + 2008 + + + + 2008 + + + FAO + + + low income food deficit countries + + + + + + BIH + 波斯尼亚-黑塞哥维那共和国 + 马 克 + mark + + 33958 + Bosnie-Herzégovine + 1000 + BA + 2008 + Босния и Герцеговина + bosniaco, erzegovino + Bosnia y Herzegovina + 80 + 1000 Ha + 15.74 + 波斯尼亚-黑塞哥维那 + mark + 34 + 2149.0 + + Bosnia y Herzegovina + 19.62 + bosniaque + de Bosnia y Herzegovina + 25401 + Bosnia and Herzegovina + marco + BAM + Bosnia-Erzegovina + Estimated + + + Bosnia-Erzegovina + + + la Bosnie-Herzégovine + 18452.0 + + + 波黑的 + Official data reported on FAO Questionnaires from countries + من البوسنة والهرسك + 9999 + Bosnia and Herzegovina + + marco + 45.28 + боснийско-герцеговинский + марка + Manual Estimation + Bosnia-Erzegovina + البوسنة والهرسك + Босния и Герцеговина + 070 + Bosnia and Herzegovina + Bosnia y Herzegovina + 波斯尼亚-黑塞哥维那 + 42.55 + 2007 + ماركا + 1000 Ha + البوسنة والهرسك + of Bosnia and Herzegovina + 2007 + 2009 + 3767.0 + 5120.0 + + البوسنة والهرسك + BIH + Bosnia_and_Herzegovina + FAO estimate + la Bosnie-Herzégovine + + + Босния и Герцеговина + 1992 + millions of US dollars + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + millions of US dollars + + SR + Suriname + Repubblica di Suriname + -53.98 + 苏里南 + la République du Suriname + 苏里南元 + Manual Estimation + Республика Суринам + surinamais + 6.02 + جمهورية سورينام + Суринам + Official data reported on FAO Questionnaires from countries + 1985 + surinamese + + 740 + FAO estimate + 9999 + + 233 + 苏里南 + + + + Suriname + دولار سورينامى + 2881.0 + суринамский доллар + + Suriname + 15491 + SUR + 15600.0 + la República de Suriname + + + 520.0 + سورينامى + Suriname dollar + the Republic of Suriname + سورينام + Suriname + Suriname + 2007 + dollar surinamais + + 苏里南共和国 + 2008 + Estimated + + суринамский + + INSERT + Суринам + dollaro del Suriname + سورينام + dólar surinamés + 1.84 + 7534 + Suriname + 83.0 + SUR + 1000 Ha + 207 + 1000 Ha + -58.08 + Suriname + Surinamese + 1000 + le Suriname + 苏里南的 + 2007 + 2009 + Suriname + surinamés + + + جزر القمر + les Comores + коморский + 2007 + франк + Unione delle Comore + the Comoros + 2009 + 870.0 + Estimated + 法 郎 + + 44.54 + 科摩罗的 / 科摩罗人 + Comoros + + comoriano + Data reported on country official publications or web sites (Official) or trade country files. + + 1985 + + comorien + Manual Estimation + جزر القمر + COM + + 174 + فرنك + 530.0 + franc + the Union of the Comoros + 43.22 + 科摩罗 + اتحاد جزر القمر + -11.36 + Comores + 186.0 + FAO estimate + COI + من جزر القمر + 58 + + + franc + Isole Comore + 150.0 + millions of US dollars + las Comoras + 1000 + -12.42 + + 2008 + Comorian + KM + Коморские Острова + 1790 + la Unión de las Comoras + comorano + franco + Comoras + 1000 Ha + 1000 Ha + + 2007 + + l'Union des Comores + franco comoriano + 45 + 科摩罗联盟 + Коморские Острова + Comoros + + 9999 + Isole Comore + Союз Коморских Островов + 科摩罗 + + 15392 + + + + 1 + + + + 194927.0 + + Malaisie + 0.86 + 马来西亚 + Manual Estimation + millions of US dollars + MY + 林吉特 + 7870.0 + la Malaisie + 1000 Ha + 2009 + 119.27 + RM + ماليزي + ringgit + Malesia + Malasia + Малайзия + Estimated + + + Malasia + 1985 + 15446 + 131 + 458 + Malaysian + 9999 + malaisien + la Malaisie + MYS + + + + 32855.0 + Малайзия + ماليزيا + Malesia + + 马来西亚 + malese + 27468.0 + Malasia + رينغيت + 马来西亚的 + + ринггит + Malaysia + Manual Estimation + malasio + 2008 + ماليزيا + Malaysia + 1000 Ha + + 1000 + 2007 + ماليزيا + 2007 + ringgit + Малайзия + ringgit + 99.64 + 4533 + Malesia + 马来西亚 + малайзийский + 153 + 7.36 + Malaysia + Malaysia + FAO estimate + MAL + + + 1000 Ha + Seychelles + SC + Республика Сейшельские Острова + la République des Seychelles + روبية + 1985 + 15484 + les Seychelles + seychellois + 690 + Seychelles + 1000 Ha + + + + 2007 + seicellese + 6.0 + 46.0 + Seychelles + + 塞舌尔 + 196 + 9999 + SR + Repubblica delle Seicelle + рупия + FAO estimate + 2009 + 833.0 + Seychelles + la República de Seychelles + Seychelles + of Seychelles + Manual Estimation + + millions of US dollars + 220 + the Republic of Seychelles + 84.0 + سيشيل + -10.2 + сейшельский + Estimated + 7017 + 2007 + 塞舌尔共和国 + Seychelles + 塞舌尔 + roupie + سيشيلي + SEY + -4.28 + rupee + de Seychelles + + rupia delle Seicelle + 卢 比 + Сейшельские Острова + 塞舌尔的 + Seychelles + 56.3 + + جمهورية سيشيل + سيشيل + Seychelles + SYC + 2008 + + + Сейшельские Острова + 46.2 + Manual Estimation + 1000 + + + 642 + Румыния + la Roumanie + + 21275.0 + + ROM + Romania + + + رومانيا + Romania + Румыния + + رومانيا + 22989.0 + + roumain + Romania + 罗马尼亚 + старый лей; новый лей + + + 15475 + 200071.0 + 2007 + 183 + 1000 + leu + millions of US dollars + 2009 + ليّ + + FAO estimate + 9999 + Румыния + румынский + RO + 罗马尼亚 + 列 伊 + Romanian + 1000 Ha + 13546.0 + 罗马尼亚 + 2008 + Official data reported on FAO Questionnaires from countries + Official data reported on FAO Questionnaires from countries + Roumanie + Rumania + Leu + Romania + Romania + Romania + la Roumanie + leu + 6637 + leu rumeno + Estimated + + Romania + + Rumania + 1000 Ha + روماني + رومانيا + rumeno + 203 + leu + Rumania + + 罗马尼亚的 + 2007 + rumano + ROU + 1985 + + + + + أفريقيا الشمالية + أفريقيا الشمالية + Afrique septentrionale + Afrique septentrionale + + 5103 + África septentrional + Afrique septentrionale + 北非 + 9999 + + Северная Африка + Africa del Nord + أفريقيا الشمالية + northern Africa + northern Africa + Africa del Nord + 北非 + + África septentrional + + + 015 + Северная Африка + África septentrional + 1985 + 北非 + 15228 + Северная Африка + northern Africa + Africa del Nord + + + أنتاركتيكا + Antártida + Антарктида + AQ + أنتاركتيكا + Antártida + + أنتاركتيكا + 南极洲 + 1985 + Antarctica + 南极洲 + Antarctique + 南极洲 + Antarctica + ATA + Antarctique + Антарктида + Antártida + Антарктида + Antarctica + Antarctique + 9999 + + + + ZEP + 1994 + Zona de comercio preferencial para los Estados de África Oriental y de África Austral + PTA + Preferential Trade Area for Eastern and Southern African States + + Preferential Trade Area for Eastern and Southern African States + Zone d'échanges préférentiels pour les États de l'Afrique de l'Est et de l'Afrique australe + Zone d'échanges préférentiels pour les États de l'Afrique de l'Est et de l'Afrique australe + Zona de comercio preferencial para los Estados de África Oriental y de África Austral + ZCP + منطقة تجارة الأفضليات لدول أفريقيا الشرقية والجنوبية + 东部和南部非洲国家优惠贸易区 + 50899 + + + + 1 + + + + الأردن + + jordanien + 964.3 + Иордания + dinar + динар + 112 + Jordan + Jordania + 约旦的 + 2007 + le Royaume hachémite de Jordanie + 4053 + 2007 + 1000 Ha + 20013.0 + 约 旦 + 1985 + 2009 + 2008 + Иорданское Хашимитское Королевство + JOR + dinaro giordano + 9999 + Иордания + dinar + 39.31 + + + Jordan + Official data reported on FAO Questionnaires from countries + 15435 + jordano + Jordan + el Reino Hachemita de Jordania + + Jordania + Regno hascemita di Giordania + 33.36 + 第纳尔 + 1000 + أردني + + 1000 Ha + دينار + иорданский + + 29.18 + Official data reported on FAO Questionnaires from countries + + 约 旦 + giordano + 约旦哈希姆王国 + + JD + the Hashemite Kingdom of Jordan + Giordania + Giordania + الأردن + JO + millions of US dollars + FAO estimate + + Jordanie + 400 + JOR + + Jordanian + Estimated + + المملكة الأردنية الهاشمية + 130 + 34.96 + 8824.0 + la Jordanie + 6316.0 + + + أمريكا الوسطى + Центральная Америка + 中美洲 + America centrale + America centrale + أمريكا الوسطى + central America + + + 5204 + America centrale + Amérique centrale + Amérique centrale + Центральная Америка + + 1985 + أمريكا الوسطى + 84965 + central America + + 013 + central America + América central + + + + + 9999 + + Amérique centrale + América central + 中美洲 + 中美洲 + América central + Центральная Америка + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + 2009 + + de Wallis y Futuna + 1000 + Islas Wallis y Futuna + Wallis and Futuna Islands + WF + Îles Wallis et Futuna + من جزر واليس وفوتونا + франк КФП + 瓦利斯和富图纳群岛人/瓦利斯和富图纳群岛的 + les Îles Wallis et Futuna + جزر واليس وفوتونا + WLF + جزر واليس وفوتونا + Territorio d'oltremare di Wallis e Futuna + + 15.0 + Wallis e Futuna + 瓦利斯和富图纳群岛 + Wallis and Futuna Islands + 243 + 14.0 + 1000 Ha + 1000 Ha + Islas Wallis y Futuna + 瓦利斯和富图纳群岛 + FAO estimate + of Wallis Island + 876 + جزر واليس وفوتونا + 太平洋法郎 + 8296 + WFI + di Wallis e Futuna + franco CFP + 1985 + Islas Wallis y Futuna + Wallis e Futuna + Data reported on country official publications or web sites (Official) or trade country files. + Manual Estimation + (из/ житель) Уоллис и Футуна островов + 2007 + les Îles Wallis et Futuna + 266 + فرنك المستعمرات الفرنسية فى المحيط الهادى + Wallis and Futuna Islands + Wallis_and_Futuna + 9999 + wallisien + 6.0 + 2007 + CFP franc (Colonies françaises du Pacifique) + 瓦利斯和富图纳群岛 + 19039 + + + 2007 + Martinique + MAQ + 474 + (из/ житель) Мартиники + martiniqués + 2009 + 马提尼克 + euro + Martinica + 106.0 + يورو + مارتينيك + من مارتينيك + مارتينيك + 马提尼克 + euro + Martinique + 28.0 + MQ + 405.0 + 1000 + Martinica + martinicano + + euro + Manual Estimation + Dipartimento della Martinica + martiniquais + 19025 + la Martinique + Martinique + 1000 Ha + Martinica + Martinican + Martinica + 158 + MTQ + 135 + 马提尼克人/马提尼克的 + la Martinique + 马提尼克 + 欧 元 + Martinica + 9999 + la Martinique + + 2007 + Data reported on country official publications or web sites (Official) or trade country files. + 4635 + евро + 1985 + مارتينيك + FAO estimate + euro + 1000 Ha + + + FAO estimate + 1000 Ha + + + Francia + 2007 + 1985 + 54766.0 + 250 + 68 + 62343.0 + 3081 + 2009 + 2007 + + français + France + + euro + 9999 + 法 国 + la France + la République française + euro + 15411 + Repubblica francese + 51.09 + + فرنسي + + 1000 + + 欧 元 + + EUR or € + France + millions of US dollars + Франция + Французская Республика + + the French Republic + la República Francesa + francés + يورو + FRA + -5.14 + 2008 + евро + Франция + 法兰西共和国 + + Francia + Official data reported on FAO Questionnaires from countries + French + Francia + + FRA + France + 29418.0 + + فرنسا + 2853062.0 + 9.56 + euro + 法国的 + فرنسا + + France + + 41.36 + francese + 85 + 1000 Ha + euro + + Official data reported on FAO Questionnaires from countries + الجمهورية الفرنسية + Data include the French overseas departments of French Guiana, Guadeloupe, Martinique, and Réunion. Estimated + FR + 法 国 + французский + Francia + + + + + 9999 + ECOWAS + + Экономическое сообщество западноафриканских государств + Экономическое сообщество государств Западной Африки + Экономическое сообщество государств Западной Африки + 西非国家经济共同体 + + Comunidad Económica de los Estados del África Occidental + 西非国家经济共同体 + + + 48092 + الجماعة الاقتصادية لدول غرب أفريقيا + + + CEDEAO + Communauté économique des États de l'Afrique de l'Ouest + Economic Community of West African States + + + CEDEAO + + 1975 + + + Communauté économique des États de l'Afrique de l'Ouest + + + + + Economic Community of West African States + Comunidad Económica de los Estados del África Occidental + + + доллар + delle Bermuda + bermudien + 30 + 2009 + FAO estimate + dólar + 百慕大 + 65.0 + 5.0 + 百慕大的/百慕大人 + BM + Data reported on country official publications or web sites (Official) or trade country files. + برمودا + BMU + Bermuda + Data reported on country official publications or web sites (Official) or trade country files. + dollar + (из/ житель) Бермудских островов + Bermuda + 060 + Bermuda + 1000 Ha + 884 + برمودا + 百慕大 + + les Bermudes + + dollar + les Bermudes + من برمودا + INSERT + 1000 + دولار + 1000 Ha + 9999 + Bermudas + 19013 + Bermuda + 1985 + 百慕大 + 17 + BER + Bermudas + Bermudas + Bermuda + برمودا + Bermudes + Bermuda + 1.0 + 2007 + + de Bermudas + Bermudan + dollaro delle Bermuda + 2007 + Bermuda + + + + 1 + + + + + + + + + + + + + + + + + PFRDV + + + + + + + + + بلدان العجز الغذائى ذات الدخل المنخفض + + + страны с низким уровнем дохода и дефицитом продовольствия + + + + + + + + + + بلدان العجز الغذائي ذات الدخل المنخفض + + + + + + + + + + + + + + PFRDV + PBIDA + + + LIFDCs + + 23475 + + + + países de bajos ingresos y con déficit de alimentos + + + + + + + + + + + + low income and food deficit countries + + بلدان العجز الغذائى ذات الدخل المنخفض + + + 低收入缺粮国 + PBIDA + + + + + pays à faible revenu et à déficit vivrier + + + + 低收入缺粮国 + 低收入缺粮国 + 2005 + + + 5815 + low income food deficit countries + + 2007 + + + + + FAO + + + + + + + + доллар + دولار الولايات المتحدة + 177 + 2007 + FAO estimate + 9999 + 1000 Ha + 887.0 + كمنولث بورتوريكو + (из/ житель) Пуэрто-Рико + 波多黎各 + + 2009 + Data reported on country official publications or web sites (Official) or trade country files. + Portorico + dollaro USA + Porto Rico + l'État libre associé de Porto Rico + PUE + Puerto Rico + 15534 + portoricano + 630 + dólar de EE.UU. + 波多黎各 + portoricain + puertorriqueño + Puerto Rico + بورتوريكو + 波多黎各自由联邦 + 6362 + 189.0 + 美 元 + US dollar + 1000 Ha + 200 + PR + el Estado Libre Asociado de Puerto Rico + بورتوريكى + 1000 + بورتوريكو + Puerto Rican + PRI + 3982.0 + 波多黎各人/波多黎各的 + Official data reported on FAO Questionnaires from countries + Puerto Rico + Portorico + dollar des États-Unis + 2007 + Porto Rico + Puerto_Rico + + Commonwealth di Portorico + + Puerto Rico + the Commonwealth of Puerto Rico + 1985 + + + Principato di Monaco + Mónaco + + millions of US dollars + the Principality of Monaco + 2008 + 摩纳哥公国 + 19026 + + Монако + 1985 + 摩纳哥 + 7.41 + 1000 + Estimated + Monaco + 7.44 + موناكو + يورو + monegasco + من موناكو + + 43.76 + Монако + euro + monegasco + + + FAO estimate + 492 + 2009 + موناكو + 43.73 + Княжество Монако + MC + 4904 + Monegasque + + Mónaco + euro + 9999 + إمارة موناكو + MCO + Monaco + 摩纳哥的 + euro + евро + Monaco + Monaco + 欧 元 + Monaco + MNC + Monaco + 166 + 摩纳哥 + la Principauté de Monaco + monégasque + EUR or € + euro + + 33.0 + el Principado de Mónaco + монакский + Monaco + 140 + + + 2007 + 2007 + мальтийский + MLT + 156 + Official data reported on FAO Questionnaires from countries + лира + lira + مالطة + 2007 + maltés + maltais + + 35.81 + MAT + 马耳他共和国 + Malta + Malta + 15449 + 14.18 + Malta + Malte + LM + 9999 + Malta + millions of US dollars + 1000 Ha + Repubblica di Malta + FAO estimate + Malta + 马耳他的 + 4548 + Malta + 32.0 + 409.0 + + 马耳他 + 1000 + + la República de Malta + 134 + Мальта + lira + maltese + Республика Мальта + 7449.0 + 14.57 + + Мальта + ليرة + Malta + مالطة + جمهورية مالطة + 1000 Ha + 1985 + the Republic of Malta + + مالطي + 2009 + 马耳他 + lira maltese + 36.08 + Malte + 470 + 马 镑 + Estimated + 9.3 + + Maltese + Official data reported on FAO Questionnaires from countries + MT + + la République de Malte + + + 2007 + Saint-Pierre-et-Miquelon + Saint-Pierre y Miquelon + de San Pedro y Miquelón + + Collettività territoriale di Saint-Pierre e Miquelon + 190 + PM + 3.0 + Saint-Pierre-et-Miquelon + евро + + Saint-Pierrais + 圣皮埃尔和密克隆人/圣皮埃尔和密克隆的 + euro + Saint-Pierre e Miquelon + 1000 + Manual Estimation + euro + of Saint Pierre and Miquelon + 1000 Ha + Saint-Pierre y Miquelon + 7351 + di Saint-Pierre e Miquelon + من سان بيير وميكويلون + 9999 + Saint Pierre and Miquelon + 欧元 + euro + 19032 + 圣皮埃尔和密克隆 + Saint Pierre and Miquelon + 2009 + 1985 + 圣皮埃尔和密克隆 + Saint Pierre and Miquelon + Saint-Pierre e Miquelon + Saint_Pierre_and_Miquelon + 210 + 圣皮埃尔和密克隆 + 1000 Ha + Saint Pierre and Miquelon + FAO estimate + Saint-Pierre-et-Miquelon + euro + 23.0 + 666 + 2007 + 6.0 + SPM + (из/ житель) Сан –Пьера и Минелона + + + + + UN Statistics Division http://unstats.un.org/unsd/methods/m49/m49chang.htm + + + + + + 2009 + 1985 + 1000 Ha + millions of US dollars + 1705.0 + 15413 + даласи + + + gambiano + 冈比亚 + Manual Estimation + Gambian + + غامبيا + + Gambia_The + dalasi + GAM + + la República de Gambia + + la République de Gambie + Estimated + 1000 Ha + + dalasi + 782.0 + Gambia + 冈比亚共和国 + غامبى + + the Republic of the Gambia + 冈比亚的 + 2007 + + D + دلاسى + جمهورية غامبيا + 2008 + 13.06 + -13.8 + 75 + GMB + GM + 冈比亚 + Республика Гамбия + Gambie + gambien + Repubblica della Gambia + 1000.0 + la Gambie + 1000 + + 达拉西 + 9999 + 13.83 + 270 + 90 + FAO estimate + gambiano + + 2007 + Gambia + Gambia + гамбийский + Gambia + Гамбия + Gambia + dalasi + the Gambia + -16.82 + dalasi + Гамбия + غامبيا + 3177 + Manual Estimation + + 813.0 + + + + + + TUR + turco + + Official data reported on FAO Questionnaires from countries + 2007 + Turquía + 42.1 + + 74816.0 + 土耳其的 + 8013 + 792 + + تركى + Turkish + 39454.0 + 土耳其 + 15501 + 里拉,土耳其里拉 + millions of US dollars + 2008 + تركيا + + 1985 + turc + лира + 76963.0 + + Turchia + Турция + Estimated + 25.66 + + la République turque + Turkey + + + + ليرة + TR + TUR + Турецкая Республика + la República de Turquía + 2009 + nuova lira turca + 794228.0 + Turkey + تركيا + турецкий; турок + Repubblica di Turchia + + Turquía + FAO estimate + + turco + the Republic of Turkey + + 1000 Ha + 1000 Ha + 9999 + 土耳其共和国 + Turquie + la Turquie + Turkey + 2007 + + Turchia + 土耳其 + Official data reported on FAO Questionnaires from countries + Турция + 44.82 + lira + 35.82 + 249 + 1000 + الجمهورية التركية + 223 + + + + 1 + + + + + + + + + + + + + + + + 9999 + 低收入缺粮国 + 2009 + + بلدان العجز الغذائى ذات الدخل المنخفض + + + + + + + 23475 + + PBIDA + 低收入缺粮国 + paese a basso reddito con deficit alimentare + بلدان العجز الغذائي ذات الدخل المنخفض + pays à faible revenu et à déficit vivrier + + + + + + + países de bajos ingresos y con déficit de alimentos + + + + + + + + + + + + LIFDCs + + + + + + PBIDA + + paese a basso reddito con deficit alimentare + + + + + + + + + PFRDV + + + + + 低收入缺粮国 + + + + + + страна с низким уровнем дохода и дефицитом продовольствия + + + страны с низким уровнем дохода и дефицитом продово + 876 + + + بلدان العجز الغذائى ذات الدخل المنخفض + + + low income and food deficit countries + FAO and FAO Country profiles http://www.fao.org/countryprofiles/lifdc.asp?lang=en + + PFRDV + + + + + + + + + + + low income food deficit countries + + + + + Замбия + ZAM + + Замбия + Zambia + + 赞比亚 + zambiano + zambien + + Manual Estimation + Zambie + the Republic of Zambia + 1985 + 22.0 + Repubblica dello Zambia + Zambia + + 15514 + + + Zambia + Республика Замбия + K + + 9999 + 270 + + квача + FAO estimate + zambiano + جمهورية زامبيا + Estimated + Zambia + -8.22 + 2009 + 1000 + Zambia + 2007 + + 赞比亚 + + 2007 + 33.7 + Zambia + la República de Zambia + la Zambie + 12935.0 + + + زامبي + Zambia + 2008 + millions of US dollars + + + 74339.0 + + 251 + + la République de Zambie + замбийский + + + 1000 Ha + Zambian + 1000 Ha + kwacha + 赞比亚共和国 + 25589.0 + 克瓦查 + -18.08 + ZM + Manual Estimation + 14314.0 + 894 + 赞比亚的 + ZMB + + زامبيا + + زامبيا + 8501 + كواشا + + + + 刚果民主共和国 + congoleño + 2009 + + 22650.0 + 1000 Ha + millions of US dollars + FAO estimate + + Estimated + 11588.0 + la République démocratique du Congo + + 法 郎 + + + franc + the Democratic Republic of the Congo + la República Democrática del Congo + 刚果民主共和国 + + + ZAI + COD + франк + (из/житель) Демократической Республики Конго + جمهورية الكونغو الديمقراطية + Repubblica democratica del Congo + + 8500 + 15513 + Congolese + République démocratique du Congo + 刚果民主共和国 + + جمهورية الكونغو الديمقراطية + franco + la République démocratique du Congo + Manual Estimation + 2007 + the Democratic Republic of the Congo + Демократическая Республика Конго + + 刚果民主共和国的; 刚果的 / 刚果民主共和国人; 刚果人 + 12.2 + Repubblica democratica del Congo + 180 + + + franco congolese + Congo_Democratic_Republic_of_the + congolese + + 1000 Ha + 31.31 + la República Democrática del Congo + + فرنك + 250 + 68 + Демократическая Республика Конго + + + congolais + 226705.0 + Democratic Republic of the Congo + 1000 + + 2008 + + جمهورية الكونغو الديمقراطية + 5.39 + -13.46 + + + República Democrática del Congo + + + Repubblica democratica del Congo + من جمهورية الكونغو الديمقراطية + Manual Estimation + Демократическая Республика Конго + 1997 + 66020.0 + CD + 2007 + franc + 9999 + + + جمهورية كينيا + la República de Kenya + 34507.0 + KEN + 2007 + -4.68 + 1000 + + KEN + 1000 Ha + + scellino keniota + كينيا + Kenya + shilling + le Kenya + Kenya + Kenya + + 56914.0 + + chelín + 肯尼亚 + 2008 + + the Republic of Kenya + 404 + + KE + 2009 + shilling + 4086 + 肯尼亚的 + + + la République du Kenya + Manual Estimation + kényan + Kenya + keniata + 9999 + 39802.0 + + 肯尼亚 + 133 + Kenyan + + Kenya + + Республика Кения + 先 令 + FAO estimate + 肯尼亚共和国 + 1985 + millions of US dollars + 15436 + Kenya + Кения + кениец + Kenya + Repubblica del Kenya + Кения + + شلن + Manual Estimation + keniota + كينيا + + + шиллинг + 114 + كيني + K Sh + + + 4.63 + 41.9 + 2007 + 33.9 + Estimated + 27000.0 + 1000 Ha + Kenya + + + FAO estimate + Туркменистан + 土库曼斯坦 + 9999 + Туркменистан + Turkmenistan + + + 35.14 + TKM + manat turkmeno + 1991 + TM + 2008 + 1000 Ha + le Turkménistan + Turkmenistan + Manual Estimation + manat + + 46993.0 + + 213 + 5110.0 + + تركمانى + 1000 Ha + 土库曼的 + turcomanno + TUK + turcomano + манат + Туркменистан + le Turkménistan + تركمانستان + Turkmen + 66.68 + Turkménistan + تركمانستان + Turkmenistan + 15047 + Turkmenistán + 20526 + + 250 + 土库曼斯坦 + Turkmenistan + Turkmenistan + Repubblica di Turkmenistan + 795 + + + 2007 + + 1000 + 42.8 + + + Turkmenistan + millions of US dollars + turkmène + Estimated + 32613.0 + 2007 + туркменский + 土库曼斯坦 + 2009 + + مانات + تركمانستان + 18269.0 + + Turkmenistán + + + Turkmenistán + 52.44 + Manual Estimation + 马纳特 + + + + CHL + Chili + -17.51 + 74380.0 + Чили + 智利共和国 + chileno + 智 利 + 9999 + 15762.0 + 1548 + 16970.0 + Chilean + millions of US dollars + 15389 + + Республика Чили + 2009 + Chile + Chile + Чили + 智 利 + 40 + Manual Estimation + 152 + + + peso + + le Chili + Cile + Official data reported on FAO Questionnaires from countries + peso + Chile + chilien + CL + شيلى + Repubblica del Cile + 智利的 / 智利人 + -55.98 + Estimated + peso cileno + -109.46 + Ch$ + cileno + + 1000 + + + شيلى + 2008 + + la República de Chile + + 1000 Ha + جمهورية شيلى + 比 索 + the Republic of Chile + 1985 + la République du Chili + 169458.0 + Chile + Cile + 51 + 1000 Ha + Chile + peso + + بيسو + 2007 + شيلى + -66.42 + 2007 + FAO estimate + CHI + чилийский + песо + + + + FAOSTAT http://faostat.fao.org/ + lastUpdate: 30 April 2009 + + + + United_Arab_Emirates + des Émirats arabes unis; émirien + درهم + الإمارات العربية المتحدة + Объединенные Арабские Эмираты + the United Arab Emirates + 2007 + 阿拉伯联合酋长国 + les Émirats arabes unis + ARE + 255 + 9999 + 2007 + الإمارات العربية المتحدة + Dh + millions of US dollars + 2007 + 1000 Ha + + Manual Estimation + + 1000 Ha + 163296.0 + 8360.0 + dirham degli EAU + 阿拉伯联合酋长国 + dirham + 8067 + + degli Emirati arabi uniti + 26.28 + 22.62 + of the United Arab Emirates + Emirati arabi uniti + + dirham + الإمارات العربية المتحدة + 784 + 15503 + FAO estimate + 2009 + AE + les Émirats arabes unis + 595.0 + the United Arab Emirates + 56.38 + + Объединенные Арабские Эмиратыn + 1000 + Emirati arabi uniti + 51.53 + Объединенные Арабские Эмираты + + los Emiratos Árabes Unidos + los Emiratos Árabes Unidos + إماراتي; من الإمارات العربية المتحدة + 1985 + 阿联酋的/ 阿联酋人 + Emiratos Árabes Unidos + Data reported on country official publications or web sites (Official) or trade country files. + дирxам + 迪尔汗 + United Arab Emirates + 4599.0 + Estimated + UAE + + de los Emiratos Arabes Unidos + + (из/житель) Объединенных Арабских Эмиратов + + 225 + Emirati arabi uniti + dirham + Émirats arabes unis + 阿拉伯联合酋长国 + + + couronne danoise + + las Islas Feroe + Islas Feroe + 2993 + 140.0 + 1000 + 1000 Ha + 82 + + 3.0 + Faroe Islands + + FO + Islas Feroe + جزر فيرويه + les Îles Féroé + جزر فيرويه + 1000 Ha + Manual Estimation + 234 + Data reported on country official publications or web sites (Official) or trade country files. + 50.0 + + Faerøerne + FRO + Faerøerne + 2811 + DKr + 1985 + Faroe Islands + 64 + Faerøerne + + 2009 + Faroese + Фарерские Острова + + 法罗群岛 + جزر فيرويه + de las Islas Feroe + 2007 + من جزر فيرويه + les Îles Féroé + 法罗群岛 + Фарерские Острова + 丹麦克朗 + Faroe Islands + (изб житель) Фарерских островов + Фарерские Острова + feroese + corona danese + 9999 + FAO estimate + Îles Féroé + 法罗人/法罗群岛的 + corona danesa + Danish krone + 法罗群岛 + كرونة دانمركية + Faroe_Islands + 2007 + крона + féroïen + + + + + + Kiribati + of Kiribati + 3261 + 81.0 + Кирибати + la República de Kiribati + 135 + 1985 + Repubblica di Kiribati + Kiribati + KI + Республика Кирибати + + kiribatiano + + 基里巴斯 + Estimated + + كيريباس + KIR + 2007 + 19023 + 基里巴斯 + 131.0 + -11.45 + 2008 + 296 + kiribatien + $A + Kiribati + + جمهورية كيريباس + Kiribati + كيريباس + millions of US dollars + 2007 + кирибатский + Australian dollar + 4.72 + 1000 + Республика Кирибати + Kiribati + كيريباسي + di Kiribati + KIR + 9999 + la République de Kiribati + 澳 元 + + Kiribati + dólar australiano + + + Kiribati + Kiribati + + 1000 Ha + 2009 + FAO estimate + 基里巴斯 + 98.0 + the Republic of Kiribati + доллар + Manual Estimation + دولار استرالى + dollaro australiano + 176.85 + -174.55 + Manual Estimation + dollar australien + + 1000 Ha + 基里巴斯的 + 37.0 + 83 + Kiribati + + + Tonga + Manual Estimation + Тонга + 72.0 + Regno di Tonga + Tonga + Manual Estimation + 31.0 + 汤 加 + TON + tongano + Tonga + 2008 + pa'anga + -176.22 + + 汤加王国 + + les Tonga + 汤加的 + TO + Estimated + 汤 加 + 1000 Ha + 776 + 潘 加 + -15.56 + 1000 + Tonga + 1985 + بانغا + tongan + 219 + + + مملكة تونغا + 2007 + paanga + 245 + + Королевство Тонга + -173.7 + паанга + TON + + Тонга + 7808 + 9999 + tongano + 2007 + 104.0 + millions of US dollars + Tonga + Tonga + تونغا + + le Royaume des Tonga + 15498 + + Tonga + + تونغا + Tonga + 1000 Ha + تونغي + -22.34 + T$ + 264.0 + FAO estimate + + тонганский + Tongan + the Kingdom of Tonga + el Reino de Tonga + 2009 + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + 002 + + + + + + + + + + Afrique + + Африка + + أفريقيا + 非洲 + أفريقيا + + + África + Africa + + + Afrique + África + + 9999 + + + + + + + + África + + Africa + + Africa + + + Afrique + 非洲 + + Африка + Africa + + 1993 + + + + Африка + 84906 + + Africa + + + + 非洲 + + + + أفريقيا + Africa + + + + + + + + + + + + + + + 5100 + + + + + Panamá + 591 + 23088.0 + бальбоа + 1000 Ha + + Panama + -77.17 + the Republic of Panama + Республика Панама + Panama + Data reported on country official publications or web sites (Official) or trade country files. + Estimated + panaméen + 巴拿马的 + B + 191 + Panama + + جمهورية بنما + la République du Panama + 9.63 + 1000 + millions of US dollars + Panamá + panameño + + 2009 + -83.05 + + 巴波亚 + 1000 Ha + 3454.0 + 2007 + Manual Estimation + 巴拿马 + Панама + 2230.0 + panamense + PA + PAN + Панама + 7434.0 + + 7.2 + Panama + 2007 + 2008 + 15467 + balboa + + بلبوا + + + Panama + 166 + PAN + 1985 + بنما + 巴拿马 + بنمي + بنما + 9999 + le Panama + 巴拿马共和国 + FAO estimate + Panamanian + панамский + 5524 + la República de Panamá + Panama + Repubblica del Panama + + + Antille Olandesi + NAN + + Antillas Neerlandesas + 80.0 + 176 + (из/ житель) Голландских Антильских островов + ANT + florin + Netherlands Antilles + من جزر الأنتيل الهولندية + Manual Estimation + 2008 + Antillas Neerlandesas + 1000 + Netherlands Antilles + جزر الأنتيل الهولندية + جزر الأنتيل الهولندية + fiorino delle Antille olandesi + 1985 + 荷属安的列斯人/属安的列斯人的 + جيلدر + + 2007 + les Antilles néerlandaises + les Antilles néerlandaises + Data reported on country official publications or web sites (Official) or trade country files. + гульден + 530 + Estimated + FAO estimate + Antilles néerlandaises + Netherlands Antilles + 荷属安的列斯 + 荷属安的列斯 + 28926 + 8.0 + 2007 + 5143 + 198.0 + Antille Olandesi + + de las Antillas Neerlandesas + florín + millions of US dollars + 1000 Ha + 1986 + guilder + 2009 + جزر الأنتيل الهولندية + Antille Olandesi + NA f. + Netherlands_Antilles + + 荷属安的列斯 + 1000 Ha + Antillas Neerlandesas + delle Antille Olandesi + AN + of the Netherlands Antilles + 151 + des Antilles néerlandaises + + + + + + + + عراقي + 368 + IQ + + Республика Ирак + 9450.0 + 第纳尔 + 1985 + Manual Estimation + ID + + العراق + Iraqi + 15429 + 9999 + 118 + Iraq + + Iraq + 伊拉克 + 伊拉克 + + 2008 + el Iraq + iraquien + + dinar + Iraq + 38.8 + + + 伊拉克共和国 + 103 + 2007 + 1000 + иракский + динар + the Republic of Iraq + IRQ + dinaro iracheno + 1000 Ha + FAO estimate + + Iraq + دينار + Ирак + 43737.0 + + + Iraq + 伊拉克的 + millions of US dollars + 29.07 + dinar + Iraq + la República del Iraq + + + 48.58 + 37.38 + 3941 + iraquí + Manual Estimation + iracheno + Ирак + + Repubblica dell'Iraq + العراق + IRQ + 30747.0 + la République d'Iraq + + dinar + 1000 Ha + Estimated + l'Iraq + 2009 + Iraq + + جمهورية العراق + + 2007 + + + + FAOSTAT http://faostat.fao.org + + + + + + آسيا الجنوبية + southern Asia + + southern Asia + southern Asia + Asia meridional + Asie méridionale; Asie du Sud + 9999 + + Asia meridionale + 南亚 + 034 + Asie méridionale; Asie du Sud + 5303 + 15244 + + Южная Азия + 南亚 + Южная Азия + Asie méridionale; Asie du Sud + + Южная Азия + Asia meridionale + آسيا الجنوبية + Asia meridionale + 南亚 + + + Asia meridional + Asia meridional + 1985 + + + آسيا الجنوبية + + + kirghiz + Кыргызстан + + som + + 吉尔吉斯斯坦 + Kirghizistan + Estimated + kirguís + 1991 + kirghiso + 417 + 113 + Kyrgyzstan + la République kirghize + KG + 9999 + + 1000 Ha + 2008 + 10728.6 + la República Kirguisa + سومOوa + + 20523 + millions of US dollars + KGZ + 138 + 索 姆 + + som + som + قيرغيزستان + + Manual Estimation + Kyrgyzstan + + 吉尔吉斯的 + 69.28 + 吉尔吉斯共和国 + Kirghizistan + сом + 33243 + Кыргызская Республика + Kirguistán + قيرغيزستان + قيرغيزي + + + Repubblica di Kirghizistan + Kirghizistan + кыргызстанский + 5482.0 + 4420.0 + + 80.27 + the Kyrgyz Republic + + 43.24 + + KYR + 1000 Ha + 39.17 + 2007 + + + جمهورية القيرغيز + Kyrgyzstan + 1000 + Kyrgyz + 2009 + Official data reported on FAO Questionnaires from countries + le Kirghizistan + FAO estimate + 吉尔吉斯斯坦 + Kirguistán + + Кыргызстан + 19180.0 + + 2007 + + + + + + + + + 1 + + + + + + + Caribbean Forum of African, Caribbean and Pacific States + 51143 + + + CARIFORUM + Caribbean Forum of African, Caribbean and Pacific States + + Foro de Estados ACP del Caribe + + + Карибский форум африканских, карибских и тихоокеанских государств + Foro de Estados ACP del Caribe + + CARIFORUM + + 非洲、加勒比和太平洋国家加勒比论坛 + + Forum des Caraïbes du Groupe des États d'Afrique, des Caraïbes et du Pacifique + + CARIFORUM + 9999 + + منتدى الكاريبى + Forum des Caraïbes du Groupe des États d'Afrique, des Caraïbes et du Pacifique + + + + + + + 1 + + + + + 1 + + + + Irlanda + 1000 + Estimated + + 4515.0 + Ирландия + آيرلندا + 爱尔兰的 + irlandés + 爱尔兰 + آيرلندي + 119 + 372 + 1000 Ha + 4276.0 + 2007 + 55.38 + FAO estimate + + Ireland + millions of US dollars + EUR or € + irlandais + 1985 + آيرلندا + Irlande + + + -10.58 + Irlanda + euro + 欧 元 + euro + 9999 + IRE + 1000 Ha + Irlanda + 2009 + euro + IRL + Official data reported on FAO Questionnaires from countries + 2007 + Irlanda + 2008 + IE + Official data reported on FAO Questionnaires from countries + Ireland + 3948 + + Ireland + 15430 + -5.99 + يورو + آيرلندا + + евро + Ireland + 51.42 + Irish + 6889.0 + Ирландия + 104 + Ирландия + l'Irlande + ирландский + 爱尔兰 + 爱尔兰 + Irlanda + irlandese + + + l'Irlande + euro + Irlanda + 281776.0 + + + la República Islámica del Pakistán + 165 + Исламская Республика Пакистан + روبية + 1000 + 168276.0 + باكستان + Пакистан + 37.09 + 15466 + 77088.0 + 1985 + + 77.84 + rupia pakistana + le Pakistan + FAO estimate + + pakistano + 586 + millions of US dollars + 5504 + rupia + + PRs + Manual Estimation + Pakistan + 2009 + Пакистан + 巴基斯坦 + 2007 + 1000 Ha + пакистанский + Pakistan + 27300.0 + Data reported on country official publications or web sites (Official) or trade country files. + 60.88 + + 巴基斯坦伊斯兰共和国 + + + PAK + جمهورية باكستان الإسلامية + + Pakistan + + рупия + 巴基斯坦 + 188 + + 巴基斯坦的 + roupie + of Pakistan + + pakistanais + 卢 比 + 23.69 + + + PAK + باكستان + + Pakistan + باكستاني + 9999 + PK + Pakistan + Pakistan + Estimated + the Islamic Republic of Pakistan + 180808.0 + Repubblica islamica del Pakistan + pakistaní + rupee + la République islamique du Pakistan + Pakistán + + 2007 + 1000 Ha + 2008 + + el Pakistán + + + + 1 + + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + ямайский + 1985 + جامايكا + J$ + جامايكا + Jamaica + 牙买加的 + 2719.0 + 15433 + + -78.37 + 2008 + Jamaica + 513.0 + JM + Jamaica + دولار جامايكى + JAM + Jamaican + 18.53 + Manual Estimation + جامايكا + FAO estimate + + dollar + 1000 Ha + + 牙买加 + + 2007 + Estimated + Giamaica + доллар + la Jamaïque + + 2009 + dollar + Ямайка + + JAM + + Jamaïque + 123 + 9999 + la Jamaïque + 4035 + 109 + 1000 + Jamaica + Ямайка + + Giamaica + Jamaica + 17.71 + Jamaica + 1083.0 + dólar + millions of US dollars + جامايكي + + Jamaica + 1000 Ha + 牙买加 + Ямайка + giamaicano + + dollaro giamaicano + jamaïcain + 15068.0 + 牙买加 + 388 + 2007 + jamaiquino + Manual Estimation + -76.19 + Giamaica + + + + 10767 + 280 + + Federal_Republic_of_Germany_the + Federal_Republic_of_Germany_the + 1985 + 1990 + + + -8.55 + 1000 + 图瓦卢的 + dollaro australiano + di Tuvalu + Tuvalu + Tuvaluan + dólar australiano + FAO estimate + + 19037 + Tuvalu + Tuvalu + + доллар + Tuvalu + + Тувалу + 3.0 + Data reported on country official publications or web sites (Official) or trade country files. + 澳 元 + 图瓦卢 + + tuvaluan + Tuvalu + Тувалу + Manual Estimation + Тувалу + 2.0 + 2009 + Tuvalu + 图瓦卢 + Tuvalu + + + 2007 + TV + 252 + Tuvalu + + 10.0 + de Tuvalu + dollar australien + 2007 + توفالو + 8025 + دولار أسترالى + Tuvalu + توفالو + 图瓦卢 + + 9999 + Tuvalu + 1985 + Tuvalu + $A + + 798 + توفالو + тувалуанский + 1000 Ha + 227 + Tuvalu + 1000 Ha + 176.13 + + -5.67 + TUV + TUV + + 179.22 + توفالوي + Tuvalu + + Australian dollar + + + منتدى جزر المحيط الهادي + + + Pacific Islands Forum + + PIF + + + 太平洋岛屿论坛 + + + 9999 + Forum des Îles du Pacifique + Foro de las Islas del Pacífico + + + + + Foro de las Islas del Pacífico + + + + 56068 + Форум островов Тихого океана + + Pacific Islands Forum + + + + центральноафриканский + + 37 + + 2007 + FAO estimate + Центральноафриканская Республика + CAF + + + 中非共和国 + 非洲法郎 + Центральноафриканская Республика + جمهورية أفريقيا الوسطى + 1985 + + Estimated + centroafricano + فرنك الجماعة المالية الأفريقية + 2008 + 140 + + + 2.22 + centrafricain + franc CFA (Communauté financière africaine) + + جمهورية أفريقيا الوسطى + CAF + la República Centroafricana + Central African Republic + + 49 + Central_African_Republic + 2009 + 中非共和国 + millions of US dollars + 1000 + 1000 Ha + Repubblica centrafricana + 15387 + 中非共和国 + República Centroafricana + + من جمهورية أفريقيا الوسطى + 9999 + CF + франк КФА + 1970.0 + + + جمهورية أفريقيا الوسطى + 2007 + 14.42 + + 1000 Ha + la República Centroafricana + 62300.0 + 27.46 + 中非共和国的 / 中非共和国人 + Repubblica centrafricana + République centrafricaine + of the Central African Republic + 11.01 + Manual Estimation + centrafricano + 5205.0 + la République centrafricaine + + + franco CFA (Communauté financière africaine) + Центральноафриканская Республика + the Central African Republic + 1433 + Manual Estimation + la République centrafricaine + 4422.0 + the Central African Republic + franco CFA + + CFA franc (Communauté financière africaine) + Repubblica centrafricana + + + + + + millions of US dollars + 2007 + + 1000 + + + estonio + Estonia + 23089.0 + كرون + 克 龙 + + 15533 + 爱沙尼亚 + 1340.0 + 78 + 59.68 + corona + l'Estonie + 爱沙尼亚 + corona estone + Эстонская Республика + Estonia + 4239.0 + крона + 57.51 + 1000 Ha + эстонский + kroon + 2009 + + + 28.21 + 1991 + Estonia + la República de Estonia + EST + EST + estone + + Official data reported on FAO Questionnaires from countries + Estonie + estonien + Estonia + + 10672 + 21.81 + Эстония + EE + 9999 + Official data reported on FAO Questionnaires from countries + إستوني + Repubblica di Estonia + + Эстония + إستونيا + the Republic of Estonia + 爱沙尼亚共和国 + جمهورية إستونيا + FAO estimate + Estonia + couronne + 63 + 爱沙尼亚的 + Estonia + 1000 Ha + 2008 + Estonia + EEK + la République d'Estonie + إستونيا + 2007 + Estonian + Estimated + 233 + 823.0 + + + + 1 + + + + + + + + + + 2006 + Europa + + + + + + 150 + Европа + 84917 + Europa + + 欧洲 + + + + 5400 + + 欧洲 + أوروبا + + + + + + Europe + Europa + Europe + + + + + + + + 欧洲 + + + Europe + Europa + Europe + Европа + + 9999 + + Europa + + + Europe + + + + Europa + + + + Europe + + أوروبا + + Европа + + + + أوروبا + + + + + 东非 + eastern Africa + أفريقيا الشرقية + 东非 + + Восточная Африка + 东非 + + Восточная Африка + Africa orientale + África oriental + 014 + + África oriental + 5101 + + أفريقيا الشرقية + + Africa orientale + eastern Africa + 15202 + Восточная Африка + + eastern Africa + + 1993 + Africa orientale + + + + Afrique orientale + + Afrique orientale + África oriental + + 9999 + Afrique orientale + + + + أفريقيا الشرقية + + + + SVN + словенский + millions of US dollars + + euro + 9999 + 托拉尔 + 2009 + Estimated + Slovenia + 46.88 + 2020.0 + 25065 + euro + 224 + Slovenia + the Republic of Slovenia + 705 + Словения + Республика Словения + la República de Eslovenia + 1000 + + + + 198 + la Slovénie + Slovenia + 45.42 + 34123 + جمهورية سلوفينيا + + SI + Official data reported on FAO Questionnaires from countries + 500.0 + 1992 + 54613.0 + FAO estimate + سلوفيني + 2007 + سلوفينيا + euro + Eslovenia + Repubblica di Slovenia + 2007 + Словения + Slovenia + + Slovene + 斯洛文尼亚 + sloveno + euro + يورو + 斯洛文尼亚共和国 + 16.61 + 斯洛文尼亚的 + slovène + + EUR or € + + 1000 Ha + 1000 Ha + 斯洛文尼亚 + евро + Eslovenia + + سلوفينيا + Slovénie + la République de Slovénie + SVN + 2014.0 + esloveno + 13.38 + Official data reported on FAO Questionnaires from countries + 2008 + + + + Slovenia + + + + FAO terminology. FAOTERM. http://www.fao.org/faoterm/ + + + + + 1 + + + + + + + + 加勒比 + + + Caribe + 1985 + الكاريبي + + Caraïbes  + 029 + + Caribbean + Caribe + 5206 + الكاريبي + Caribbean + الكاريبي + + Caraïbes  + Карибы + + Caraibi + + Caraïbes  + + + + Caribe + 84967 + Карибы + + Caraibi + 9999 + Caribbean + Caraibi + Карибы + 加勒比 + + + + 加勒比 + + + Perú + 2009 + Peru + the Republic of Peru + 127434.0 + -0.03 + 秘 鲁 + millions of US dollars + Estimated + 秘鲁的 + peruano + -18.38 + Repubblica del Perù + le Pérou + перуанский + + PER + Perú + 9999 + + بيرو + 1000 Ha + Pérou + Peru + 604 + 秘鲁共和国 + 195 + + новый соль [м.] + la République du Pérou + 2008 + 5725 + + 128000.0 + 1000 + nuevo sol + + Перу + سول جديد + Перу + 29165.0 + Peruvian + 1985 + péruvien + 170 + S/. + 新索尔 + nuevo sol + Perù + -81.33 + la República del Perú + Perù + Республика Перу + PER + جمهورية بيرو + بيرو + Manual Estimation + peruviano + 2007 + Peru + + FAO estimate + 15470 + 秘 鲁 + 21560.0 + + + بيروي + 2007 + + + + + PE + 1000 Ha + nuevo sol + -68.68 + + + el Reino Unido de Gran Bretaña e Irlanda del Norte + le Royaume-Uni de Grande-Bretagne et d'Irlande du Nord + Estimated + Regno Unito + بريطاني + Royaume-Uni + UKM + + United_Kingdom + 826 + lira sterlina + 2007 + United Kingdom + + 大不列颠及北爱尔兰联合王国 + FAO estimate + 17647.0 + Великобритании и Северной Ирландии + 256 + 24193.0 + 1000 Ha + 8068 + + جنيه إسترلينى + libra esterlina + 英 镑 + 15504 + Соединенное Королевство Великобритании и Северной Ирландии + Regno Unito + le Royaume-Uni de Grande-Bretagne et d'Irlande du Nord + Official data reported on FAO Questionnaires from countries + 2008 + 9999 + + Official data reported on FAO Questionnaires from countries + + 2009 + фунт + el Reino Unido de Gran Bretaña e Irlanda del Norte + المملكة المتحدة + britannico + GBR + the United Kingdom of Great Britain and Northern Ireland + 大不列颠及北爱尔兰联合王国 + 2007 + 1000 Ha + 英国的 + the United Kingdom of Great Britain and Northern Ireland + 2645593.0 + المملكة المتحدة لبريطانيا العظمى وآيرلندا الشمالية + de Grande-Bretagne et d'Irlande du Nord + Reino Unido + Соединенное Королевство Великобритании и Северной Ирландии + -8.62 + 61796.0 + GB + + pound sterling + de Gran Bretaña e Irlanda del Norte + livre sterling + 1.77 + (of the) United Kingdom + المملكة المتحدة + + Regno Unito di Gran Bretagna e Irlanda del Nord + 1000 + 60.84 + 1985 + 229 + millions of US dollars + 49.9 + + 联合王国 + Соединенное Королевство ( Великобритании и Северной Ирландии) + + + Российская Федерация + 215463.0 + 1000 Ha + 俄罗斯联邦 + russo + 1637774.0 + + la Federación de Rusia + Russian Federation + the Russian Federation + + 2007 + + 1000 Ha + Российская Федерация + Russia + + من الاتحاد الروسي، روسي + Federazione russa + + 俄罗斯联邦 + + Official data reported on FAO Questionnaires from countries + 2007 + + millions of US dollars + rouble + 140874.0 + + Fédération de Russie + روبل + 1000 + RUS + + + + + 俄罗斯联邦 + la Fédération de Russie + Russia + of the Russian Federation + Estimated + la Federación de Rusia + + Rub + 33240 + 180.0 + 卢 布 + + + 643 + + rublo + RU + the Russian Federation + RUS + Russia + de la Fédération de Russie + + Federación de Rusia + 9999 + الاتحاد الروسي + الاتحاد الروسي + 1607816.0 + 19040 + de la Federación de Rusia + + + 1991 + Official data reported on FAO Questionnaires from countries + 41.19 + rouble + الاتحاد الروسي + rublo + -180.0 + 2008 + российский + 81.86 + + рубль [м.] + 俄罗斯的 + 204 + + FAO estimate + Российская Федерация + la Fédération de Russie + 185 + 2009 + + + + 1 + + + + + + + + Azerbaiyán + الجمهورية الأذربيجانية + manat azero + l'Azerbaïdjan + Азербайджан + Azerbaïdjan + أذربيجان + + 2007 + 2009 + Repubblica dell'Azerbaigian + Азербайджан + 马纳特 + 9999 + Official data reported on FAO Questionnaires from countries + + 52 + 8832.0 + AZ + + + + Azerbaiyán + 阿塞拜疆 + + la República de Azerbaiyán + 50.61 + 8262.9 + 1000 + + AZE + 4756.5 + + + Azerbaijan + 2008 + Azerbaijani + 031 + + + 1000 Ha + + Azerbaigian + azerbaijano + أذربيجاني + + 阿塞拜疆共和国 + азербайджанский + AZE + 阿塞拜疆的 / 阿塞拜疆人 + millions of US dollars + Azerbaijan + 44.77 + azerbaigiano + FAO estimate + Азербайджанская Республика + 20522 + la République d'Azerbaïdjan + 46259.0 + 1991 + + أذربيجان + Azerbaijan + Official data reported on FAO Questionnaires from countries + + Estimated + the Republic of Azerbaijan + 41.91 + + 9026 + 38.4 + 19 + 2007 + + azerbaïdjanais + 1000 Ha + 阿塞拜疆 + Azerbaigian + مانات + manat + + + + Version 1.0 of the ontology includes the following new information: 1) countries DBPedia ID, 2) currency names and codes, 3) adjectives of nationality and 4) basic statistical data such as population, GDP, land area and agricultural area. + + FAO's geopolitical ontology version 1.0 was populated with FAO, UN and internationally recognized data sources. + The use of the ontology is governed by FAO's copyright. For any queries regarding the content, sources or use, please contact FAO-country-profiles@fao.org or visit http://www.fao.org/countryprofiles. + FAO DISCLAIMER: The designations employed and the presentation of material do not imply the expression of any opinion whatsoever on the part of the Food and Agriculture Organization of the United Nations concerning the legal status of any country, territory, city or area, or of its authorities, or concerning the delimitation of its frontiers or boundaries. + prior version : " http://aims.fao.org/aos/geopolitical_v09.owl" + version 1.0 + + + + + + + + The value of the datatype property *validSince* associated to a particular area (territory or group) indicates the area's first year of validity. The geopolitical ontology traces back historic changes only until 1985, therefore, if an area has a validSince = 1985, this indicates that the area is/was valid since 1985 or before. + + + + + + + + + + 1 + + + + + + + + 46917 + CAEU + + CUEA + 阿拉伯经济统一理事会 + Council of Arab Economic Unity + Consejo de la Unidad Económica Árabe + + + CUEA + Conseil de l'Unité économique arabe + مجلس الوحدة الاقتصادية العربية + + Conseil de l'Unité économique arabe + Consejo de la Unidad Económica Árabe + Council of Arab Economic Unity + Совет экономического единства арабских стран + + + 9999 + + + 1000 Ha + 332 + + гурд + gourde + + جمهورية هايتي + + Haiti + Haïti + -71.61 + 9999 + 古 德 + 2008 + 6953.0 + 18.02 + Haiti + HAI + 3472 + + 2007 + 20.09 + هايتي + Haïti + 海地的 + + Гаити + Haiti + la República de Haití + هايتي + HT + Республика Гаити + 93 + 1000 + Haití + haitiano + Manual Estimation + гаитянский + the Republic of Haiti + gourde + 海 地 + + Haitian + 1000 Ha + + Haiti + 2009 + millions of US dollars + gourde + Manual Estimation + la République d'Haïti + + Haití + + Repubblica di Haiti + 15422 + + 2756.0 + Гаити + + HTI + 海 地 + Estimated + + FAO estimate + haitiano + 2007 + 1690.0 + غورد + G + gourde + 1985 + Haiti + + 海地共和国 + 108 + هايتي + -74.48 + 10033.0 + haïtien + + + COMESA + + 9999 + + + Общий рынок Восточной и Южной Африки + Marché commun de l'Afrique orientale et australe + + + + + Common Market for Eastern and Southern Africa + COMESA + + + Marché commun de l'Afrique orientale et australe + + Common Market for Eastern and Southern Africa + 1995 + + + السوق المشتركة لدول شرقى وجنوبى أفريقيا + + + 50604 + 东部及南部非洲共同市场 + + + + Mercado Común para África Oriental y Meridional + + + Mercado Común para África Oriental y Meridional + + + COMESA + + + + + + رابطة التعاون الاقليمى فى جنوب آسيا + 南亚区域合作协会 + Association sud-asiatique de coopération régionale + + South Asian Association for Regional Cooperation + Association sud-asiatique de coopération régionale + Asociación del Asia Meridional para la Cooperación Regional + + + ASACR + + SAARC + Asociación del Asia Meridional para la Cooperación Regional + Ассоциация регионального сотрудничества Южной Азии + 44740 + 9999 + South Asian Association for Regional Cooperation + + + the Republic of Austria + 040 + + + FAO estimate + 奥地利 + + 46.38 + 欧 元 + millions of US dollars + 11 + + + Austria + 3240.0 + 49.02 + AUT + 2009 + + Autriche + + la República de Austria + نمساوى + 15368 + النمسا + 17.16 + + 2007 + 8364.0 + 1000 + جمهورية النسما + Official data reported on FAO Questionnaires from countries + 8245.0 + 2007 + + euro + 718 + + 奥地利 + 416380.0 + 18 + Austria + 1000 Ha + 1985 + Австрийская Республика + Austria + 2008 + 奥地利共和国 + 奥地利的 / 奥地利人 + la République d'Autriche + Repubblica d'Austria + austríaco + Austria + Estimated + Австрия + AUS + النمسا + + австрийский + Official data reported on FAO Questionnaires from countries + 9999 + евро + + Austria + + Austria + + AT + + euro + 9.54 + euro + Austrian + euro + + Австрия + Austria + austriaco + l'Autriche + يورو + autrichien + 1000 Ha + + + Manual Estimation + + ¥ + Cina + + + Chine + 1000 + 53 + + 73.56 + + 2008 + + China + 2007 + chino + China + 1556 + yuan + millions of US dollars + 932748.9 + yuan + صيني + 3860039.0 + 1985 + 中 国 + + 18.16 + + 15390 + Китай + 中国的;中国人 + the People's Republic of China + يوان + China + Repubblica popolare cinese + الصين + 351 + الصين + юань + + 中 国 + yuan + 156 + + China + chinois + Китай + + китайский + 1000 Ha + + + + 1000 Ha + 53.56 + + China + la República Popular China + Cina + CPR + 552832.0 + FAO estimate + 2007 + + جمهورية الصين الشعبية + Chinese + + + 134.78 + CN + 9999 + 2009 + 1353311.0 + + CHN + cinese + + 中华人民共和国 + Китайская Народная Республика + + yuan + + + + la République populaire de Chine + Estimated + la Chine + + + + + + + + pula + Botswana + FAO estimate + Botswana + Manual Estimation + + Botswana + BOT + + + пула + + + pula + P + BW + ботсванский + Botswana + du Botswana; botswanais + 1000 Ha + 15378 + Estimated + 1000 + 25852.0 + la República de Botswana + 20 + بولا + 博茨瓦纳共和国 + the Republic of Botswana + 2008 + + botswano + BWA + + 2007 + + 9999 + -26.9 + -17.78 + 1950.0 + 56673.0 + بوتسوانا + Ботсвана + 2007 + + Manual Estimation + Botswana + Botswana + + 1030 + 2009 + Botswana + 博茨瓦纳 + 1985 + 博茨瓦纳的 / 博茨瓦纳人 + pula + botswanés + 12969.0 + 博茨瓦纳 + 29.36 + 35 + Botswana + le Botswana + 1000 Ha + of Botswana + 072 + Республика Ботсвана + بوتسوانا + pula + la République du Botswana + جمهورية بوتسوانا + Repubblica del Botswana + Ботсвана + millions of US dollars + + 普 拉 + 20.0 + بوتسواني + + + + Southern Common Market + Mercado Común del Sur + MERCOSUR + + + + + Южноамериканский общий рынок + 9999 + MERCOSUR + + Mercado Común del Sur + 南方共同市场 + 49313 + + Marché commun austral + MERCOSUR + السوق المشتركة الجنوبية (فى أمريكا اللاتينية) + Southern Common Market + Marché commun austral + + + + 1 + + + + + 130 + Malawi + 152 + + the Republic of Malawi + ملاوي + 2009 + 9408.0 + квача + Malawi + malawiano + malawien + 马拉维 + + Malawi + + 4970.0 + Malawi + 1000 + + Малави + 1000 Ha + + Malawian + 1985 + جمهورية ملاوي + Manual Estimation + Malawi + 454 + + Estimated + Malawi + le Malawi + + malawiano + la République du Malawi + Repubblica del Malawi + -9.37 + كواشا + малавийский + 马拉维 + + Республика Малави + kwacha malawiano + Malawi + + -17.12 + + 2008 + + + Малави + 4269.0 + Malawi + 15445 + kwacha + ملاوي + + 马拉维共和国 + ملاوي + 32.67 + 2007 + + 克瓦查 + 1000 Ha + MK + MWI + 马拉维的 + MW + 35.9 + Manual Estimation + 15263.0 + MLW + + 9999 + FAO estimate + 4532 + la República de Malawi + 2007 + millions of US dollars + + + + 1 + + + + + 1 + + + + + (из/ житель) Новой Каледонии + New Caledonian + + Nueva Caledonia + NCA + Nouvelle-Calédonie + franco CFA (Communauté financière africaine) + 1985 + la Nouvelle-Calédonie + франк КФА + 1000 + + New Caledonia + 31267 + 新喀里多尼亚 + 2009 + 新喀里多尼亚 + néo-calédonien + 1828.0 + 新喀里多尼亚人/新喀里多尼亚的 + CFA franc (Communauté financière africaine) + 178 + 2007 + كاليدونيا الجديدة + FAO estimate + Nuova Caledonia + New_Caledonia + NCL + Manual Estimation + 9999 + Nueva Caledonia + من كاليدونيا الجديدة + 新喀里多尼亚 + Nuova Caledonia + 非洲法郎 + 1000 Ha + كاليدونيا الجديدة + neocaledoniano + franc CFA (Communauté financière africaine) + New Caledonia + Nueva Caledonia + 250.0 + Territorio della Nuova Caledonia e dipendenze + NC + la Nouvelle-Calédonie + 2007 + 252.0 + 540 + 1000 Ha + كاليدونيا الجديدة + فرنك الجماعة المالية الأفريقية + 153 + de Nueva Caledonia + New Caledonia + franco CFA + 5155 + + diff --git a/model/submodels/vivo-core-0.9.owl b/model/submodels/vivo-core-0.9.owl new file mode 100644 index 00000000..1b6b8bf5 --- /dev/null +++ b/model/submodels/vivo-core-0.9.owl @@ -0,0 +1,4790 @@ + + + + + + + + + + + + + + Facility + + + + + + alternate first name + + + + + + postal code (address line 7) + + + + + + report identifier + + + + + building on campus + + + + + + + Equipment + + + + + + + + + + + + is agent in + + + + + + Committee + + + + + + + + + + + translator of + + + + + + A document accompanying a legal case. + http://purl.org/ontology/bibo/ + Legal Case Document + + unstable + + + + Professor Emeritus + + + + + Populated Place + + + + + + + + subject area + + + + + + + + + + + + + + + + Relates a document to some transcribed original. + + http://purl.org/ontology/bibo/ + transcript of + + unstable + + + + + + + + + A summary of the resource. + + http://purl.org/dc/terms/ + abstract + stable + + + + location information + + + + An agent that receives a communication document. + + http://purl.org/ontology/bibo/ + recipient + + + stable + + + + administers + + + + + affiliate of + + + + + FOAF + + + + + + + + + http://purl.org/ontology/bibo/ + The Bibliographic Ontology describe +bibliographic things on the semantic Web in RDF. This ontology can be +used as a citation ontology, as a document classification ontology, or +simply as a way to describe any kind of document in RDF. It has been +inspired by many existing document description metadata formats, and +can be used as a common ground for converting other bibliographic data +sources. + http://purl.org/ontology/bibo/1.2/ + + Bibontology + The Bibliographic Ontology + + + + bibo + + + + + invited status + + + + + + + + + + + Video + + + + + + reviewed in + + + + + + + + + + + + ORCID id + + + + + + + + + + + principal investigator + + + + + + + + + + + + Conference Poster + + + + + + outreach activity by + + + + + + + + + state or province (address line 5) + + + + + + + + + Research Proposal + + + + + + + + + + + A document created to summarize research findings associated with the completion of an academic degree. + http://purl.org/ontology/bibo/ + Thesis + + + + + stable + + + + + end date + + + + + News Release + + + + + + + + + + + + + + + + An entity responsible for issuing often informally published documents such as press releases, reports, etc. + http://purl.org/ontology/bibo/ + issuer + + + unstable + + + + + author list + + + + + has facility + + + + + + + + contact information + + + + + prerequisite for + + + + + + US Postal Address + + + + + + + + + + + + + + + + + + + Position + + + + + + + + + attendee at + + + + + + + + + + + center or institute + + + + + + + PostDoc + + + + + + + review of + + + + + + + + Amazon Standard Identification Number + http://purl.org/ontology/bibo/ + asin + + stable + + + + Publisher + + + + + + + department within + + + + + + + A scholarly academic article, typically published in a journal. + http://purl.org/ontology/bibo/ + Academic Article + + + + + stable + + + + + + + + + + collaborator on + + + + + based_near + Used to link an agent, related to bibliographic things, to a place where it is based near: can be a city, a monument, a building, etc. + + + + + + + + + + + + + + + listed by + + + + + + + + + + + + + + + + + + + + + + + + + Talk + + + + + + + + + + + The resource in which another resource is reproduced. + + http://purl.org/ontology/bibo/ + reproduced in + + unstable + + + + Draft legislation presented for discussion to a legal body. + http://purl.org/ontology/bibo/ + Bill + + stable + + + + + editor + + + + + + + + + total award amount + + + + Owner of a document or a collection of documents. + http://purl.org/ontology/bibo/ + owner + + unstable + + + + + + + + + + + + + + A Film director. + http://purl.org/ontology/bibo/ + director + + + stable + + + + + Person + + + + + + + + + + + + section of + + + + + + StudentOrganization + + + + + + + + + + + + + + + Academic Year + + + + + + + + organizer + + + + + + + + people + + + + + + + published in (title of publication) + + + + + other research activities + + + + + + + + co-principal investigator on + + + + + + + Academic Department + + + + + + + + + + + + Non-Academic + + + + + Vocabulary Source Reference + + + + + A written argument submitted to a court. + http://purl.org/ontology/bibo/ + Brief + + unstable + + + + + + + + + year + + + + + provides + + + + + + + + + + + A legal decision on appeal that takes action on a case (affirming it, reversing it, etc.). + + http://purl.org/ontology/bibo/ + subsequentLegalDecision + + + + + + A legal decision that affirms a ruling. + + http://purl.org/ontology/bibo/ + affirmedBy + + + + + + + + + + + + + + + + aka movie. + http://purl.org/ontology/bibo/ + Film + + stable + + + + + + + + + + + first name + + + + A communication between an agent and one or more specific recipients. + http://purl.org/ontology/bibo/ + Personal Communication + + stable + + + + + + + + + + research area of + + + + + + + + + + + + A periodical of magazine Articles. A magazine is a publication that is issued periodically, usually bound in a paper cover, and typically contains essays, stories, poems, etc., by many writers, and often photographs and drawings, frequently specializing in a particular subject or area, as hobbies, news, or sports. + http://purl.org/ontology/bibo/ + Magazine + + stable + + + + A court associated with a legal document; for example, that which issues a decision. + + http://purl.org/ontology/bibo/ + court + + unstable + + + + + + + + + + + + + + + contains county + + + + + + + degree recipients + + + + + + Center Or Institute Within Organization + + + + + + + + room within building + + + + + + + issued + + Used to describe the issue date of a bibliographic resource + + + + + related activity + + + + + + preferred by + + + + + + Offered Degree + + + + + + + + + + + + issue of + + + + + + + organizational affiliate + + + + + + + + semester + + + + + + + + + + + + + geographically contains + + + + + + + + + + + + + name variant for + + + + + + + linked author + + + + + + A collection of statutes. + http://purl.org/ontology/bibo/ + Code + + stable + + + + offers degree + + + + + + PrivateCompany + + + + + + + sponsor award id + + + + + + + + + + Document + + A document (noun) is a bounded physical representation of body of information designed with the capacity (and usually intent) to communicate. A document may manifest symbolic, diagrammatic or sensory-representational information. + + + + + stable + + + http://purl.org/ontology/bibo/ + + + + Competition + + + + + + + + + + + + + funds + + + + + + + educational background of + + + + + + + + + + + + + + + + + + + + linked member + + + + + + description + Ued to describe a bibliographic resource. + + + + + has lab + + + + + + + Institution + + + + + Government Agency + + + + + + + work email + + + + member of + + + + + + Citation Format + + + + + + research focus + + + + + + + + + A written communication addressed to a person or organization and transmitted electronically. + http://purl.org/ontology/bibo/ + EMail + + stable + + + + + start date and time + + + + + + + + + + + + author rank in publication + + + + + A graphical depiction of geographic features. + http://purl.org/ontology/bibo/ + Map + + unstable + + + + + + + + + title + Used to describe the title of a bibliographic resource + + + + + + + + + Service Activity + + + + + + + + Catalog + + + + + + + + A document describing a standard + http://purl.org/ontology/bibo/ + Standard + + stable + + + + + organization name + + + + + + + + + + day + + + + + + + + + + + + + + + + published in + + + + + + + A legal decision that reverses a ruling. + + http://purl.org/ontology/bibo/ + reversedBy + + + + + + + has authorship + + + + + + + + + + + + investigator on + + + + + + + presentations + + + + + + awarded to + + + + + + + related activity or event + + + + + + + + + + + A slide in a slideshow + http://purl.org/ontology/bibo/ + Slide + + unstable + + + + featured in + + + + + + + + + + + Relates a translated document to the original document. + http://purl.org/ontology/bibo/ + translation of + + + stable + + + + The date on which a legal case is argued before a court. Date is of format xsd:date + + http://purl.org/ontology/bibo/ + date argued + unstable + + + + + title or role + + + + 1 + + + + + + + city (address line 4) + + + + A compilation of documents published from an event, such as a conference. + http://purl.org/ontology/bibo/ + Proceedings + + + unstable + + + + part of + + + + + + college or school + + + + + + + Database + + + + + + + + editor + + + + time + Used to describe the timing of an event. For example, when a conference starts and stops. + + + + + + + + + Subject Area + + + + has translation + + + + + + + + + + + name variants + + + + + + + + + + + + + + + + + + end date and time + + + + + + + + + + + + + County + + + + + + An issue number + + http://purl.org/ontology/bibo/ + issue + + stable + + + + Librarian + + + + + contributor list + + + + + + + + + + + + + + ConferencePresentation + + + + + + + + degree candidacy + + + + PostalCodeRegion + + + + + + + + + + + + + + + referenced publication city name + + + + + + + + + + + + + + SKOS (Simple Knowledge Organization System) + + + + + facility for + + + + + + + + + + + + + + + + HR job title + + + + + + + + + + + + + + Organization + + + + + Ued to describe an organization related to bibliographic items such as a publishing company, etc. + + + + + + name (address line 1) + + + + + primary professor for + + + + + + The thesis degree. + + http://purl.org/ontology/bibo/ + related degree + + unstable + We are not defining, using an enumeration, the range of the bibo:degree to the defined list of bibo:ThesisDegree. We won't do it because we want people to be able to define new degress if needed by some special usecases. Creating such an enumeration would restrict this to happen. + + + + + + + + + + publisher of + + + + + + + + + + something that is printed or published and distributed, esp. a given number of a periodical + http://purl.org/ontology/bibo/ + Issue + + + stable + + + + + position for person + + + + + + + primary professor + + + + + + + + isbn-10 + + + + + + + + + + + in facility + + + + + + + editor of + + + + + + + position history + + + + + + A public performance. + http://purl.org/ontology/bibo/ + Performance + + + + + unstable + + + + Global Trade Item Number 14 + http://purl.org/ontology/bibo/ + gtin14 + + stable + + + + nearest known geographic location + + + + + + + presenter information + + + + + + + + + + + An edited book. + + + + http://purl.org/ontology/bibo/ + + + stable + Edited Book + + + + + + + + + + + Division + + + + + + + + + + + + + + + + year and month + + + + + + + + + + Newsletter + + + + + + + direct costs + + + + + + + + + + has equipment + + + + + + + International Standard Serial Number + + http://purl.org/ontology/bibo/ + issn + + stable + + + + + + + + + + + + + + + department or school name within institution + + + + + + + + + count + + + + + + URI + + + + + format + <dcterms:format> + <dcterms:MediaTypeOrExtent> + <rdf:value>text/html</rdf:value> + <rdfs:label>HTML</rdfs:label> + </dcterms:MediaTypeOrExtent> + </dcterms:format> + Used to describe the format of a bibliographic resource. + + + + Non-Faculty Academic Position + + + + + + + + + + + + + + related + + + + + distributes + + + + + + + + + + produced_in + + + + + + + + + + + + + + Notes or annotations about a resource. + http://purl.org/ontology/bibo/ + Note + + stable + + + + VIVO core + + + + date + + + + + + + + + + + has section + + + + + + + + institution granting degree (name) + + + + + + + + + + vocabulary reference for + + + + + + An chapter number + + http://purl.org/ontology/bibo/ + chapter + + unstable + + + + + county within state or province + + + + + + + + laboratory of + + + + + + + + + + + + + + middle name or initial + + + + + + + + + A written or printed communication addressed to a person or organization and usually transmitted by mail. + http://purl.org/ontology/bibo/ + Letter + + stable + + + + + + + + + A legal document proposing or enacting a law or a group of laws. + http://purl.org/ontology/bibo/ + Legislation + + unstable + + + + Educational Background + + + + + + + + + date + Use to link a bibliographic item to the date of an event. Check dcterms:created and other for proper specializations for this property + + + + depiction + Used to link an agent with an image that depict it. + + + + + A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. For continuous page ranges, use the pageStart and pageEnd properties. + http://purl.org/ontology/bibo/ + pages + + stable + + + + + course offering + + + + + + + + + + + + + + + + WorkingPaper + + + + + + + + + + + + + + + + webpage + + + + + + + + + + + + presenter + + + + + + + Name Variant + + + + + + + + + + + + + teaching focus + + + + created + + Used to describe the creation date of a bibliographic item + + + + + rooms + + + + + + + A presentation of a series of slides, usually presented in front of an audience with written text and images. + http://purl.org/ontology/bibo/ + Slideshow + + stable + + + + subject + Used to describe the subject of a bibliographic resource. + + + + WorkshopSeries + + + + + + activity description for + + + + + + + + conference date + + + + + sub_event + Used to link big events with smaller events such as workshops that happen in the context of a conference. + + + + + + is this person a corresponding author? + + + + + European Article Number/Uniform Commercier Code 13 + http://purl.org/ontology/bibo/ + ean/ucc-13 + + stable + + + + + subcontracted through + + + + + + + center or institute within + + + + + + + offered by + + + + + + educational background + + + + + + + + + + The electronic ISSN number of a periodical. + http://purl.org/ontology/bibo/ + eissn + + stable + + + + + + + + + College (within University) + + + + + + + + + conference name + + + + + + + + + + a distinct part of a larger document or collected document. + http://purl.org/ontology/bibo/ + Document Part + + + + + unstable + + + + + + + + + + + + + + + + + + + + teaching activity by + + + + + + + Funding Organization + + + + + + + + + + + + + + + + identifier + + + + + + + + + + + + + + work fax + + + + Recognition + + + + + + + + + + + + + + + + + Blog Posting + + + + + + + + + + + + + + + + + + international activity of + + + + + + + + + + + + + + + A document describing an account or statement describing in detail an event, situation, or the like, usually as the result of observation, inquiry, etc.. + http://purl.org/ontology/bibo/ + Report + + + + stable + + + + + + + + + + international activities + + + + + + PubMed Identifier + http://purl.org/ontology/bibo/ + pmid + + stable + + + + + + patent number + + + + + + + + + + sub-Saharan Africa, North America + + + + + + + + + + + + + + + Abstract Information + + + + + + + + + + + + + Building + + + + + + division within + + + + + + + 1 + + + + + + buildings + + + + + + + + Starting page number within a continuous page range. + http://purl.org/ontology/bibo/ + start page + + stable + + + + + + + + + An section number + http://purl.org/ontology/bibo/ + section + + unstable + Di Rado, Alicia. 1995. Trekking through college: Classes explore +modern society using the world of Star trek. Los Angeles Times, March +15, sec. A, p. 3. + + + + Administrative Department + + + + + A document that presents visual or diagrammatic information. + http://purl.org/ontology/bibo/ + Image + + + stable + + + + + + + Extension Unit + + + + + Affiliation Variant + + + + + + + + start year + + + + + + refereed status + + + + + + degree type + + + + + + + contributing activity + + + + + + + contains populated place + + + + + + + + + + + + + + + + + issues + + + + + + + + + + + + + + + + + + + + + + reviewed document title + + + + + + + + + 1 + + + + + CaseStudy + + + + + + + + keyword + + + + A short description of the resource. + http://purl.org/ontology/bibo/ + short description + + unstable + The idea here is that while dcterms:description may involve length descriptions, this for short (two or three word) descriptions that could go in a bibliographic entry. + + + + publication month + + + + + Scopus id + + + + + + + + + + + + + referenced title author/editor + + + + mailing address + + + + + + + + + + + + + + + + description + + + + + + research activity by + + + + + + + type + + + + + + + + + + + + isbn-13 + + + + + + start date + + + + + A chapter of a book. + http://purl.org/ontology/bibo/ + Chapter + + unstable + + + + A collection of Documents or Collections + http://purl.org/ontology/bibo/ + Collection + + stable + + + + + + + + + + keyword + + + + + + provides service + + + + + + + + + + + + + author name as listed + + + + + + + + + Association + + + + + + + + + + alternate title + + + + Course + + + + + + + Seminar + + + + + + + + + + + other teaching activities + + + + + + + Librarian Position + + + + + + + + + + + + + + + + + + populated place within county + + + + + + + A group of Webpages accessible on the Web. + http://purl.org/ontology/bibo/ + Website + + + unstable + + + + + + + + + Critical or explanatory note for a Document. + + http://purl.org/ontology/bibo/ + annotates + + stable + + + + Course Section + + + + + + + online content + + + + + + + + + + + + + + + + + + + + + Outreach Activity + + + + + + + + associated thesis + + + + + + status + + + + For example, the Midwest, northeast U.S. + + + + + + + + + + isReferencedBy + Used to relate a reference citation to a bibliographic resource. + + + + + professional service activity by + + + + + + + + + + + + + + + + + An agent that is interviewed by another agent. + http://purl.org/ontology/bibo/ + interviewee + + + stable + + + + AdvisingRelationship + + + + + + + + + + + + + + + + + + + + has member + + + + + + + + + + + + + + + + + + + + + + + + An audio document; aka record. + http://purl.org/ontology/bibo/ + Audio Document + + + stable + + + + + + + + + + departments + + + + + + + identifier + + + + + + abstract + Used to describe the abstract of a bibliographic resource. + + + + + + + An instance or a session in which testimony and arguments are presented, esp. before an official, as a judge in a lawsuit. + http://purl.org/ontology/bibo/ + Hearing + + stable + + + + + + + + + Time Interval + + + + + + + + + + contributing participant in + + + + + + + + + start time + + + + + + A volume number + http://purl.org/ontology/bibo/ + volume + + stable + + + + Non-Faculty Academic + + + + + + name variants + + + + + + + subject area for + + + + + A small reference book, especially one giving instructions. + http://purl.org/ontology/bibo/ + Manual + + unstable + + + + postal code + + + + + + homepage + Used to link an agent to its homepage (which is a web page accessible using a URL). + + + + place + Used to relate an event such as a conference to the geographical place where it happens, for example Paris. + + + + Geographic Region + + + + + + funded by + + + + + + + + + + + + identifier + + + + + + + geographically within + + + + + + + + Ending page number within a continuous page range. + http://purl.org/ontology/bibo/ + end page + + stable + + + + attendees + + + + + + + contributing participant + + + + + + + preferred citation format + + + + + + + professional service activities + + + + + + + + memberships + + + + + + Producer of a document or a collection of documents. + http://purl.org/ontology/bibo/ + producer + + stable + + + + A seminar, discussion group, or the like, that emphasizes zxchange of ideas and the demonstration and application of techniques, skills, etc. + http://purl.org/ontology/bibo/ + Workshop + + + + + stable + + + + Teaching Activity + + + + + + + value + Used to describe the content of a bibo:Document and othr bibliographic resouces. + +We suggest to use this property instead of the deprecated "bibo:content" one. + + + + + link type + + + + + + taught by + + + + + + + + + + + + + + + populated place within country + + + + + + + + + seating capacity + + + + + + + credits + + + + + + + + + Team + + + + + dateTime + + + + + Non-Academic Position + + + + + + + has part + + + + + Seminar Series + + + + + Faculty Position + + + + + + + University or Independent College + + + + + + + + + + + + + Editorial Article + + + + + + + A generic item or document number. Not to be confused with issue number. + http://purl.org/ontology/bibo/ + issue number + stable + + + + A periodical of documents, usually issued daily or weekly, containing current news, editorials, feature articles, and usually advertising. + http://purl.org/ontology/bibo/ + Newspaper + + stable + + + + + + + + broader term + + + + + + + research areas + + + + + + + + end year and month + + + + + + mailing address for + + + + + Research Activity + + + + + + + + supplemental information + + + + + award or distinction for + + + + + + + + + + + Used to describe any "agent" related to bibliographic items. Such agents can be persons, organizations or groups of any kind. + + + + + + + + + + country (address line 6) + + + + Museum + + + + + + equipment for + + + + + + An excerpted collection of words. + http://purl.org/ontology/bibo/ + Quote + + stable + + + + + + A section of a book. + + + + unstable + + + Book Section + + + http://purl.org/ontology/bibo/ + + + + + A document that simultaneously contains other documents. + http://purl.org/ontology/bibo/ + Collected Document + + + stable + + + + A passage selected from a larger work. + http://purl.org/ontology/bibo/ + Excerpt + + stable + + + + Software + + + + + + Program + + + + + Library of Congress Control Number + http://purl.org/ontology/bibo/ + lccn + stable + + + + Review Article + + + + + + + + + + + + + A group of related documents issued at regular intervals. + http://purl.org/ontology/bibo/ + Periodical + + stable + + + + Faculty Administrative Position + + + + + + + + + + + + + + + + + + + + + contains populated place + + + + + + + + outreach activities + + + + + + + An identifier of serials, still in use by libraries, but replaced by ISSN for any new work + http://purl.org/ontology/bibo/ + coden + stable + + + + + + + + + + + link URI + + + + + + + + + + major field of degree + + + + + Graduate Student + + + + + + + + + + + The prefix of a name + + http://purl.org/ontology/bibo/ + name prefix + stable + + + + + contains state or province + + + + + + + + + outreach focus + + + + + + + + + + + + + + + webpageOf + + + + + + + + + + + + + + + + + + + + + + + + sub event + + + + + + + + + + + + + narrower term + + + + + + The name defining a special edition of a document. Normally its a literal value composed of a version number and words. + http://purl.org/ontology/bibo/ + edition + stable + + + + The status of the publication of a document. + http://purl.org/ontology/bibo/ + Document Status + + stable + + + + Service + + + + + + + + + + + A loose, thematic, collection of Documents, often Books. + http://purl.org/ontology/bibo/ + Series + + stable + + + + A description (often numeric) that locates an item within a containing document or collection. + + http://purl.org/ontology/bibo/ + locator + stable + + + + OCLC Identifier + http://purl.org/ontology/bibo/ + oclcnum + + stable + + + + + + + + + + + preferred title + + + + + + + + + + work phone + + + + + agent + + + + + + rights + Used to describe rights related to a bibliographic resource. + + + + + subcontracts + + + + + + + organizer of + + + + + + + A meeting for consultation or discussion. + http://purl.org/ontology/bibo/ + Conference + + + + + stable + + + + A web page is an online document available (at least initially) on the world wide web. A web page is written first and foremost to appear on the web, as distinct from other online resources such as books, manuscripts or audio documents which use the web primarily as a distribution mechanism alongside other more traditional methods such as print. + http://purl.org/ontology/bibo/ + Webpage + + unstable + + + + Room + + + + + + compiled by + + + + + + Academic Semester + + + + + + + + + + + + + + awards and distinctions + + + + + + + + + + + + + linked information resource + + + + + + + + + + + Library + + + + + + distributor + + + + + + + + + + + + title + + + + + + + + + + + + + + + The suffix of a name + + http://purl.org/ontology/bibo/ + name suffix + stable + + + + Dublin Core terms + + + + + alternate middle name or initial + + + + A formalized discussion between two or more people. + http://purl.org/ontology/bibo/ + Interview + + stable + + + + + + + + + has affiliate + + + + + courses + + + + + + Conference Paper + + + + + + + + + An agent that interview another agent. + http://purl.org/ontology/bibo/ + interviewer + + + stable + + + + + event within + + + + + + + + linked advisor + + + + + + An unpublished Document, which may also be submitted to a publisher for publication. + http://purl.org/ontology/bibo/ + Manuscript + + stable + + + + + location of equipment + + + + + + + http://purl.org/ontology/bibo/ + performer + + + stable + + + + + + + + + + + + Event + + + + + + + + + + city of publication + + + + + + + + + + + + + + + Relates an event to associated documents; for example, conference to a paper. + + http://purl.org/ontology/bibo/ + presentations + + unstable + + + + Foundation + + + + + + + + publication status + + + + + + + + + + + alternate last name + + + + Universal Product Code + http://purl.org/ontology/bibo/ + upc + + stable + + + + + provided by + + + + + + + + + + + + + + + 1 + + + + + + + + + + A legal document; for example, a court decision, a brief, and so forth. + http://purl.org/ontology/bibo/ + Legal Document + + stable + + + + product + Used to link an event such as a conference to an outcome (a product) of that event, for example, an article, a proceeding, etc. + + + + A collection of legal cases. + http://purl.org/ontology/bibo/ + Court Reporter + + stable + + + + The abbreviation of a title. + http://purl.org/ontology/bibo/ + short title + + stable + + + + Membership + + + + + + + + + + + + + + co-principal investigator + + + + + + + + + + + + + + + + + Department + + + + + + This property is for a plain-text rendering of the content of a Document. While the plain-text content of an entire document could be described by this property. + + http://purl.org/ontology/bibo/ + content + unstable + true + bibo:content has been deprecated; we recommend to use "rdf:value" for this purpose. Here is the rational behind this choice: http://www.w3.org/TR/2004/REC-rdf-primer-20040210/#rdfvalue + + + + + investigator + + + + + + Exhibit + + + + + + + + + related information resource + + + + + + + compiler of + + + + + + + + + + + Country + + + + + + principal investigator on + + + + + + + + + + + + + + + International Activity + + + + + + + + + + + + + + + + + + + + + + + + + + + + end time + + + + + + + administrative responsibilities + + + + + + + + + stable + + + Book + http://purl.org/ontology/bibo/ + + A written or printed work of fiction or nonfiction, usually on sheets of paper fastened or bound together within covers. + + + + A document containing an authoritative determination (as a decree or judgment) made after consideration of facts or law. + http://purl.org/ontology/bibo/ + Decision + + unstable + + + + + nearest known location for + + + + + + + + + + + advisory history as student + + + + + + An audio-visual document; film, video, and so forth. + http://purl.org/ontology/bibo/ + Audio-Visual Document + + + stable + + + + + + + + + + + + + + + translator + + + + + + + Undergraduate Student + + + + + + college or school within + + + + + + + Independent Research Institute + + + + + + + + + + + + + + + + geographic focus of + + + + + + + + + + + provided by + + + + + + NGO + + + + + A document that presents authoritative reference information, such as a dictionary or encylopedia . + http://purl.org/ontology/bibo/ + Reference Source + + unstable + + + + Information Resource + + + + + + + + + + + list of editors + + + + + Serial Item and Contribution Identifier + http://purl.org/ontology/bibo/ + sici + stable + + + + + distributes funding from + + + + + + + + Activity Description + + + + + + + + + + + + link anchor text + + + + administered by + + + + + + + + + + + position in organization + + + + + + related organization + + + + + + + online content from + + + + + A periodical of scholarly journal Articles. + http://purl.org/ontology/bibo/ + Journal + + stable + + + + relation + + + + + + street (address line 3) + + + + + division + + + + + + + + + overview + + + + + start year and month + + + + + 1 + + + + + + name variant for + + + + + + + + degree abbreviation + + + + + + + + + + + + + + + + + + + A bill enacted into law. + http://purl.org/ontology/bibo/ + Statute + + stable + + + + + + + + + contributor + Used to link a bibliographic item to one of its contributor: can be an author, an editor, a publisher, etc. + + + + + + + + + + end year + + + + + + link to degree granting organization + + + + + + authors + + + + + + A personal communication manifested in some document. + http://purl.org/ontology/bibo/ + Personal Communication Document + + stable + + + + Event Ontology + + + + + + filing date + + + + + + source vocabulary reference + + + + + + StateOrProvince + + + + + + + + + + + + last name + + + + + publisher name + + + + + + associated degree award + + + + + + + A document describing the exclusive right granted by a government to an inventor to manufacture, use, or sell an invention for a certain number of years. + http://purl.org/ontology/bibo/ + Patent + + + + + stable + + + + + provides funding through + + + + + + + + + + + + + + + + + + + + + features + + + + + isVersionOf + + + + The academic degree of a Thesis + http://purl.org/ontology/bibo/ + Thesis Degree + + + stable + + + + + local award id + + + + + + has activity + + + + + + publisher + + + + + + + + related grant + + + + + + + + + + + + populated place within state or province + + + + + + + + + + + + + + + + + + + + + + + + + + + has organizational affiliate + + + + + + + + + + + + alternative + + + + + + + + contains populated place + + + + + + + + + + + + + + + + ISI researcher id + + + + + Geographic Location + + + + + School (within University) + + + + + + + + + + + has published part + + + + + + + + + + + + + + department (address line 2) + + + + geographic focus + + + + + + + + credits + + + + Service Laboratory + + + + + has program + + + + + + Relates a document to an event; for example, a paper to a conference. + http://purl.org/ontology/bibo/ + presented at + + + + unstable + + + + + postal code for + + + + + + + + + + + + + + + Academic Degree + + + + + + + + + + occurs during + + + + + + + + student advising + + + + + + + state or province within country + + + + + + + + linked advisee + + + + + + + + + + + + courses taught + + + + + + Digital Object Identifier + http://purl.org/ontology/bibo/ + doi + stable + + + + + + + + + + + + + Hospital + + + + + + language + Used to link a bibliographic resource to the language used to express it. + + + + collaborator + + + + + + publisher + Used to link a bibliographic item to its publisher. + + + + isVersionOf + + + + A written composition in prose, usually nonfiction, on a specific topic, forming an independent part of a book or other publication, as a newspaper or magazine. + http://purl.org/ontology/bibo/ + Article + + + + + stable + + + + + program of + + + + + + + + + + + + degree status + + + + + + + + + + Faculty Member + + + + + referenced publisher name + + + + Laboratory + + + diff --git a/modifications/counter.jsp b/modifications/counter.jsp new file mode 100644 index 00000000..11b688ab --- /dev/null +++ b/modifications/counter.jsp @@ -0,0 +1,398 @@ +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> +<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> +<%@ taglib uri="http://djpowell.net/tmp/sparql-tag/0.1/" prefix="sparql" %> +<%@ taglib uri="http://jakarta.apache.org/taglibs/string-1.1" prefix="str" %> +<%@ page import="java.net.URLDecoder" %> + + \ No newline at end of file diff --git a/modifications/edit/forms/organizationHasPositionHistory.jsp b/modifications/edit/forms/organizationHasPositionHistory.jsp new file mode 100644 index 00000000..ce93da8c --- /dev/null +++ b/modifications/edit/forms/organizationHasPositionHistory.jsp @@ -0,0 +1,309 @@ +<%@ page import="com.hp.hpl.jena.rdf.model.Literal"%> +<%@ page import="com.hp.hpl.jena.rdf.model.Model"%> +<%@ page import="edu.cornell.mannlib.vitro.webapp.beans.Individual"%> +<%@ page import="edu.cornell.mannlib.vitro.webapp.dao.VitroVocabulary"%> +<%@ page import="edu.cornell.mannlib.vitro.webapp.edit.n3editing.EditConfiguration"%> +<%@ page import="edu.cornell.mannlib.vitro.webapp.dao.WebappDaoFactory"%> +<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.VitroRequest"%> +<%@page import="edu.cornell.mannlib.vitro.webapp.beans.ObjectProperty"%> +<%@page import="edu.cornell.mannlib.vitro.webapp.web.MiscWebUtils"%> + +<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"%> +<%@ taglib prefix="v" uri="http://vitro.mannlib.cornell.edu/vitro/tags" %> + +<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%> + +<%-- This form is for the object property between Organizations and Positions. --%> +<% + VitroRequest vreq = new VitroRequest(request); + WebappDaoFactory wdf = vreq.getWebappDaoFactory(); + vreq.setAttribute("defaultNamespace", wdf.getDefaultNamespace()); + + String flagURI = null; + if (vreq.getAppBean().isFlag1Active()) { + flagURI = VitroVocabulary.vitroURI+"Flag1Value"+vreq.getPortal().getPortalId()+"Thing"; + } else { + flagURI = wdf.getVClassDao().getTopConcept().getURI(); // fall back to owl:Thing if not portal filtering + } + vreq.setAttribute("flagURI",flagURI); +%> + +http://xmlns.com/foaf/0.1/Person + +<%-- Then enter a SPARQL query for each field, by convention concatenating the field id with "Existing" + to convey that the expression is used to retrieve any existing value for the field in an existing individual. + Each of these must then be referenced in the sparqlForExistingLiterals section of the JSON block below + and in the literalsOnForm --%> + + SELECT ?titleExisting WHERE { + ?positionUri ?titleExisting } + + +<%-- Pair the "existing" query with the skeleton of what will be asserted for a new statement involving this field. + The actual assertion inserted in the model will be created via string substitution into the ? variables. + NOTE the pattern of punctuation (a period after the prefix URI and after the ?field) --%> + + ?positionUri ?title . + ?positionUri ?title. + + +<%-- + + SELECT ?existingOrgName WHERE { + ?positionUri ?existingOrgName } + + + ?positionUri ?organizationName . + + --%> + + + SELECT ?startYearExisting WHERE { + ?positionUri ?startYearExisting } + + + ?positionUri ?startYear . + + + + SELECT ?startYearMonthExisting WHERE { + ?positionUri ?startYearMonthExisting } + + + ?positionUri ?startYearMonth . + + + + SELECT ?startDateExisting WHERE { + ?positionUri ?startDateExisting } + + + ?positionUri ?startDate . + + + + SELECT ?endYearExisting WHERE { + ?positionUri ?endYearExisting } + + + ?positionUri ?endYear . + + + + SELECT ?endYearMonthExisting WHERE { + ?positionUri ?endYearMonthExisting } + + + ?positionUri ?endYearMonth . + + + + SELECT ?endDateExisting WHERE { + ?positionUri ?endDateExisting } + + + ?positionUri ?endDate . + + +<%-- Note there is really no difference in how things are set up for an object property except + below in the n3ForEdit section, in whether the ..Existing variable goes in SparqlForExistingLiterals + or in the SparqlForExistingUris, as well as perhaps in how the options are prepared --%> + + SELECT ?existingPersonUri WHERE { + ?positionUri ?existingPersonUri } + + + ?positionUri ?personUri . + ?personUri ?positionUri . + + + + @prefix rdf: . + @prefix core: . + ?organizationUri core:organizationForPosition ?positionUri . + ?positionUri core:positionInOrganization ?organizationUri . + ?positionUri rdf:type core:Position . + ?positionUri rdf:type <${flagURI}> . + + + + { + "formUrl" : "${formUrl}", + "editKey" : "${editKey}", + "urlPatternToReturnTo" : "/entity", + + "subject" : ["organizationUri", "${subjectUriJson}" ], + "predicate" : ["predicate", "${predicateUriJson}" ], + "object" : ["positionUri", "${objectUriJson}", "URI" ], + + "n3required" : [ "${n3ForStmtToOrg}", "${titleAssertion}" , "${personUriAssertion}" ], + "n3optional" : [ "${startYearAssertion}","${startYearMonthAssertion}","${startDateAssertion}", + "${endYearAssertion}","${endYearMonthAssertion}","${endDateAssertion}"], + "newResources" : { "positionUri" : "${defaultNamespace}/position" }, + "urisInScope" : { }, + "literalsInScope": { }, + "urisOnForm" : [ "personUri" ], + "literalsOnForm" : [ "title", + "startYear", "startYearMonth", "startDate", + "endYear", "endYearMonth", "endDate" ], + "filesOnForm" : [ ], + "sparqlForLiterals" : { }, + "sparqlForUris" : { }, + "sparqlForExistingLiterals" : { + "title" : "${titleExisting}", + "startYear" : "${startYearExisting}", + "startYearMonth" : "${startYearMonthExisting}", + "startDate" : "${startDateExisting}", + "endYear" : "${endYearExisting}", + "endYearMonth" : "${endYearMonthExisting}", + "endDate" : "${endDateExisting}" + }, + "sparqlForExistingUris" : { + "personUri" : "${personUriExisting}" + }, + "fields" : { + "title" : { + "newResource" : "false", + "validators" : [ "nonempty" ], + "optionsType" : "UNDEFINED", + "literalOptions" : [ ], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "", + "rangeLang" : "", + "assertions" : [ "${titleAssertion}" ] + }, + "personUri" : { + "newResource" : "false", + "validators" : [ "nonempty" ], + "optionsType" : "INDIVIDUALS_VIA_VCLASS", + "literalOptions" : [ ], + "predicateUri" : "", + "objectClassUri" : "${personClassUri}", + "rangeDatatypeUri" : "", + "rangeLang" : "", + "assertions" : [ "${personUriAssertion}" ] + }, + "startYear" : { + "newResource" : "false", + "validators" : [ ], + "optionsType" : "UNDEFINED", + "literalOptions" : [ ], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "http://www.w3.org/2001/XMLSchema#gYear", + "rangeLang" : "", + "assertions" : ["${startYearAssertion}"] + }, + "startYearMonth" : { + "newResource" : "false", + "validators" : [], + "optionsType" : "UNDEFINED", + "literalOptions" : [ ], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "http://www.w3.org/2001/XMLSchema#gYearMonth"; + "rangeLang" : "", + "assertions" : [ "${startYearMonthAssertion}" ] + }, + "startDate" : { + "newResource" : "false", + "validators" : [], + "optionsType" : "UNDEFINED", + "literalOptions" : [], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "http://www.w3.org/2001/XMLSchema#Date", + "rangeLang" : "", + "assertions" : [ "${startDateAssertion}" ] + }, + "endYear" : { + "newResource" : "false", + "validators" : [ ], + "optionsType" : "UNDEFINED", + "literalOptions" : [ ], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "http://www.w3.org/2001/XMLSchema#gYear", + "rangeLang" : "", + "assertions" : ["${endYearAssertion}"] + }, + "endYearMonth" : { + "newResource" : "false", + "validators" : [], + "optionsType" : "UNDEFINED", + "literalOptions" : [ ], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "http://www.w3.org/2001/XMLSchema#gYearMonth"; + "rangeLang" : "", + "assertions" : [ "${endYearMonthAssertion}" ] + }, + "endDate" : { + "newResource" : "false", + "validators" : [], + "optionsType" : "UNDEFINED", + "literalOptions" : [], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "http://www.w3.org/2001/XMLSchema#Date", + "rangeLang" : "", + "assertions" : [ "${endDateAssertion}" ] + } + } +} + +<% + + EditConfiguration editConfig = EditConfiguration.getConfigFromSession(session,request); + if (editConfig == null) { + editConfig = new EditConfiguration( + (String) request + .getAttribute("editjson")); + EditConfiguration.putConfigInSession(editConfig,session); + } + + Model model = (Model) application.getAttribute("jenaOntModel"); + String objectUri = (String) request.getAttribute("objectUri"); + if (objectUri != null) { + editConfig.prepareForObjPropUpdate(model); + } else { + editConfig.prepareForNonUpdate(model); + } + + /* prepare the and text for the submit button */ + Individual subject = (Individual) request.getAttribute("subject"); + String submitLabel = ""; + if (objectUri != null) { + request.setAttribute("title","Edit position history entry for "+ subject.getName()); + submitLabel = "Save changes"; + } else { + request.setAttribute("title","Create a new position history entry for " + subject.getName()); + submitLabel = "Create new position history entry"; + } +%> + +<jsp:include page="${preForm}"/> + +<h2>${title}</h2> +<form action="<c:url value="/edit/processRdfForm2.jsp"/>" > + <v:input type="text" label="title" id="title" size="30" /> + <v:input type="select" label="person" id="personUri" /> + <v:input type="text" label="start year (YYYY)" id="startYear" size="4"/> + + <%-- + <v:input type="text" label="startYearMonth" id="startYearMonth" size="7"/> + <v:input type="text" label="start date" id="startDate" size="10"/> + --%> + + <v:input type="text" label="end year (YYYY)" id="endYear" size="4"/> + + <%-- + <v:input type="text" label="end year-month" id="endYearMonth" size="7"/> + <v:input type="text" label="end date" id="endDate" size="10"/> + --%> + <v:input type="submit" id="submit" value="<%=submitLabel%>" cancel="${param.subjectUri}"/> +</form> + +<jsp:include page="${postForm}"/> + diff --git a/modifications/edit/forms/personHasPositionHistory.jsp b/modifications/edit/forms/personHasPositionHistory.jsp new file mode 100644 index 00000000..85562a48 --- /dev/null +++ b/modifications/edit/forms/personHasPositionHistory.jsp @@ -0,0 +1,325 @@ +<%@ page import="com.hp.hpl.jena.rdf.model.Literal"%> +<%@ page import="com.hp.hpl.jena.rdf.model.Model"%> +<%@ page import="edu.cornell.mannlib.vitro.webapp.beans.Individual"%> +<%@ page import="edu.cornell.mannlib.vitro.webapp.dao.VitroVocabulary"%> +<%@ page + import="edu.cornell.mannlib.vitro.webapp.edit.n3editing.EditConfiguration"%> +<%@ page import="edu.cornell.mannlib.vitro.webapp.dao.WebappDaoFactory"%> +<%@ page + import="edu.cornell.mannlib.vitro.webapp.controller.VitroRequest"%> + +<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"%> +<%@ taglib prefix="v" uri="http://vitro.mannlib.cornell.edu/vitro/tags" %> + +<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%> + +<% + VitroRequest vreq = new VitroRequest(request); + WebappDaoFactory wdf = vreq.getWebappDaoFactory(); + vreq.setAttribute("defaultNamespace", wdf.getDefaultNamespace()); + + String flagURI = null; + if (vreq.getAppBean().isFlag1Active()) { + flagURI = VitroVocabulary.vitroURI+"Flag1Value"+vreq.getPortal().getPortalId()+"Thing"; + } else { + flagURI = wdf.getVClassDao().getTopConcept().getURI(); // fall back to owl:Thing if not portal filtering + } + vreq.setAttribute("flagURI",flagURI); +%> + + +<%-- Then enter a SPARQL query for each field, by convention concatenating the field id with "Existing" + to convey that the expression is used to retrieve any existing value for the field in an existing individual. + Each of these must then be referenced in the sparqlForExistingLiterals section of the JSON block below + and in the literalsOnForm --%> +<v:jsonset var="titleExisting" > + SELECT ?titleExisting WHERE { + ?positionUri <http://vivoweb.org/ontology/core#titleOrRole> ?titleExisting } +</v:jsonset> + +<%-- Pair the "existing" query with the skeleton of what will be asserted for a new statement involving this field. + The actual assertion inserted in the model will be created via string substitution into the ? variables. + NOTE the pattern of punctuation (a period after the prefix URI and after the ?field) --%> +<v:jsonset var="titleAssertion" > + ?positionUri <http://vivoweb.org/ontology/core#titleOrRole> ?title . + ?positionUri <http://www.w3.org/2000/01/rdf-schema#label> ?title. +</v:jsonset> + +<v:jsonset var="organizationNameExisting" > + SELECT ?existingOrgName WHERE { + ?positionUri <http://vivoweb.org/ontology/core#involvedOrganizationName> ?existingOrgName } +</v:jsonset> +<v:jsonset var="organizationNameAssertion" > + ?positionUri <http://vivoweb.org/ontology/core#involvedOrganizationName> ?organizationName . +</v:jsonset> + +<v:jsonset var="startYearExisting" > + SELECT ?startYearExisting WHERE { + ?positionUri <http://vivoweb.org/ontology/core#startYear> ?startYearExisting } +</v:jsonset> +<v:jsonset var="startYearAssertion" > + ?positionUri <http://vivoweb.org/ontology/core#startYear> ?startYear . +</v:jsonset> + +<v:jsonset var="startYearMonthExisting" > + SELECT ?startYearMonthExisting WHERE { + ?positionUri <http://vivoweb.org/ontology/core#startYearMonth> ?startYearMonthExisting } +</v:jsonset> +<v:jsonset var="startYearMonthAssertion" > + ?positionUri <http://vivoweb.org/ontology/core#startYearMonth> ?startYearMonth . +</v:jsonset> + +<v:jsonset var="startDateExisting" > + SELECT ?startDateExisting WHERE { + ?positionUri <http://vivoweb.org/ontology/core#startDate> ?startDateExisting } +</v:jsonset> +<v:jsonset var="startDateAssertion" > + ?positionUri <http://vivoweb.org/ontology/core#startDate> ?startDate . +</v:jsonset> + +<v:jsonset var="endYearExisting" > + SELECT ?endYearExisting WHERE { + ?positionUri <http://vivoweb.org/ontology/core#endYear> ?endYearExisting } +</v:jsonset> +<v:jsonset var="endYearAssertion" > + ?positionUri <http://vivoweb.org/ontology/core#endYear> ?endYear . +</v:jsonset> + +<v:jsonset var="endYearMonthExisting" > + SELECT ?endYearMonthExisting WHERE { + ?positionUri <http://vivoweb.org/ontology/core#endYearMonth> ?endYearMonthExisting } +</v:jsonset> +<v:jsonset var="endYearMonthAssertion" > + ?positionUri <http://vivoweb.org/ontology/core#endYearMonth> ?endYearMonth . +</v:jsonset> + +<v:jsonset var="endDateExisting" > + SELECT ?endDateExisting WHERE { + ?positionUri <http://vivoweb.org/ontology/core#endDate> ?endDateExisting } +</v:jsonset> +<v:jsonset var="endDateAssertion" > + ?positionUri <http://vivoweb.org/ontology/core#endDate> ?endDate . +</v:jsonset> + +<%-- Note there is really no difference in how things are set up for an object property except + below in the n3ForEdit section, in whether the ..Existing variable goes in SparqlForExistingLiterals + or in the SparqlForExistingUris, as well as perhaps in how the options are prepared --%> +<v:jsonset var="organizationUriExisting" > + SELECT ?existingOrgUri WHERE { + ?positionUri <http://vivoweb.org/ontology/core#positionInOrganization> ?existingOrgUri } +</v:jsonset> +<v:jsonset var="organizationUriAssertion" > + ?positionUri <http://vivoweb.org/ontology/core#positionInOrganization> ?organizationUri . + ?organizationUri <http://vivoweb.org/ontology/core#organizationForPosition> ?positionUri . +</v:jsonset> + +<v:jsonset var="n3ForStmtToPerson" > + @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>. + @prefix core: <http://vivoweb.org/ontology/core#>. + + ?person core:personInPosition ?positionUri . + ?positionUri core:positionForPerson ?person . + ?positionUri rdf:type core:Position . + ?positionUri rdf:type <${flagURI}> . +</v:jsonset> + +<v:jsonset var="postionClass">http://vivoweb.org/ontology/core#Position</v:jsonset> +<v:jsonset var="organizationClass">http://xmlns.com/foaf/0.1/Organization</v:jsonset> + + +<c:set var="editjson" scope="request"> + { + "formUrl" : "${formUrl}", + "editKey" : "${editKey}", + "urlPatternToReturnTo" : "/entity", + + "subject" : ["person", "${subjectUriJson}" ], + "predicate" : ["predicate", "${predicateUriJson}" ], + "object" : ["positionUri", "${objectUriJson}", "URI" ], + + "n3required" : [ "${n3ForStmtToPerson}", "${titleAssertion}" ], + "n3optional" : [ "${organizationNameAssertion}","${organizationUriAssertion}", + "${startYearAssertion}","${startYearMonthAssertion}","${startDateAssertion}", + "${endYearAssertion}","${endYearMonthAssertion}","${endDateAssertion}"], + "newResources" : { "positionUri" : "${defaultNamespace}/position" }, + "urisInScope" : { }, + "literalsInScope": { }, + "urisOnForm" : [ "organizationUri" ], + "literalsOnForm" : [ "title", "organizationName", + "startYear", "startYearMonth", "startDate", + "endYear", "endYearMonth", "endDate" ], + "filesOnForm" : [ ], + "sparqlForLiterals" : { }, + "sparqlForUris" : { }, + "sparqlForExistingLiterals" : { + "title" : "${titleExisting}", + "organizationName" : "${organizationNameExisting}", + "startYear" : "${startYearExisting}", + "startYearMonth" : "${startYearMonthExisting}", + "startDate" : "${startDateExisting}", + "endYear" : "${endYearExisting}", + "endYearMonth" : "${endYearMonthExisting}", + "endDate" : "${endDateExisting}" + }, + "sparqlForExistingUris" : { + "organizationUri" : "${organizationUriExisting}" + }, + "fields" : { + "title" : { + "newResource" : "false", + "validators" : [ "nonempty" ], + "optionsType" : "UNDEFINED", + "literalOptions" : [ ], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "", + "rangeLang" : "", + "assertions" : [ "${titleAssertion}" ] + }, + "organizationUri" : { + "newResource" : "false", + "validators" : [ ], + "optionsType" : "INDIVIDUALS_VIA_VCLASS", + "literalOptions" : [ "--" ], + "predicateUri" : "", + "objectClassUri" : "${organizationClass}", + "rangeDatatypeUri" : "", + "rangeLang" : "", + "assertions" : [ "${organizationUriAssertion}" ] + }, + "organizationName" : { + "newResource" : "false", + "validators" : [ ], + "optionsType" : "UNDEFINED", + "literalOptions" : [ ], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "http://www.w3.org/2001/XMLSchema#string", + "rangeLang" : "", + "assertions" : [ "${organizationNameAssertion}" ] + }, + "startYear" : { + "newResource" : "false", + "validators" : [ ], + "optionsType" : "UNDEFINED", + "literalOptions" : [ ], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "http://www.w3.org/2001/XMLSchema#gYear", + "rangeLang" : "", + "assertions" : ["${startYearAssertion}"] + }, + "startYearMonth" : { + "newResource" : "false", + "validators" : [], + "optionsType" : "UNDEFINED", + "literalOptions" : [ ], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "http://www.w3.org/2001/XMLSchema#gYearMonth"; + "rangeLang" : "", + "assertions" : [ "${startYearMonthAssertion}" ] + }, + "startDate" : { + "newResource" : "false", + "validators" : [], + "optionsType" : "UNDEFINED", + "literalOptions" : [], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "http://www.w3.org/2001/XMLSchema#Date", + "rangeLang" : "", + "assertions" : [ "${startDateAssertion}" ] + }, + "endYear" : { + "newResource" : "false", + "validators" : [ ], + "optionsType" : "UNDEFINED", + "literalOptions" : [ ], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "http://www.w3.org/2001/XMLSchema#gYear", + "rangeLang" : "", + "assertions" : ["${endYearAssertion}"] + }, + "endYearMonth" : { + "newResource" : "false", + "validators" : [], + "optionsType" : "UNDEFINED", + "literalOptions" : [ ], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "http://www.w3.org/2001/XMLSchema#gYearMonth"; + "rangeLang" : "", + "assertions" : [ "${endYearMonthAssertion}" ] + }, + "endDate" : { + "newResource" : "false", + "validators" : [], + "optionsType" : "UNDEFINED", + "literalOptions" : [], + "predicateUri" : "", + "objectClassUri" : "", + "rangeDatatypeUri" : "http://www.w3.org/2001/XMLSchema#Date", + "rangeLang" : "", + "assertions" : [ "${endDateAssertion}" ] + } + } +} +</c:set> +<% + + EditConfiguration editConfig = EditConfiguration.getConfigFromSession(session,request); + if (editConfig == null) { + editConfig = new EditConfiguration( + (String) request + .getAttribute("editjson")); + EditConfiguration.putConfigInSession(editConfig,session); + } + + Model model = (Model) application.getAttribute("jenaOntModel"); + String objectUri = (String) request.getAttribute("objectUri"); + if (objectUri != null) { + editConfig.prepareForObjPropUpdate(model); + } else { + editConfig.prepareForNonUpdate(model); + } + + /* prepare the <title> and text for the submit button */ + Individual subject = (Individual) request.getAttribute("subject"); + String submitLabel = ""; + if (objectUri != null) { + request.setAttribute("title","Edit position history entry for "+ subject.getName()); + submitLabel = "Save changes"; + } else { + request.setAttribute("title","Create a new position history entry for " + subject.getName()); + submitLabel = "Create new position history entry"; + } +%> + +<jsp:include page="${preForm}"/> + +<h2>${title}</h2> +<form action="<c:url value="/edit/processRdfForm2.jsp"/>" > + <v:input type="text" label="title" id="title" size="30" /> + <v:input type="select" label="organization" id="organizationUri" /> + <v:input type="text" label="organization name (if not in dropdown above)" id="organizationName" size="30" /> + + <v:input type="text" label="start year (YYYY)" id="startYear" size="4"/> + + <%-- + <v:input type="text" label="startYearMonth" id="startYearMonth" size="7"/> + <v:input type="text" label="start date" id="startDate" size="10"/> + --%> + + <v:input type="text" label="end year (YYYY)" id="endYear" size="4"/> + + <%-- + <v:input type="text" label="end year-month" id="endYearMonth" size="7"/> + <v:input type="text" label="end date" id="endDate" size="10"/> + --%> + <p class="submit"><v:input type="submit" id="submit" value="<%=submitLabel%>" cancel="${param.subjectUri}"/></p> +</form> + +<jsp:include page="${postForm}"/> + diff --git a/modifications/templates/entity/authorshipShortView.jsp b/modifications/templates/entity/authorshipShortView.jsp new file mode 100644 index 00000000..2c6fa249 --- /dev/null +++ b/modifications/templates/entity/authorshipShortView.jsp @@ -0,0 +1,78 @@ +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> +<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> +<%@ taglib uri="http://vitro.mannlib.cornell.edu/vitro/tags/StringProcessorTag" prefix="p" %> + +<c:choose> + <c:when test="${!empty individual}"><%-- individual is the OBJECT of the property referenced -- the Authorship individual, not the Person or Publication --%> + <%-- c:set var="authorRank" value="${individual.dataPropertyMap['http://vivoweb.org/ontology/core#authorRank'].dataPropertyStatements[0].data}"/ --%> + <c:choose> + <c:when test="${!empty predicateUri}"> + <c:choose> + <c:when test="${predicateUri == 'http://vivoweb.org/ontology/core#authorInAuthorship'}"><%-- SUBJECT is a Person, so get info from Authorship about related Publication --%> + <c:choose> + <c:when test="${!empty individual.objectPropertyMap['http://vivoweb.org/ontology/core#linkedInformationResource']}"><%-- this Position is linked to an Organization --%> + <c:set var="name" value="${individual.objectPropertyMap['http://vivoweb.org/ontology/core#linkedInformationResource'].objectPropertyStatements[0].object.name}"/> + <c:set var="moniker" value="${individual.objectPropertyMap['http://vivoweb.org/ontology/core#linkedInformationResource'].objectPropertyStatements[0].object.moniker}"/> + <c:set var="year" value="${individual.objectPropertyMap['http://vivoweb.org/ontology/core#linkedInformationResource'].objectPropertyStatements[0].object.dataPropertyMap['http://vivoweb.org/ontology/core#year'].dataPropertyStatements[0].data}"/> + <c:set var="label" value="${moniker} ${year}"/> + <c:set var="uri" value="${individual.objectPropertyMap['http://vivoweb.org/ontology/core#linkedInformationResource'].objectPropertyStatements[0].object.URI}"/> + </c:when> + <c:otherwise><%-- this Position is not linked to a Publication yet; use Authorship name as a placeholder and add link to the Authorship so user can add more information --%> + <c:choose> + <c:when test="${!empty individual.name}"> + <c:set var="name" value="${individual.name}"/> + </c:when> + <c:otherwise> + <c:set var="name" value="unlabeled authorship"/> + </c:otherwise> + </c:choose> + <c:set var="label" value="(no publication linked yet)"/> + <c:set var="uri" value="${individual.URI}"/> + </c:otherwise> + </c:choose> + </c:when> + <c:when test="${predicateUri == 'http://vivoweb.org/ontology/core#informationResourceInAuthorship'}"><%-- SUBJECT is a Publication, so get info from Authorship about the related Person --%> + <c:choose> + <c:when test="${!empty individual.objectPropertyMap['http://vivoweb.org/ontology/core#linkedAuthor']}"><%-- there is a related Person --%> + <c:set var="name" value="${individual.objectPropertyMap['http://vivoweb.org/ontology/core#linkedAuthor'].objectPropertyStatements[0].object.name}"/> + <c:set var="label" value="${individual.objectPropertyMap['http://vivoweb.org/ontology/core#linkedAuthor'].objectPropertyStatements[0].object.moniker}"/> + <c:set var="uri" value="${individual.objectPropertyMap['http://vivoweb.org/ontology/core#linkedAuthor'].objectPropertyStatements[0].object.URI}"/> + </c:when> + <c:when test="${!empty individual.dataPropertyMap['http://vivoweb.org/ontology/core#authorNameAsListed'].dataPropertyStatements[0].data}"><%-- only an author name has been specified --%> + <c:set var="name" value="<strong>${individual.dataPropertyMap['http://vivoweb.org/ontology/core#authorNameAsListed'].dataPropertyStatements[0].data}</strong>"/> + </c:when> + <c:otherwise><%-- no related Person yet (likely from before custom form available) --%> + <c:choose> + <c:when test="${!empty individual.name}"><c:set var="name" value="${individual.name}"/></c:when> + <c:otherwise><c:set var="name" value="unlabeled authorship"/></c:otherwise> + </c:choose> + <c:set var="label" value="(no author linked yet)"/> + <c:set var="uri" value="${individual.URI}"/> + </c:otherwise> + </c:choose> + </c:when> + <c:otherwise> + <c:set var="name" value="unknown predicate"/> + <c:set var="label" value="please contact your VIVO support team"/> + <c:set var="uri" value="${predicateUri}"/> + </c:otherwise> + </c:choose> + <c:choose> + <c:when test="${!empty uri}"> + <c:url var="olink" value="/entity"><c:param name="uri" value="${uri}"/></c:url> + <a href="<c:out value="${olink}"/>"><p:process>${name}</p:process></a> <p:process>${label}</p:process> + </c:when> + <c:otherwise> + <p:process><strong>${name}</strong> ${label}</p:process> + </c:otherwise> + </c:choose> + </c:when> + <c:otherwise> + <c:out value="No predicate available for custom rendering ..."/> + </c:otherwise> + </c:choose> + </c:when> + <c:otherwise> + <c:out value="Got nothing to draw here ..."/> + </c:otherwise> +</c:choose> diff --git a/modifications/templates/entity/positionShortView.jsp b/modifications/templates/entity/positionShortView.jsp new file mode 100644 index 00000000..661b100b --- /dev/null +++ b/modifications/templates/entity/positionShortView.jsp @@ -0,0 +1,104 @@ +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> +<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> +<%@ taglib uri="http://vitro.mannlib.cornell.edu/vitro/tags/StringProcessorTag" prefix="p" %> + +<c:choose> + <c:when test="${!empty individual}"><%-- individual is the OBJECT of the property referenced -- the Position, not the Person or Organization --%> + <c:set var="startYear" value="${individual.dataPropertyMap['http://vivoweb.org/ontology/core#startYear'].dataPropertyStatements[0].data}"/> + <c:set var="endYear" value="${individual.dataPropertyMap['http://vivoweb.org/ontology/core#endYear'].dataPropertyStatements[0].data}"/> + <c:choose><%-- use working title in preference to HR title --%> + <c:when test="${!empty individual.dataPropertyMap['http://vivoweb.org/ontology/core#titleOrRole'].dataPropertyStatements[0].data}"> + <c:set var="title" value="${individual.dataPropertyMap['http://vivoweb.org/ontology/core#titleOrRole'].dataPropertyStatements[0].data}"/> + </c:when> + <c:when test="${!empty individual.dataPropertyMap['http://vivoweb.org/ontology/core#hrJobTitle'].dataPropertyStatements[0].data}"> + <c:set var="title" value="${individual.dataPropertyMap['http://vivoweb.org/ontology/core#hrJobTitle'].dataPropertyStatements[0].data}"/> + </c:when> + <c:otherwise> + <c:set var="title" value="${individual.name}"/> + </c:otherwise> + </c:choose> + <c:choose> + <c:when test="${!empty predicateUri}"> + <c:choose> + <c:when test="${predicateUri == 'http://vivoweb.org/ontology/core#personInPosition'}"><%-- SUBJECT is a Person, so get info from Position about related Organization --%> + <c:choose> + <c:when test="${!empty individual.objectPropertyMap['http://vivoweb.org/ontology/core#positionInOrganization']}"><%-- this Position is linked to an Organization --%> + <c:set var="objName" value="${individual.objectPropertyMap['http://vivoweb.org/ontology/core#positionInOrganization'].objectPropertyStatements[0].object.name}"/> + <c:choose> + <c:when test="${!empty title}"> + <c:set var="objLabel" value="${title}"/> + </c:when> + <c:otherwise> + <c:set var="objLabel" value="${individual.objectPropertyMap['http://vivoweb.org/ontology/core#positionInOrganization'].objectPropertyStatements[0].object.moniker}"/> + </c:otherwise> + </c:choose> + <c:set var="objUri" value="${individual.objectPropertyMap['http://vivoweb.org/ontology/core#positionInOrganization'].objectPropertyStatements[0].object.URI}"/> + </c:when> + <c:otherwise><%-- this Position is not linked to an Organization --%> + <c:choose> + <c:when test="${!empty individual.dataPropertyMap['http://vivoweb.org/ontology/core#involvedOrganizationName'].dataPropertyStatements[0].data}"><%-- an Organization name has been specified --%> + <c:set var="objName" value="${individual.dataPropertyMap['http://vivoweb.org/ontology/core#involvedOrganizationName'].dataPropertyStatements[0].data}"/> + <c:set var="objLabel" value="${title}"/> + </c:when> + <c:otherwise><%-- not even an organization name, so just display the title in place of the name --%> + <c:set var="objName" value="${title}"/> + <c:set var="title" value=""/><%-- don't show title twice --%> + </c:otherwise> + </c:choose> + </c:otherwise> + </c:choose> + </c:when> + <c:when test="${predicateUri == 'http://vivoweb.org/ontology/core#organizationForPosition'}"><%-- SUBJECT is an Organization, so get info from Position about the related Person --%> + <c:choose> + <c:when test="${!empty individual.objectPropertyMap['http://vivoweb.org/ontology/core#positionForPerson']}"><%-- there is a related Person --%> + <c:set var="objName" value="${individual.objectPropertyMap['http://vivoweb.org/ontology/core#positionForPerson'].objectPropertyStatements[0].object.name}"/> + <c:choose> + <c:when test="${!empty title}"> + <c:set var="objLabel" value="${title}"/> + </c:when> + <c:otherwise> + <c:set var="objLabel" value="${individual.objectPropertyMap['http://vivoweb.org/ontology/core#positionForPerson'].objectPropertyStatements[0].object.moniker}"/> + </c:otherwise> + </c:choose> + <c:set var="objUri" value="${individual.objectPropertyMap['http://vivoweb.org/ontology/core#positionForPerson'].objectPropertyStatements[0].object.URI}"/> + </c:when> + <c:otherwise><%-- no related Person, which should not happen --%> + <c:set var="objName" value="${individual.name}"/> + <c:set var="objLabel" value="${title}"/> + </c:otherwise> + </c:choose> + </c:when> + <c:otherwise> + <c:set var="objName" value="unknown predicate"/> + <c:set var="objUri" value="${predicateUri}"/> + </c:otherwise> + </c:choose> + <c:if test="${!empty startYear}"> + <c:choose> + <c:when test="${!empty endYear}"> + <c:set var="timeSpan" value=", ${startYear} - ${endYear}"/> + </c:when> + <c:otherwise> + <c:set var="timeSpan" value=", ${startYear} - "/> + </c:otherwise> + </c:choose> + </c:if> + <c:choose> + <c:when test="${!empty objUri}"> + <c:url var="objLink" value="/entity"><c:param name="uri" value="${objUri}"/></c:url> + <a href="<c:out value="${objLink}"/>"><p:process>${objName}</p:process></a> <p:process>${objLabel} ${timeSpan}</p:process> + </c:when> + <c:otherwise> + <p:process><strong>${objName}</strong> ${objLabel} ${timeSpan}</p:process> + </c:otherwise> + </c:choose> + </c:when> + <c:otherwise> + <c:out value="No predicate available for custom rendering ..."/> + </c:otherwise> + </c:choose> + </c:when> + <c:otherwise> + <c:out value="Got nothing to draw here ..."/> + </c:otherwise> +</c:choose> diff --git a/ontology/geopolitical-annotations.rdf b/ontology/geopolitical-annotations.rdf new file mode 100644 index 00000000..1b1820d2 --- /dev/null +++ b/ontology/geopolitical-annotations.rdf @@ -0,0 +1,247 @@ +<rdf:RDF + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:vivo="http://vivo.library.cornell.edu/ns/0.1#" + xmlns:owl="http://www.w3.org/2002/07/owl#" + xmlns:xsd="http://www.w3.org/2001/XMLSchema#" + xmlns:swrl="http://www.w3.org/2003/11/swrl#" + xmlns:swrlb="http://www.w3.org/2003/11/swrlb#" + xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#" + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#agriculturalAreaYear"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasCoordinate"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialEN"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortFR"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#agriculturalAreaNotes"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#agriculturalArea"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListES"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListZH"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyAR"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeFAOTERM"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListAR"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialZH"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeCurrency"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#populationYear"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityZH"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#GDPNotes"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityES"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialES"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#populationTotal"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialRU"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeUNDP"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#population"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityFR"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyZH"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialIT"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortES"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#landAreaYear"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#GDPTotalInCurrentPrices"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasStatistics"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasMaxLatitude"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityIT"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasCurrency"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#GDP"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortEN"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#landArea"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListIT"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyIT"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#populationUnit"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyRU"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasListName"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#agriculturalAreaTotal"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#landAreaNotes"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#landAreaUnit"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasMaxLongitude"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortRU"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityAR"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityEN"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyEN"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialAR"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeISO3"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#validSince"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasOfficialName"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeDBPediaID"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListEN"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortIT"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeFAOSTAT"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyFR"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#GDPUnit"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasCode"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeAGROVOC"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasNationality"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListFR"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortZH"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameCurrencyES"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasShortName"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeGAUL"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameListRU"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#agriculturalAreaUnit"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeISO2"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nationalityRU"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameOfficialFR"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#populationNotes"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasMinLongitude"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#nameShortAR"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#codeUN"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#validUntil"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#hasMinLatitude"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#landAreaTotal"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#GDPYear"> + <vitro:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> +</rdf:RDF> diff --git a/ontology/geopolitical.flags.rdf b/ontology/geopolitical.flags.rdf new file mode 100644 index 00000000..2f1e028f --- /dev/null +++ b/ontology/geopolitical.flags.rdf @@ -0,0 +1,865 @@ +<rdf:RDF + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:j.0="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#" > + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Nepal"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cyprus"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Germany"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Senegal"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#German_Democratic_Republic_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Luxembourg"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CEN_SAD"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Guatemala"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Netherlands_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Croatia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Mauritania"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Fiji"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Yugoslavia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Andorra"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Viet_Nam"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Albania"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bangladesh"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#United_Republic_of_Tanzania__the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Italy"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Guyana"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CEMAC"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#southern_Africa"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Micronesia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Yemen"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#El_Salvador"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Mexico"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Eritrea"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Morocco"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Tajikistan"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Honduras"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Syrian_Arab_Republic_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cayman_Islands"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#United_States_Virgin_Islands"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Iceland"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Polynesia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#IGAD"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Lao_People_s_Democratic_Republic__the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Serbia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Asia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#central_Asia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Niue"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Uzbekistan"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Timor-Leste"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Rwanda"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Guinea-Bissau"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#FAO"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Mongolia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#UEMOA"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Ethiopia_1993"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Sudan_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Barbados"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cote_d_Ivoire"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cape_Verde"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Angola"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Brunei_Darussalam"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Norway"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#western_Europe"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CCASG"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#South_Africa"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Costa_Rica"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bhutan"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Brazil"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#middle_Africa"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Djibouti"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Lithuania"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Grenada"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Reunion"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Madagascar"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Guam"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Myanmar"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Poland"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bahamas_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cook_Islands_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Burundi"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Saint_Kitts_and_Nevis"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Dominican_Republic_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Samoa"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#French_Polynesia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Swaziland"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Israel"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Burkina_Faso"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Niger_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Dominica"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Holy_See"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#San_Marino"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Guinea"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#northern_America"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Solomon_Islands"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#south-eastern_Asia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Serbia_and_Montenegro"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Hungary"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Vanuatu"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Oceania"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Canada"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#EU"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Chad"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Egypt"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Afghanistan"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Argentina"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CARICOM"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#ECO"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Uganda"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#French_Guiana"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#South_America"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Uruguay"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Republic_of_Moldova"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cuba"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Liechtenstein"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Mali"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Papua_New_Guinea"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Trinidad_and_Tobago"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Yemen_1990"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#eastern_Europe"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Venezuela"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#southern_Europe"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Sri_Lanka"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Ghana"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#SIDS"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bolivia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Japan"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#FAO_2006"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Kazakhstan"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Australia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#American_Samoa"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Indonesia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Tokelau"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Melanesia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Mozambique"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Portugal"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Tunisia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Democratic_Yemen"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Australia_and_New_Zealand"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Slovakia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Republic_of_Korea__the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#India"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#western_Asia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CAN"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Qatar"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Zimbabwe"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Philippines__the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#The_former_Yugoslav_Republic_of_Macedonia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Palau"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#northern_Europe"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Equatorial_Guinea"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Nauru"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Saudi_Arabia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#SADC"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Switzerland"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Gibraltar"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Belize"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CEEAC"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#LIFDC_2008"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bosnia_and_Herzegovina"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Americas"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Armenia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Kuwait"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Falkland_Is"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Suriname"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Comoros_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Malaysia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Seychelles"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Saint_Lucia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Romania"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#northern_Africa"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Georgia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Latvia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Antarctica"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#PTA"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Jordan"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#British_Virgin_Islands"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#central_America"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Wallis_and_Futuna_Is"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#LLDC"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Martinique"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#France"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#ECOWAS"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bermuda"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#LIFDC_2005"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Oman"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Puerto_Rico"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Monaco"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Malta"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Turks_and_Caicos_Islands"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Saint_Pierre_and_Miquelon"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Democratic_People_s_Republic_of_Korea_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#New_Zealand"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Libyan_Arab_Jamahiriya__the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Micronesia__Fed_States_of_"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Gambia__the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Belgium"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Turkey"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cameroon"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bahrain"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Iran_Islamic_Rep_of_"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#LIFDC"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Togo"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Paraguay"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Zambia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Democratic_Republic_of_the_Congo"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Kenya"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Mauritius"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Nicaragua"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Turkmenistan"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Sao_Tome_and_Principe"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Chile"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Nigeria"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Spain"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#United_Arab_Emirates__the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CAC"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Faroe_Islands"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Kiribati"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Tonga"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Marshall_Islands__the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Africa"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Panama"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Ukraine"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Greece"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Netherlands_Antilles"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Iraq"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#eastern_Asia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#southern_Asia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Sierra_Leone"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Kyrgyzstan"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Sweden"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Ecuador"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#western_Africa"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Namibia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CARIFORUM"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bulgaria"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Socialist_Federal_Republic_of_Yugoslavia_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#World"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#LDC"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Pakistan"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Ireland"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Montserrat"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Lebanon"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Montenegro"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Jamaica"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Lesotho"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Federal_Republic_of_Germany_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Tuvalu"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Finland"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Denmark"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#PIF"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Colombia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Czechslovakia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Singapore"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Czech_Republic_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Guadeloupe"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Saint_Vincent_and_the_Grenadines"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Central_African_Republic_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Estonia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Gabon"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Antigua_and_Barbuda"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Europe"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#eastern_Africa"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Slovenia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Algeria"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Congo_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Caribbean"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Peru"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Belarus"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Union_of_Soviet_Socialist_Republic_the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#United_Kingdom_of_Great_Britain_and_Northern_Ireland__the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Russian_Federation__the"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Liberia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Azerbaijan"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Thailand"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Ethiopia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Benin"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CAEU"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#COMESA"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Haiti"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Maldives"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Austria"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#SAARC"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#China"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Botswana"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#MERCOSUR"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Saint_Helena"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Malawi"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#AMU"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Anguilla"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cambodia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Somalia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#New_Caledonia"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Flag1Value1Thing"/> + </rdf:Description> +</rdf:RDF> diff --git a/ontology/geopolitical.labels.rdf b/ontology/geopolitical.labels.rdf new file mode 100644 index 00000000..ecb543ec --- /dev/null +++ b/ontology/geopolitical.labels.rdf @@ -0,0 +1,862 @@ +<rdf:RDF + 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://aims.fao.org/aos/geopolitical.owl#Nepal"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Nepal</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cyprus"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cyprus</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Germany"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Germany</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Senegal"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Senegal</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#German_Democratic_Republic_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">German_Democratic_Republic_the</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Luxembourg"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Luxembourg</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CEN_SAD"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CEN-SAD</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Guatemala"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Guatemala</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Netherlands_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Netherlands</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Croatia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Croatia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Mauritania"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mauritania</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Fiji"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fiji</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Yugoslavia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Yugoslavia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Andorra"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Andorra</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Viet_Nam"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Viet Nam</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Albania"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Albania</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bangladesh"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bangladesh</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#United_Republic_of_Tanzania__the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the United Republic of Tanzania</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Italy"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Italy</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Guyana"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Guyana</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CEMAC"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CEMAC</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#southern_Africa"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">southern Africa</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Micronesia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Micronesia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Yemen"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Yemen</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#El_Salvador"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">El Salvador</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Mexico"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mexico</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Eritrea"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eritrea</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Morocco"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Morocco</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Tajikistan"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tajikistan</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Honduras"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Honduras</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Syrian_Arab_Republic_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Syrian Arab Republic</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cayman_Islands"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cayman Islands</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#United_States_Virgin_Islands"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">United States Virgin Islands</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Iceland"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Iceland</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Polynesia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Polynesia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#IGAD"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IGAD</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Lao_People_s_Democratic_Republic__the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Lao People's Democratic Republic</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#United_States_of_America"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the United States of America</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Serbia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Serbia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Asia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Asia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#central_Asia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Central Asia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Niue"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Niue</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Uzbekistan"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Uzbekistan</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Timor-Leste"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Timor-Leste</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Rwanda"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Rwanda</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Guinea-Bissau"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Guinea-Bissau</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#FAO"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FAO</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Mongolia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mongolia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#UEMOA"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WAEMU</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Ethiopia_1993"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">older_Ethiopia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Sudan_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Sudan</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Barbados"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbados</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cote_d_Ivoire"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Côte d'Ivoire</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cape_Verde"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cape Verde</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Angola"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Angola</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Brunei_Darussalam"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Brunei Darussalam</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Norway"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Norway</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#western_Europe"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">western Europe</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CCASG"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CCASG</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#South_Africa"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">South Africa</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Costa_Rica"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Costa Rica</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bhutan"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bhutan</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Brazil"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Brazil</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#middle_Africa"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">middle Africa</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Djibouti"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Djibouti</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Lithuania"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Lithuania</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Grenada"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Grenada</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Reunion"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Réunion</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Madagascar"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Madagascar</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Guam"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Guam</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Myanmar"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Myanmar</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Poland"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Poland</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bahamas_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Bahamas</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cook_Islands_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Cook Islands</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Burundi"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Burundi</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Saint_Kitts_and_Nevis"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Saint Kitts and Nevis</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Dominican_Republic_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dominican Republic (the)</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Samoa"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Samoa</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#French_Polynesia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">French Polynesia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Swaziland"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Swaziland</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Israel"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Israel</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Burkina_Faso"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Burkina Faso</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Niger_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Niger</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Dominica"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dominica</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Holy_See"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Holy See</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#San_Marino"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">San Marino</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Guinea"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Guinea</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#northern_America"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">northern America</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Solomon_Islands"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Solomon Islands</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#south-eastern_Asia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">south-eastern Asia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Serbia_and_Montenegro"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Serbia_and_Montenegro</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Hungary"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hungary</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Vanuatu"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Vanuatu</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Oceania"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Oceania</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Canada"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Canada</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#EU"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">European Union</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Chad"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chad</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Egypt"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Egypt</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Afghanistan"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Afghanistan</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Argentina"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Argentina</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CARICOM"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CARICOM</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#ECO"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ECO</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Uganda"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Uganda</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#French_Guiana"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">French Guiana</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#South_America"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">South America</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Uruguay"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Uruguay</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Republic_of_Moldova"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Republic of Moldova</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cuba"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cuba</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Liechtenstein"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Liechtenstein</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Mali"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mali</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Papua_New_Guinea"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Papua New Guinea</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Trinidad_and_Tobago"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Trinidad and Tobago</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Yemen_1990"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Yemen</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#eastern_Europe"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eastern Europe</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Venezuela"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Venezuela (Bolivarian Republic of)</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#southern_Europe"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">southern Europe</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Sri_Lanka"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sri Lanka</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Ghana"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ghana</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#SIDS"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SIDS</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bolivia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bolivia (Plurinational State of)</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Japan"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Japan</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Kazakhstan"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Kazakhstan</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Australia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Australia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#American_Samoa"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">American Samoa</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Indonesia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Indonesia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Tokelau"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tokelau</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Melanesia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Melanesia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Mozambique"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mozambique</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Portugal"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Portugal</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Tunisia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tunisia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Democratic_Yemen"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Democratic_Yemen</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Australia_and_New_Zealand"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Australia and New Zealand</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Slovakia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Slovakia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Republic_of_Korea__the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Republic of Korea</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#India"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">India</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#western_Asia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">western Asia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CAN"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CAN</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Qatar"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Qatar</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Zimbabwe"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zimbabwe</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Philippines__the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Philippines</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#The_former_Yugoslav_Republic_of_Macedonia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The former Yugoslav Republic of Macedonia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Palau"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Palau</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#northern_Europe"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">northern Europe</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Equatorial_Guinea"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Equatorial Guinea</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Nauru"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Nauru</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Saudi_Arabia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Saudi Arabia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#SADC"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SADC</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Switzerland"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Switzerland</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Gibraltar"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gibraltar</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Belize"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Belize</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CEEAC"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ECCAS</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#LIFDC_2008"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LIFDCs</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bosnia_and_Herzegovina"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bosnia and Herzegovina</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Americas"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Americas</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Armenia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Armenia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Kuwait"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Kuwait</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Falkland_Is"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Falkland Islands (Malvinas)</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Suriname"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Suriname</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Comoros_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Comoros</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Malaysia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Malaysia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Seychelles"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Seychelles</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Saint_Lucia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Saint Lucia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Romania"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Romania</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#northern_Africa"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">northern Africa</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Georgia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Georgia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Latvia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Latvia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Antarctica"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Antarctica</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#PTA"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PTA</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Jordan"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Jordan</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#British_Virgin_Islands"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">British Virgin Islands</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#central_America"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">central America</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Wallis_and_Futuna_Is"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wallis and Futuna Islands</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#LLDC"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LLDCs</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Martinique"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Martinique</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#France"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">France</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#ECOWAS"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ECOWAS</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bermuda"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bermuda</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#LIFDC_2005"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LIFDCs</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Oman"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Oman</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Puerto_Rico"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Puerto Rico</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Monaco"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Monaco</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Malta"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Malta</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Turks_and_Caicos_Islands"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Turks and Caicos Islands</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Saint_Pierre_and_Miquelon"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Saint Pierre and Miquelon</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Democratic_People_s_Republic_of_Korea_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Democratic People's Republic of Korea</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#New_Zealand"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">New Zealand</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Libyan_Arab_Jamahiriya__the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Libyan Arab Jamahiriya</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Micronesia__Fed_States_of_"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Micronesia (Federated States of)</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Gambia__the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Gambia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Belgium"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Belgium</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Turkey"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Turkey</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cameroon"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cameroon</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bahrain"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bahrain</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Iran_Islamic_Rep_of_"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Iran (Islamic Republic of)</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#LIFDC"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LIFDCs</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Togo"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Togo</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Paraguay"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Paraguay</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Zambia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Zambia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Democratic_Republic_of_the_Congo"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Democratic Republic of the Congo</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Kenya"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Kenya</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Mauritius"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mauritius</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Nicaragua"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Nicaragua</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Turkmenistan"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Turkmenistan</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Sao_Tome_and_Principe"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sao Tome and Principe</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Chile"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chile</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Nigeria"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Nigeria</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Spain"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Spain</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#United_Arab_Emirates__the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the United Arab Emirates</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CAC"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CAC</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Faroe_Islands"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Faroe Islands</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Kiribati"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Kiribati</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Tonga"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tonga</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Marshall_Islands__the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Marshall Islands</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Africa"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Africa</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Panama"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Panama</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Ukraine"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ukraine</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Greece"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Greece</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Netherlands_Antilles"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Netherlands Antilles</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Iraq"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Iraq</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#eastern_Asia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eastern Asia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#southern_Asia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">southern Asia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Sierra_Leone"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sierra Leone</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Kyrgyzstan"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Kyrgyzstan</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Sweden"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sweden</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Ecuador"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ecuador</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#western_Africa"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">western Africa</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Namibia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Namibia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CARIFORUM"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CARIFORUM</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Bulgaria"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bulgaria</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Socialist_Federal_Republic_of_Yugoslavia_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Socialist_Federal_Republic_of_Yugoslavia_the</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#World"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">World</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#LDC"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LDCs</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Pakistan"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pakistan</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Ireland"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ireland</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Montserrat"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Montserrat</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Lebanon"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Lebanon</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Montenegro"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Montenegro</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Jamaica"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Jamaica</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Lesotho"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Lesotho</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Federal_Republic_of_Germany_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Federal_Republic_of_Germany_the</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Tuvalu"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tuvalu</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Finland"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Finland</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Denmark"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Denmark</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#PIF"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PIF</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Colombia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Colombia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Czechslovakia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Czechslovakia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Singapore"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Singapore</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Czech_Republic_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Czech Republic</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Guadeloupe"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Guadeloupe</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Saint_Vincent_and_the_Grenadines"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Saint Vincent and the Grenadines</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Central_African_Republic_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Central African Republic</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Estonia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Estonia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Gabon"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gabon</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Antigua_and_Barbuda"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Antigua and Barbuda</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Europe"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Europe</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#eastern_Africa"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eastern Africa</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Slovenia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Slovenia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Algeria"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Algeria</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Congo_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Congo</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Caribbean"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Caribbean</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Peru"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Peru</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Belarus"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Belarus</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Union_of_Soviet_Socialist_Republic_the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Union of Soviet Socialist Republics</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#United_Kingdom_of_Great_Britain_and_Northern_Ireland__the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the United Kingdom of Great Britain and Northern Ireland</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Russian_Federation__the"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the Russian Federation</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Liberia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Liberia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Azerbaijan"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Azerbaijan</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Thailand"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Thailand</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Ethiopia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethiopia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Benin"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Benin</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#CAEU"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CAEU</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#COMESA"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">COMESA</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Haiti"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Haiti</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Maldives"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Maldives</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Austria"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Austria</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#SAARC"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAARC</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#China"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">China</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Botswana"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Botswana</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#MERCOSUR"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MERCOSUR</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Saint_Helena"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Saint Helena</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Malawi"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Malawi</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#AMU"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AMU</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Anguilla"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Anguilla</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Cambodia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cambodia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#Somalia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Somalia</rdfs:label> + </rdf:Description> + <rdf:Description rdf:about="http://aims.fao.org/aos/geopolitical.owl#New_Caledonia"> + <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">New Caledonia</rdfs:label> + </rdf:Description> +</rdf:RDF> diff --git a/ontology/groups.rdf b/ontology/groups.rdf new file mode 100644 index 00000000..140524df --- /dev/null +++ b/ontology/groups.rdf @@ -0,0 +1,1563 @@ +<rdf:RDF + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:vivo="http://vivo.library.cornell.edu/ns/0.1#" + xmlns:owl="http://www.w3.org/2002/07/owl#" + xmlns:xsd="http://www.w3.org/2001/XMLSchema#" + xmlns:swrl="http://www.w3.org/2003/11/swrl#" + xmlns:swrlb="http://www.w3.org/2003/11/swrlb#" + xmlns:vitro="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#" + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#startYear"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGrouptime"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">time</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-28T13:54:45</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >14</vitro:displayRank> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Dates and times for events, employment, etc.</vitro:publicDescriptionAnnot> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#listedBy"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupteaching"> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >6</vitro:displayRank> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">teaching</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2010-01-10T15:37:48</vitro:modTime> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#produced_in"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupmapping"> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2010-01-10T21:31:36</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >93</vitro:displayRank> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Properties included in VIVO core to support mappings to other ontologies</vitro:publicDescriptionAnnot> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">mapping</rdfs:label> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/argued"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >obscure bibontology properties not likely to be used in VIVO</vitro:publicDescriptionAnnot> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >95</vitro:displayRank> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2010-01-10T16:55:11</vitro:modTime> + <rdfs:label xml:lang="en-US">bib obscure</rdfs:label> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#isCorrespondingAuthor"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">bib references</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2010-01-10T16:50:29</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >19</vitro:displayRank> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >reference information to online content, translations, etc.</vitro:publicDescriptionAnnot> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#nearestGeographicLocation"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGrouplocation"> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-28T13:05:00</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >16</vitro:displayRank> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Relationships of place</vitro:publicDescriptionAnnot> + <rdfs:label xml:lang="en-US">location</rdfs:label> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#sub_event"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasAffiliate"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >3</vitro:displayRank> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Affiliations and other informal associations between people and organizations</vitro:publicDescriptionAnnot> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">affiliation</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-28T09:47:01</vitro:modTime> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/cornell#OSPSponsorId"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"> + <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://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">identity</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-28T09:16:01</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >18</vitro:displayRank> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#sourceVocabularyReference"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGrouplinks"> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >20</vitro:displayRank> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >link relationships</vitro:publicDescriptionAnnot> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">links</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-28T14:00:43</vitro:modTime> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#endYearMonth"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#centerOrInstituteWithin"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupadministration"> + <rdfs:label xml:lang="en-US">administration</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-28T09:49:21</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >17</vitro:displayRank> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Administrative relationships including sponsorship, organization, and publicity</vitro:publicDescriptionAnnot> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#CaseStudy"> + <vitro:inClassGroup> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroClassGrouppublications"> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >8</vitro:displayRank> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-27T08:36:28</vitro:modTime> + <rdfs:label xml:lang="en-US">publications</rdfs:label> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup"/> + </owl:Thing> + </vitro:inClassGroup> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/section"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >secondary properties of a bibliographic citation indicating where to find it</vitro:publicDescriptionAnnot> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">bib locator</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2010-01-10T16:41:57</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >16</vitro:displayRank> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#SeminarSeries"> + <vitro:inClassGroup> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroClassGroupevents"> + <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" + >5</vitro:displayRank> + </owl:Thing> + </vitro:inClassGroup> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#supplementalInformation"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2010-01-10T16:12:30</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >90</vitro:displayRank> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >supplemental information not intended for public display (e.g, alternative name versions)</vitro:publicDescriptionAnnot> + <rdfs:label xml:lang="en-US">supplemental</rdfs:label> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/isReferencedBy"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/interviewer"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/florida#statewideGoalAndFocusArea"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >9</vitro:displayRank> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">service</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2010-01-10T15:38:51</vitro:modTime> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/chapter"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#authorRank"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">bib primary</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-28T09:12:36</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >7</vitro:displayRank> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >primary bibliographic properties of publications to prioritize in display</vitro:publicDescriptionAnnot> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#relatedInformationResource"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#startYearMonth"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#startTime"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/created"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#researchFocus"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupresearch"> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >5</vitro:displayRank> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2010-01-10T15:30:25</vitro:modTime> + <rdfs:label xml:lang="en-US">research</rdfs:label> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#coPrincipalInvestigatorOn"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#locationInformation"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/sici"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasCollaborator"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Patent"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#presenter"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupoverview"> + <rdfs:label xml:lang="en-US">overview</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2010-01-12T07:11:40</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</vitro:displayRank> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#GovernmentAgency"> + <vitro:inClassGroup> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroClassGrouporganizations"> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >6</vitro:displayRank> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-08T10:36:48</vitro:modTime> + <rdfs:label xml:lang="en-US">organizations</rdfs:label> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup"/> + </owl:Thing> + </vitro:inClassGroup> + </rdf:Description> + <rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#narrower"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGrouptopic"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">topic</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-28T13:38:57</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >15</vitro:displayRank> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasPrincipalInvestigator"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/based_near"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#product"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#administeredBy"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Person"> + <vitro:inClassGroup> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroClassGrouppeople"> + <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"/> + </owl:Thing> + </vitro:inClassGroup> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#EditorialArticle"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#primaryCourseProfessor"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#populatedPlaceWithinCountry"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/pageStart"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasFacility"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/publisher"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#SubjectArea"> + <vitro:inClassGroup> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroClassGrouptopics"> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >4</vitro:displayRank> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2010-01-10T22:47:28</vitro:modTime> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup"/> + <rdfs:label xml:lang="en-US">topics</rdfs:label> + </owl:Thing> + </vitro:inClassGroup> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#reportId"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#reviewedDocumentTitle"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#equipmentFor"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#geographicFocus"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/prefixName"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#endTime"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#PostalCodeRegion"> + <vitro:inClassGroup> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroClassGrouplocations"> + <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> + </owl:Thing> + </vitro:inClassGroup> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#referencedPublicationCityName"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#populatedPlaceWithinStateOrProvince"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupSWRL"> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >99</vitro:displayRank> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-28T13:39:59</vitro:modTime> + <rdfs:label xml:lang="en-US">SWRL</rdfs:label> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#AcademicDepartment"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasPostalCode"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupaddress"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">contact</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-28T09:15:07</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >19</vitro:displayRank> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >properties related to postal and email addresses</vitro:publicDescriptionAnnot> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#researcherId"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#SchoolWithinUniversity"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasPart"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#NonFacultyAcademic"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ConferencePresentation"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#refereedStatus"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/annotates"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasMembership"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#involvedOrganizationName"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/pages"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/reversedBy"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Talk"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#AcademicSemester"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/isVersionOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkedMember"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/upc"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#webpage"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#IndependentResearchInstitute"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#FacultyMember"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#count"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#activityRelatedOrganization"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Competition"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publisherName"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasCoPrincipalInvestigator"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Video"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasMember"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Issue"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#onlineContent"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/director"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#roomWithinBuilding"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Course"> + <vitro:inClassGroup> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroClassGroupcourses"> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-08T10:42:15</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >2</vitro:displayRank> + <rdfs:label xml:lang="en-US">courses</rdfs:label> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup"/> + </owl:Thing> + </vitro:inClassGroup> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#conferenceName"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasProgram"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#occursDuring"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#degreeAbbrev"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#funds"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#partOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#CourseSection"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupcourses"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#NewsRelease"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#startDateTime"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#workEmail"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#equipmentInFacility"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/lccn"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Workshop"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#time"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkedAdvisee"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#degreeTypeAwarded"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#MembershipActivity"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/depiction"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/pmid"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#endDateTime"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Film"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#serviceProvidedBy"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Chapter"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/identifier"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#fundedBy"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Committee"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#providedBy"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#yearMonth"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#grantDirectCosts"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressPostalCode"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#degreeStatus"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/relation"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/rights"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#broader"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptopic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#collegeOrSchoolWithin"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/language"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Webpage"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#featuredIn"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#compiledBy"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#departmentOrSchool"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasContributingParticipant"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasDepartment"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#degreeOfferedBy"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#eventWithin"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/court"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Interview"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ExtensionUnit"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/distributor"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/description"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Museum"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/affirmedBy"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#educationalBackground"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupbiography"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">background</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2010-01-10T12:36:28</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >8</vitro:displayRank> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >biographical information about a person, past or present</vitro:publicDescriptionAnnot> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressState"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/translator"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#personInPosition"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupemployment"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">employment</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-28T09:46:17</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >2</vitro:displayRank> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Appointments and other formally-defined employment relationships</vitro:publicDescriptionAnnot> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#adviseeInAdvisingRelationship"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#courseSectionTaughtBy"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#taughtInSemester"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/presents"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#distributesFundingFrom"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasOrganizationalAffiliate"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/contributorList"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#geographicallyContains"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkedAuthor"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#PopulatedPlace"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#preferredCitationFormat"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + </rdf:Description> + <rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#related"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptopic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Equipment"> + <vitro:inClassGroup> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroClassGroupequipment"> + <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> + </owl:Thing> + </vitro:inClassGroup> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasPrimaryProfessor"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#compilerOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasSubEvent"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/locator"> + <vitro:inPropertyGroupAnnot> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroPropertyGroupbibmapping"> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#PropertyGroup"/> + <rdfs:label xml:lang="en-US">bib mapping</rdfs:label> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2010-01-10T21:12:31</vitro:modTime> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >94</vitro:displayRank> + <vitro:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Bibliographic properties in other namespaces mapped within VIVO core</vitro:publicDescriptionAnnot> + </owl:Thing> + </vitro:inPropertyGroupAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Article"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#NonAcademic"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/degree"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Laboratory"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#localAwardId"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#providesFundingThrough"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/presentedAt"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#GeographicLocation"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#programOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publisherOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#sectionOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/interviewee"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/abstract"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/transcriptOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + </rdf:Description> + <rdf:Description rdf:about="http://swrl.stanford.edu/ontologies/3.3/swrla.owl#hasRuleGroup"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupSWRL"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#facilityFor"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ReviewArticle"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/issuer"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#altMiddleName"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Software"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#informationResourceInAuthorship"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Hearing"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/oclcnum"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/reproducedIn"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/content"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/asin"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/suffixName"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#countyOfMunicipality"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#administers"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#teachesCourseSection"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#UniversityOrIndependentCollege"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkType"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplinks"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#principalInvestigatorOn"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Librarian"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/florida#StatewideGoalAndFocusArea"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouptopics"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/uri"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/AcademicArticle"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasSection"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#organizationForPosition"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupemployment"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/eanucc13"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#institutionOfDegree"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasOutreachActivity"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#stateOrProvinceWithinCountry"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/EditedBook"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/PersonalCommunication"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#AdministrativeDepartment"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/cornell#OSPAwardId"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/doi"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/shortDescription"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#InternationalActivity"> + <vitro:inClassGroup> + <owl:Thing rdf:about="http://vivoweb.org/ontology#vitroClassGroupactivities"> + <vitro:displayRank rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >3</vitro:displayRank> + <vitro:modTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime" + >2009-12-08T10:42:02</vitro:modTime> + <rdfs:label xml:lang="en-US">activities</rdfs:label> + <rdf:type rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#ClassGroup"/> + </owl:Thing> + </vitro:inClassGroup> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#keyword"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptopic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Room"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/volume"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#authorNameAsListed"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/abstract"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/florida#divisionOfSponsoredResearchNumber"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/scripps#ScientificSupportStaff"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/format"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasTranslation"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/issue"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/number"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/isVersionOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#WorkingPaper"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasTeachingActivity"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasLab"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#title"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasAttendee"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/issn"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#patentNumber"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publicationMonth"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Journal"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#contributingActivity"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + </rdf:Description> + <rdf:Description rdf:about="http://swrl.stanford.edu/ontologies/3.3/swrla.owl#hasClassPhrase"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupSWRL"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#altFirstName"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasInvestigator"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#contactInformation"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/scripps#StaffScientist"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#overview"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasCollegeOrSchool"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#description"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#editor"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#investigatorOn"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#webpageOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/firstName"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Service"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupactivities"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#CollegeWithinUniversity"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#identifier"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#affiliateOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#relatedGrant"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/recipient"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#altLastName"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Building"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#postalCodeLocationOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#divisionWithin"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasSubjectArea"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptopic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#totalAwardAmount"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#mailingAddress"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkedInformationResource"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#geographicFocusOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/homepage"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#freetextKeyword"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Library"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#value"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/identifier"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#teachingFocus"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/reviewOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#containsRoom"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasOrgNameVariant"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ConferencePaper"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Website"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#administrativeResponsibilities"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#referencedTitleAuthorOrEditor"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Division"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#awardOrDistinction"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbiography"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Newsletter"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#sectionCredits"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressCity"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Team"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Program"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#courseOffering"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Hospital"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/cornell#OSPDepartmentId"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#buildingOnCampus"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleGroupEnabled"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupSWRL"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/title"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/authorList"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#preferredTitle"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupemployment"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Thesis"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/owner"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#GraduateStudent"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publicationStatus"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/contributor"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#organizerOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publishedIn"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasInternationalActivity"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#agent"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#CenterOrInstitute"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkAnchorText"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplinks"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#PostDoc"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Database"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hrJobTitle"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupemployment"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/alternative"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Conference"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasResearchArea"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Department"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Seminar"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ReserachProposal"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupactivities"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Report"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#BlogPosting"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#PrivateCompany"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#provides"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#subjectAreaFor"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptopic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#authorInAuthorship"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#startDate"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#awardOrDistinctionFor"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#StateOrProvince"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#advisorInAdvisingRelationship"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#day"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/pageEnd"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#positionForPerson"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupemployment"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#presenterAt"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/AudioDocument"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#outreachActivityBy"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#referencedPublisherName"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publishedInTitle"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#EmeritusProfessor"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ServiceLaboratory"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#subcontractsGrant"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Country"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressLine3"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/translationOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/lastName"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#UndergraduateStudent"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#endDate"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#professionalServiceActivityBy"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/producer"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/performer"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#FundingOrganization"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Publisher"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#NGO"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#departmentWithin"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#researchActivities"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Series"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkURI"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplinks"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressLine2"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/editorList"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://swrl.stanford.edu/ontologies/3.3/swrla.owl#hasRuleCategory"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupSWRL"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Foundation"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/subsequentLegalDecision"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkedAdvisor"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#memberOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/subject"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#StudentOrganization"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/coden"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressCountry"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressLine1"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#associatedDegreeAward"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#conferenceDate"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#degreeGrantingOrganization"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#endYear"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://swrl.stanford.edu/ontologies/3.3/swrla.owl#hasPropertyPhrase"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupSWRL"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Exhibit"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#presenterInformation"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#workPhone"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#County"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/eissn"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/washu#Trainee"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#outreachFocus"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#professionalServiceActivity"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbiography"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#filingDate"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasCenterOrInstitute"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Proceedings"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publisher"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#internationalActivityOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Book"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#educationalBackgroundOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#geographicallyWithin"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Organization"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasIssue"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#seatingCapacity"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasEquipment"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#titleOrRole"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#sponsorAwardId"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ConferencePoster"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/shortTitle"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#year"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/editor"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Association"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#WorkshopSeries"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#middleName"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#isAgentIn"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/issued"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#positionInOrganization"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupemployment"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#degreeCandidacy"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasNameVariant"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/date"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#cityOfPublication"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + </rdf:Description> + <rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#subclassOf"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/organizer"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#alternateTitle"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + </rdf:Description> + <rdf:Description rdf:about="http://swrl.stanford.edu/ontologies/3.3/swrla.owl#hasBuiltInPhrase"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupSWRL"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#date"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/edition"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#type"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#workFax"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#dateTime"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/gtin14"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#contributingParticipantIn"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#invitedStatus"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#listsCourse"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#place"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/status"> + <vitro:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Catalog"> + <vitro:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + </rdf:Description> +</rdf:RDF> diff --git a/ontology/position.rdf b/ontology/position.rdf new file mode 100644 index 00000000..a8bd5f14 --- /dev/null +++ b/ontology/position.rdf @@ -0,0 +1,28 @@ +<rdf:RDF + xmlns:core="http://vivoweb.org/ontology/core#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:j.0="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#" + xmlns:xsd="http://www.w3.org/2001/XMLSchema#" + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" + xmlns:owl="http://www.w3.org/2002/07/owl#" > + + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Position"> + <rdfs:subClassOf rdf:resource="http://vivoweb.org/ontology/core#DependentResource"/> + <j.0:customShortViewAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">positionShortView.jsp</j.0:customShortViewAnnot> + </rdf:Description> + + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#personInPosition"> + <j.0:customEntryFormAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">personHasPositionHistory.jsp</j.0:customEntryFormAnnot> + </rdf:Description> + + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#DependentResource"> + <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> + <rdfs:label xml:lang="en-US">Dependent Resource</rdfs:label> + <rdfs:subClassOf rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#DependentResource"/> + </rdf:Description> + + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#organizationForPosition"> + <j.0:customEntryFormAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organizationHasPositionHistory.jsp</j.0:customEntryFormAnnot> + </rdf:Description> + +</rdf:RDF> diff --git a/ontology/vivo-core-0.9-annotations.rdf b/ontology/vivo-core-0.9-annotations.rdf new file mode 100644 index 00000000..0d61295e --- /dev/null +++ b/ontology/vivo-core-0.9-annotations.rdf @@ -0,0 +1,3807 @@ +<rdf:RDF + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:j.0="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#" > + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Facility"> + <j.0:descriptionAnnot 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 </j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A building or place that provides a particular service or is used for a particular activity</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#altFirstName"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Alternate versions of a person's first name or initial - 1 per entry - to assist in name disambiguation</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#editor"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#editor"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please enter alternative first name forms encountered for this person; use foaf:firstName for what is considered the preferred or definitive first name</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressPostalCode"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">7</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#reportId"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#buildingOnCampus"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">80</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Equipment"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupequipment"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#isAgentIn"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">isAgentIn</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Committee"> + <j.0:descriptionAnnot 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</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef 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</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#translatorOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#EmeritusProfessor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#PopulatedPlace"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasSubjectArea"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has subject area</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptopic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use subject areas for controlled vocabulary terms</j.0:publicDescriptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/transcriptOf"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">transcriptOf</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/abstract"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#locationInformation"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Additional information about the location, including the name if no appropriate "nearest known geographic location" VIVO entry is available</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">51</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/recipient"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">recipient</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#administers"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">administers</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#affiliateOf"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">affiliate of</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for (primarily) unpaid affiliations not considered employment in the applicable HR system</j.0:publicDescriptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/"> + <j.0:ontologyPrefixAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">foaf</j.0:ontologyPrefixAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/"> + <j.0:ontologyPrefixAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bibo</j.0:ontologyPrefixAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#invitedStatus"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true for an invited presentation; assumed false if blank</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Enter 'true' for an invited talk or presentation; leave blank or enter 'false' otherwise</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Video"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#reviewedIn"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reviewedIn</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#orcidId"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">We can't yet assume that we will only have a single ORCID id for a person</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">32</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasPrincipalInvestigator"> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">principal investigator</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#primaryLink"> + <j.0:customEntryFormAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">defaultLinkForm.jsp</j.0:customEntryFormAnnot> + <j.0:forceStubDeletionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:forceStubDeletionAnnot> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">false</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ConferencePoster"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The digital file (or physical equivalent), if available after the conference, vs. the act of attending/presenting: use ConferencePresentation for information about date/time/location/name of the event where the poster was presented</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#outreachActivityBy"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">80</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">outreachActivityBy</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressState"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ReserachProposal"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupactivities"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A proposal for a research grant that has been submitted but not approved; does not represent an existing activity</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Thesis"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#endDate"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#NewsRelease"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A short written piece focused on an event or announcement of note, having a defined publication time and of less enduring interest than a news feature.</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/issuer"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">issuer</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/authorList"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#contactInformation"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasFacility"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has facility</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Indicate general availability or accessibility, not necessarily management or control</j.0:publicDescriptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#prerequisiteFor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">40</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">prerequisite for</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#USPostalAddress"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#attendeeAt"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">attendee at</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Position"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasCenterOrInstitute"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has center or institute</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#PostDoc"> + <j.0:autoLinkedToTab rdf:resource="http://vivoweb.org/ontology#tab576853613"/> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A Person holding an academic employment appointment focused on research rather than teaching; temporary (or for some defined term)</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/reviewOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reviewOf</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/asin"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Amazon standard identification number</j.0:descriptionAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Publisher"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#departmentWithin"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">department within</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/AcademicArticle"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#collaboratorOn"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/based_near"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">based_near</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#listedBy"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">80</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listed by</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Talk"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/reproducedIn"> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reproducedIn</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/editor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#totalAwardAmount"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/owner"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">owner</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/director"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">director</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Person"> + <j.0:autoLinkedToTab rdf:resource="http://vivoweb.org/ontology#tab507808851"/> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The most general classification of a person</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#sectionOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">section of</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#StudentOrganization"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#AcademicYear"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2009-2010</j.0:exampleAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The period considered by an academic institution to be its primary academic cycle</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/organizer"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organizer</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#organizationForPosition"> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">15</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">employer having employment</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupemployment"/> + <j.0:individualSortDirectionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">desc</j.0:individualSortDirectionAnnot> + <j.0:objectIndividualSortProperty rdf:resource="http://vivoweb.org/ontology/core#startYear"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publishedInTitle"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">39</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use when no separate entry (individual resource) will be created for the publication venue</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#coPrincipalInvestigatorOn"> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">co-principal investigator on</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#researchActivities"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">90</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">researchActivities</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for general research activities other than on sponsored research projects where this person is PI or co-PI, or for un-funded research</j.0:publicDescriptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#AcademicDepartment"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#NonAcademic"> + <j.0:autoLinkedToTab rdf:resource="http://vivoweb.org/ontology#tab1752879766"/> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A person working in a position not considered to be an academic appointment</j.0:exampleAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#VocabularySourceReference"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The concept name, URL, and source vocabulary name of a Subject Area</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#year"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use when start year and end year are not appropriate</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#provides"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">provides</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/subsequentLegalDecision"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">subsequentLegalDecision</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/affirmedBy"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">affirmedBy</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Film"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/PersonalCommunication"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/firstName"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Preferred or most certain version of the first name of a person; use altFirstName for alternative version(s)</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please enter your first name (or initial, if you prefer to use your middle name). Use the form you list when submitting a paper for publication.</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#researchAreaOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">research area of</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/court"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">court</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#degreeRecipient"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">31</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">degree recipient</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#CenterOrInstitute"> + <j.0:autoLinkedToTab rdf:resource="http://vivoweb.org/ontology#tab787776173"/> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A center or institute within a University, School or College, Government Agency, Foundation, or other Organization</j.0:exampleAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#stateOrProvinceOfCounty"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">stateOrProvinceOfCounty</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#roomWithinBuilding"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">building</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/issued"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">issued</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#organizationRelatedActivity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">21</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">relevant activity</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#citationFormatPreferredBy"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">90</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">citationFormatPreferredBy</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#OfferedDegree"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An academic degree offered by an institution</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#issueOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">issue of</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#organizationalAffiliateOf"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Could perhaps be symmetric, but sometimes organizations don't see affiliations mutually</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">40</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organizational affiliate of</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#taughtInSemester"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">semester</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#geographicallyContains"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">geographicallyContains</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#orgNameVariantFor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkedAuthor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">linked author</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#offersDegree"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">offers degree</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#PrivateCompany"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#sponsorAwardId"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Competition"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#educationalBackgroundOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">15</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">educational background of</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#funds"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">funds</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkedMember"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">linked member</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/description"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">description</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasLab"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Institution"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A legally-defined independent organization (not part of another organization), typically non-profit</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#workEmail"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">full email address</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please enter your full official work email address to be used for directory listings -- use alternate email for personal or other professional email addresses</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#memberOf"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">member of</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#GovernmentAgency"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#researchFocus"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A narrative description of current research; use the <i>research areas</i> property to link a person with specific topics, subjects, or controlled vocabulary terms</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">11</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#CitationFormat"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">One of several conventions for formatting publication citations, used to allow authors to control how pubs appear in their own VIVO pages</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#startDateTime"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">4</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use when the full date and time are known</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#authorRank"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Enter a number only (1-whatever) reflecting the order of this author in the publication</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/title"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">title</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ServiceActivity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An activity of an individual within his or her profession or institution; use outreach activity for community service or other activities outside the profession</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#involvedOrganizationName"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Specify to desired level the organization or organized activity involved; then link, if appropriate, to the related organization using the "related organization" property</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Catalog"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#day"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publishedIn"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">35</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in journal</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/reversedBy"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reversedBy</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#authorInAuthorship"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:forceStubDeletionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:forceStubDeletionAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has authorship</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">false</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#investigatorOn"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">investigator on</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#presenterAt"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">presenterAt</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#awardedTo"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">awarded to</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#relatedActivityOrEvent"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">related activity</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#featuredIn"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/translationOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">translation of</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/argued"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#titleOrRole"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressCity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">4</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Proceedings"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#partOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">99</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">part of</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasCollegeOrSchool"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has college or school</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Database"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#editor"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">editor</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#time"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">time</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasTranslation"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has translation</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#SubjectArea"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouptopics"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasNameVariant"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#Link"> + <j.0:customShortViewAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">linkShortView.jsp</j.0:customShortViewAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#endDateTime"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">8</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use when full date and time are known</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#County"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/issue"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">issue number as a text string; if issues are to be entered as individuals, create an issue object property</j.0:descriptionAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Librarian"> + <j.0:autoLinkedToTab rdf:resource="http://vivoweb.org/ontology#tab1043808790"/> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/contributorList"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ConferencePresentation"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A talk, poster presentation, or demo at a conference; use Conference Paper or Conference Poster for the product of the talk</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#degreeCandidacy"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#PostalCodeRegion"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The geographic area constituting a postal code -- can be a building or other non-unique geographical region</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#referencedPublicationCityName"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">43</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for reviews, book chapters, or publications where no separate entry (individual resource) will be created for the related publication</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core"> + <j.0:ontologyPrefixAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">skos</j.0:ontologyPrefixAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#facilityFor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">facility for</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hrJobTitle"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Should this be part of the Employment context node?</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">9</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupemployment"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Organization"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressLine1"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#primaryCourseProfessor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">primaryCourseDeveloper</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for the course developer (and normally lead instructor) having ongoing responsibility for the course over many terms, quarters, or semesters</j.0:publicDescriptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/degree"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">degree</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Issue"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publisherOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">51</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">publisher of</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#positionForPerson"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This property will normally be populated through automated date ingest only.</j.0:descriptionAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">involves employee</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupemployment"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasPrimaryProfessor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">courseDevelopedBy</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/isbn10"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#equipmentInFacility"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">40</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#editorOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#personInPosition"> + <j.0:objectIndividualSortProperty rdf:resource="http://vivoweb.org/ontology/core#startYear"/> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">current positions</j.0:fullPropertyNameAnnot> + <j.0:individualSortDirectionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">desc</j.0:individualSortDirectionAnnot> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupemployment"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This property will normally be populated through automated date ingest only.</j.0:descriptionAnnot> + <j.0:forceStubDeletionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:forceStubDeletionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/gtin14"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">80</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#nearestGeographicLocation"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nearestGeographicLocation</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#presenterInformation"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Information about the speaker/presenter, including the name if no link to the person's VIVO entry can be made (e.g., for outside speakers)</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">11</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/EditedBook"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Division"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#grantDirectCosts"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">61</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#yearMonth"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use when a single year-month value is appropriate rather than a separate start and end</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Newsletter"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Usually issued periodically, prepared by or for a group or institution to present information to a specific audience, often also made available to the press and public.</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/issn"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasEquipment"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has equipment</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#departmentOrSchool"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">40</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#count"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A generic field for integer count values</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please enter a whole number (between -2147483648 and 2147483647)</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/uri"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A uniform resource identifier, as distinct from a URL that will return a web page; should be unique</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/format"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">format</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#NonFacultyAcademicPosition"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Researcher, Academic Extension Associate, Postdoctoral Associate or other position</j.0:exampleAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#distributes"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">distributes</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#related"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">related</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptopic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#produced_in"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">produced_in</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core"> + <j.0:ontologyPrefixAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">core</j.0:ontologyPrefixAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#date"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use when a date doesn't signify a start date or end date, as with an award; can also be used when multiple independent dates are relevant</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasSection"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">section</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#institutionOfDegree"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#vocabularyReferenceFor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vocabularyReferenceFor</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/chapter"> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#countyWithinStateOrProvince"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">countyWithinStateOrProvince</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#labWithin"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#middleName"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">preferred, primary, or most likely middle name or initial; use altMiddleName for alternative version(s)</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">25</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please enter your middle name(s) or initial(s) as you normally identify yourself, especially as the author of a publication</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#EducationalBackground"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/date"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">date</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/depiction"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">depiction</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/pages"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Total pages: use start page and end page for page ranges</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">25</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please enter the total number of pages -- use start page and end page to express a range</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#courseOffering"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">course offering</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#WorkingPaper"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#webpage"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">webpage</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#presenter"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">presenter</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#NameVariant"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Smith, D.; Smith, Donald J.; Smith, D. J.</j.0:exampleAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A name form used by an author on 1 or more publications</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#teachingFocus"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for a general statement of teaching philosophy and goals or for a single summary of teaching; use teaching activities to list past courses, non-credit teaching, or new courses under development individually.</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/created"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">created</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#containsRoom"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">room</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/subject"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">subject</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#WorkshopSeries"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organized series of workshop events, whether repetitions of one workshop or multiple different workshops; use Workshop for individual events</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#activityDescriptionFor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">activityDescriptionFor</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#conferenceDate"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#sub_event"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sub_event</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/eanucc13"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#isCorrespondingAuthor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Enter only 'true' or 'false' (without the quotes)</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#grantSubcontractedThrough"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#degreeOfferedBy"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">offered by</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#educationalBackground"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">15</j.0:displayRankAnnot> + <j.0:forceStubDeletionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:forceStubDeletionAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">educational background</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbiography"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#centerOrInstituteWithin"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">center or institute within</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/eissn"> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">90</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#CollegeWithinUniversity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A primary academic unit within a University; use University or Independent College for free-standing organizations</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#conferenceName"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/DocumentPart"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#FundingOrganization"> + <j.0:autoLinkedToTab rdf:resource="http://vivoweb.org/ontology#tab998735444"/> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A defined class of organizations that fund Grants</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#teachingActivityBy"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">teachingActivityBy</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#identifier"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A parent property for institutional and other identifiers, which should themselves be entered as child data properties, normally in the namespace of the local institution. Publication-related identifiers (e.g., Pubmed id) should be children of the bibo:identifier property</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#workFax"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">61</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Recognition"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An award, honor, or distinction received by a person on a particular date (not the award itself as given repeatedly, and not a grant award)</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#BlogPosting"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#internationalActivityOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">internationalActivityOf</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Report"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasInternationalActivity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hasInternationalActivity</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/pmid"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#patentNumber"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#AbstractInformation"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Information (typically not physical in nature) and not used for primary display, but instead contributing to the primary display of people, events, and other top level classes and their subclasses</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Building"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#divisionWithin"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">29</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">division within</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#containsBuilding"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">80</j.0:displayRankAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/pageStart"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">25</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/section"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#AdministrativeDepartment"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#affiliationVariant"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use the full string as the label; optionally parse out and populate zip code to facilitate disambiguation of organization/department names</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organization name, usually including some additional address information, used as an affiliation string in 1 or more publication databases</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ExtensionUnit"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A unit devoted primarily to extension activities, whether for outreach or research</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#refereedStatus"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">11</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Enter 'true' if the talk or presentation was refereed prior to acceptance; enter 'false' or leave blank if not refereed</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#startYear"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#contributingActivity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">25</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">contributingActivity</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#degreeTypeAwarded"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">degree type</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#countryOfPopulatedPlace"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has city</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasIssue"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has issue</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#reviewedDocumentTitle"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">31</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#CaseStudy"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#keyword"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">keyword</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptopic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/shortDescription"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#scopusId"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">With different affiliations, a person may have more than 1 Scopus id</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">31</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publicationMonth"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">6</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">publication month</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#referencedTitleAuthorOrEditor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">40</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for reviews, book chapters, or publications where no separate entry (individual resource) will be created for the related publication</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#mailingAddress"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">90</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mailingAddress</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#description"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#type"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A generic type field, optionally used via a restriction on a class when no subclass is needed and moniker or title does not provide enough distinction</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#researchActivityBy"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">90</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">researchActivityBy</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#startDate"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/isbn13"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">11</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Chapter"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#freetextKeyword"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Intended for a free-text keyword where no instance from a controlled vocabulary can be identified; this accommodates existing data and the likelihood that individual people will want to nuance their work</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">22</j.0:displayRankAnnot> + <j.0:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">conservation and sustainable development</j.0:exampleAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please enter a word or short phrase only</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#providesService"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Association"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#authorNameAsListed"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#alternateTitle"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Course"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupcourses"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The ongoing concept of a course, typically then given repeatedly in a specific semester as a Course Section</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Seminar"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasTeachingActivity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hasTeachingActivity</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for non-credit teaching, new courses under development, past courses not listed or linked to individually, and the like.</j.0:publicDescriptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#LibrarianPosition"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#populatedPlaceWithinCounty"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">within county</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Website"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/annotates"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">annotates</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#CourseSection"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupcourses"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A section of a Course taught by 1 or more people, in a semester, at a time, in a place</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#onlineContent"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:forceStubDeletionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:forceStubDeletionAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">online content</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#OutreachActivity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An activity oriented outside a person's primary profession and institution</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#associatedThesis"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">associated thesis</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/status"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/isReferencedBy"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">isReferencedBy</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#professionalServiceActivityBy"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adjust relationships when a person is primary in another department, affiliations to centers</j.0:exampleAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">affiliate position for</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/interviewee"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">interviewee</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#AdvisingRelationship"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The activity of a professor advising a student, typically including start and end date and the title of the student's project or thesis work</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasMember"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has member</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/AudioDocument"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Recorded audio in any format (e.g., phonograph record, tape, CD, DVD, DAT)</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasDepartment"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has department</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/identifier"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/abstract"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">equivalent to bibo:abstract; included for mapping purposes</j.0:descriptionAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibmapping"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Hearing"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#TimeInterval"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#startTime"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">11</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for time values independent of date; e.g., time that a course section starts every day it is offered</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#contributingParticipantIn"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">contributing participant in</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/volume"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">15</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasOrgNameVariant"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#NonFacultyAcademic"> + <j.0:autoLinkedToTab rdf:resource="http://vivoweb.org/ontology#tab2032435850"/> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A person not considered a faculty member but holding an academic appointment</j.0:exampleAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#subjectAreaFor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">subject area for</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptopic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasPostalCode"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">90</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">postal code</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please add a postal code, if appropriate, for direct geographic tagging of this individual resource. Use the "nearest known geographic location" to link resources to rooms, buildings, towns or cities, states, or countries depending on how much information is known about the resource location.</j.0:publicDescriptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#place"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">place</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/homepage"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use VIVO core:webpage to have an inverse property</j.0:descriptionAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">homepage</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#GeographicRegion"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/identifier"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#fundedBy"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">funded by</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/pageEnd"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">26</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#geographicallyWithin"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">geographicallyWithin</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#preferredCitationFormat"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">90</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">prefersCitationFormat</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">If desired, select the preferred citation display format for the related publication</j.0:publicDescriptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasContributingParticipant"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has contributing participant</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasAttendee"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has attendee</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/producer"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">producer</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasMembership"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">25</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">membership in</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#professionalServiceActivity"> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for current positions or roles other than the person's primary employment, typically inside the person's primary organization (in contrast to professional service roles outside the primary organization)</j.0:publicDescriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">15</j.0:displayLimitAnnot> + <j.0:individualSortDirectionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">desc</j.0:individualSortDirectionAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbiography"/> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">professional affiliations</j.0:fullPropertyNameAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">false</j.0:selectFromExistingAnnot> + <j.0:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adjust relationships when a person is primary in another department, affiliations to centers</j.0:exampleAnnot> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Workshop"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#TeachingActivity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for teaching experiences other than specific for-credit courses within a person's home institution</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#value"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">value</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#courseSectionTaughtBy"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has teacher</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkType"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">link type</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplinks"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#populatedPlaceWithinCountry"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">within country</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#seatingCapacity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#sectionCredits"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The credits for a course may vary by section (?)</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#dateTime"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use when a single date and time is appropriate vs. a start date and time and end date and time, or when multiple dates and times are relevant</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Team"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An informal organization brought together for the purposes of a project or event</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#NonAcademicPosition"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A position classified as professional, staff, support, or any other non-academic role</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasPart"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">99</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has part</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#SeminarSeries"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organized series of events, typically put on by a department or center; use Seminar for each individual talk</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#FacultyPosition"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#UniversityOrIndependentCollege"> + <j.0:autoLinkedToTab rdf:resource="http://vivoweb.org/ontology#tab1777391077"/> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#EditorialArticle"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An article of opinion, typically published in a newspaper. For academics, most commonly Op Ed pieces</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/number"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">18</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#broader"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">broader term</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptopic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasResearchArea"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">15</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has research area</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#endYearMonth"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">7</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use when both year and month are known, but not day of the month or time</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#mailingAddressFor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">90</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mailingAddressFor</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ResearchActivity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An activity involving research (funded or unfunded), only sometimes linked to a grant</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#supplementalInformation"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">40</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#awardOrDistinctionFor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">award or distinction for</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressCountry"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">6</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#equipmentFor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">equipment for</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Museum"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Software"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Program"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A Cornell graduate field (http://vivo.cornell.edu/index.jsp?home=65535&collection=820)</j.0:exampleAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An ongoing academic initiative not formalized with department or division status</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/lccn"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ReviewArticle"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An article reviewing one or more other information resources (a book, one or more other articles, movies, etc)</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#FacultyAdministrativePosition"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef 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)</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#countyOfMunicipality"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has city or town</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasOutreachActivity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">80</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hasOutreachActivity</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/coden"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkURI"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplinks"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#GraduateStudent"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#majorField"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">80</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/prefixName"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">If applicable, please enter your preferred salutation (e.g., Mr./Ms./Mrs./Dr./Hon.)</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#countryOfStateOrProvince"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">countryOfStateOrProvince</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#outreachFocus"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#webpageOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">webpageOf</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasSubEvent"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hasSubEvent</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#narrower"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">narrower term</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptopic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/edition"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Service"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupactivities"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A regularly offered service in support of an academic, research, or administrative function (not personal or professional service by an individual)</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Series"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/locator"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibmapping"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/oclcnum"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#preferredTitle"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">To be used as a way for individuals to override the working title populated by the HR system at any institution</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupemployment"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">If applicable, enter a preferred version of your working title here; it will replace the current working title imported from the Human Reources system. Note that if your title changes, you will have to come back and change your preferred title here.</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#workPhone"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Work phone number, with area code (and country code if outside U.S. and Canada)</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">4</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please enter your complete phone number, with country code if outside the U.S. and Canada</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#agent"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">agent</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/rights"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rights</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#subcontractsGrant"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#organizerOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organizer of</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Conference"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Webpage"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Room"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#compiledBy"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">80</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">compiled by</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#AcademicSemester"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An individual academic semester (e.g., Fall 2009) rather than the generic fall, spring, or summer semester</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#awardOrDistinction"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">15</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">awards and distinctions</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbiography"/> + <j.0:individualSortDirectionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">desc</j.0:individualSortDirectionAnnot> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkedInformationResource"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">linked information resource</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Library"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/distributor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">distributor</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#title"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/suffixName"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">90</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">If applicable, please enter your preferred name suffix (e.g., Jr./III/M.D.)</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/"> + <j.0:ontologyPrefixAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dcterms</j.0:ontologyPrefixAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#altMiddleName"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Alternative version of middle name or initial -- 1 per entry -- to assist in name disambiguation</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">25</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#editor"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#editor"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please enter 1 alternative version of this person's middle name or initial per entry</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Interview"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasAffiliate"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has affiliate</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for (primarily) unpaid affiliations not considered employment in the applicable HR system</j.0:publicDescriptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#listsCourse"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">80</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">courses</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ConferencePaper"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a paper presented at a conference; optionally collected into a Proceedings or a special Journal issue</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/interviewer"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">interviewer</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#eventWithin"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eventWithin</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkedAdvisor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">linkedAdvisor</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#locationOfEquipment"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">40</j.0:displayRankAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/performer"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">performer</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#cityOfPublication"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">55</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#Event"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An event may have actively participating agents, passive factors, products, and a location in space/time.</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An arbitrary classification of a space/time region, by a cognitive agent.</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/presents"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">presentations</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publicationStatus"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">80</j.0:displayRankAnnot> + <j.0:exampleAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">submitted, accepted, in press, out of print</j.0:exampleAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Foundation"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/upc"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#altLastName"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Alternate version or spelling of a person's last name - 1 per entry - for use in name disambiguation</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#editor"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#editor"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please enter alternate forms or spellings of this person's last name - 1 per entry; use foaf:lastName for the preferred/definitive form</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#providedBy"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">provided by</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl#product"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">product</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/shortTitle"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#MembershipActivity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Membership in a professional society or other organization</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasCoPrincipalInvestigator"> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">co-principal investigator</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Department"> + <j.0:autoLinkedToTab rdf:resource="http://vivoweb.org/ontology#tab774498032"/> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/content"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">"This property is for a plain-text rendering of the content of a Document. While the plain-text content of an entire document could be described by this property." </j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasInvestigator"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">investigator</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for investigators who are not principal investigators or co-principal investigators</j.0:publicDescriptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Exhibit"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupevents"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#compilerOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">80</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">compiler of</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#relatedInformationResource"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">15</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">related information resource</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A property to link an activity or award with a periodical, collection, blog, or online resource as the beneficiary of the activity</j.0:publicDescriptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Country"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#principalInvestigatorOn"> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">40</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">principal investigator on</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#InternationalActivity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGroupactivities"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An activity explicitly international in nature, typically involving collaboration, informal or formal agreements for ongoing overseas work, and special expertise in the international domain involved</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#endTime"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">15</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for time independent of date, as for a repeating event</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#administrativeResponsibilities"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Narrative description of administrative responsibilities such as project leadership, committee chairmanship (if not listed as professional service)</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please provide a <i>short</i> summary of your administrative responsibilities, especially as relevant to research or teaching</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#nearestGeographicLocationFor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nearestGeographicLocationFor</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Book"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#adviseeInAdvisingRelationship"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:forceStubDeletionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:forceStubDeletionAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">advisee role</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/AudioVisualDocument"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/translator"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#collegeOrSchoolWithin"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">college or school within</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#UndergraduateStudent"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#IndependentResearchInstitute"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An institute or center operating independenty rather than within a University, Government Agency, Foundation, or Corporation</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#geographicFocusOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">geographic focus of</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#serviceProvidedBy"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoutreach"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#NGO"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#InformationResource"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/sici"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibobscure"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/editorList"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">21</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#distributesFundingFrom"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">distributes funding from</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Indicate the source of flow-through funding, as for a subcontract.</j.0:publicDescriptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ActivityDescription"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A generic class encompassing several types of activities frequently reported on CVs or in annual reporting systems</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkAnchorText"> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplinks"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#administeredBy"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">administered by</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#positionInOrganization"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">15</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">involves employer</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupemployment"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#activityRelatedOrganization"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">15</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">21</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">relevant organization</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Journal"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#onlineContentFrom"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">online content from</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/relation"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">relation</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasDivision"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">29</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has division</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressLine3"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#overview"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A single XML literal, optionally including XHTML formatting, used as a short bio or overview statement for a person or organization.</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please enter a short narrative summary to be used as a single overview statement in directory listing and other settings where more detailed information will not be includ</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#startYearMonth"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#nameVariantFor"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#degreeAbbrev"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">11</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/contributor"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">contributor</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#degreeGrantingOrganization"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">31</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">degree granting organization</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#endYear"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">6</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Enter only a 4-digit year</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Authorship"> + <j.0:customShortViewAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">authorshipShortView.jsp</j.0:customShortViewAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#informationResourceInAuthorship"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">false</j.0:selectFromExistingAnnot> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has author entry</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:objectIndividualSortProperty rdf:resource="http://vivoweb.org/ontology/core#authorRank"/> + <j.0:forceStubDeletionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:forceStubDeletionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/NET/c4dm/event.owl"> + <j.0:ontologyPrefixAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">event</j.0:ontologyPrefixAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#filingDate"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">40</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#sourceVocabularyReference"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sourceVocabularyReference</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplinks"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#StateOrProvince"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/lastName"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The preferred or most likely correct version of the last name of a person; use altLastName for other possible versions or misspellings</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please enter your last name as you list it when submitting papers for publication.</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publisherName"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use when no Publisher resource to link to</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#associatedDegreeAward"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">associated degree</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiclocator"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Patent"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#providesFundingThrough"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">provides funding through</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#features"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/isVersionOf"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">isVersionOf</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/ThesisDegree"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The academic degree of a Thesis</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#localAwardId"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasActivityDescription"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hasActivityDescription</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#publisher"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">51</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">publisher</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#relatedGrant"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">25</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">otherProfessionalonGrant</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupresearch"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#populatedPlaceWithinStateOrProvince"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">within state or province</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasOrganizationalAffiliate"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Could perhaps be symmetric, but sometimes organizations don't see affiliations mutually</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">40</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has organizational affiliate</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/alternative"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alternative</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#stateOrProvinceOfPopulatedPlace"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">60</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has city</j.0:fullPropertyNameAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#researcherId"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A person may at any one time have more than 1 researcher id due to a change in affliation; when the conflict is resolved, the old one should be deleted, but we can't treat this as a functional property</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#GeographicLocation"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouplocations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A location having stable coordinates in geographic space</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#SchoolWithinUniversity"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasPublishedPart"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">35</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has article</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#addressLine2"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">2</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaddress"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#geographicFocus"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">geographic focus</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#courseCredits"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">50</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#ServiceLaboratory"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A lab as an organational unit, in this case offering one or more services available to those beyond its immediate membership</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasProgram"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has program</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/presentedAt"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">presentedAt</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupsupplemental"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#postalCodeLocationOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">postal code of</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#AcademicDegree"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef 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</j.0:shortDef> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#occursDuring"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">occurs during</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouptime"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#stateOrProvinceWithinCountry"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">70</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">stateOrProvinceWithinCountry</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGrouplocation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#advisorInAdvisingRelationship"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:forceStubDeletionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:forceStubDeletionAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">advisorInAdvisingRelationship</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#linkedAdvisee"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">20</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">linked advisee</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupoverview"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/doi"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string"><a href="http://www.doi.org/">Digital Object Identifier</a></j.0:descriptionAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">doi</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupidentifiers"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#teachesCourseSection"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">10</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">teacher of</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupteaching"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for current semester course section teaching only</j.0:publicDescriptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Hospital"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/language"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">language</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vitro.mannlib.cornell.edu/ns/vitro/0.7#additionalLink"> + <j.0:customEntryFormAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">defaultLinkForm.jsp</j.0:customEntryFormAnnot> + <j.0:forceStubDeletionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:forceStubDeletionAnnot> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">false</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#hasCollaborator"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupaffiliation"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/terms/publisher"> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">publisher</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupmapping"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#nobody"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/isVersionOf"> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">30</j.0:displayRankAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">isVersionOf</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographiconline"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://purl.org/ontology/bibo/Article"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppublications"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#programOf"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">5</j.0:displayLimitAnnot> + <j.0:fullPropertyNameAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">program of</j.0:fullPropertyNameAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:offerCreateNewOptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:offerCreateNewOptionAnnot> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:selectFromExistingAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</j.0:selectFromExistingAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#degreeStatus"> + <j.0:descriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">will use autocomplete to constrain entries</j.0:descriptionAnnot> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">12</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupadministration"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#FacultyMember"> + <j.0:autoLinkedToTab rdf:resource="http://vivoweb.org/ontology#tab576853613"/> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouppeople"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#referencedPublisherName"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">42</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inPropertyGroupAnnot rdf:resource="http://vivoweb.org/ontology#vitroPropertyGroupbibliographic"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:publicDescriptionAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use for reviews, book chapters, or publications where no separate entry (individual resource) will be created for the related publication</j.0:publicDescriptionAnnot> + </rdf:Description> + <rdf:Description rdf:about="http://vivoweb.org/ontology/core#Laboratory"> + <j.0:displayLimitAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayLimitAnnot> + <j.0:displayRankAnnot rdf:datatype="http://www.w3.org/2001/XMLSchema#int">-1</j.0:displayRankAnnot> + <j.0:hiddenFromDisplayBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:inClassGroup rdf:resource="http://vivoweb.org/ontology#vitroClassGrouporganizations"/> + <j.0:prohibitedFromUpdateBelowRoleLevelAnnot rdf:resource="http://vitro.mannlib.cornell.edu/ns/vitro/role#public"/> + <j.0:shortDef rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Laboratory as an organizational unit rather than a physical facility</j.0:shortDef> + </rdf:Description> +</rdf:RDF> diff --git a/themes/vivo-basic/css/blueprint/forms.css b/themes/vivo-basic/css/blueprint/forms.css new file mode 100644 index 00000000..00d7ce61 --- /dev/null +++ b/themes/vivo-basic/css/blueprint/forms.css @@ -0,0 +1,60 @@ +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ + +/* -------------------------------------------------------------- + + forms.css + * Sets up some default styling for forms + * Gives you classes to enhance your forms + + Usage: + * For text fields, use class .title or .text + +-------------------------------------------------------------- */ + + + +label { font-weight: bold; display: block; margin-top: .5em; } +fieldset { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; } +legend { font-weight: bold; font-size:1.2em; } + + +/* Form fields +-------------------------------------------------------------- */ + +input.text, input.title, +textarea, select { + margin:0 0; + border:1px solid #bbb; +} + +input.text:focus, input.title:focus, +textarea:focus, select:focus { + border:1px solid #666; +} + +input.text, +input.title { width: 300px; padding:5px; } +input.title { font-size:1.5em; } +/*textarea { width: 390px; height: 250px; padding:5px; }*/ +textarea { width: 90%; } + +input.button { margin: 1em 0; } + +/* Success, notice and error boxes +-------------------------------------------------------------- */ + + +/*.error,*/ +.notice, +/*.warning, */ +.success { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; display: block; } + +.error { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; } +.errorText { color: #8a1f11; margin: 0; display: block; } /* errors that aren't displayed with a box */ +.noticeText { color: #514721; margin: 0; display: block; } +.notice, +.warning { background: #FFF6BF; color: #7F7034; border-color: #FFD324; } +.success { background: #E6EFC2; color: #264409; border-color: #C6D880; } +.error a { color: #8a1f11; } +.notice a { color: #514721; } +.success a { color: #264409; } diff --git a/themes/vivo-basic/css/blueprint/grid.css b/themes/vivo-basic/css/blueprint/grid.css new file mode 100644 index 00000000..3e57ca9d --- /dev/null +++ b/themes/vivo-basic/css/blueprint/grid.css @@ -0,0 +1,213 @@ +/* -------------------------------------------------------------- + + grid.css + * Sets up an easy-to-use grid of 24 columns. + + By default, the grid is 950px wide, with 24 columns + spanning 30px, and a 10px margin between columns. + + If you need fewer or more columns, namespaces or semantic + element names, use the compressor script (lib/compress.rb) + + Note: Changes made in this file will not be applied when + using the compressor: make changes in lib/blueprint/grid.css.rb + +-------------------------------------------------------------- */ + +/* A container should group all your columns. */ +.container { + width: 950px; + margin: 0 auto; +} + +/* Use this class on any .span / container to see the grid. */ +.showgrid { background: url(src/grid.png); } + + +/* Columns +-------------------------------------------------------------- */ + +/* Sets up basic grid floating and margin. */ +.column, div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, +div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, +div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, +div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, +div.span-21, div.span-22, div.span-23, div.span-24 { + float: left; + margin-right: 10px; +} + +/* The last column in a row needs this class. */ +.last, div.last { margin-right: 0; } + +/* Use these classes to set the width of a column. */ +.span-1 { width: 30px; } +.span-2 { width: 70px; } +.span-3 { width: 110px; } +.span-4 { width: 150px; } +.span-5 { width: 190px; } +.span-6 { width: 230px; } +.span-7 { width: 270px; } +.span-8 { width: 310px; } +.span-9 { width: 350px; } +.span-10 { width: 390px; } +.span-11 { width: 430px; } +.span-12 { width: 470px; } +.span-13 { width: 510px; } +.span-14 { width: 550px; } +.span-15 { width: 590px; } +.span-16 { width: 630px; } +.span-17 { width: 670px; } +.span-18 { width: 710px; } +.span-19 { width: 750px; } +.span-20 { width: 790px; } +.span-21 { width: 830px; } +.span-22 { width: 870px; } +.span-23 { width: 910px; } +.span-24 { width: 950px; margin: 0; } + +/* Add these to a column to append empty cols. */ +.append-1 { padding-right: 40px; } +.append-2 { padding-right: 80px; } +.append-3 { padding-right: 120px; } +.append-4 { padding-right: 160px; } +.append-5 { padding-right: 200px; } +.append-6 { padding-right: 240px; } +.append-7 { padding-right: 280px; } +.append-8 { padding-right: 320px; } +.append-9 { padding-right: 360px; } +.append-10 { padding-right: 400px; } +.append-11 { padding-right: 440px; } +.append-12 { padding-right: 480px; } +.append-13 { padding-right: 520px; } +.append-14 { padding-right: 560px; } +.append-15 { padding-right: 600px; } +.append-16 { padding-right: 640px; } +.append-17 { padding-right: 680px; } +.append-18 { padding-right: 720px; } +.append-19 { padding-right: 760px; } +.append-20 { padding-right: 800px; } +.append-21 { padding-right: 840px; } +.append-22 { padding-right: 880px; } +.append-23 { padding-right: 920px; } + +/* Add these to a column to prepend empty cols. */ +.prepend-1 { padding-left: 40px; } +.prepend-2 { padding-left: 80px; } +.prepend-3 { padding-left: 120px; } +.prepend-4 { padding-left: 160px; } +.prepend-5 { padding-left: 200px; } +.prepend-6 { padding-left: 240px; } +.prepend-7 { padding-left: 280px; } +.prepend-8 { padding-left: 320px; } +.prepend-9 { padding-left: 360px; } +.prepend-10 { padding-left: 400px; } +.prepend-11 { padding-left: 440px; } +.prepend-12 { padding-left: 480px; } +.prepend-13 { padding-left: 520px; } +.prepend-14 { padding-left: 560px; } +.prepend-15 { padding-left: 600px; } +.prepend-16 { padding-left: 640px; } +.prepend-17 { padding-left: 680px; } +.prepend-18 { padding-left: 720px; } +.prepend-19 { padding-left: 760px; } +.prepend-20 { padding-left: 800px; } +.prepend-21 { padding-left: 840px; } +.prepend-22 { padding-left: 880px; } +.prepend-23 { padding-left: 920px; } + + +/* Border on right hand side of a column. */ +div.border { + padding-right: 4px; + margin-right: 5px; + border-right: 1px solid #eee; +} + +/* Border with more whitespace, spans one column. */ +div.colborder { + padding-right: 24px; + margin-right: 25px; + border-right: 1px solid #eee; +} + + +/* Use these classes on an element to push it into the + next column, or to pull it into the previous column. */ + +.pull-1 { margin-left: -40px; } +.pull-2 { margin-left: -80px; } +.pull-3 { margin-left: -120px; } +.pull-4 { margin-left: -160px; } +.pull-5 { margin-left: -200px; } + +.pull-1, .pull-2, .pull-3, .pull-4, .pull-5 { + float:left; + position:relative; +} + +.push-1 { margin: 0 -40px 1.5em 40px; } +.push-2 { margin: 0 -80px 1.5em 80px; } +.push-3 { margin: 0 -120px 1.5em 120px; } +.push-4 { margin: 0 -160px 1.5em 160px; } +.push-5 { margin: 0 -200px 1.5em 200px; } + +.push-1, .push-2, .push-3, .push-4, .push-5 { + float: right; + position:relative; +} + + +/* Misc classes and elements +-------------------------------------------------------------- */ + +/* In case you need to add a gutter above/below an element */ +.prepend-top { + margin-top:1.5em; +} +.append-bottom { + margin-bottom:1.5em; +} + +/* Use a .box to create a padded box inside a column. */ +.box { + padding: 1.5em; + margin-bottom: 1.5em; + background: #E5ECF9; +} + +/* Use this to create a horizontal ruler across a column. */ +hr { + background: #ddd; + color: #ddd; + clear: both; + float: none; + width: 100%; + height: .1em; + margin: 0 0 1.45em; + border: none; +} +hr.space { + background: #fff; + color: #fff; +} + + +/* Clearing floats without extra markup + Based on How To Clear Floats Without Structural Markup by PiE + [http://www.positioniseverything.net/easyclearing.html] */ + +.clearfix:after, .container:after { + content: "\0020"; + display: block; + height: 0; + clear: both; + visibility: hidden; + overflow:hidden; +} +.clearfix, .container {display: block;} + +/* Regular clearing + apply to column that should drop below previous ones. */ + +.clear { clear:both; } diff --git a/themes/vivo-basic/css/blueprint/ie.css b/themes/vivo-basic/css/blueprint/ie.css new file mode 100644 index 00000000..7c5483b3 --- /dev/null +++ b/themes/vivo-basic/css/blueprint/ie.css @@ -0,0 +1,82 @@ +/* -------------------------------------------------------------- + + ie.css + + Contains every hack for Internet Explorer, + so that our core files stay sweet and nimble. + +-------------------------------------------------------------- */ + +/* Make sure the layout is centered in IE5 */ +body { text-align: center; } +.container { text-align: left; } + +/* Fixes IE margin bugs */ +* html .column, * html div.span-1, * html div.span-2, +* html div.span-3, * html div.span-4, * html div.span-5, +* html div.span-6, * html div.span-7, * html div.span-8, +* html div.span-9, * html div.span-10, * html div.span-11, +* html div.span-12, * html div.span-13, * html div.span-14, +* html div.span-15, * html div.span-16, * html div.span-17, +* html div.span-18, * html div.span-19, * html div.span-20, +* html div.span-21, * html div.span-22, * html div.span-23, +* html div.span-24 { overflow-x: hidden; } + + +/* Elements +-------------------------------------------------------------- */ + +/* Fixes incorrect styling of legend in IE6. */ +* html legend { margin:0px -8px 16px 0; padding:0; } + +/* Fixes incorrect placement of ol numbers in IE6/7. */ +ol { margin-left:2em; } + +/* Fixes wrong line-height on sup/sub in IE. */ +sup { vertical-align: text-top; } +sub { vertical-align: text-bottom; } + +/* Fixes IE7 missing wrapping of code elements. */ +html>body p code { *white-space: normal; } + +/* IE 6&7 has problems with setting proper <hr> margins. */ +hr { margin: -8px auto 11px; } + + +/* Clearing +-------------------------------------------------------------- */ + +/* Makes clearfix actually work in IE */ +.clearfix, .container {display: inline-block;} +* html .clearfix, +* html .container {height: 1%;} + +/* Fix for peekaboo bug in IE7 and IE6 detailed at http://www.zeldman.com/2006/10/27/ie7fixes1/ */ +html #content { height: 1%; } + +/* Forms +-------------------------------------------------------------- */ + +/* Fixes padding on fieldset */ +fieldset {padding-top: 0;} + +/* Fixing lack of support for :hover on plus/minus toggle controls */ +* html div.navlinkblock div.extraEntities { + display: block; +} + +/* Fixing incorrect negative margins for bars that contain property names */ +* html .propertyName { + margin-left: -6px; +} + +/* IE6 doesn't support hover, so we're forcing edit links to remain visible */ +* html span.editLinks, +* html em.nonEditable { + display: inline; + padding-right: 4px; +} + +/* IE6 having trouble with the margins/padding on the admin panels */ +/** html div.top { padding: 7px 0 1px 0; }*/ +/** html div.bottom { padding: 1px 12px 16px 12px; }*/ diff --git a/themes/vivo-basic/css/blueprint/liquid.css b/themes/vivo-basic/css/blueprint/liquid.css new file mode 100644 index 00000000..f71fd5d8 --- /dev/null +++ b/themes/vivo-basic/css/blueprint/liquid.css @@ -0,0 +1,217 @@ +/* -------------------------------------------------------------- + + liquid.css + * Sets up an easy-to-use grid of 24 columns that stretch + to the window width or can also be fixed width. + + Liquid grid work by: + * Ben Listwon + * David Bedingfield + * Andrei Michael Herasimchuk + Involution Studios, http://www.involutionstudios.com + + ----- + + grid.css + * Sets up an easy-to-use grid of 24 columns. + + Based on work by: + * Nathan Borror [playgroundblues.com] + * Jeff Croft [jeffcroft.com] + * Christian Metts [mintchaos.com] + * Khoi Vinh [subtraction.com] + + ----- + + By default, the grid is 80% of window width, with 24 columns. + + To make the grid fixed, simply change the .container width + property to a pixel value. e.g., 960px. + +-------------------------------------------------------------- */ + +/* A container should group your entire grid. */ +.container { +/* min-width: 950px;*/ + min-width: 700px; +/* width: 80%;*/ + width: 90%; /* mw542 (9-1-2009): body now has padding to preserve space for edit controls */ + margin: 0 auto; +/* overflow: hidden;*/ +} + +/* A block should group all your columns per row stack. */ +.block {overflow: hidden;} + + +/* Columns +-------------------------------------------------------------- */ + +/* Use this class together with the .span-x classes + to create any composition of columns in a layout. */ +.column {float: left;} + +/* The last column in a row needs this class. */ +.last { margin-right: 0; } + +/* Use these classes to set the width of a column. */ +.span-1 { width: 4%; } +.span-2 { width: 8%; } +.span-3 { width: 12%; } +.span-4 { width: 16%; } +.span-5 { width: 20%; } +.span-6 { width: 25%; } +.span-7 { width: 29%; } +.span-8 { width: 33%; } +.span-9 { width: 37%; } +.span-10 { width: 41%; } +.span-11 { width: 45%; } +.span-12 { width: 50%; } +.span-13 { width: 54%; } +.span-14 { width: 58%; } +.span-15 { width: 62%; } +.span-16 { width: 66%; } +.span-17 { width: 70%; } +.span-18 { width: 75%; } +.span-19 { width: 79%; } +.span-20 { width: 83%; } +.span-21 { width: 87%; } +.span-22 { width: 91%; } +.span-23 { width: 95%; } +.span-24 { width: 100%; margin-right: 0; } + +.span-1>div, .span-2>div, .span-3>div, .span-4>div, +.span-5>div, .span-6>div, .span-7>div, .span-8>div, +.span-9>div, .span-10>div, .span-11>div, .span-12>div, +.span-13>div, .span-14>div, .span-15>div, .span-16>div, +.span-17>div, .span-18>div, .span-19>div, .span-20>div, +.span-21>div, .span-22>div, .span-23>div, .span-24>div { + margin: 0 0.833em 0 0; +/* overflow: hidden;*/ +} + +/* Add these to a column to append empty cols. */ +.append-1 { padding-right: 4%; } +.append-2 { padding-right: 8%; } +.append-3 { padding-right: 12%; } +.append-4 { padding-right: 16%; } +.append-5 { padding-right: 20%; } +.append-6 { padding-right: 25%; } +.append-7 { padding-right: 29%; } +.append-8 { padding-right: 33%; } +.append-9 { padding-right: 37%; } +.append-10 { padding-right: 41%; } +.append-11 { padding-right: 45%; } +.append-12 { padding-right: 50%; } +.append-13 { padding-right: 54%; } +.append-14 { padding-right: 58%; } +.append-15 { padding-right: 62%; } +.append-16 { padding-right: 66%; } +.append-17 { padding-right: 70%; } +.append-18 { padding-right: 75%; } +.append-19 { padding-right: 79%; } +.append-20 { padding-right: 83%; } +.append-21 { padding-right: 87%; } +.append-22 { padding-right: 91%; } +.append-23 { padding-right: 95%; } + +/* Add these to a column to prepend empty cols. */ +.prepend-1 { padding-left: 4%; } +.prepend-2 { padding-left: 8%; } +.prepend-3 { padding-left: 12%; } +.prepend-4 { padding-left: 16%; } +.prepend-5 { padding-left: 20%; } +.prepend-6 { padding-left: 25%; } +.prepend-7 { padding-left: 29%; } +.prepend-8 { padding-left: 33%; } +.prepend-9 { padding-left: 37%; } +.prepend-10 { padding-left: 41%; } +.prepend-11 { padding-left: 45%; } +.prepend-12 { padding-left: 50%; } +.prepend-13 { padding-left: 54%; } +.prepend-14 { padding-left: 58%; } +.prepend-15 { padding-left: 62%; } +.prepend-16 { padding-left: 66%; } +.prepend-17 { padding-left: 70%; } +.prepend-18 { padding-left: 75%; } +.prepend-19 { padding-left: 79%; } +.prepend-20 { padding-left: 83%; } +.prepend-21 { padding-left: 87%; } +.prepend-22 { padding-left: 91%; } +.prepend-23 { padding-left: 95%; } + + +/* Border on right hand side of a column. */ +.border { + border-right: 1px solid #eee; +} + +/* Border with more whitespace, spans one column. */ +.colborder { + padding-right: 2%; + margin-right: 2%; + border-right: 1px solid #eee; +} + +.colborder>div { + margin: 0; +} + + +/* Use these classes on an element to push it into the + next column, or to pull it into the previous column. */ + +.pull-1 { margin-left: -3.333em; } +.pull-2 { margin-left: -6.666em; } +.pull-3 { margin-left: -10em; } +.pull-4 { margin-left: -13.333em; } + +.push-0 { margin: 0 0 0 1.5em; } +.push-1 { margin: 0 -3.333em 0 1.5em; } +.push-2 { margin: 0 -6.666em 0 1.5em; } +.push-3 { margin: 0 -10em 0 1.5em; } +.push-4 { margin: 0 -13.333em 0 1.5em; } +.push-0, .push-1, .push-2, .push-3, .push-4 { float: right; } + + +/* Misc classes and elements +-------------------------------------------------------------- */ + +/* Use a .box to create a padded box inside a column. */ +.box { + padding: 1.5em; + margin-bottom: 1.5em; + background: #eee; +} + +/* Use this to create a horizontal ruler across a column. */ +hr { + background: #ddd; + color: #ddd; + width: 100%; + height: 0.083em; + margin: 0 0 1.583em; + border: none; +} + +hr.space { + background: #fff; + color: #fff; +} + +hr.clear { + color: #fff; + background: #fff; + border: 0; + height: 0; + margin: 0; + padding: 0; +} + +hr.hidden { + display: none; +} + +.clear { + clear: both; +} \ No newline at end of file diff --git a/themes/vivo-basic/css/blueprint/reset.css b/themes/vivo-basic/css/blueprint/reset.css new file mode 100644 index 00000000..f187d7e6 --- /dev/null +++ b/themes/vivo-basic/css/blueprint/reset.css @@ -0,0 +1,42 @@ +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ + +/* -------------------------------------------------------------- + + reset.css + * Resets default browser CSS. + +-------------------------------------------------------------- */ + +html, body, div, span, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, code, +del, dfn, em, img, q, dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td { + margin: 0; + padding: 0; + border: 0; + font-weight: inherit; + font-style: inherit; + font-size: 100%; + font-family: inherit; + vertical-align: baseline; +} + +body { + line-height: 1.5; +} + +/* Tables still need 'cellspacing="0"' in the markup. */ +table { border-collapse: separate; border-spacing: 0; } +caption, th, td { text-align: left; font-weight: normal; } +/*table, td, th { vertical-align: middle; }*/ +table, td, th { vertical-align: top; } + + +/* Remove possible quote marks (") from <q>, <blockquote>. */ +blockquote:before, blockquote:after, q:before, q:after { content: ""; } +blockquote, q { quotes: "" ""; } + +/* Remove annoying border on linked images. */ +a img { border: none; } diff --git a/themes/vivo-basic/css/blueprint/typography.css b/themes/vivo-basic/css/blueprint/typography.css new file mode 100644 index 00000000..02284799 --- /dev/null +++ b/themes/vivo-basic/css/blueprint/typography.css @@ -0,0 +1,116 @@ +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ + +/* -------------------------------------------------------------- + + typography.css + * Sets up some sensible default typography. + +-------------------------------------------------------------- */ + +/* Default font settings. + The font-size percentage is of 16px. (0.75 * 16px = 12px) */ +body { + font-size: 75%; + color: #222; + background: #fff; +/* font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;*/ + font-family: Arial, Helvetica, sans-serif; +} + +/* Headings +-------------------------------------------------------------- */ + +h1,h2,h3,h4,h5,h6 { font-weight: normal; font-weight: bold; color: #111; } + +/*h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; } +h2 { font-size: 2em; margin-bottom: 0.75em; } +h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; } +h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; } +h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; } +h6 { font-size: 1em; font-weight: bold; }*/ + +h1 { font-size: 2em; margin-bottom: 0.75em; } +h2 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; } +h3 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; } +h4 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; } +h5 { font-size: 1em; font-weight: bold; } +h6 { font-size: 1em; font-weight: bold; } + + +h1 img, h2 img, h3 img, +h4 img, h5 img, h6 img { + margin: 0; +} + + +/* Text elements +-------------------------------------------------------------- */ + +p { margin: 0 0 1.5em; } +p img.left { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; } +p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; } + +a:focus, +a:hover { color: #000; } +/*a { color: #009; text-decoration: underline; }*/ +a { color: #467ab3; text-decoration: underline; } + +blockquote { margin: 1.5em; color: #666; font-style: italic; } +strong { font-weight: bold; } +em,dfn { font-style: italic; } +dfn { font-weight: bold; } +sup, sub { line-height: 0; } + +abbr, +acronym { border-bottom: 1px dotted #666; } +address { margin: 0 0 1.5em; font-style: italic; } +del { color:#666; } + +pre { margin: 1.5em 0; white-space: pre; } +pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; } + + +/* Lists +-------------------------------------------------------------- */ + +li ul, +li ol { margin:0 1.5em; } +ul, ol { margin: 0 1.5em 1.5em 1.5em; } + +ul { list-style-type: disc; } +ol { list-style-type: decimal; } + +dl { margin: 0 0 1.5em 0; } +dl dt { font-weight: bold; } +dd { margin-left: 1.5em;} + + +/* Tables +-------------------------------------------------------------- */ + +table { margin-bottom: 1.4em; width:100%; } +th { font-weight: bold; } +thead th { background: #c3d9ff; } +th,td,caption { padding: 4px 10px 4px 5px; } +tr.even td { background: #e5ecf9; } +tfoot { font-style: italic; } +caption { background: #eee; } + + +/* Misc classes +-------------------------------------------------------------- */ + +.small { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; } +.large { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; } +.hide { display: none; } + +.quiet { color: #666; } +.loud { color: #000; } +.highlight { background:#ff0; } +.added { background:#060; color: #fff; } +.removed { background:#900; color: #fff; } + +.first { margin-left:0; padding-left:0; } +.last { margin-right:0; padding-right:0; } +.top { margin-top:0; padding-top:0; } +.bottom { margin-bottom:0; padding-bottom:0; } diff --git a/themes/vivo-basic/css/edit.css b/themes/vivo-basic/css/edit.css new file mode 100644 index 00000000..c7984725 --- /dev/null +++ b/themes/vivo-basic/css/edit.css @@ -0,0 +1,342 @@ +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ + +/******************* styles copied from old global.css.jsp ********************************/ + +.buttonForm { + margin-top : 0; + margin-bottom : 0; + margin-right : 0; + margin-left : 0.5em; + padding-bottom : 0.5em; + color : #444444; + font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; + line-height : 16px; + min-height : 100px; + display : inline; +} + +.editingForm { + margin-top : 0; + margin-bottom : 0; + margin-right : 0; + margin-left : 0; + padding-bottom : 1em; + color : #444444; + font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; + line-height : 16px; + background-color : #eee; /* cals+vivo themes were: #dddddd; */ + min-height : 100px; + font-size : 0.9em; +} + +.editingForm table { + text-align : left; + border-width : 1px; + border-style : solid; + border-color : black; + border-collapse:separate; +} + +.editingForm td{ + padding: 2px 2px 2px 2px; + font-size : 1em; +} + +td.verticalfieldlabel { + font-size : 11px; + line-height : 13px; +} + +.editingForm .entryFormHead { + text-align : center; + padding : 0.2em; + background-color: #f8f8c8; + border-width : 1px; + border-style : solid; + border-color : black; +} + +.editingForm .entryFormHead h2{ + margin : 0.1em; + padding : 0em; + font-size: 1.4em; + color : black; +} + +.editingForm .entryFormHead h3{ + margin : 0.1em; + padding : 0em; + font-size : 1.2em; + font-weight: 600; /* cals theme was: 650 */ + color : red; +} + +.editingForm .entryFormHead .entryFormHeadInstructions { + margin : 0em; + padding : 0em; + font-size : 0.8em; +} + +.editingForm .form-item { + background-color: #FAFAD2; + border-color : #2E440C; + font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; + font-size : 10px; + border-width : 1px; +} + +.editingForm .form-button { + background-color: #ccf; + border-color : #ccf; + font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; + font-size : 1em; + border-width : 1px; + margin-top : 2px; + width : auto; + overflow : visible; +} + +tr.form-row-even { + background-color : #e9f0ff; + border-color : #eec; + font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; + font-size : 10px; + border-width : 1px; + margin-top : 2px; +} + +tr.form-row-odd { + background-color : #e9f9ff; + border-color : #eec; + font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; + font-size : 10px; + border-width : 1px; + margin-top : 2px; +} + +.form-editingRow { + background-color: #ff9; + border-color : #eec; + font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; + font-size : 10px; + border-width : 1px; + margin-top : 2px; +} + +/* DWR apparently no longer used +.form-subEditingRow { + background-color : #ffb; + border-color : #eec; + font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; + font-size: 10px; + border-width : 1px; + margin-top : 2px; +} */ + +table.form-background td { + padding-left : 1em; + padding-right : 1em; +} + +table.form-background td form { + padding : 0.2em; +} + +.form-background { + background-color : #C8D8F8; + border-color : #CCCCFF; + font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; + font-size : 10px; + border-width : 1px; + margin-top : 2px; +} + +.form-background.vclass { + background-color : #E05550; +} + +.form-background.property { + background-color : #A8F0A0; +} + + +.form-table-head { + background-color: #ccf; + border-color : #eec; + font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; + font-size : 10px; + border-width : 1px; + margin-top : 2px; +} + +.navlinkblock { + color : black; /*#4B0082;*/ + font-family : Verdana,Arial, Helvetica, sans-serif; + font-size : 10px; + font-weight : normal; + margin-top : 1px; + margin-bottom : 1px; + padding-top : 1px; + padding-bottom : 4px; +} + +td.editformcell { + font-size: 9px; +} + +td.editformcell select { + margin: 0; +} + +.header { + background-color: #B0C4DE; + color : black; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + text-align : left; +} +.database_header { + background-color: #B0C4DE; + color : black; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + text-align : left; +} + +.database_upperleftcorner { + background-color: #B0C4DE; + color : black; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + text-align : left; +} + +.database_upperleftcenter { + background-color: #B0C4DE; + color : black; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + text-align : center; +} + +.rownumheader { + background-color: #B0C4DE; + color : black; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + text-align : center; +} + + +.headercenter { + background-color: #9370DB; + color : black; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + text-align : center; +} + +.postheader { + background-color: #E6E6FA; + color : #777777; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + text-align : left; +} + +.database_postheader { + background-color: #E6E6FA; + color : #777777; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + text-align : left; +} + +.postheadercenter { + background-color: #E6E6FA; + color : #4682B4; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + text-align : center; +} + +.postheaderright { + background-color: #E6E6FA; + color : #4682B4; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + text-align : right; +} + +.verticalfieldlabel { + background-color: #DEDEDF; + color : black; + font-family : Verdana, Arial, Helvetica, sans-serif; + font-size : 8pt; + font-style : normal; + text-align : right; + vertical-align : top; +} + +.row, .rowvert { + background-color: #F0FFFF; + color : black; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + text-align : left; +} + +.rowalternate { + background-color: #F8F8FF; + color : black; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + text-align : left; +} + +.rowbold { + background-color: #FFFAFA; + color : black; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + font-weight : bold; + text-align : left; +} + +.rownum { + background-color: #87CEFA; + color : black; + font-family : Arial, Helvetica, sans-serif; + font-size : 10pt; + font-style : normal; + text-align : center; +} + +span.entityRelationsSpan { + padding-top : 4px; + margin : 0 0 0 1em; + font-weight : bold; + font-size : 90%; + color : #2E440C; + text-align : center; +} + + +/* Temporary hack to remove stuff from forms in vivoweb only */ +.hideFromVivoWeb { + display: none; + height: 0; +} diff --git a/themes/vivo-basic/css/entity.css b/themes/vivo-basic/css/entity.css new file mode 100644 index 00000000..fe31890b --- /dev/null +++ b/themes/vivo-basic/css/entity.css @@ -0,0 +1,10 @@ +/************************************************* + vivo-basic theme: entity page styles + + This document is included by EntityController + + Original version + 2009-05-05 mw542 +**************************************************/ + +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ \ No newline at end of file diff --git a/themes/vivo-basic/css/formedit.css b/themes/vivo-basic/css/formedit.css new file mode 100644 index 00000000..fd931111 --- /dev/null +++ b/themes/vivo-basic/css/formedit.css @@ -0,0 +1,59 @@ +/************************************************* + vivo-basic theme: editing form styles + + This document is included by formPrefix.jsp + +**************************************************/ + +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ + +form { + padding-bottom: 20px; +} + +.form p { + margin-bottom:0.5em; +} + +form textarea { + width: 60%; +} + +form a:link.cancel, form a:visited.cancel { + color: #f00; + border-color: #f00; +} + +form select option{ + padding-right: 5px; +} + +form a:hover.cancel { + color: #fff; + background: #f00; +} + +form dl { + margin-bottom: 20px; +} + +form dl dt, form dl dd { + padding-top: 15px; +} + +.validationError { + font-weight:bold; + color:red; +} + +.inlineForm input { + display:inline; +} + +.inlineForm label { + display:inline; +} + +p.submit { + margin-top: 1em; +} diff --git a/themes/vivo-basic/css/institution.css b/themes/vivo-basic/css/institution.css new file mode 100644 index 00000000..4ce22f09 --- /dev/null +++ b/themes/vivo-basic/css/institution.css @@ -0,0 +1,23 @@ +/**************************************** + vivo-basic theme: institutional identity + + Original version + 2009-01-27 nac26 +*****************************************/ + +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ + + +/********************************************************************************** + Add styles for institutional identity here. + Be sure to place all of your content in <div id="institution"> found in themes/vivo-basic/jsp/identity.jsp on line 77. + + See our online documentation for more info: + http://vivoweb.org/support/user-guide/theme-modifications +**********************************************************************************/ + + +/**************** +Institution +****************/ +div#institution { position: relative; } \ No newline at end of file diff --git a/themes/vivo-basic/css/print.css b/themes/vivo-basic/css/print.css new file mode 100644 index 00000000..f6484e86 --- /dev/null +++ b/themes/vivo-basic/css/print.css @@ -0,0 +1,76 @@ +/**************************************** + vivo-basic theme: print styles + + Original version + 2009-04-30 mw542 +*****************************************/ + +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ + +body { + line-height: 1.3; + font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; + color:#000; + background: none; + font-size: 10pt; +} + + +/************************ +Hide unnecessary stuff +************************/ + + +div#header, +div#footer, +div#cu-identity, +div#dashboard, +span.entityMoreSpan { + display: none !important; +} + +div.admin, a.edit, a.delete, a.add, a.backToTop { + display: none !important; +} + +div.empty { + display: none !important; +} + +/************************ +Show hidden content +************************/ + +div.extraEntities { + display: block !important; /* statements that are normally hidden by togglers */ +} + + +/************************ +Headings and Text +************************/ + +h1{font-size:20pt;} +h2{font-size:16pt;} +h3{font-size:14pt;} +h4,h5,h6{font-size:12pt;} + +h1,h2,h3,h4,h5,h6 { font-family: "Helvetica Neue", Arial, "Lucida Grande", sans-serif; clear: left; } + +h3.propertyName { + font-size: 12pt; +} + + +/************************ +Links and images +************************/ + +a:link, a:visited { + background: transparent; + font-weight:700; + text-decoration: underline; +} + +img { clear: left; float:left; margin:0 1.5em 1.5em 0; } +a img { border:none; } diff --git a/themes/vivo-basic/css/screen.css b/themes/vivo-basic/css/screen.css new file mode 100644 index 00000000..368fd512 --- /dev/null +++ b/themes/vivo-basic/css/screen.css @@ -0,0 +1,649 @@ +/**************************************** + vivo-basic theme: screen styles + + Original version + 2009-04-30 mw542 +*****************************************/ + +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ + +@import url("blueprint/reset.css"); +@import url("blueprint/forms.css"); +@import url("blueprint/typography.css"); +@import url("blueprint/liquid.css"); +@import url("blueprint/ie.css"); +@import url("institution.css"); + +body { + position: relative; + background: #596673; +/* background: #737373;*/ + padding: 0 4em; +} + +#wrap { background: #fff; } + +#contentwrap { + padding: 24px 20px; + background: #D9D9D9; +} + +#content { + padding: 16px 12px; + background: #fff; + font-size: 108.33%; /* bumping up content text from 12px to 13px */ +} + +#footer { + color: #e5e5e5; + background: #3d454e; +/* background: #4e4e4e;*/ + padding: 16px 20px 40px 20px; + text-align: right; + clear: both; +} + +/**************** +Global classes +****************/ + +ul.clean { margin-left: 0; } +ul.clean li { list-style-type: none; } + + +/**************** +Identity +****************/ + +div#identity { position: relative; } + +#identity h1 { +/* position: absolute; + top: 33px; + left: 10px;*/ + padding-top: 25px; + margin-left: 20px; + margin-bottom: 5px; + width: 141px; + height: 43px; + text-indent: -9999px; + background: url(../site_icons/vivo_logo.gif) bottom left no-repeat; +} + +#identity h1 a { + width: 141px; + height: 43px; + display: block; + overflow: hidden; /* hide the extended outline in firefox */ +/* background: url(images/layout/transparent.gif) top left no-repeat;*/ + /* for some reason IE7 needs a background to make this link clickable */ +} + +#identity em { + position: absolute; + top: 32px; + left: 167px; + color: #212d35; + font-style: normal; + font-size: 1.17em; +} + +ul#otherMenu { + position: absolute; + margin: 0; + top: 3px; + right: 20px; +} + +ul#otherMenu li { + display: inline; + margin-left: 4px; +} + +ul#otherMenu li.border { + padding-right: 4px; + border-right: 1px solid #ccc; +} + + +/************************ +Navigation and Search +************************/ + +div#navAndSearch { + position: relative; + background: #212d34; +/* background: #7d8b99;*/ + border-top: 3px solid #3d454e; +/* border-top: 3px solid #4e4e4e;*/ + padding-left: 20px; +/* padding-right: 300px;*/ + padding-right: 22em; + padding-top: 8px; + padding-bottom: 8px; + height: 1%; +} + +div#secondaryTabMenu { display: none; } + +select#search-form-modifier, +#searchForm label { display: none; } + +div#searchBlock { + width: 19em; + height: 100%; + text-align: right; + padding: 0 20px 0 10px !important; /* fix for IE6 */ + padding: 10px 20px; + position: absolute; + top: 0; + right: 0; + background: #3d454e; +/* background: #4e4e4e;*/ +} + +#searchForm { margin-top: 10px; } + +#navAndSearch ul { + margin: 0; + padding: 0; +} + +#navAndSearch li { + list-style-type: none; + margin: 1px; +} + +#navAndSearch li a { + display: block; + color: #fff; + text-decoration: none; +} + +#navAndSearch li a:hover { + color: #000; + background: #fff; +} + +#navAndSearch li a.activePrimaryTab, +#navAndSearch li a.activeTab { + color: #000; + background: #fff; + font-weight: bold; +} + +ul#primary, +ul#primary li, +ul#index, +ul#index li { + float:left; +} + +ul#primary li a, +ul#index li a { padding: 5px 12px; } + + +div#breadcrumbs { + color: #aaa; + clear: left; + background: #D9D9D9; + padding: 16px 20px 0 20px; + margin-bottom: -18px; + display: none; +} + +div#breadcrumbs a { color: #888; } + +div#breadcrumbs a:hover { color: #000; } + + +/************************ +Individual Pages +************************/ + +div#label { margin-bottom: 1.5em; } + +#label h2, +#label h3 { + display: inline; + padding-right: 6px; +} + +em.moniker { color: #9c9c9c; } + +ul.externalLinks { margin: 0 0 1.5em 0; } + +ul.externalLinks li { + list-style-type: none; + display: inline; + padding-right: .5em; + padding-left: .8em; + border-left: 1px solid #ddd; +} + +ul.externalLinks li.primary, +ul.externalLinks li.first { + padding-left: 0; + border: 0; +} + +ul.externalLinks a { color: #84a655; } /* green links */ + +ul.externalLinks a:hover, +ul.externalLinks a:active, +a.externalLink:hover, +a.externalLink:active { + color: #000; +} + +a.externalLink { color: #84a655; } + +div.description { margin-bottom: 1.5em; } + +.propertyName { + font-size: 1em; + line-height: 1em; + color: #666; + background: #ebebeb; + border-right: 1px solid #fff; + margin-left: -12px; +/* margin-bottom: .75em;*/ + padding: 4px 12px; + float: left; +} + +.propsItem, +.datatypeProperties, +.properties { + clear: left; +} + +.propsItem { padding: 1em 0; } + +.propsItem a { font-weight: bold; } + +.pageGroupBody { + margin-bottom: 1em; +} + +#acknowledgementText { + font-size: 90%; +} + + +/************************ +Search Results +************************/ + +.contentsBrowseGroup h2 { + margin-top: 2em; + padding-bottom: .25em; + border-bottom: 1px solid #eee; +} + +.contentsBrowseGroup h3 { + color: #666666; + font-size: 1em; + margin-bottom: 0; +} + +.contentsBrowseGroup ul { margin-left: 0; } + +.contentsBrowseGroup li { + list-style-type: none; + color: #9C9C9C; +} + +.searchTOC a { + font-weight: bold; + padding-left: 3px; +} + + +/************************ +Tabs +************************/ + +ul.tabEntities { + color: #9c9c9c; + margin: 1em 0; +} + +ul.tabEntities li { + margin-bottom: 1em; + list-style-type: none; +} + +ul.tabEntities a { font-weight: bold; } + +ul.tabEntities a.externalLink, +.entityList a.externalLink { + text-decoration: none; + font-weight: normal; +} + +div.blurb { color: #999; } + +div.blurb a { font-weight: normal; } + +/* Index and List pages */ +.siteMap ul, +.entityList ul { margin-left: 0; } + +.siteMap li { + list-style-type: none; + color: #9c9c9c; +} + +.entityList li { + list-style-type: none; + color: #9c9c9c; + margin-bottom: .5em; + } + +.siteMap li a, +.entityList li a { font-weight: bold; } + +.siteMap h2 { margin-bottom: .5em; } + +div.tab h2 { + margin: 0 -12px; + padding: 0 12px 10px 12px; + border-bottom: 5px solid #d9d9d9; +} + +.tab h3 { + color: #999; + margin-top: 1em; + padding-bottom: 3px; +} + +.tab h3 a { color: #1b4f89; } + +.tab h3 a:hover { color: #000; } + +.tab th, .tab td, .tab caption { padding-left: 0; } + +.tabBody { padding: 12px 0; } + +.tabDesc { padding-top: 16px; } + +/************************ +Footer +************************/ + +#footer a { + color: #fff; + font-weight: bold; +} + +img.footerLogo { float: left; } + +ul.otherNav { margin: 0; } + +ul.otherNav li { + display: inline; + padding: 0 6px; + border-right: 1px solid #aaa; +} + +ul.otherNav li.last { + border: 0; + padding-right: 0; +} + + +/********************************************** +Admin Panels & Controls + +the odd combinations of positioning types +are necessary for cross-browser consistency +**********************************************/ + +/*** Admin Dashboard ***/ + +#adminDashboard { + margin-top: 1em; + display: inline-block; + width: 100%; +} + +/*#adminDashboard .pageBodyGroup { + margin-top: 2em; + margin-bottom: 2em; + clear: both; +}*/ + +#adminDashboard .pageBodyGroup { + float: left; + clear: right; + width: 45%; + margin-top: 2em; + margin-bottom: 1em; + padding: 0 1em; +} + +#adminDashboard .pageBodyGroup h4 { + margin-bottom: .25em; +} + +#adminDashboard .pageBodyGroup h3 { + background-color: #efefef; + color: #000; + padding: 5px; +} + +#adminDashboard .pageBodyGroup ul { + margin: 0 0 1.5em 0; +} + +#adminDashboard .pageBodyGroup li { + list-style-type: none; +} + +#adminDashboard #verbosePropertyForm { + margin-top: 3em; +} + +#logoutPanel { + float: right; + margin-right: 4.5em; +} + +#logoutPanel input.button { + margin-left: .9em; +} + +/*** end Admin Dashboard ***/ + +div.admin { + color: #fff; + background: #aaa; + padding: 6px; + height: 1%; /* IE likes this */ + width: 100%; /* and this */ +} + +div.panelContents { + color: #777; + background: #e5e3d5; + display: none; + padding: 12px; +} + +div.top { + margin: 0 -12px; + padding: 0 24px 0 0; + position: relative; + top: -16px; + background: #e5e3d5; +} + +div.bottom { + margin: 0 -12px; + position: relative; + bottom: -16px; + padding: 6px 12px 8px 12px; +} + +.admin h3 { + font-size: 1em; + text-transform: uppercase; + font-weight: bold; + color: #ddd; + background: #aaa; + line-height: 2em; + margin: 0 !important; /* fix for IE6 */ + margin-right: -24px; + padding: 0 12px; + width: 100% !important; /* fix for IE6 */ + width: auto; +} + +.admin p { margin-bottom: .25em; } + +.admin a:link, +.admin a:visited { color: #fff; } + +.panelContents a:link, +.panelContents a:visited { color: #777; } + +.admin a:hover, +.admin a:active { color: #000; } + +#loginPanel ul { margin: 0; } + +#loginPanel li { + list-style-type: none; + margin-bottom: .5em; +} + + + + +/****************************************************************** +ENTITY LIST TOGGLES +(The little plus/minus toggles that show additional items) + +These controls are set up to use JavaScript but degrade to use +CSS :hover classes -- JavaScript can be found in controls.js + +IE6 does not support :hover so it will see everything +(hack is in ie.css) +******************************************************************/ + +span.entityMoreSpan { + display: block; + font-style: italic; + background: url(../site_icons/plus.gif) left center no-repeat; + padding-left: 14px; + margin: .5em 0; + line-height: 1em; + cursor: pointer; +} + +div.navlinkblock:hover span.entityMoreSpan, +div.navlinkblock-collapsed:hover span.entityMoreSpan, +span.entityMoreSpan:hover { + color: #8C65A1; +} + +div.navlinkblock:hover span.entityMoreSpan, +div.navlinkblock-expanded span.entityMoreSpan { + background: url(../site_icons/minus.gif) left center no-repeat; +} + + +div.navlinkblock:hover div.extraEntities, +div.navlinkblock-expanded div.extraEntities { + display: block; +} + +div.extraEntities { + display: none; +} + + +/******************************** +Frontend Edit Controls and Forms +********************************/ + +div.editingForm { background: none; } + +div.editingForm hr { display: none; } + +a.add { + float: left; + line-height: 1em; + width: 1em; + height: 1em; + padding: 4px; + background: #ebebeb url(../site_icons/plus_transparent.gif) center center no-repeat; + text-indent: -9999px; + overflow: hidden; +} + +a.add:hover { background-color: #000; } + +ul.properties { margin: 0; } + +ul.properties li { + color: #9c9c9c; + list-style-type: none; +} + +ul.properties li, +div.datatypePropertyValue, +ul.datatypePropertyValue li { + position: relative; +} + +span.editLinks, +em.nonEditable { + display: none; +} + +span.editLinks a, +em.nonEditable { font-size: 84.62%; } /* 13px down to 11px */ + +span.editLinks a { + color: #da8622; + font-weight: normal; +} + +span.editLinks a:hover { color: #000; } + +span.editLinks a.edit { padding-right: 4px; } + +span.statementWrap:hover span.editLinks, +span.statementWrap:hover em.nonEditable { + display: block; + width: 6em; + padding: 2px 0 4px 0; + position: absolute; + top: -2px; + left: -6em; + line-height: 1.5em; + background: #fff; + z-index: 10; + text-align: center; +} + +span.statementWrap:hover em.nonEditable { + padding-top: 5px; + width: 8em; + left: -8em; + font-style: normal; +} + + +/************************ +Backend forms +************************/ + +div.sparqlform label { + font-weight: normal; + display: inline; +} + + diff --git a/themes/vivo-basic/css/search.css b/themes/vivo-basic/css/search.css new file mode 100644 index 00000000..09419cba --- /dev/null +++ b/themes/vivo-basic/css/search.css @@ -0,0 +1,8 @@ +/************************************************* + vivo-basic theme: search result styles + + This document is included by EntityListController + +**************************************************/ + +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ \ No newline at end of file diff --git a/themes/vivo-basic/css/tab.css b/themes/vivo-basic/css/tab.css new file mode 100644 index 00000000..1b115ddb --- /dev/null +++ b/themes/vivo-basic/css/tab.css @@ -0,0 +1,170 @@ +/************************************************* + vivo-basic theme: tab styles + (from original Vitro theme) + + This version + 2006-06-20 bjl23 + + Original version + 2006-01-05 bdc34 +**************************************************/ + +/* $This file is distributed under the terms of the license in /doc/license.txt$ */ + +/************ header ******************/ + +#contents h2 { + background-color: rgb(197,197,163); + color:inherit; + font-weight:600; + padding-left:0.3em; + padding-top:0.5ex; + padding-bottom:0.5ex; + margin-top:0ex; + margin-left:0em; + margin-right:0em; +} + +.tab.depth1 table { + table-layout:fixed; +} + +.tab.depth2 h3 { + background-color: #F1F1D1; + color:inherit; + font-size:1em; + line-height:2ex; + font-weight: normal; + padding: 0.6ex 0.45em 0.6ex 0.45em; + margin-right:0; + margin-left:0; + margin-top:1.5ex; + margin-bottom:1.5ex; +} + +.tab.depth2 table { + table-layout:fixed; +} + +.tab.depth3 h4{ + font-weight: normal; + margin:0; + padding: 0.6ex 0.45em 0.6ex 0.45em; +} + +.tabBody { + margin-left:0.45em; + margin-right:0.45em; + /* font-size:0.9em; + line-height:135%; */ +} + +.tabBody h4{ + font-weight:bold; + text-align:center; +} + +.tabBody table{ + table-layout:auto; +} + +.tabBody img{ + margin-right:0.5em; +} + +.tabBody form{ + margin-top:0.5ex; + margin-bottom:0.5ex; +} + +.tabBody p{ + margin-top:1.4ex; + margin-bottom:1.4ex; +} + +.tabEntities { + font-size:0.9em; +} + +ul.tabEntities.entityListForTab { + padding-bottom:1ex; +} + +/******** table *******************/ + +#contents td{ + vertical-align: top; + /* font-family: "Lucida Grande",Verdana,Lucida,Arial,Helvetica,sans-serif; */ + padding:0.2em; +} + +.subtabs table{ + width: 100%; +} + +#tabContent table{ + width: 100%; +/* table-layout:fixed; */ +} + +#tabContent td { + padding:0.4em; +} + +/******** vertical layout *****/ + +ul.tabSubAsList { + list-style:disc; + margin-left:1.7em; + margin-top:0.5ex; + margin-bottom:0.5ex; + padding:0; +} + +ul.tabSubAsList li{ + /* font-size:0.85em; */ + line-height:2.2ex; + margin:0; + padding:0; +} + +.tabDesc{ + margin-left:0.45em; + line-height:2.4ex; +} + +.alphaIndex{ + margin-left:0.45em; + margin-right:0.45em; + margin-top:1em; + margin-bottom:1em; +} + +/** tab specific ***/ +/* a style can be applied to a single tab based on its tabId */ + +#tabNN{ + color:rgb(200,0,0); + background-color:rgb(0,200,200); +} + +/**************** tab entities ******************/ + +.tabEntities img { + position:relative; left:-0.2em; +} + +ul.tabEntities { + margin-top:0.2em; + margin-bottom:0.2em; + margin-left:1.7em; + padding:0; + list-style-type:none; +} + +.tabEntities li{ + padding: 0 0 0 0; + margin-top:1em; + margin-bottom:1em; + list-style-type:none; +} diff --git a/themes/vivo-basic/jsp/dashboard.jsp b/themes/vivo-basic/jsp/dashboard.jsp new file mode 100644 index 00000000..afd9a99a --- /dev/null +++ b/themes/vivo-basic/jsp/dashboard.jsp @@ -0,0 +1,59 @@ +<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%> + +<%@ page import="edu.cornell.mannlib.vitro.webapp.beans.Individual" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.beans.VClass" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.edit.n3editing.EditConfiguration" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.edit.n3editing.EditSubmission" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.filters.VitroRequestPrep" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.filters.VitroRequestPrep" %> +<%@ page import="java.util.List" %> +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> +<%@ page errorPage="/error.jsp"%> + +<c:if test="${sessionScope.loginHandler != null && + sessionScope.loginHandler.loginStatus == 'authenticated' && + sessionScope.loginHandler.loginRole >= sessionScope.loginHandler.editor}"> + <c:set var="showCuratorEdits" value="true"/> +</c:if> +<c:set var='entity' value='${requestScope.entity}'/><%/* just moving this into page scope for easy use */ %> +<c:set var='dashboardPropsListJsp' value='/dashboardPropList'/> +<c:set var='portal' value='${currentPortalId}'/> +<c:set var='portalBean' value='${currentPortal}'/> +<c:set var='imageDir' value='images' /> +<div id="dashboard"<c:if test="${showCuratorEdits}"> class="loggedIn"</c:if>> + <c:if test="${!empty entity.imageThumb}"> + <c:if test="${!empty entity.imageFile}"> + <c:url var="imageUrl" value="${imageDir}/${entity.imageFile}" /> + <a class="image" href="${imageUrl}"> + </c:if> + <c:url var="imageSrc" value='${imageDir}/${entity.imageThumb}'/> + <img class="headshot" src="<c:out value="${imageSrc}"/>" title="click to view larger image in new window" alt="" width="150"/> + <c:if test="${!empty entity.imageFile}"></a></c:if> + <c:if test="${!empty entity.citation}"><div class="citation">${entity.citation}</div></c:if> + </c:if> + + <ul class="profileLinks"> + <c:if test="${!empty entity.anchor}"> + <c:choose> + <c:when test="${!empty entity.url}"> + <c:url var="entityUrl" value="${entity.url}" /> + <li><a class="externalLink" href="<c:out value="${entityUrl}"/>">${entity.anchor}</a></li> + </c:when> + <c:otherwise><li>${entity.anchor}</li></c:otherwise> + </c:choose> + </c:if> + + <c:if test="${!empty entity.linksList }"> + <c:forEach items="${entity.linksList}" var='link'> + <c:url var="linkUrl" value="${link.url}" /> + <li><a class="externalLink" href="<c:out value="${linkUrl}"/>">${link.anchor}</a></li> + </c:forEach> + </c:if> + </ul> + <c:if test="${showCuratorEdits}"> + <c:import url="${dashboardPropsListJsp}"> + <%-- unless a value is provided, properties not assigned to a group will not appear on the dashboard --%> + <c:param name="unassignedPropsGroupName" value=""/> + </c:import> + </c:if> +</div> \ No newline at end of file diff --git a/themes/vivo-basic/jsp/footer.jsp b/themes/vivo-basic/jsp/footer.jsp new file mode 100644 index 00000000..f5024a0e --- /dev/null +++ b/themes/vivo-basic/jsp/footer.jsp @@ -0,0 +1,95 @@ +<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%> + +<%@ page language="java"%> + +<%@ page import="java.util.Calendar" %> +<%@ page import="org.apache.commons.logging.Log" %> +<%@ page import="org.apache.commons.logging.LogFactory" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.VitroRequest"%> +<%@ page import="edu.cornell.mannlib.vitro.webapp.web.*"%> +<%@ page import="edu.cornell.mannlib.vitro.webapp.beans.Portal" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.Controllers" %> + +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %><%/* this odd thing points to something in web.xml */ %> + +<jsp:useBean id="loginHandler" class="edu.cornell.mannlib.vedit.beans.LoginFormBean" scope="session" /> +<% + /** + * @version 1.00 + * @author Jon Corson-Rikert + * UPDATES: + * 2006-01-04 bdc removed <head> and <body> tags and moved from <table> to <div> + * 2005-07-07 JCR included LoginFormBean so can substitute filterbrowse for portalbrowse for authorized users + */ + + final Log log = LogFactory.getLog("edu.cornell.mannlib.vitro.web.themes.vivo-basic.footer.jsp"); + + VitroRequest vreq = new VitroRequest(request); + + Portal portal = vreq.getPortal(); + if (portal==null) { + log.error("portal from vreq.getPortal() null in themes/vivo-basic/footer.jsp"); + } + HttpSession currentSession = request.getSession(); + + boolean authorized = false; + if (loginHandler.getLoginStatus().equals("authenticated")) /* test if session is still valid */ + if (currentSession.getId().equals(loginHandler.getSessionId())) + if (request.getRemoteAddr().equals( + loginHandler.getLoginRemoteAddr())) + authorized = true; + +%> + +<c:set var="currentYear" value="<%= Calendar.getInstance().get(Calendar.YEAR) %>" /> +<c:set var='context' value="<%=vreq.getContextPath()%>" /> +<c:set var='themePath'> + <c:if test="${!empty context && context != ''}">/${context}</c:if>/<%=portal.getThemeDir()%> +</c:set> +<c:set var='themeDir'><c:out value='${themePath}' default='/themes/vivo-basic/' /></c:set> +<c:set var="currentPortal" value="<%=portal.getPortalId()%>"/> + +<div id='footer'> + + <% if (!(portal.getBannerImage() == null || portal.getBannerImage().equals(""))) + { %> + <img class="footerLogo" src="${themeDir}site_icons/<%=portal.getBannerImage()%>" alt="<%=portal.getShortHand()%>"/> + <% } %> + + <div class='footerLinks'> + <ul class="otherNav"> + <c:url var="aboutHref" value="<%= Controllers.ABOUT %>"> + <c:param name="home" value="${currentPortal}"/> + </c:url> + <c:set var="aboutHref"> + <c:out value="${aboutHref}" escapeXml="true"/> + </c:set> + + <li><a href="${aboutHref}" title="more about this web site">About</a></li> + + <c:url var="contactHref" value="/comments"> + <c:param name="home" value="${currentPortal}"/> + </c:url> + <c:set var="contactHref"> + <c:out value="${contactHref}" escapeXml="true"/> + </c:set> + <li class="last"><a href="${contactHref}" title="feedback form">Contact Us</a></li> + </ul> + + </div> + <% if (portal.getCopyrightAnchor() != null && portal.getCopyrightAnchor().length()>0) { %> + <div class='copyright'> + ©${currentYear}  + <% if (portal.getCopyrightURL() != null && portal.getCopyrightURL().length()>0) { %> + <a href="<%=portal.getCopyrightURL()%>"> + <% } %> + <%=portal.getCopyrightAnchor()%> + <% if (portal.getCopyrightURL() != null && portal.getCopyrightURL().length()>0) { %> + </a> + <% } %> + </div> + <div class='copyright'> + All Rights Reserved. <a href="termsOfUse?home=<%=portal.getPortalId()%>">Terms of Use</a> + </div> + <% } %> +</div> diff --git a/themes/vivo-basic/jsp/identity.jsp b/themes/vivo-basic/jsp/identity.jsp new file mode 100644 index 00000000..2e2ac061 --- /dev/null +++ b/themes/vivo-basic/jsp/identity.jsp @@ -0,0 +1,131 @@ +<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%> + +<%@ page language="java" %> +<%@ page errorPage="error.jsp"%> +<%@ page import="org.apache.commons.logging.Log" %> +<%@ page import="org.apache.commons.logging.LogFactory" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.web.TabMenu" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.beans.Portal" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.VitroRequest" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.web.BreadCrumbsUtil" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.dao.WebappDaoFactory" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.Controllers" %> + +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> + +<jsp:useBean id="loginHandler" class="edu.cornell.mannlib.vedit.beans.LoginFormBean" scope="session" /> + +<% + /** + * + * @version 1.00 + * @author Jon Corson-Rikert, Brian Caruso, and Brian Lowe + * + * UPDATES: + * 2009-04-20 MW542 moved search form to menu.jsp + * 2007-09-27 BJL moved VIVO and CALS-specific markup to VIVO clone + * 2006-01-31 BJL edited to remove deprecated markup + * 2005-11-06 JCR put styling on extra search selection box + * 2005-10-25 JCR changed local ALL CALS RESEARCH constant to appBean.getSharedPortalFlagNumeric() + * 2005-10-11 JCR tweaks to VIVO search label spacing in header + * 2005-09-15 JCR,BDC converted to use revised ApplicationBean and PortalBean + * 2005-08-16 JCR added CALS_IMPACT contant and modified code to use CALS display for that portal + * 2005-08-01 JCR changed ordering of other portals being displayed to displayRank instead of appName (affects SGER, CALS portals) + * 2005-07-05 JCR retrieving ONLY_CURRENT and ONLY_PUBLIC from database and setting in ApplicationBean + * 2005-06-20 JCR enabling a common CALS research portal via ALL CALS RESEARCH + * 2005-06-20 JCR removed MIN_STATUS_ID and minstatus parameter from search -- has been changed to interactive-only maxstatus parameter + * JCR 2005-06-14 : added isInitialized() test for appBean and portalBean + */ + + HttpSession currentSession = request.getSession(); + String currentSessionIdStr = currentSession.getId(); + int securityLevel = -1; + String loginName = null; + if (loginHandler.testSessionLevel(request) > -1) { + securityLevel = Integer.parseInt(loginHandler.getLoginRole()); + loginName = loginHandler.getLoginName(); + } + + final Log log = LogFactory.getLog("edu.cornell.mannlib.vitro.web.menu.jsp"); + + VitroRequest vreq = new VitroRequest(request); + Portal portal = vreq.getPortal(); + + int portalId = -1; + if (portal==null) { + log.error("Attribute 'portalBean' missing or null; portalId defaulted to 1"); + portalId=1; + } else { + portalId=portal.getPortalId(); + } + String fixedTabStr=(fixedTabStr=request.getParameter("fixed"))==null?null:fixedTabStr.equals("")?null:fixedTabStr; + +%> +<c:set var='context' value="<%=vreq.getContextPath()%>" /> +<c:set var='themePath'> + <c:if test="${!empty context && context != ''}">/${context}</c:if>/<%=portal.getThemeDir()%> +</c:set> +<c:set var='themeDir'><c:out value='${themePath}' default='/themes/vivo-basic/' /></c:set> +<c:set var="currentPortal" value="<%=portal.getPortalId()%>"/> + +<% +String homeURL = (portal.getRootBreadCrumbURL()!=null && portal.getRootBreadCrumbURL().length()>0) ? +portal.getRootBreadCrumbURL() : request.getContextPath()+"/"; +%> + +<!-- uncomment this div to place your institutional branding/identity at the top of every page +<div id="institution"> + +</div> +--> + +<div id="identity"> + + <h1><a title="Home" href="<%=homeURL%>"><%out.print(portal.getAppName());%></a></h1> + <% if (portal.getShortHand() != null) { %> + <em><%out.print(portal.getShortHand());%></em> + <% } %> + + <ul id="otherMenu"> + + <%-- A user is logged in --%> + <% if (securityLevel > 0) { %> + + <c:url var="logoutHref" value="<%= Controllers.LOGOUT_JSP %>"> + <c:param name="home" value="${currentPortal}" /> + <c:param name="loginSubmitMode" value="Log Out" /> + </c:url> + + <c:url var="siteAdminHref" value="<%= Controllers.SITE_ADMIN %>"> + <c:param name="home" value="${currentPortal}" /> + </c:url> + + <li class="border"> + Logged in as <strong><%= loginName %></strong> (<a href="${logoutHref}">Log out</a>) + </li> + + <li class="border"><a href="${siteAdminHref}" >Site Admin</a></li> + + <%-- A user is not logged in --%> + <% } else { %> + + <c:url var="loginHref" value="<%= Controllers.LOGIN %>"> + <c:param name="home" value="${currentPortal}"/> + <c:param name="login" value="block"/> + </c:url> + + <li class="border"><a title="log in to manage this site" href="${loginHref}">Log in</a></li> + <% } %> + + <c:url var="aboutHref" value="<%= Controllers.ABOUT %>"> + <c:param name="home" value="${currentPortal}"/> + </c:url> + <c:set var="aboutHref"> + <c:out value="${aboutHref}" escapeXml="true"/> + </c:set> + + <li class="border"><a href="${aboutHref}" title="more about this web site">About</a></li> + <li><a href='<c:url value="/comments"><c:param name="home" value="${currentPortal}"/></c:url>'>Contact Us</a></li> + </ul> + +</div><!-- end identity --> diff --git a/themes/vivo-basic/jsp/menu.jsp b/themes/vivo-basic/jsp/menu.jsp new file mode 100644 index 00000000..2aa7ed92 --- /dev/null +++ b/themes/vivo-basic/jsp/menu.jsp @@ -0,0 +1,146 @@ +<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%> + +<%@ page import="org.apache.commons.logging.Log" %> +<%@ page import="org.apache.commons.logging.LogFactory" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.web.TabMenu" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.beans.Portal" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.beans.ApplicationBean" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.VitroRequest" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.web.BreadCrumbsUtil" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.web.TabWebUtil" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.dao.WebappDaoFactory" %> +<%@ page import="edu.cornell.mannlib.vitro.webapp.web.PortalWebUtil" %> +<%@page import="java.util.List"%> +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> +<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> + +<jsp:useBean id="loginHandler" class="edu.cornell.mannlib.vedit.beans.LoginFormBean" scope="session" /> + +<% + /*********************************************** + Make the Tab menu list and search block + + mw542 2009-04-24 moved search from identity.jsp, updated with new code from bdc34 + bdc34 2006-01-03 created + **********************************************/ + final Log log = LogFactory.getLog("edu.cornell.mannlib.vitro.web.menu.jsp"); + + Portal portal = (Portal)request.getAttribute("portalBean"); + int portalId = -1; + if (portal==null) { + portalId=1; + } else { + portalId=portal.getPortalId(); + } + + VitroRequest vreq = new VitroRequest(request); + + List primaryTabs = vreq.getWebappDaoFactory().getTabDao().getPrimaryTabs(portalId); + request.setAttribute("primaryTabs", primaryTabs); + + int tabId = TabWebUtil.getTabIdFromRequest(vreq); + int rootId = TabWebUtil.getRootTabId(vreq); + List tabLevels = vreq.getWebappDaoFactory().getTabDao().getTabHierarcy(tabId,rootId); + request.setAttribute("tabLevels", tabLevels); + + String uri = (String)request.getAttribute("javax.servlet.forward.request_uri"); + if(uri != null){ + request.setAttribute("indexClass", uri.indexOf("browsecontroller") > 0 ? "class=\"activeTab\"" : ""); + + if ( uri.indexOf("about") > 0) { + request.setAttribute("aboutClass","class=\"activeTab\""); + } + if ( uri.indexOf("comments") > 0) { + request.setAttribute("commentsClass","class=\"activeTab\""); + } + } + + // application variables not stored in application bean + final String DEFAULT_SEARCH_METHOD = "fulltext"; + final int FILTER_SECURITY_LEVEL = 4; + final int VIVO_SEARCHBOX_SIZE = 20; + + ApplicationBean appBean = vreq.getAppBean(); + PortalWebUtil.populateSearchOptions(portal, appBean, vreq.getWebappDaoFactory().getPortalDao()); + PortalWebUtil.populateNavigationChoices(portal, request, appBean, vreq.getWebappDaoFactory().getPortalDao()); + + HttpSession currentSession = request.getSession(); + String currentSessionIdStr = currentSession.getId(); + int securityLevel = -1; + String loginName = null; + if (loginHandler.testSessionLevel(request) > -1) { + securityLevel = Integer.parseInt(loginHandler.getLoginRole()); + loginName = loginHandler.getLoginName(); + } + +%> + +<c:set var="themeDir"> + <c:out value="<%=portal.getThemeDir()%>" default="themes/vivo-basic" /> +</c:set> +<c:url var="themePath" value="/${themeDir}" /> +<c:url var="searchURL" value="/search"/> +<c:set var="currentPortal" value="<%=portal.getPortalId()%>"/> +<c:set var="rootTab" value="<%=rootId%>"/> + + +<!-- ************** START menu.jsp ************** --> +<div id="navAndSearch" class="block"> + <div id="primaryAndOther"> + <ul id="primary"> + <c:forEach items="${primaryTabs}" var="tab"> + <li> + <c:remove var="activeClass"/> + <c:if test="${param.primary==tab.tabId}"> + <c:set var="activeClass"> class="activeTab" </c:set> + </c:if> + <c:forEach items="${tabLevels}" var="subTab"> + <c:if test="${subTab==tab.tabId && subTab != rootTab}"> + <c:set var="activeClass"> class="activeTab" </c:set> + </c:if> + </c:forEach> + + <c:url var="tabHref" value="/index.jsp"><c:param name="primary" value="${tab.tabId}"/></c:url> + <a ${activeClass} href="${tabHref}"> + <c:out value="${tab.title}"/></a> + </li> + </c:forEach> + <li> + <a ${indexClass} href="<c:url value="/browsecontroller"/>" + title="list all contents by type"> + Index</a> + </li> + </ul> + + </div><!--END 'primaryAndOther'--> + + <%-- TabMenu.getSecondaryTabMenu(vreq) --%> + + + <%------------- Search Form -------------%> + <div id="searchBlock"> + <form id="searchForm" action="${searchURL}" > + <label for="search">Search </label> + <% if (securityLevel>=FILTER_SECURITY_LEVEL && appBean.isFlag1Active()) { %> + <select id="search-form-modifier" name="flag1" class="form-item" > + <option value="nofiltering" selected="selected">entire database (<%=loginName%>)</option> + <option value="${currentPortal}"><%=portal.getShortHand()%></option> + </select> + <% } else {%> + <input type="hidden" name="flag1" value="${currentPortal}" /> + <% } %> + <input type="text" name="querytext" id="search" class="search-form-item" value="<c:out value="${requestScope.querytext}"/>" size="<%=VIVO_SEARCHBOX_SIZE%>" /> + <input class="search-form-submit" name="submit" type="submit" value="Search" /> + </form> + </div> + +<%-- this div is needed for clearing floats --%> +<%-- <div class="clear"></div> --%> + +</div><!-- END 'navigation' --> +<div id="breadcrumbs" class="small"><%=BreadCrumbsUtil.getBreadCrumbsDiv(request)%></div> + + +<!-- ************************ END menu.jsp ************************ --> + + diff --git a/themes/vivo-basic/site_icons/TryIt.gif b/themes/vivo-basic/site_icons/TryIt.gif new file mode 100644 index 0000000000000000000000000000000000000000..82c817c0170e7be61038fc3bf4cce310163fdefe GIT binary patch literal 262 zcmZ?wbhEHb6lM@+IKsf-A6U6+)t;D`)IWdznwVHESh&5meoj&G<Sko{efaq0=B>w1 zpT17Z=-$5L#JO{~I=hyhIB}=4vi0J{XNL}7jE-rVGIibRHTxNG1I3>#U`ZVi39^%c zwOK)-FGbU9(#lC3TlNWlTIXb7<XX39YXmRz@uY+WHzk^n@O_Aolj>t*y`asbqvqxm zcq1tH8WV#DON2bb=?538Ss2+|Z$>To&hW`?PmP2R4>xDLk_a!Sr!bG5Gq-iQv1<PW o<w=v9r%hpGWMY{+Z~g*P4nd}+%a*S&6yTV(cHMeLT}1|K0PP!J)Bpeg literal 0 HcmV?d00001 diff --git a/themes/vivo-basic/site_icons/bomb.gif b/themes/vivo-basic/site_icons/bomb.gif new file mode 100644 index 0000000000000000000000000000000000000000..6b7ff8e222796c2607c69b4c29e19a43ace5ec6b GIT binary patch literal 19747 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 XX>V>}Y#>ZwVsCO`bZ>HLWpe;KWF1Us literal 0 HcmV?d00001 diff --git a/themes/vivo-basic/site_icons/cornell_university_library.gif b/themes/vivo-basic/site_icons/cornell_university_library.gif new file mode 100644 index 0000000000000000000000000000000000000000..1370d2a938fdb69382bf53f49bcfa548856d2b0f GIT binary patch literal 4150 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 literal 0 HcmV?d00001 diff --git a/themes/vivo-basic/site_icons/go.gif b/themes/vivo-basic/site_icons/go.gif new file mode 100644 index 0000000000000000000000000000000000000000..82c817c0170e7be61038fc3bf4cce310163fdefe GIT binary patch literal 262 zcmZ?wbhEHb6lM@+IKsf-A6U6+)t;D`)IWdznwVHESh&5meoj&G<Sko{efaq0=B>w1 zpT17Z=-$5L#JO{~I=hyhIB}=4vi0J{XNL}7jE-rVGIibRHTxNG1I3>#U`ZVi39^%c zwOK)-FGbU9(#lC3TlNWlTIXb7<XX39YXmRz@uY+WHzk^n@O_Aolj>t*y`asbqvqxm zcq1tH8WV#DON2bb=?538Ss2+|Z$>To&hW`?PmP2R4>xDLk_a!Sr!bG5Gq-iQv1<PW o<w=v9r%hpGWMY{+Z~g*P4nd}+%a*S&6yTV(cHMeLT}1|K0PP!J)Bpeg literal 0 HcmV?d00001 diff --git a/themes/vivo-basic/site_icons/mail.gif b/themes/vivo-basic/site_icons/mail.gif new file mode 100644 index 0000000000000000000000000000000000000000..7611727ab12e9f9f09d57f295d0d8ca8a245ec4f GIT binary patch literal 6747 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 literal 0 HcmV?d00001 diff --git a/themes/vivo-basic/site_icons/minus.gif b/themes/vivo-basic/site_icons/minus.gif new file mode 100644 index 0000000000000000000000000000000000000000..04dc7c5b5fbae8da60d71dfd8488c5bde1f41134 GIT binary patch literal 106 zcmZ?wbhEHb<YeGv*vtR||NsAIXkch)05X9Dh;`t=frf^L{~$S_EQm^Q0IU1|U-2gk uBLf2?gAPy>XaXk#1B>{Elb-YU`rj+q`g9swPx7^#yFZskcm)bFSOWlf)g~4I literal 0 HcmV?d00001 diff --git a/themes/vivo-basic/site_icons/paper.gif b/themes/vivo-basic/site_icons/paper.gif new file mode 100644 index 0000000000000000000000000000000000000000..1fdf2dd02288e1450657e2479c5ed40adcbfb262 GIT binary patch literal 871 zcmX9-zm88~5IqISPqK*>i6~YwOI9H|5;hb^vaxI;p_C{_;R%TP6gmn@q8M+$8%(0$ z5tNj?0IG4m_==mG@6McmGxzZB?d#VbZ(|$3@&6DIFbE)s5Mtmv5)?Q{Ac+)mR-p(9 z8Wd1O2{mY-i57Y=1|vq82}6Pb1ttO!j8MdcdB~uG6NyMhDsn>RXGo!mLKLGEHPMJ> zw4x`hbQq%;)4(b%$b6<TqMQBAS6oNrFu^2K%%SYb*P@067Fl8q8*H-09@@PDMx04o zcQ=%n3}i4v8I#V#kW_Lqk;zPDPRco%N~y_07PFK!*~n(LvL~IWMU8Tt5tgDAsQtik z*tw0_&yu->x(=o>q8nW2E3GpssHl=^)KF6`^~h7QQP<9tM`V{S#8jYy6{?u>+-%+5 zoJv%(Qk7Fe$&na!s!+u$RZTUjS*_|RPu}5~f2KWlCued@2RhiHj%n|L<Fq19Cpy`w z&S{~=B~#OdE_SJFy3x&Ubx(VnJP>=DS*rvtLs-k?z43~81J-_#%O%&4JP$|jWY^M( z%et0%`?Mu1woq#_z0nQoewX@f_wO;Rb9p`1KY`5w=ETmOkKc*S>5EtYoYbusTj$O^ z+q|jIyJwGIdjIwQg~L~I<>=<OPd~oAKEMBb=jW*>M=$ptzI(L);KRMQdryCDZE)is DG-q_u literal 0 HcmV?d00001 diff --git a/themes/vivo-basic/site_icons/plus.gif b/themes/vivo-basic/site_icons/plus.gif new file mode 100644 index 0000000000000000000000000000000000000000..37087082f8e8510436323bfb71fa012252626081 GIT binary patch literal 106 zcmZ?wbhEHb<YeGv*vtR||NsAIXkch)05X9Dh;`t=frf^L{~$S_EQm^Q0IU1|U-2gk tBLf2?gAPy>XaXk#1B>{Elb-YU`o|S)eL9V;C;3{=-JeS%yaELotO0LTC6)jH literal 0 HcmV?d00001 diff --git a/themes/vivo-basic/site_icons/plus_transparent.gif b/themes/vivo-basic/site_icons/plus_transparent.gif new file mode 100644 index 0000000000000000000000000000000000000000..0bbdbcf77ac8add6e60adb6b5cc927a94a040290 GIT binary patch literal 54 zcmZ?wbhEHb<Y3@nXkcXc|NsBz&z}{4vM@3*Ff!;c00Bsbfr+<=aam*a&k1uvOv}Ud G7_0%bSPzc? literal 0 HcmV?d00001 diff --git a/themes/vivo-basic/site_icons/plus_transparent2.gif b/themes/vivo-basic/site_icons/plus_transparent2.gif new file mode 100644 index 0000000000000000000000000000000000000000..684279028e3062ceeedc8dd6ddf48fb56e1b74b4 GIT binary patch literal 61 zcmZ?wbhEHb<YwSzXkcXc|NsBz&z}{4vM@3*Ff!;c00Bsbfk~vNUy`Bf4NuSKjosq+ OR%+chosuEKU=08^mJ=2L literal 0 HcmV?d00001 diff --git a/themes/vivo-basic/site_icons/vitro_logo.gif b/themes/vivo-basic/site_icons/vitro_logo.gif new file mode 100644 index 0000000000000000000000000000000000000000..bc63d60bb1a4c89549e89dc096818ad8e3b75520 GIT binary patch literal 2852 zcmV+<3)}QZNk%w1VS)iY0K@<Q<mBYf&(E~9w1|j^ySuyH-QDZ!>-hNiprD}f@$sjp zr^3R**4Eaot*yz)$wWj%?(Xgp5fNr)W>r;HGcz+HA|k4)s&{vH%*@Q0nVA3p0RR90 z000000000000000A^8LV00000EC2ui0D=KM000I5;3ke_X`X1Ru59bRa4gSsZQppV z?|kq7z@TtQEE<o<q;kn@I-k&})CeJ1uY{>~%Y6;L;6a9#34bl8f_acdmDljN9Ho}q zGXw}uJ*jB^fPoqh7Z!S5h>21If`0`w5shOe1dRhJ4~?3eoEj*VouL{NlQI^WqKy)d zimk3k1)373nujHzftM(#sl9)nzMT)YEfBoHxv$F0KN5`*#4XN(vnRNKx+llToxt3h z6wxUdk>AwJ=;<}FmNDglXx8n!=Aqv8ffL2=_<z;v00XMnrlA513(rzq`;*NC!G6Ew zK?KA~#RN_iB*1y#XHz_ZAVV(v^O420Ko=DM&YQtVP(v6aUz#XzQcy}2BN>V-f#IRS zkU#}?%=d!d9}Fs8)@Ye*M$8r$G(A{xu@O=iH35|j%2ingO%+vq74-8Swxug$JY~VI zk&3oWUknALudCfx5R7WLNi{7czc84dbqW{-1x;eX#t;nXuH#l&HAG+mL2=T!G8k)+ z>0&L5hbkgdkO3D^o5!fNl>Sr7O{2P(2eT~P!t)Bym>Thgp{aH1-%kimRdHC**1t+= zXy#m-wu$0_MyJrk{I+x8*o}-86t=|b$t!FxzK)Z;h}9bYozQf=1wq)^<0sL(yM*TY z5;2cYE<-$u$QqnBlO_VbAe?*%A`un;St-or2n+ssVV+qGt$;yQf(%FD9|gLgnT835 z7zBFljRazB6)HDje*Hwy-7N&pmZ69=20@T|BShxghSjmK91S^fL&1wMHqv1WAJ(X3 z58DM2O=W_B2jPk*{74u+6zs^NX)*?K;*wz2pqFn}PRU<pR2GR$1Z?a?M~pIH2*{UV z)(L}XB|t|}XKC8k=LkWH5<z<^us6edb|xwV29|9w5`5wPIYOCgse%Oo12_nXmeWZ} zP>+g+n&(Q99mykFXTk&+1ORHlsW!SnBB`igYW5S9ft1x;s)5ZK;RXOkaFt1o(76J7 zrqZhH2Dk=-6s2bB*DJ4lQY%9Lux^&nBp}(k=GL;{njq&NDLDv@s@5Xut8)<O35ayZ zQWpcF;npj{wgusfW3;lNnQo;27NFN=?ma`Kw}QNCZ>V}{dN7IvtN3qu69<{>2>5D1 z!Nrqma_++Qwn|i`6RQC23%`=EV3gg8;O@I@49hG57F?hyYarW;P$(R48F82WqATqQ zFOR|kqZ9pMY|f(I42Z5M&$_|M)eda}(v1*GLdM^O!?e9C_jaY#>Xv+J*(^gia4^Gs zZ7<f1KpnN&C{VpC+0SVLDGIEb!=~FHI}IwtgQs9OzbW3GunTGw?J+5UM=p77Z%pvO z<r)oOfy|S4?)m4Shc5d6=%kl!`st{ruKMb%x9&PR4hXPJ02u&a0s{hMkO2Y&*p5R6 zvhxtT0K^k-Knb~TkO1&aBwqsVx&xoU5(+51K>z~yzCr8<h>(B)4xm80_9z%Ye9z+7 zzCraiuz!Q|C>*dr06@r3zYF7+Ksy4(>rTE20aySFn8$<M70-Cc8^ZwzKtKB>0e&K2 z!0w8NfbJ2&0KFT512`r@0p2SE42WO`!gqrFsbB#asNV5pkiQMW0E60d;rmK)007uf z1P7qq0&cj08UkR2-m{_h3;=)x6mbJY<Y5joutVSZ5QxgNp$SKTfD8bUcBe_=^fmy1 z3^c%o7Stlff`>%^8*WhqNnGI%M?k~`mhXqo`{5Fsh(jTcz=%eKVidth0wG!ujd1i$ z?uhh65*YD_b{v5aq3A>3B>;s1SYsQ5xW*A2V0UQLod;3qyChnWb_Fow2@ZgO21t;E zB3L8|lBm7>O|plHWTp2YDaj#<@{TstBMF>`!ss=Ci_y~^604|55eD;kxvOFTB<M?E z26LFv^B^;$M?M31QCkRrX7nBrO!f6rcOl#W0lx`C5s)*RxwD`G6yQb^kaH5i>*6yF zKuj-oZ+`^zUN8|by=m@li|<TeI9FLu4^}UF_59@q$VozS{*rdllN~RE`Ns|9&UUn0 zrwH8lO#~eO52D+=T?PVhNp^~$o=g-00fO0pd#cZQ{w#n$9~w-FPJ*1_JgDwa+0Kgs zV33alUI6H~QrkJeiX}BbP;HmHNG2cwp#%U53lLNR4AoKUJL>Tepa2^dwU7DyATW0* zL7FOHs8Gej0TQ5qY>HEM1yCznvl&+cB)|X-7=r{uxI7PzAa@bXWbXjrKIx&*s`Se% zMn`%*JXCT743Odo8ym@^hR>RVb>9de%0CBe@vB-D=NAi5MH^m}i$ct6_k23YpE7Zo z79E2%zsSSQGFAWz(CYHCfZ4V3j<Nut9U1?cf$ptzg<kZk6=N$|`sL4g2tYt69|2Vx zPSv&l^9y0}>blmp-fOhgt0-|r5J$##@qXewYXCD4O2#&psjXqaP>)K#^I}ZB*PZNp z!8%-Vj={dMy%!lxm_OzbxOOH?-X*gzMe+iVcq9a+g9Qvs^ybsR>N7!bhl*j}VVD&V z6an@Q%Fpx;b*gWj@CM@Az@Y}<tL1fWh660&6IfFKms|jgX(!|P1wa8b^<7>|uv-y& zkbo=>a1T2i;4boX1M&?3efK-z1KW;(4IZzO?F(T41~ZcGeQqge*8l<JwZ884a`eD_ zzXsnJn-x}ZKCPT$D<}A-#chB|ce$fGQ@G0)mR**CsQ}_Jxy~65F$osP*lspDcrlLu zE%B-c-&8Voipd-F2&xxX1}u1`(*tSrs2pNZ>&~qNv@iUaoV+eKw#;XyGL17_;NWT6 zd6DjNDNEpF5x=w)>5Q|k6{<-6X1R)gtZST=JZJWbAhaKTwiRm((~+iG%Os#SJY@%H zg)Uguwq?bkqpjrh(Qnt<g7hTpd(Hhu8q;H--9X)$!VFAro$ao%ZH4UC5uDk@dF5vC zlI*;1iy4V2C2sfZ3-89V0@}8oF`rdz-;xG*p(6!=Oizjc1{6TC<!&vHm)uqQ(Q@M( zh;ArPOM;`S*8x?01c03va0c8po}@*!>~5^_=pwuUGOZ#GqjyH)x)`mq)p%k5WoL1s zf>5fLmbkAY*+oHTn0ZMrfM(CbKq;3N<B>!;0VAD4>;Br(^s6fXv^$37nX&-rg{<xr z+Dj6;J(K|mb;hx1$abFx58~|j$Cukw0IXETm0lkLDtiEtGgj?vM|k#fPGN9sInr3w z-2ockOehoc>+mBjLc_UI&2xV45v-?2O#t)gDIlCPp9DxBanw`$P5>3$9zuOr``rN> z@FoCkFpU~alM=A>#WjFV+c0Rh1~YsnBw+7TsK0&Q@AT~+`?{m<dSq_Dfd~C1OzSD$ z<%L;yKx9BYAK_006n*3*sN(YKdB0@pE_kY*gz~p3`csGS0O6-(y@vpy9u{%`^Fri< zN4&;pMb}3FAYQK&MGY8%Hg-fUU_=%5Sjv-udQ?LIxMxT8Fe#vcB@lra=mJF4fFr0& zY-E9k<bo~WLoPsqio}91P+N7Rf-3+#9ynewXoC^RM}1_2G-w3plUM!q7yu{$1W-NK z$5pTM1YxCOz_9?u;{f9I7zscC#e-hBBZ5mMGZNf?G^c!p@0hHAKmY}f=L0029L C9VmkU literal 0 HcmV?d00001 diff --git a/themes/vivo-basic/site_icons/vivo_logo.gif b/themes/vivo-basic/site_icons/vivo_logo.gif new file mode 100644 index 0000000000000000000000000000000000000000..a9bfa5f5fb60cf3ff4fdd093f01150f37f498fbe GIT binary patch literal 3949 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 H5fA`7d<%?I literal 0 HcmV?d00001 diff --git a/utilities/licenser.rb b/utilities/licenser.rb new file mode 100644 index 00000000..68a055c3 --- /dev/null +++ b/utilities/licenser.rb @@ -0,0 +1,341 @@ +=begin +-------------------------------------------------------------------------------- + +Create a copy of the source files, with licensing information inserted. + +-------------------------------------------------------------------------------- +2010-01-26 initial version J.Blake +-------------------------------------------------------------------------------- +=end + +require 'date' +require 'fileutils' + +class LicenserStats + attr_reader :substitutions + attr_reader :missing_tags + attr_reader :file_count + attr_reader :dir_count + + # ------------------------------------------------------------------------------------ + private + # ------------------------------------------------------------------------------------ + # + def which_match(filename) + @file_matchers.each do |matcher| + return matcher if File.fnmatch(matcher, filename) + end + raise("filename matches no matchers!: #{filename}") + end + + # ------------------------------------------------------------------------------------ + public + # ------------------------------------------------------------------------------------ + + def initialize(file_matchers, full) + @file_matchers = file_matchers + + @full = full + + # keep track of how many substitutions for all file types + @substitutions = Hash.new() + file_matchers.each do |matcher| + @substitutions[matcher] = 0 + end + + # keep track of missing tags, only in file types that have missing tags + @missing_tags = Hash.new(0) + + # keep track of how many files are copied + @file_count = 0 + + #keep track of how many directories are copied + @dir_count = 0 + end + + def enter_without_mods(path) + @dir_count += 1 + puts "Entering, no mods: #{path}" if @full + end + + def enter_with_mods(path) + @dir_count += 1 + puts "Entering, with mods: #{path}" if @full + end + + def record_copy_without_mods(filename) + @file_count += 1 + puts " Copying, without mods: #{filename}" if @full + end + + def record_copy_with_mods(filename) + @file_count += 1 + puts " Copying, with mods: #{filename}" if @full + end + + def record_substitution(filename) + puts " Substituted license text into #{filename}" if @full + matcher = which_match(filename) + @substitutions[matcher] += 1 + end + + def record_missing_tag(filename, source_path) + puts "WARN: Found no license tag in #{source_path}" + matcher = which_match(filename) + @missing_tags[matcher] += 1 + end +end + +class Licenser + + MAGIC_STRING = '$This file is distributed under the terms of the license in /doc/license.txt$' + + # ------------------------------------------------------------------------------------ + private + # ------------------------------------------------------------------------------------ + # + # Prepare the license as an array of lines of text, + # with the current year substituted in for ${year} + # + def prepare_license_text(license_file) + year_string = DateTime.now.year.to_s + text = [] + File.open(license_file) do |file| + file.each do |line| + text << line.gsub('${year}', year_string) + end + end + return text + end + + # Prepare the license-applicable directories as absolute paths. + # + def prepare_license_dir_paths(source_dir, license_dirs) + paths = [] + license_dirs.each do |dir| + paths << "#{source_dir}/#{dir}".gsub('//', '/') + end + return paths + end + + # Does this filename match any of the patterns? + # + def filename_matches_pattern?(filename) + @file_matchers.each do |pattern| + return true if File.fnmatch(pattern, filename) + end + return false + end + + # Recursively copy this directory, without adding license mods to any files, + # unless we hit one of the licensed directories. + # + def copy_dir_without_mods(source_dir, target_dir) + @stats.enter_without_mods(source_dir) + Dir.mkdir(target_dir) + Dir.foreach(source_dir) do |filename| + source_path = "#{source_dir}/#{filename}" + target_path = "#{target_dir}/#{filename}" + + if filename == '.' + elsif filename == '..' + elsif @license_dir_paths.include?(source_path) + copy_dir_with_mods(source_path, target_path) + elsif File.directory?(source_path) + copy_dir_without_mods(source_path, target_path) + else + copy_file_without_mods(source_dir, target_dir, filename) + end + end + end + + # Recursively copy this directory, adding license mods to any suitable files. + # + def copy_dir_with_mods(source_dir, target_dir) + @stats.enter_with_mods(source_dir) + + Dir.mkdir(target_dir) + Dir.foreach(source_dir) do |filename| + source_path = "#{source_dir}/#{filename}" + target_path = "#{target_dir}/#{filename}" + + if filename == '.' + elsif filename == '..' + elsif File.directory?(source_path) + copy_dir_with_mods(source_path, target_path) + elsif filename_matches_pattern?(filename) + copy_file_with_mods(source_dir, target_dir, filename) + else + copy_file_without_mods(source_dir, target_dir, filename) + end + end + end + + # This file either is not in a licensed directory, or doesn't match any of the + # file-matching strings + # + def copy_file_without_mods(source_dir, target_dir, filename) + @stats.record_copy_without_mods(filename) + source_path = "#{source_dir}/#{filename}" + target_path = "#{target_dir}/#{filename}" + FileUtils.cp(source_path, target_path) + end + + # This file is in a licensed directory, and matches at least one of the + # file-matching strings. Replace the magic string with the license text. + # + def copy_file_with_mods(source_dir, target_dir, filename) + @stats.record_copy_with_mods(filename) + source_path = "#{source_dir}/#{filename}" + target_path = "#{target_dir}/#{filename}" + found = 0 + File.open(source_path) do |source_file| + File.open(target_path, "w") do |target_file| + source_file.each do |line| + if line.include?(MAGIC_STRING) + found += 1 + insert_license_text(target_file, line) + else + target_file.print line + end + end + end + end + + if found == 0 + @stats.record_missing_tag(filename, source_path) + elsif found == 1 + @stats.record_substitution(filename) + else + raise("File contains #{found} license lines: #{source_path}") + end + end + + # Figure out the comment characters and write the license text to the file. + # + def insert_license_text(target_file, line) + ends = line.split(MAGIC_STRING) + if ends.size != 2 + raise ("Can't parse this license line: #{line}") + end + + target_file.print "#{ends[0].strip}\n" + + @license_text.each do |text| + target_file.print "#{text.rstrip}\n" + end + + target_file.print "#{ends[1].strip}\n" + end + + # ------------------------------------------------------------------------------------ + public + # ------------------------------------------------------------------------------------ + + # Setup and get ready to process. + # * source_dir is a String -- the path to the top level directory to be copied + # * target_dir is a String -- the path to the top level directory to copy into + # (must not already exist!) + # * license_dirs is an array of Strings -- relative paths to the directories that + # require license mods. + # * file_matchers + # * license_file is a String -- the path to the text of the license agreement + # (with a ${year} token in it) + # * full_report is a Boolean -- if true, we give a full log instead of just a summary. + # + def initialize(source_dir, target_dir, license_dirs, file_matchers, license_file, full_report) + if !File.exist?(source_dir) + raise "Source directory does not exist: #{source_dir}" + end + + if File.exist?(target_dir) + raise "Target directory already exists: #{target_dir}" + end + + if !File.exist?(license_file) + raise "Source directory does not exist: #{license_file}" + end + + @source_dir = source_dir + @target_dir = target_dir + @file_matchers = file_matchers + + @license_dirs = license_dirs + @license_dir_paths = prepare_license_dir_paths(source_dir, license_dirs) + + @license_file = license_file + @license_text = prepare_license_text(license_file) + + @full_report = full_report + @stats = LicenserStats.new(file_matchers, full_report) + end + + # Start the recursive copying. + def process() + copy_dir_without_mods(@source_dir, @target_dir) + end + + # Report the summary statistics + def report() + puts "Licenser: run completed at #{DateTime.now.strftime("%H:%M:%S on %b %d, %Y")}" + puts " copied #{@stats.file_count} files in #{@stats.dir_count} directories." + puts + puts 'Substitutions' + @stats.substitutions.sort.each do |line| + printf("%5d %s\n", line[1], line[0]) + end + puts + puts 'Missing tags' + @stats.missing_tags.sort.each do |line| + printf("%5d %s\n", line[1], line[0]) + end + puts + puts 'parameters:' + puts " source_dir = #{@source_dir}" + puts " target_dir = #{@target_dir}" + puts " license_dirs = #{@license_dirs.join(', ')}" + puts " file_matchers = #{@file_matchers.join(', ')}" + puts " license_file = #{@license_file}" + puts " full_report = #{@full_report}" + end +end + +# ------------------------------------------------------------------------ +# BOGUS test harness +# ------------------------------------------------------------------------ + +=begin +source_dir = '/Vivoweb_Stuff/Testing_licenser/sourceDir' +target_dir = '/Vivoweb_Stuff/Testing_licenser/targetDir' + +license_dirs = [] +license_dirs << '/licensed' + +license_file = '../doc/license.txt' +=end + +#=begin +source_dir = '/Vivoweb_Stuff/Testing_licenser/trunk' +target_dir = '/Vivoweb_Stuff/Testing_licenser/distribution' + +license_dirs = [] +license_dirs << '/themes' +license_dirs << '/vitro-core/webapp' +license_dirs << '/vitro-core/services' + +file_matchers = [] +file_matchers << '*.java' +file_matchers << '*.jsp' +file_matchers << '*.tld' +file_matchers << '*.xsl' +file_matchers << '*.xslt' +file_matchers << '*.css' +file_matchers << '*.js' +file_matchers << 'build.xml' + +license_file = '/Vivoweb_Stuff/Testing_licenser/trunk/doc/license.txt' +#=end + +l = Licenser.new(source_dir, target_dir, license_dirs, file_matchers, license_file, false) +l.process +l.report diff --git a/utilities/releaser.rb b/utilities/releaser.rb new file mode 100644 index 00000000..1230772c --- /dev/null +++ b/utilities/releaser.rb @@ -0,0 +1,15 @@ +=begin +-------------------------------------------------------------------------------- + +Create the VIVO distribution files. + +This will: +1) Export the desired release from Subversion +2) Copy all files from the export area to the licensed area, + adding licensing text in the process. +3) Pack the licensed files into a Zip file and Tar.GZ file for distribution + +-------------------------------------------------------------------------------- +2010-01-26 initial version J.Blake +-------------------------------------------------------------------------------- +=end
+

Linkage Information

+
+ +
    + + + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT (count(?author) as ?counts) WHERE { + ?author rdf:type core:Authorship . + ?author core:linkedInformationResource ?infor . + ?infor rdf:type core:ConferencePaper . + } + + +
  • 'Person'-'ConferencePaper' linkages (${confauthorship.counts.string})
  • +
    +
    + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX foaf: + PREFIX bibo: + PREFIX core: + SELECT (count(distinct ?author) as ?counts) WHERE { + ?author core:authorInAuthorship ?obj . + ?author rdf:type foaf:Person . + ?obj core:linkedInformationResource ?infor . + ?infor rdf:type core:ConferencePaper . + } + + +
  • 'Person' entities which published 'ConferencePaper' entities (${confauthor.counts.string})
  • +
    +
    + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT (count(distinct ?infor) as ?counts) WHERE { + ?subj core:linkedInformationResource ?infor . + ?infor rdf:type core:ConferencePaper . + } + + +
  • 'ConferencePaper' entities (${conf.counts.string})
  • +
    +
    +
+ +
    + + + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT (count(?author) as ?counts) WHERE { + ?author rdf:type core:Authorship . + ?author core:linkedInformationResource ?infor . + ?infor rdf:type bibo:AcademicArticle . + } + + +
  • 'Person'-'AcademicArticle' linkages (${acaauthorship.counts.string})
  • +
    +
    + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX foaf: + PREFIX bibo: + PREFIX core: + SELECT (count(distinct ?author) as ?counts) WHERE { + ?author core:authorInAuthorship ?obj . + ?author rdf:type foaf:Person . + ?obj core:linkedInformationResource ?infor . + ?infor rdf:type bibo:AcademicArticle . + } + + +
  • 'Person' entities which published 'AcademicArticle' entities (${acaauthor.counts.string})
  • +
    +
    + + + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT (count(distinct ?infor) as ?counts) WHERE { + ?subj core:linkedInformationResource ?infor . + ?infor rdf:type bibo:AcademicArticle . + } + + +
  • 'AcademicArticle' entities (${aca.counts.string})
  • +
    +
    + +
+ + +
    + + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT (count(*) as ?counts) WHERE { + ?grant core:hasInvestigator ?pi . + } + + +
  • 'Person'-'Grant' linkages (${piship.counts.string})
  • +
    +
    + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT (count(distinct ?pi) as ?counts) WHERE { + ?grant core:hasInvestigator ?pi . + ?grant rdf:type core:Grant . + } + + +
  • 'Person' entities which are (co-)investigators on 'Grant' entities (${pi.counts.string})
  • +
    +
    + + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT (count(distinct ?grant) as ?counts) WHERE { + ?grant rdf:type core:Grant . + } + + +
  • 'Grant' entities (${grant.counts.string})
  • +
    +
    +
+
    + + + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT (count(*) as ?counts) WHERE { + ?teacher core:teaching ?obj . + } + + +
  • 'Person'-'CourseSection' linkages (${teaching.counts.string})
  • +
    +
    + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT (count(distinct ?teacher) as ?counts) WHERE { + ?teacher core:teaching ?obj . + } + + +
  • 'Person' entities which teach 'CourseSection' entities (${teacher.counts.string})
  • +
    +
    + + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT (count(?course) as ?counts) WHERE { + ?course rdf:type core:CourseSection . + } + + +
  • 'CourseSection' entities (${course.counts.string})
  • +
    +
    + +
+
    + + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT (count(*) as ?counts) WHERE { + ?author1 rdf:type core:Authorship . + ?author2 rdf:type core:Authorship . + ?author1 core:linkedInformationResource ?infor . + ?author2 core:linkedInformationResource ?infor . + ?infor rdf:type core:InformationResource . + FILTER (str(?author1) < str(?author2)) + } + + +
  • Total co-author linkages (${coauthor.counts.string})
  • +
    +
    + + + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT DISTINCT ?author1 ?author2 WHERE { + ?author1 rdf:type core:Authorship . + ?author2 rdf:type core:Authorship . + ?author1 core:linkedInformationResource ?infor . + ?author2 core:linkedInformationResource ?infor . + ?infor rdf:type core:InformationResource . + FILTER (str(?author1) < str(?author2)) + } + +
  • Unique co-author linkages (${fn:length(discoauthors.rows)})
  • +
    +
+
    + + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT (count(*) as ?counts) WHERE { + ?grant core:hasInvestigator ?pi1 . + ?grant core:hasInvestigator ?pi2 . + FILTER (str(?pi1) < str(?pi2)) + } + + +
  • Total co-investigator linkages (${copi.counts.string})
  • +
    +
    + + + + + + PREFIX rdfs: + PREFIX rdf: + PREFIX akt: + PREFIX bibo: + PREFIX core: + SELECT DISTINCT ?pi1 ?pi2 WHERE { + ?grant core:hasInvestigator ?pi1 . + ?grant core:hasInvestigator ?pi2 . + FILTER (str(?pi1) < str(?pi2)) + } + +
  • Unique co-investigator linkages (${fn:length(discopis.rows)})
  • +
    +
+