From c0d461c64a64da888b5b73cda6360767eb0ebd7e Mon Sep 17 00:00:00 2001 From: j2blake Date: Fri, 1 Apr 2011 19:32:51 +0000 Subject: [PATCH] NIHVIVO-2254 Simplify the unit tests for IndividualFiltering --- .../filtering/IndividualFilteringTest-Abox.n3 | 113 +- ...IndividualFilteringTest-TBoxAnnotations.n3 | 122 +- .../filtering/IndividualFilteringTest.java | 72 +- .../vitro/webapp/dao/filtering/vitro-0.7.owl | 285 - .../webapp/dao/filtering/vivo-core-1.2.owl | 5473 ----------------- 5 files changed, 186 insertions(+), 5879 deletions(-) delete mode 100644 webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/vitro-0.7.owl delete mode 100644 webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/vivo-core-1.2.owl diff --git a/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/IndividualFilteringTest-Abox.n3 b/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/IndividualFilteringTest-Abox.n3 index a6e6253fc..926d157dd 100644 --- a/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/IndividualFilteringTest-Abox.n3 +++ b/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/IndividualFilteringTest-Abox.n3 @@ -1,14 +1,7 @@ # $This file is distributed under the terms of the license in /doc/license.txt$ -@prefix rdf: . @prefix rdfs: . -@prefix owl: . -@prefix foaf: . -@prefix bib: . -@prefix core: . @prefix mydomain: . -@prefix vitro: . -@prefix role: . ### This file is for the test IndividualFilteringTest.java. @@ -16,90 +9,82 @@ # Bozo # mydomain:bozo - a foaf:Person ; + a mydomain:publicClass ; - foaf:firstName "Bozo" ; - foaf:lastName "Person" ; - core:hrJobTitle "Clown" ; - core:primaryEmail "bozo@Comedy.com" ; - core:phoneNumber "555-9999" ; - core:email "bozo@clowncollege.edu"; + mydomain:publicDataProperty "public info" ; + mydomain:selfDataProperty "self info" ; + mydomain:editorDataProperty "editor info" ; + mydomain:curatorDataProperty "curator info" ; + mydomain:dbaDataProperty "dba info" ; + mydomain:hiddenDataProperty "hidden info" ; - core:editorOf mydomain:publicObject ; - core:editorOf mydomain:selfObject ; - core:editorOf mydomain:editorObject ; - core:editorOf mydomain:curatorObject ; - core:editorOf mydomain:dbaObject ; - core:editorOf mydomain:hiddenObject ; + mydomain:publicObjectProperty mydomain:publicObject ; + mydomain:publicObjectProperty mydomain:selfObject ; + mydomain:publicObjectProperty mydomain:editorObject ; + mydomain:publicObjectProperty mydomain:curatorObject ; + mydomain:publicObjectProperty mydomain:dbaObject ; + mydomain:publicObjectProperty mydomain:hiddenObject ; - core:roleIn mydomain:publicObject ; - core:roleIn mydomain:selfObject ; - core:roleIn mydomain:editorObject ; - core:roleIn mydomain:curatorObject ; - core:roleIn mydomain:dbaObject ; - core:roleIn mydomain:hiddenObject ; + mydomain:selfObjectProperty mydomain:publicObject ; + mydomain:selfObjectProperty mydomain:selfObject ; + mydomain:selfObjectProperty mydomain:editorObject ; + mydomain:selfObjectProperty mydomain:curatorObject ; + mydomain:selfObjectProperty mydomain:dbaObject ; + mydomain:selfObjectProperty mydomain:hiddenObject ; - core:roleOf mydomain:publicObject ; - core:roleOf mydomain:selfObject ; - core:roleOf mydomain:editorObject ; - core:roleOf mydomain:curatorObject ; - core:roleOf mydomain:dbaObject ; - core:roleOf mydomain:hiddenObject ; + mydomain:editorObjectProperty mydomain:publicObject ; + mydomain:editorObjectProperty mydomain:selfObject ; + mydomain:editorObjectProperty mydomain:editorObject ; + mydomain:editorObjectProperty mydomain:curatorObject ; + mydomain:editorObjectProperty mydomain:dbaObject ; + mydomain:editorObjectProperty mydomain:hiddenObject ; - core:partOf mydomain:publicObject ; - core:partOf mydomain:selfObject ; - core:partOf mydomain:editorObject ; - core:partOf mydomain:curatorObject ; - core:partOf mydomain:dbaObject ; - core:partOf mydomain:hiddenObject ; + mydomain:curatorObjectProperty mydomain:publicObject ; + mydomain:curatorObjectProperty mydomain:selfObject ; + mydomain:curatorObjectProperty mydomain:editorObject ; + mydomain:curatorObjectProperty mydomain:curatorObject ; + mydomain:curatorObjectProperty mydomain:dbaObject ; + mydomain:curatorObjectProperty mydomain:hiddenObject ; - core:offers mydomain:publicObject ; - core:offers mydomain:selfObject ; - core:offers mydomain:editorObject ; - core:offers mydomain:curatorObject ; - core:offers mydomain:dbaObject ; - core:offers mydomain:hiddenObject ; + mydomain:dbaObjectProperty mydomain:publicObject ; + mydomain:dbaObjectProperty mydomain:selfObject ; + mydomain:dbaObjectProperty mydomain:editorObject ; + mydomain:dbaObjectProperty mydomain:curatorObject ; + mydomain:dbaObjectProperty mydomain:dbaObject ; + mydomain:dbaObjectProperty mydomain:hiddenObject ; - core:featuredIn mydomain:publicObject ; - core:featuredIn mydomain:selfObject ; - core:featuredIn mydomain:editorObject ; - core:featuredIn mydomain:curatorObject ; - core:featuredIn mydomain:dbaObject ; - core:featuredIn mydomain:hiddenObject ; + mydomain:hiddenObjectProperty mydomain:publicObject ; + mydomain:hiddenObjectProperty mydomain:selfObject ; + mydomain:hiddenObjectProperty mydomain:editorObject ; + mydomain:hiddenObjectProperty mydomain:curatorObject ; + mydomain:hiddenObjectProperty mydomain:dbaObject ; + mydomain:hiddenObjectProperty mydomain:hiddenObject ; . -# -# public Homepage -# -mydomain:publicHomepage - a foaf:Document ; - rdfs:label "public homepage" ; - . - # # Objects of object properties # mydomain:publicObject - a core:Student ; + a mydomain:publicClass ; rdfs:label "public file" ; . mydomain:selfObject - a core:Presentation ; + a mydomain:selfClass ; rdfs:label "self file" ; . mydomain:editorObject - a core:SeminarSeries ; + a mydomain:editorClass ; rdfs:label "editor file" ; . mydomain:curatorObject - a core:Video ; + a mydomain:curatorClass ; rdfs:label "curator file" ; . mydomain:dbaObject - a core:ClinicalRole ; + a mydomain:dbaClass ; rdfs:label "dba file" ; . mydomain:hiddenObject - a core:Facility ; + a mydomain:hiddenClass ; rdfs:label "hidden file" ; . diff --git a/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/IndividualFilteringTest-TBoxAnnotations.n3 b/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/IndividualFilteringTest-TBoxAnnotations.n3 index 9ed17bc6b..549346bdd 100644 --- a/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/IndividualFilteringTest-TBoxAnnotations.n3 +++ b/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/IndividualFilteringTest-TBoxAnnotations.n3 @@ -1,11 +1,6 @@ # $This file is distributed under the terms of the license in /doc/license.txt$ -@prefix rdf: . -@prefix rdfs: . @prefix owl: . -@prefix foaf: . -@prefix bib: . -@prefix core: . @prefix mydomain: . @prefix vitro: . @prefix role: . @@ -14,31 +9,100 @@ ### This file is for the test IndividualFilteringTest.java. # -# restrict the data properties. +# create the data properties # -foaf:lastName vitro:hiddenFromDisplayBelowRoleLevelAnnot role:public . -foaf:firstName vitro:hiddenFromDisplayBelowRoleLevelAnnot role:selfEditor . -core:email vitro:hiddenFromDisplayBelowRoleLevelAnnot role:editor . -core:hrJobTitle vitro:hiddenFromDisplayBelowRoleLevelAnnot role:curator . -core:phoneNumber vitro:hiddenFromDisplayBelowRoleLevelAnnot role:dbAdmin . -core:primaryEmail vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody . +mydomain:publicDataProperty + a owl:DatatypeProperty ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:public ; + . + +mydomain:selfDataProperty + a owl:DatatypeProperty ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:selfEditor ; + . + +mydomain:editorDataProperty + a owl:DatatypeProperty ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:editor ; + . + +mydomain:curatorDataProperty + a owl:DatatypeProperty ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:curator ; + . + +mydomain:dbaDataProperty + a owl:DatatypeProperty ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:dbAdmin ; + . + +mydomain:hiddenDataProperty + a owl:DatatypeProperty ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody ; + . + +# +# create the object properties +# +mydomain:publicObjectProperty + a owl:ObjectProperty ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:public ; + . + +mydomain:selfObjectProperty + a owl:ObjectProperty ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:selfEditor ; + . + +mydomain:editorObjectProperty + a owl:ObjectProperty ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:editor ; + . + +mydomain:curatorObjectProperty + a owl:ObjectProperty ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:curator ; + . + +mydomain:dbaObjectProperty + a owl:ObjectProperty ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:dbAdmin ; + . + +mydomain:hiddenObjectProperty + a owl:ObjectProperty ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody ; + . # -# restrict the object properties. +# create the object classes # -core:editorOf vitro:hiddenFromDisplayBelowRoleLevelAnnot role:public . -core:roleIn vitro:hiddenFromDisplayBelowRoleLevelAnnot role:selfEditor . -core:roleOf vitro:hiddenFromDisplayBelowRoleLevelAnnot role:editor . -core:partOf vitro:hiddenFromDisplayBelowRoleLevelAnnot role:curator . -core:offers vitro:hiddenFromDisplayBelowRoleLevelAnnot role:dbAdmin . -core:featuredIn vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody . - -# -# restrict the classes of the objects. -# -core:Student vitro:hiddenFromDisplayBelowRoleLevelAnnot role:public . -core:Presentation vitro:hiddenFromDisplayBelowRoleLevelAnnot role:selfEditor . -core:SeminarSeries vitro:hiddenFromDisplayBelowRoleLevelAnnot role:editor . -core:Video vitro:hiddenFromDisplayBelowRoleLevelAnnot role:curator . -core:ClinicalRole vitro:hiddenFromDisplayBelowRoleLevelAnnot role:dbAdmin . -core:Facility vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody . +mydomain:publicClass + a owl:Class ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:public ; + . + +mydomain:selfClass + a owl:Class ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:selfEditor ; + . + +mydomain:editorClass + a owl:Class ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:editor ; + . + +mydomain:curatorClass + a owl:Class ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:curator ; + . + +mydomain:dbaClass + a owl:Class ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:dbAdmin ; + . + +mydomain:hiddenClass + a owl:Class ; + vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody ; + . diff --git a/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/IndividualFilteringTest.java b/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/IndividualFilteringTest.java index 2815bfc4f..686828d2e 100644 --- a/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/IndividualFilteringTest.java +++ b/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/IndividualFilteringTest.java @@ -49,7 +49,19 @@ import edu.cornell.mannlib.vitro.webapp.dao.jena.OntModelSelectorImpl; import edu.cornell.mannlib.vitro.webapp.dao.jena.WebappDaoFactoryJena; /** - * TODO + * Test the filtering of IndividualFiltering. + * + * There are 6 levels of data hiding - public, selfEditor, editor, curator, + * dbAdmin and nobody. + * + * The data files for this test describe an Individual with 6 data properties, + * each with a different hiding level, and 36 object properties, showing all + * combinations of hiding levels for the property and for the class of the + * object. + * + * There is a flag in HiddenFromDisplayBelowRoleLevelFilter which + * enables/disables filtering based on the class of the object. These tests + * should work regardless of how that flag is set. */ @RunWith(value = Parameterized.class) public class IndividualFilteringTest extends AbstractTestClass { @@ -61,11 +73,9 @@ public class IndividualFilteringTest extends AbstractTestClass { // ---------------------------------------------------------------------- /** - * Files that will create the TBOX. + * Where the ontology statements are stored for this test. */ - private static final String TBOX_VITRO_CORE_FILENAME = "vitro-0.7.owl"; - private static final String TBOX_VIVO_CORE_FILENAME = "vivo-core-1.2.owl"; - private static final String TBOX_ANNOTATIONS_FILENAME = "IndividualFilteringTest-TBoxAnnotations.n3"; + private static final String TBOX_DATA_FILENAME = "IndividualFilteringTest-TBoxAnnotations.n3"; /** * Where the model statements are stored for this test. @@ -73,20 +83,24 @@ public class IndividualFilteringTest extends AbstractTestClass { private static final String ABOX_DATA_FILENAME = "IndividualFilteringTest-Abox.n3"; /** - * The individual we are reading. + * The domain where all of the objects and properties are defined. */ private static final String NS = "http://vivo.mydomain.edu/individual/"; - private static final String INDIVIDUAL_URI = NS + "bozo"; + + /** + * The individual we are reading. + */ + private static final String INDIVIDUAL_URI = mydomain("bozo"); /** * Data properties to look for. */ - private static final String PUBLIC_DATA_PROPERTY = "http://xmlns.com/foaf/0.1/lastName"; - private static final String SELF_DATA_PROPERTY = "http://xmlns.com/foaf/0.1/firstName"; - private static final String EDITOR_DATA_PROPERTY = "http://vivoweb.org/ontology/core#email"; - private static final String CURATOR_DATA_PROPERTY = "http://vivoweb.org/ontology/core#hrJobTitle"; - private static final String DBA_DATA_PROPERTY = "http://vivoweb.org/ontology/core#phoneNumber"; - private static final String HIDDEN_DATA_PROPERTY = "http://vivoweb.org/ontology/core#primaryEmail"; + private static final String PUBLIC_DATA_PROPERTY = mydomain("publicDataProperty"); + private static final String SELF_DATA_PROPERTY = mydomain("selfDataProperty"); + private static final String EDITOR_DATA_PROPERTY = mydomain("editorDataProperty"); + private static final String CURATOR_DATA_PROPERTY = mydomain("curatorDataProperty"); + private static final String DBA_DATA_PROPERTY = mydomain("dbaDataProperty"); + private static final String HIDDEN_DATA_PROPERTY = mydomain("hiddenDataProperty"); private static final String[] DATA_PROPERTIES = { PUBLIC_DATA_PROPERTY, SELF_DATA_PROPERTY, EDITOR_DATA_PROPERTY, CURATOR_DATA_PROPERTY, DBA_DATA_PROPERTY, HIDDEN_DATA_PROPERTY }; @@ -94,12 +108,12 @@ public class IndividualFilteringTest extends AbstractTestClass { /** * Object properties to look for. */ - private static final String PUBLIC_OBJECT_PROPERTY = "http://vivoweb.org/ontology/core#editorOf"; - private static final String SELF_OBJECT_PROPERTY = "http://vivoweb.org/ontology/core#roleIn"; - private static final String EDITOR_OBJECT_PROPERTY = "http://vivoweb.org/ontology/core#roleOf"; - private static final String CURATOR_OBJECT_PROPERTY = "http://vivoweb.org/ontology/core#partOf"; - private static final String DBA_OBJECT_PROPERTY = "http://vivoweb.org/ontology/core#offers"; - private static final String HIDDEN_OBJECT_PROPERTY = "http://vivoweb.org/ontology/core#featuredIn"; + private static final String PUBLIC_OBJECT_PROPERTY = mydomain("publicObjectProperty"); + private static final String SELF_OBJECT_PROPERTY = mydomain("selfObjectProperty"); + private static final String EDITOR_OBJECT_PROPERTY = mydomain("editorObjectProperty"); + private static final String CURATOR_OBJECT_PROPERTY = mydomain("curatorObjectProperty"); + private static final String DBA_OBJECT_PROPERTY = mydomain("dbaObjectProperty"); + private static final String HIDDEN_OBJECT_PROPERTY = mydomain("hiddenObjectProperty"); private static final String[] OBJECT_PROPERTIES = { PUBLIC_OBJECT_PROPERTY, SELF_OBJECT_PROPERTY, EDITOR_OBJECT_PROPERTY, CURATOR_OBJECT_PROPERTY, DBA_OBJECT_PROPERTY, @@ -108,12 +122,12 @@ public class IndividualFilteringTest extends AbstractTestClass { /** * Objects to look for. */ - private static final String PUBLIC_OBJECT = "http://vivo.mydomain.edu/individual/publicObject"; - private static final String SELF_OBJECT = "http://vivo.mydomain.edu/individual/selfObject"; - private static final String EDITOR_OBJECT = "http://vivo.mydomain.edu/individual/editorObject"; - private static final String CURATOR_OBJECT = "http://vivo.mydomain.edu/individual/curatorObject"; - private static final String DBA_OBJECT = "http://vivo.mydomain.edu/individual/dbaObject"; - private static final String HIDDEN_OBJECT = "http://vivo.mydomain.edu/individual/hiddenObject"; + private static final String PUBLIC_OBJECT = mydomain("publicObject"); + private static final String SELF_OBJECT = mydomain("selfObject"); + private static final String EDITOR_OBJECT = mydomain("editorObject"); + private static final String CURATOR_OBJECT = mydomain("curatorObject"); + private static final String DBA_OBJECT = mydomain("dbaObject"); + private static final String HIDDEN_OBJECT = mydomain("hiddenObject"); private static final String[] OBJECTS = { PUBLIC_OBJECT, SELF_OBJECT, EDITOR_OBJECT, CURATOR_OBJECT, DBA_OBJECT, HIDDEN_OBJECT }; @@ -125,6 +139,10 @@ public class IndividualFilteringTest extends AbstractTestClass { return data; } + private static String mydomain(String localname) { + return NS + localname; + } + private static TestData selfTestData() { TestData data = new TestData(SELF); data.addExpectedDataProperties(PUBLIC_DATA_PROPERTY, SELF_DATA_PROPERTY); @@ -193,9 +211,7 @@ public class IndividualFilteringTest extends AbstractTestClass { OntModel ontModel = ModelFactory .createOntologyModel(OntModelSpec.OWL_DL_MEM); - readFileIntoModel(ontModel, TBOX_VITRO_CORE_FILENAME, "RDF/XML"); - readFileIntoModel(ontModel, TBOX_VIVO_CORE_FILENAME, "RDF/XML"); - readFileIntoModel(ontModel, TBOX_ANNOTATIONS_FILENAME, "N3"); + readFileIntoModel(ontModel, TBOX_DATA_FILENAME, "N3"); return ontModel; } diff --git a/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/vitro-0.7.owl b/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/vitro-0.7.owl deleted file mode 100644 index 79ce94f05..000000000 --- a/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/vitro-0.7.owl +++ /dev/null @@ -1,285 +0,0 @@ - - - - ]> - - - - - - - - - - Vitro internals - 0.7 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - curation note - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/vivo-core-1.2.owl b/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/vivo-core-1.2.owl deleted file mode 100644 index 168e4474f..000000000 --- a/webapp/test/edu/cornell/mannlib/vitro/webapp/dao/filtering/vivo-core-1.2.owl +++ /dev/null @@ -1,5473 +0,0 @@ - - - - - - A PMCID is a unique PubMed Central reference number, which is assigned to each full-text record made available A PMCID is a unique PubMed Central reference number, which is assigned to each full-text record made available in PubMed Central. The PMCID is issued shortly after the PI or author approves the PubMed Central formatted web version of the submission. - - - - 1 - - - - http://purl.org/ontology/bibo/ - Short Definition from bibo ontology - - Notes or annotations about a resource. - - Notes or annotations about a resource - stable - - - - - - - - - True; False - - - - - - - - - - - - - - - - For individual seminars, use seminar instead. core:ConferenceSeries and core:SeminarSeries are very similar. - Applied Microeconomics Seminars; Future of Rural New York Seminar Series - - An organized series of a meeting for an exchange of ideas, typically put on by a department or center. - - - - - - - - - - - - - - - - - 1 - - - - - unstable - - Title of the chapter (this individual) currently should be entered in the individual name (rdfs:label). Title of the book belongs on a separate Book individual related to the chapter via the core:partOf property (or its child property bibo:reproducedIn). The core:title field is deprecated and should no longer be used as of version 1.1 -- we will want to map rdfs:label to dc:title for query or linked data requests in the future - - An chapter number - http://purl.org/ontology/bibo/ - - - - - - - - - - - A person who is enrolled in an educational institution. - Use only if no specific subclasses of core:Student describe the person. - - - - - - - - - - UN Cartographic Section - UN Cartographic Section - - - - - - - - - - - - - - - - - - Accounting & Research Services Assistant; Director of Information Technology - Staff, support, and other non-academic positions. - - - A position classified as professional, staff, support, or any other non-academic role - - - - - - - - http://purl.org/ontology/bibo/ - A sub property of identifier (http://en.wikipedia.org/wiki/SICI). - stable - - Serial Item and Contribution Identifier - - - - - - - - - - - - - - - - - - - - - - - Definition take from: http://en.wikipedia.org/wiki/Government_agency. - United States Library of Congress - - - A government agency is a permanent or semi-permanent organization in the machinery of government that is responsible for the oversight and administration of specific functions. - - - - - - - Public description modified from the information on this page: http://www.w3.org/TR/2005/WD-swbp-skos-core-guide-20050510/#sechierarchy . - - - - - - - - - - - - - - - - - - - - - - - FAO's geopolitical ontology version 1.1 was populated with FAO, UN and internationally recognized data sources. - 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. - - version 1.1 - 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. - 2010-08-05 - Version 1.1 of the ontology includes a structured description of sources (source creator, source identifier by language, and last updated date on source) . - - prior version : " http://aims.fao.org/aos/geopolitical_v10.owl" - - - - - - - Definition take from: http://xmlns.com/foaf/spec/#term_based_near . foaf indicates that the status of this term is "unstable". "The based_near relationship relates two "spatial things" (anything that can be somewhere), the latter typically described using the geo:lat / geo:long geo-positioning vocabulary (http://www.w3.org/2003/01/geo/wgs84_pos#). This allows us to say describe the typical latitute and longitude of, say, a Person (people are spatial things - they can be places) without implying that a precise location has been given." - 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. - - - - Note that the administering department is not the central research administration office (such as University of Florida DSP or Cornell OSP) -- we didn't see a need to record a relationship to that office because it implicitly manages all grants. - - - - - The most general classification of a person - - - - - - - - - - - - - - - - - - - - - - - http://purl.org/ontology/bibo/ - - - - Starting page number within a continuous page range. - stable - - - - - - - - - - - - - - - 1 - - - - - - Fisheries Global Information System - http://www.fao.org/figis/servlet/RefServlet - http://www.fao.org/figis/servlet/RefServlet - Fisheries Global Information System http://www.fao.org/figis/servlet/RefServlet - - - - - - - - - stable - Short Definition is the Medical Subject Heading (MeSH) definition - - An unpublished Document, which may also be submitted to a publisher for publication. - Works prepared by hand including handwritten or typescript drafts of pre-publication papers or works not otherwise reproduced in multiple copies - http://purl.org/ontology/bibo/ - - - - - Encompasses talk, speech, lecture, slide lecture, conference presentation - - - - - - - - - - - - - - - - - - - Smaller administrative division into which a country may be divided. - - Boroughs; townships; districts; the Midwest - For example, the Midwest, northeast U.S. - Short definition was partially taken from http://en.wikipedia.org/wiki/Subnational_entity. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - http://www.fao.org/termportal/contr/es/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/en/ - - - 2010-06-24 - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/fr/ - FAO terminology - - - - - - - - - - - - - 2010-06-24 - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/zh/ - - FAO terminology - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/ar/ - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - Audiovisual recording in video format - - - - - - - - - Short Definition from the bibo ontology - something that is printed or published and distributed, esp. a given number of a periodical - stable - - http://purl.org/ontology/bibo/ - something that is printed or published and distributed, esp. a given number of a periodical - - - - - - - - An explicit individual period considered by an academic institution to be its primary academic cycle. - - - - - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - 2010-06-24 - http://www.fao.org/termportal/contr/zh/ - - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/en/ - FAO terminology - http://www.fao.org/termportal/contr/ar/ - - http://www.fao.org/termportal/contr/es/ - - - - - - - UN Statistics Division http://unstats.un.org/unsd/methods/m49/m49alpha.htm - 2010-04-01 - http://unstats.un.org/unsd/methods/m49/m49alphaf.htm - http://unstats.un.org/unsd/methods/m49/m49alpha.htm - http://unstats.un.org/unsd/methods/m49/m49alpha.htm - UN Statistics Division - - - - - 1 - - - - http://faostat.fao.org - http://faostat.fao.org - - - http://faostat.fao.org/default.aspx?lang=fr - FAOSTAT - http://faostat.fao.org/default.aspx?lang=es - FAOSTAT http://faostat.fao.org - - - - 1 - - - - - - - - - - - - - Currently being used by a restriction on organization. - - - - - - - - - - - - - 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. - - - - - ISO 3166-1 - http://www.iso.org/iso/country_codes/iso_3166_code_lists.htm - ISO 3166-1 http://www.iso.org/iso/country_codes/iso_3166_code_lists.htm - - - - - - - - - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/en/ - 2010-06-24 - http://www.fao.org/termportal/contr/es/ - - FAO terminology - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/fr/ - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.iso.org/iso/fr/country_codes/iso_3166_code_lists.htm - - - - - - Authorship of journal articles, books and other original works is a means by which academics communicate the results of their scholarly work, establish priority for their discoveries, and build their reputation among their peers. -This class allows for linking an author to a publication while indicating information about that author's authorship. - Contains the authors name, their rank in the publication, and whether or not they are a corresponding author on the publication. - - Currently any abstract name is given to members of this class. This could change in the future. - - - A seminar, discussion group, or the like, that emphasizes zxchange of ideas and the demonstration and application of techniques, skills, etc. - stable - http://purl.org/ontology/bibo/ - - Bibo Definition: A seminar, discussion group, or the like, that emphasizes exchange of ideas and the demonstration and application of techniques, skills, etc. - - - - - 1 - - - - - - - - - - 1 - - - - - - PubMed Identifier - stable - The PubMed ID (PMID) identifies a citation record (rather than full-text) in the PubMed database. It is not evidence of compliance with the NIH Public Access Policy, because it does not identify a full-text submission of any kind. - http://purl.org/ontology/bibo/ - - - - aka movie. - http://purl.org/ontology/bibo/ - - Audiovisual recording in film format - - stable - - - - Committee on Institutional Cooperation (CIC); The Five Colleges of Ohio - Independent organizations formally working together toward a common goal, under an expressed agreement - - - - - - - - - - - - - - - A group of related documents issued at regular intervals. - http://purl.org/ontology/bibo/ - stable - - - - - - - - - - - - - - - http://www.fao.org/termportal/contr/ar/ - - http://www.fao.org/termportal/contr/es/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/contr/en/ - - FAO terminology - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/fr/ - 2010-06-24 - - - - - - - - - - A large contiguous landmass that is at least partially surrounded by water, together with any islands on its continental shelf. - The seven commonly recognized continents are Africa; Antarctica; Asia; Australia; Europe; North America; South America - Short Definition take from http://en.wiktionary.org/wiki/continent. - - - - - - - - - - - - - - - 1 - - - - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/en/ - - http://www.fao.org/termportal/contr/en/ - - FAO terminology - http://www.fao.org/termportal/contr/fr/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/ar/ - 2010-06-24 - - - - - - - - - - This is done through a restriction on the foaf:Person class. - - - - - - - - - - - - - - - - - - - - This is done through a restriction on the foaf:Person class. - - - - - - - - - - This is done through a restriction on academic degree to allow the values from to be foaf:organization to be used as the range. - - - - - - FAO terminology - http://www.fao.org/termportal/contr/es/ - - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/en/ - - - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/en/ - 2010-06-24 - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - - - - - - - - - - - - - - - http://faostat.fao.org/site/377/default.aspx - - FAOSTAT http://faostat.fao.org http://faostat.fao.org/site/377/default.aspx - http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=fr#ancor - Land area is the total area of the country excluding area under inland water bodies. Possible variations in the data may be due to updating and revisions of the country data and not necessarily to any change of area. Data are expressed in 1 000 hectares. http://faostat.fao.org/site/375/default.aspx - - http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=es#ancor - 2009-04-30 - FAOSTAT - - - A unit devoted primarily to extension activities, whether for outreach or research. - - - Alachua County Extension Office - - - - 1 - - - - - Public Description for bibo:distributor taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . - - - - FAO terminology - - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/zh/ - 2010-06-24 - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/ar/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/en/ - - - - - - - - - - - - - - - - http://purl.org/ontology/bibo/ - - - The public description was taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html - A legal decision that affirms a ruling. - - - - - - - - - - Something designed, built, installed, etc., to serve a specific function or activity affording a convenience or service. - Distinct from the organization that runs it; e.g., a laboratory may be an organization but may be run by another organization and only consist of facilities housing equipment or services. Can be a building or place that provides a particular service or is used for a particular activity. Use the specific Building or Room whenever possible. Short definition from http://dictionary.reference.com/browse/facility. - - Use subclasses of core:Facility subclasses instead of this class if possible - - - - A gathering of people for a defined purpose, not necessarily public or announced - - - - - - 1 - - - - - 1 - - - - - - - - - - Library of Congress Blog - Blog is short for weblog. - - Regularly updated online journal or newsletter by one or more writers, called bloggers, containing articles and commentary of interest to the blogger - - - - - - - - - - - - - unstable - Relates an event to associated documents; for example, conference to a paper. - - - http://purl.org/ontology/bibo/ - - Public Description from source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . Bibo considers the bibo:presents and the bibo:presentedAt unstable terms. It also indicates that bibo:presents is a sub-property of event:product. - - - 2010-06-24 - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/fr/ - - - FAO terminology - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/contr/es/ - - - - - - - - - - - - - - - - - Either city or town - a thickly populated area having fixed boundaries and certain local powers of government. - - - - - - - - - - - That is a position held by an academic faculty member who works for administration. - - - - Associate Dean - An academic administrative position (associate dean, etc.) as distinct from a professional administrative position (non-academic) - - - - server; Bruker Vector-33 FT-IR - - A network server is one example. Medical schools and research laboratories can list professional equipment, such as microscopes. - - A physical object provided for specific purpose, task or occupation. - - - - - - - - - - A description (often numeric) that locates an item within a containing document or collection. - definition from: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html - stable - http://purl.org/ontology/bibo/ - - - - - 1 - - - - - - http://purl.org/ontology/bibo/ - A specific journal article - - A written composition in prose, usually nonfiction, on a specific topic, forming an independent part of a periodical or book - - Short Definition modified from the bibo ontology. - 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. - - stable - - - - - Director of Admissions and Placement; Associate University Librarian - Particular position in an organization, commonly identified by job title, and normally associated with a job description that details the tasks and responsibilities that go with the position. - - An employment activity, whether compensated or not. Short definition comes from http://en.wikipedia.org/wiki/Position, and has been modified. - - - - - - - - - - - - - - - The thesis degree. - - 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. - unstable - http://purl.org/ontology/bibo/ - - The source of the public description and this info is found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html. Bibo considers this term "unstable". The bibo editorial note is: "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." - - - - - - An organizational unit (as opposed to the physical facility) that performs research, provides services, or processes materials - - - - - - - - - Note: Bibo:editor is used as the inverse of core:editorOf. Public Description for bibo:editor was obtained from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . - - - - - - - - - - Relates a document to an event; for example, a paper to a conference. - - Public Description from source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . Bibo considers the bibo:presents and the bibo:presentedAt unstable terms. It also indicates that bibo:presents is a sub-property of event:product. - http://purl.org/ontology/bibo/ - - - - - unstable - - - - - - - - Agricultural area, this category is the sum of areas under a) arable land - land under temporary agricultural crops (multiple-cropped areas are counted only once), temporary meadows for mowing or pasture, land under market and kitchen gardens and land temporarily fallow (less than five years). The abandoned land resulting from shifting cultivation is not included in this category. Data for “Arable land” are not meant to indicate the amount of land that is potentially cultivable; (b) permanent crops - land cultivated with long-term crops which do not have to be replanted for several years (such as cocoa and coffee); land under trees and shrubs producing flowers, such as roses and jasmine; and nurseries (except those for forest trees, which should be classified under "forest"); and (c) permanent meadows and pastures - land used permanently (five years or more) to grow herbaceous forage crops, either cultivated or growing wild (wild prairie or grazing land). Data are expressed in 1000 hectares. http://faostat.fao.org/site/375/default.aspx - - http://faostat.fao.org/site/377/default.aspx - FAOSTAT - - http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=fr#ancor - last Update: 30 April 2009 - FAOSTAT http://faostat.fao.org - 2009-04-30 - http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=es#ancor - - - - - - - - - Public Definition source (http://www.answers.com/topic/publisher). - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - Use for teaching roles other than specific for-credit courses within a person's home institution. - Use for teaching experiences other than specific for-credit courses within a person's home institution. - - - - - - http://faostat.fao.org/DesktopDefault.aspx?PageID=550&lang=fr#ancor - FAOSTAT http://faostat.fao.org/site/550/default.aspx - http://faostat.fao.org/site/550/default.aspx - - FAOSTAT - The total population usually refers to the present-in-area (de facto) population which includes all persons physically present within the present geographical boundaries of countries at the mid-point of the reference period. http://faostat.fao.org/site/375/default.aspx - http://faostat.fao.org/DesktopDefault.aspx?PageID=550&lang=es#ancor - 2009-09-21 - - - - - US Patent Data; US Job Data - A named collection of data, usually containing only one type of data - - - - Computer program and its related documentation; directs the operation of a computer - - - - - - - - - - An agreement involving specific deliverables and payment - - - - - - - - - - - - - - - stable - - 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/ - An instance or a session in which testimony and arguments are presented, esp. before an official, as a judge in a lawsuit. - - Definiton from Bibo here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html - - - - - - - - http://purl.org/ontology/bibo/ - - - A document stating the facts and points of law of a client's case - unstable - A written argument submitted to a court. - - - A date and/or time - - - - - 1 - - - - - - - - - - - http://www.fao.org/termportal/contr/es/ - - - http://www.fao.org/termportal/contr/zh/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/en/ - FAO terminology - - http://www.fao.org/termportal/contr/ar/ - 2010-06-24 - http://www.fao.org/termportal/contr/en/ - - - My extension program consists of developing and reporting disease management strategies that are both economically and environmentally sound for fresh market vegetable production. We hope that some of this testing will result in practices adaptable for organic production. - - - - Used for a single narrative summary of outreach, typically covering a wide range of activities and time periods; use Outreach Provider Role for information on individual activities - - - http://purl.org/ontology/bibo/ - The suffix of a name - stable - - Jr.; III;; M.D. - - - - - http://purl.org/ontology/bibo/ - - Amazon Standard Identification Number - Amazon standard identification number. Source: http://en.wikipedia.org/wiki/Amazon_Standard_Identification_Number. - - stable - - 020530902X - - - - Member of the International Conference on Complex Systems Organizing Committee - - An activity of an individual within his or her profession or institution; use outreach provider role for community service or other activities outside the profession. - - - - - Note that the administering department is not the central research administration office (such as University of Florida DSP or Cornell OSP) -- we didn't see a need to record a relationship to that office because it implicitly manages all grants. - - - - 1 - - - - - - A person working in a position of librarian or information professional, or academic or technical expert in support of providing information services or materials. - - - - - - - - http://www.fao.org/termportal/contr/zh/ - - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/fr/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/en/ - - 2010-06-24 - FAO terminology - - - - stable - - A scholarly academic article, typically published in a journal. - - - http://purl.org/ontology/bibo/ - Written by scholars for other scholars, typically published in an academic journal with an abstract and bibliography - A specific academic journal article - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - stable - http://purl.org/ontology/bibo/ - Digital Object Identifier - - - - A short description of the resource. - 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. - http://purl.org/ontology/bibo/ - - - - http://www.un.org/Depts/Cartographic/english/htmain.htm - http://www.un.org/Depts/Cartographic/english/htmain.htm - http://www.un.org/russian/documen/maps/ - - UN Cartographic Section - - - http://www.un.org/Depts/Cartographic/french/htmain.htm - UN Cartographic Section - - - - - - - - - - - - - - http://purl.org/dc/terms/ - http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html - - - A summary of the resource. - stable - - - - Role of a person designated by a grantee to direct a project or activity being supported by a grant, and who is accountable to the grantee for the proper conduct of the project or activity. Also known as Program Director or Project Director. - - - - Definition take from here: http://dictionary.reference.com/browse/school. - - - School of Architecture; School of Music - An institution for instruction in a particular skill or field. - - - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/zh/ - 2010-06-24 - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - FAO terminology - - http://www.fao.org/termportal/en/ - - - - - - - - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/zh/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - FAO terminology - - 2010-06-24 - http://www.fao.org/termportal/en/ - - http://www.fao.org/termportal/contr/es/ - - - - - - - - - - An article reviewing one or more other information resources (a book, one or more other articles, movies, etc) - - - - - - - - - - - - - - - - - - - - - - - - - Bibo has the domain of bibo:issue as the class Issue, but an example on their site uses it with Article, referring to the issue number "4" - - - - - - Definition taken from: http://en.wikipedia.org/wiki/University - University of Florida; Washington University in St. Louis - - - An institution of higher education and research, which grants academic degrees in a variety of subjects, and provides both undergraduate education and postgraduate education. - - - - - Definition from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html - - - - - - 2 - - - - Top level of all location classes. - It's anticipated that the subclasses will be used when classifying items. And, all locations can be viewable via this class. - Use subclasses of core:Location when classsifying items. - - - - - - - - - A document created as a basis for discussion or a very early draft of a formal paper - - - - - - - - - - - - - - - - - - - - - - - - - - - Used for a single narrative summary of teaching, typically covering a wide range of courses including for credit and non-credit teaching over multiple semesters; the "teaches" property links a person directly with an instance of a Semester Class, typically from an institutional database of record; then use Teacher Role for information about a person's role in non-credit teaching or their specific contribution to individual courses - - - - - source: http://en.wikipedia.org/wiki/Issn - - http://purl.org/ontology/bibo/ - stable - - International Standard Serial Number - - - - - - - source of definition: http://www.uspto.gov/main/glossary/#p . The following site has patent number formats: http://www.uspto.gov/patents/ebc/kindcodesum.jsp . - - - - - - - - - - http://purl.org/ontology/bibo/ - - - Articles usually contain abstracts and bibliographies. Includes peer-reviewed, non-peer-reviewed, and open access journals. Journals are usually indexed in the major academic databases such as PubMed and Web of Science. - stable - A periodical of scholarly journal Articles. - Contains original scholarly research or review articles by experts in the field - Journal of Information Science; IEEE Intelligent System; Scientometrics - - - - http://purl.org/ontology/bibo/ - stable - - USA Today - A periodical of documents, usually issued daily or weekly, containing current news, editorials, feature articles, and usually advertising. - Contains news articles, opinions, features, advertising, and is usually issued daily or weekly - - - - - - - - - - - - - - - - - - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/zh/ - 2010-06-24 - FAO terminology - - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/en/ - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/fr/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Wiley Prize in Biomedical Sciences - An Award or Honor - An Award or Honor - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - http://purl.org/ontology/bibo/ - - stable - - An agent that receives a communication document. - - - - - - - Only use if no specific subclasses of core:EventSeries desribe the activity. - - - A generic class which may include a conference series, a course section, a seminar series, or a workshop series. When possible, use one of these more specific classes. - - - - Two or more events that follow on one after the other or are connected one after the other. - - - - - - Enter building name. If the building's name is a number (as in many governmental organizations such as national laboratories and military bases), then enter it. Do not confuse with the number that appears in a postal address. - Building that provides a particular service or is used for a particular activity. - Martha Van Rensselaer Hall (VR); Caldwell Hall (CD); University Auditorium - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - one keyword or phrase per freetextKeyword assertion - - conservation - -use one freetextKeyword assertion for each keyword or phrase. - - - - - -We would like the range of core:outcome to be the union of Event and Process; and that same union to be the range for core:outcomeOf, but we cannot currently express this with the editor. - - - - - - - - - The bibo:reviewOf public description was found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . As of 26 May 2010, bibo:reviewOf is used with the class Review, but core:reviewIn doesn't seem to be being used. - - - - - - - - - - Represents educational training that has been received. - This connects person to their academic degree through this educational training, but can also be used when the training does not result in a degree. - Currently any abstract name is given to individuals of this class. This could change in the future. - - - - - - - A paper presented at a conference; optionally collected into a Proceedings or a special Journal issue - - - - - - - - - - - http://purl.org/ontology/bibo/ - - Facebook; VIVOweb.org; Flickr - A group of Webpages accessible on the Web. - A group of webpages available within a specific parent address or URL on the World Wide Web - - - unstable - - - FAO terminology - - 2010-06-24 - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/contr/zh/ - - - - - Work consisting of collections of previously published works - - Short Definition is the Medical Subject Heading (MeSH) definition - A document that simultaneously contains other documents. - http://purl.org/ontology/bibo/ - stable - - - functions as an n-ary predicate - - a reified relationship - - - - - - - - An area of corporate activity organized as an administrative or functional unit. - Definition modified from http://www.thefreedictionary.com/division. It is difficult to tell the difference between a division and a department. - - Cardiovascular Medicine (division within medicine) - - - - - - - - The Ornithological Newsletter - 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 - - - - - - - - - - - - The bibo:reviewOf public description was found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . As of 26 May 2010, bibo:reviewOf is used with the class Review, but core:reviewIn doesn't seem to be being used. - - - - - - - - - VIVO Outreach Team; VIVO Ontology Team - - An informal organization brought together for the purposes of a project or event. - - - - - In the future we may be able to make this a defined class that would not need to be directly asserted, but the consensus seems to be that some organizations "are" clinical and some "are" research organizations and that the distinction is important enough to warrant the additional class and class assertions - Any organization with a significant clinical function as a matter of course and not just through occasional clinical roles - - - - - - - A Cornell graduate field (http://vivo.cornell.edu/index.jsp?home=65535&collection=820) - An ongoing academic initiative not formalized with department or division status. - - - - - - Definition take from: http://dictionary.reference.com/browse/hospital. - Shands at the University of Florida - - An institution that provides medical, surgical, or psychiatric care and treatment for the sick or the injured. - - - - stable - - Different from general academic degree, thesis degree is achieved through one's completed thesis. Thesis is a document submitted in support of candidature for a degree or professional qualification presenting the author's research and findings(http://en.wikipedia.org/wiki/Thesis_or_dissertation). - Doctor of Philosophy (Ph.D.) - The academic degree of a Thesis. - - http://purl.org/ontology/bibo/ - The academic degree of a Thesis - - - - Alchohol Education Center; Center for Arts and Public Policy; Hearing Research Center - - - A place where a particular activity or service is concentrated. - Short Definition take from http://www.thefreedictionary.com/center. - - - Country area, area of the country including area under inland water bodies, but excluding offshore territorial waters. Possible variations in the data may be due to updating and revisions of the country data and not necessarily to any change of area. Data are expressed in 1000 hectares. http://faostat.fao.org/site/375/default.aspx - FAOSTAT - - - http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=es#ancor - 2009-04-30 - http://faostat.fao.org/DesktopDefault.aspx?PageID=377&lang=fr#ancor - http://faostat.fao.org/site/377/default.aspx - FAOSTAT http://faostat.fao.org/site/377/default.aspx - - - Indicates the precision of the value of a DateTimeValue instance. - - - - - For example an HR job title for a person might be - Assistant University Librarian, and the preferred job title for that same person could be - Physical Sciences Librarian. - - Physical Sciences Librarian - - - - - - Short Definition from OCLC Input Standards, EntW - A document created to summarize research findings associated with the completion of an academic degree. - stable - - http://purl.org/ontology/bibo/ - Works created to satisfy the requirements for an academic certification or degree; also called dissertation - - - - - - A possible working example: The conference proceeding of the SPIE was generated from the conference - International Society for Optical Engineering. - - - - - - - - - - - - - - - - UN Statistics Division - - http://unstats.un.org/unsd/methods/m49/m49chang.htm - 2010-04-15 - - http://unstats.un.org/unsd/methods/m49/m49chgef.htm - http://unstats.un.org/unsd/methods/m49/m49alpha.htm - - UN Statistics Division http://unstats.un.org/unsd/methods/m49/m49chang.htm - - - - - - - - - - Only use if no specific subclasses of core:Role describe the role. - - - - A person's or organization's type of contribution to an endeavor - Only use this broad role class if no subclasses of role describe the item being classified. - - - - - - - - - - - - - - - - - - - - - - - - - - A graphical depiction of geographic features, scientific discipline, scientific data analytical results - A graphical depiction of geographic features. - The Short Definition is how the bibo ontology defines Map. It has been extended to include more broader concept of map which includes science maps, social network maps. - http://purl.org/ontology/bibo/ - unstable - - - - - UN Cartographic Section - UN Cartographic Section - - - A structured file of information or a set of logically related data stored and retrieved using computer-based means - Short Definition is the Medical Subject Heading (MeSH) definition - - - PubMed - - - - - - - - - - stable - http://purl.org/ontology/bibo/ - A meeting for consultation or discussion. - 2010 International Congress on Autoimmunity; American Libraries Association 2009 - core:Seminar and bibo:Conference are very similar. - - - A meeting for consultation or discussion. - - - - - - - - - - - - - - A distinct, usually ongoing and specialized unit within a large organization. - Definition modified from the definition here: http://dictionary.reference.com/browse/department. It is difficult to tell the difference between and department and a division. - Legal (department within a company); Use for any non-academic department - - - - 1 - - - - - 1 - - - - - - - - - - An online article or commentary appearing on a blog - - - A specific blog posting - - - Collection of documents or information resources that have a unified identity - stable - - Collection of documents or information resources that have a unified identity. Archives, museums and libraries often acquire collections on specific subjects and from distinguished authors or researchers. Also includes collections of resources bundled into a license. - http://purl.org/ontology/bibo/ - Hill Ornithology Collection; Wiley Interscience Online Books Biochemisty Collection - A collection of Documents or Collections - - - - - submitted; accepted; in-press; published; invited; refereed. - The status of document. - The publication status of a document. - The status of the publication of a document. - - http://purl.org/ontology/bibo/ - stable - - - - A private company is one that is privately-owned, and thus, is not publicly-traded in the stock market. Members of the general public cannot purchase stock in a private company unless that company chooses to go public and become a public company. - Publix Super Markets; Ernst & Young; PricewaterhouseCoopers - - Definition obtained here: http://answers.ask.com/Business/Finance/what_is_a_private_company. Examples of private companies found here: http://www.forbes.com/2008/11/03/largest-private-companies-biz-privates08-cx_sr_1103private_land.html - - - - - - - - - - - - - - - B.A. Bachelor of Arts - This list may have multiple abbreviations for some degrees. - - An academic degree at any level, both as reported by individuals for employment and as offered by academic degree programs. - - - - - - - - - - From OCLC Input Standards, EntW - unstable - Enactments of legislative bodies, published in either statute or code form - - http://purl.org/ontology/bibo/ - A legal document proposing or enacting a law or a group of laws. - - - - Minnesota; Michigan; Indiana; New York; Quebec; Manitoba; Ontario - Source of the Short Definition: http://www.thefreedictionary.com/state. - - - One of a number of areas or communities having their own governments and forming a federation under a sovereign government, as in the US. - - - http://purl.org/ontology/bibo/ - - - stable - Ending page number within a continuous page range. - - - - - - - - - - - - - - - - - - - phonograph record; tape; CD; DVD; DAT - An audio document; aka record. - - http://purl.org/ontology/bibo/ - stable - Recorded audio in any format - - - - - - - - http://unstats.un.org/unsd/methods/m49/m49alpha.htm - http://unstats.un.org/unsd/methods/m49/m49chgef.htm - UN Statistics Division http://unstats.un.org/unsd/methods/m49/m49chang.htm - 2010-04-15 - - UN Statistics Division - http://unstats.un.org/unsd/methods/m49/m49chang.htm - - - - - - - - A document containing an authoritative determination (as a decree or judgment) made after consideration of facts or law. - The written determination of a case, motion or claim by a court or tribunal - unstable - - http://purl.org/ontology/bibo/ - - - - 1 - - - - - - - - - FAO terminology - - http://www.fao.org/termportal/en/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/es/ - - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/zh/ - 2010-06-24 - - - http://purl.org/ontology/bibo/ - film; video; Blu-ray - Audiovisual recording in any format - - - - stable - An audio-visual document; film, video, and so forth. - - - - - Afghanistan; Antigua and Barbuda; Cameroon; Iceland; Jamaica; Nigeria; United States of America - Source of the Short Definition: http://www.thefreedictionary.com/country. This is also the same as geopolitical.owl:self_governing. - An area of land distinguished by its political autonomy. Politically independent territories. - - - - Use subclasses of core:Geographic Region subclasses instead of this class if possible. - - Removed the word "stable" because disputed territories from geopolitical.owl are included. This could imply that the geographic coordinates could change. This definition was originally in core:Geographic Location. I simply copied the definition from there. I think core:Geographic Location and core:Geographic Region are both the same and only one is needed. There is also geopolitical.owl:geographical_region which further causes confusion. - - A location having coordinates in geographic space. - - - Text of a speech written in preparation for delivery of the speech. - - - - - Examples shows a book has French language version. Public description source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . - - - stable - Relates a translated document to the original document. - http://purl.org/ontology/bibo/ - - - - - - - http://xmlns.com/foaf/spec/#term_lastName. Note from foaf: "The lastName property is provided (alongside firstName) as a mechanism to support legacy data that cannot be easily interpreted in terms of the (otherwise preferred) familyName and givenName properties. The concepts of 'first' and 'last' names do not work well across cultural and linguistic boundaries; however they are widely used in addressbooks and databases." - - - - - - - - - - - - - - - - - - UN cartographic maps (http://www.un.org/Depts/Cartographic/map/profile/world.pdf) - 2010-05-01 - - - UN cartographic maps - - http://www.un.org/Depts/Cartographic/map/profile/world.pdf - - - - - - - http://purl.org/ontology/bibo/ - stable - - - - - - - - - - - - - - - - A defined class of organizations that fund Grants. - - National Institute of Health (NIH) - - - - - - 1 - - - - - - - - Definition found here: http://dictionary.reference.com/browse/publisher - - A person or company whose business is the publishing of books, periodicals, engravings, computer software, etc. - Elsevier; Harper & Row; Indiana University Press - - - - - - - - - - - - - - - - - - - A student organization is an organization, operated by students at a university, whose membership normally consists only of students. - Dancin' Gators - - Definition take from here: http://en.wikipedia.org/wiki/Student_society - - - - - - Afghanistan; Antigua and Barbuda; Cameroon; Iceland; Jamaica; Nigeria; United States of America - - - - 1 - - - - - - - - - - - - - 2010-06-24 - FAO terminology - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/ar/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/contr/fr/ - - - - 1 - - - - - - - - - - - - - - - - The full URL. - Uniform Resource Locator (URL) specifies where an identified resource is available and the mechanism for retrieving it. - - http://info.slis.indiana.edu/~katy/ - - - - - 1 - - - - - - - - - - - - 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. - - - - - - - - - - - - The electronic ISSN number of a periodical. - eissn stands for Electronic International Standard Serial Number. source: http://www.definition-of.com/EISSN - http://purl.org/ontology/bibo/ - stable - - - - - - - - - 1 - - - - http://www.fao.org/termportal/contr/ar/ - - http://www.fao.org/termportal/en/ - FAO terminology - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/es/ - - 2010-06-24 - - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/zh/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - - - - - - - - - Short Definition copied from bibo ontology - - unstable - A compilation of documents published from an event, such as a conference. - http://purl.org/ontology/bibo/ - A compilation of documents published from an event, such as a conference - - - - - Public Definition source (http://www.answers.com/topic/publisher). - - - - - An Institute normally has a research focus but may also fulfill instructional or outreach roles. - - Institute for Fundamental Theory - - - - This class will display all the instances in the subclasses below it, as well as any organizations that were added as part of this generic class because there wasn't a specific class available. - - Only use if no specific subclasses of foaf:organization desribe the organization. - - A generic class encompassing several types of organizations. - - - - - - - Ued to describe an organization related to bibliographic items such as a publishing company, etc. - - - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/es/ - - FAO terminology - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/en/ - - 2010-06-24 - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/contr/zh/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - - - - - - - - - - - - - - - - - - - - A Person holding an academic employment appointment focused on research rather than teaching; temporary (or for some defined term) - - - - - - - definition modified from: source (http://en.wikipedia.org/wiki/Seating_capacity). - 55 - - - - 1 - - - - - - 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 - - - An organized series of workshop events, whether repetitions of the same workshop or multiple different workshops. - Use workshop for individual events. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Only use if no specific subclasses of event:Event are appropriate. - - - This class will also display instances of subclasses under Event, e.g. Philosophy Department Discussion Club; 2009 Racker Lecture; screening of a documentary. In addition to a location in space and time, an event may have any or all the following qualities: actively participating agents, passive factors, work products. Also, it may be in a virtual space or part of a series such as a lecture series. - -The previous short definition was: "An arbitrary classification of a space/time region, by a cognitive agent." - - - - - Something that happens at a given place and time. - - - - - - - - - - - - - - - 1 - - - - - - Fisheries Global Information System - http://www.fao.org/figis/servlet/RefServlet - http://www.fao.org/figis/servlet/RefServlet - Fisheries Global Information System http://www.fao.org/figis/servlet/RefServlet - - - http://www.fao.org/termportal/en/ - - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/zh/ - FAO terminology - http://www.fao.org/termportal/contr/ar/ - 2010-06-24 - - http://www.fao.org/termportal/contr/es/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - - - - - - - - - - - - - - A visual representation such as a photograph or graph - - A document that presents visual or diagrammatic information. - http://purl.org/ontology/bibo/ - stable - photograph; diagram - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - 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). - A specific award on a particular date or for a particular date range. - - Ninth annual Wiley Prize in Biomedical Sciences, for the discovery of a light activated ion channel - - - - - - - - - - - - - - - Short Definition from the bibo ontology - http://purl.org/ontology/bibo/ - Draft legislation presented for discussion to a legal body - - - Draft legislation presented for discussion to a legal body. - stable - - - - - - - - - - - - Role of co-principal investigator of a grant, who devotes a specified percentage of time and is considered key personnel. - - - Professor, associate professor and assistant professor are common positions for academic faculty. - Professor; Associate Professor; Assistant Professor - Academic position in a university or institution - - - - - - - - stable - - http://purl.org/ontology/bibo/ - http://en.wikipedia.org/wiki/Global_Trade_Item_Number. - Global Trade Item Number 14 - - - The dual relationship of a professor advising a student and the student being advised by a professor, typically including start and end dates - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - An explicit individual academic term, quarter, or semester rather than the generic fall, spring or summer semester. - - - - A form of qualitative descriptive research that is used to study individuals, a small group of participants, or a group as a whole. Medical usage (from MeSH): clinical presentations that may be followed by evaluative studies that eventually lead to a diagnosis. - - A qualitative descriptive research study of individuals or a group - - - 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. - http://purl.org/ontology/bibo/ - - An section number - - - - - - - - - - - - - - - - - - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/es/ - - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/ar/ - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - FAO terminology - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/en/ - 2010-06-24 - - - Used to relate a reference citation to a bibliographic resource. - - This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - 1 - - - - - http://purl.org/ontology/bibo/ - stable - - - An agent that interview another agent. - - - - - - - - - - - - - - - - - - - - - - - - - - - Fisheries Global Information System - http://www.fao.org/figis/servlet/RefServlet - http://www.fao.org/figis/servlet/RefServlet - Fisheries Global Information System http://www.fao.org/figis/servlet/RefServlet - - - a specific period or duration, defined by (optional) start and end date/times. - - - - - - - - - - - - - - - - - This is done through a restriction on academic degree to allow the values from to be foaf:organization to be used as the range. - - - - 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/ - stable - 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. - Short Definition from bibo ontology - - - - - - Written script for a film production, including dialogue and descriptions of gestures, actions, shooting directions - - - - - - - - - - - - - FAO terminology - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/ar/ - - http://www.fao.org/termportal/en/ - - http://www.fao.org/termportal/contr/en/ - 2010-06-24 - http://www.fao.org/termportal/contr/zh/ - - - - - - - - - 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. - - - - - - - - - - - - - - - - - - - - - - An article of opinion, typically published in a newspaper. For academics, most commonly Op Ed pieces - - - - - - - - - - - - - - - - - We can't yet assume that we will only have a single ORCID id for a person. -source: http://en.wikipedia.org/wiki/ORCID . - - - - - - - - - - Used to link a bibliographic item to its publisher. - Public definition source: http://dublincore.org/2008/01/14/dcterms.rdf# . -Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity. - - - FAO terminology - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/ar/ - 2010-06-24 - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/en/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - http://www.fao.org/termportal/contr/zh/ - - - - - - - - - - - - - - - - - - - - - - - - academic disciplines or more detailed research area - a subject, an academic field, a research area, or a discipline. SC. - semantic web; information visualization - - - - A presentation of a series of slides, usually presented in front of an audience with written text and images - - Short Definition from the bibo ontology - http://purl.org/ontology/bibo/ - - A presentation of a series of slides, usually presented in front of an audience with written text and images. - stable - - - - - - - - - - - Global Administrative Unit Layers - http://www.fao.org/geonetwork/srv/en/metadata.show?id=12691 - 2008-12-10 - Global Administrative Unit Layers http://www.fao.org/geonetwork/srv/en/metadata.show?id=12691 - - - - - - - - - - - - - - - - http://dictionary.reference.com/browse/prefix - - Mr; Ms; Mrs - - The prefix of a name - stable - - http://purl.org/ontology/bibo/ - - - - - - - - - - - - - - - - - - http://www.fao.org/termportal/contr/es/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/en/ - FAO terminology - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/contr/fr/ - - 2010-06-24 - - - - - - - - - - - - - - - - Resource dependent on other entities - This class is here so it can be equivalent to vitro:DependentResource. Deletion in the VIVO system behaves differently when deleting members of this class: related individuals may need to be deleted as well. - - - - - - - - - A distinct, usually specialized educational unit within an educational organization. - - - - Endodontics (department within a College of Dentistry); English (department within a College of Liberal Arts) - - - - - - - - - - - RearcherID is a Thomson Reuters project where researchers have a place to manage and share their professional information. It will allow them to solve author identity issues while simultaneously adding dynamic citation metrics and collaboration networks to your personal profile. -Definition source: http://isiwebofknowledge.com/researcherid/ - - - - - A person not considered a faculty member but holding an academic appointment. - - - - - - - - Short Definition from the bibo ontology - stable - A passage selected from a larger work - - A passage selected from a larger work. - http://purl.org/ontology/bibo/ - - - - 1 - - - - - - http://purl.org/ontology/bibo/ - stable - The public description source is: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html. - Critical or explanatory note for a Document. - - - - - - - - - - - An intramural or extramural award to support scholarly work, such as UF09179 (VIVO) - Short definition is from the Glossary of NIH Terms. - - - - Financial assistance mechanism providing money, property, or both to an eligible entity to carry out an approved project or activity - - - - - - - Written musical composition for voice or instruments or both - - - 2010-06-24 - http://www.fao.org/termportal/contr/ar/ - - http://www.fao.org/termportal/contr/fr/ - FAO terminology - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/en/ - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - - - - - The first sentence of the public description was taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html - - A legal decision that reverses a ruling. - http://purl.org/ontology/bibo/ - - - - - - Information Science; Computer Science; Anthropology - - - This namespace - http://purl.org/dc/elements/1.1/ - does not appear to have this element. - - - - - - - - - - 1 - - - - - - - - - - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/en/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - - http://www.fao.org/termportal/contr/ar/ - - http://www.fao.org/termportal/contr/zh/ - FAO terminology - 2010-06-24 - http://www.fao.org/termportal/en/ - - - Universal Product Code - - stable - - http://purl.org/ontology/bibo/ - source for public description: http://en.wikipedia.org/wiki/Universal_Product_Code. - - - - - - - - - 1 - - - - A person with at least one academic appointment to a specific faculty of a university or institution of higher learning. - Definition from here: http://research.carleton.ca/htr/defs.php. - - - - - - - - - - - - An occasion on which a winner is selected from among two or more contestants. - Intel Talent Search; poetry contest - Not the same as an award or distinction. - - - - - - - - - 1 - - - - - - A proposal for a research grant that has been submitted but not approved; does not represent an existing activity - - - - - A Film director. - Definition take from this site: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . - http://purl.org/ontology/bibo/ - stable - - - - - - - - - - - - - - - - - - - An academic course, normally but not always for credit - - - - 0.7 - - - http://purl.org/ontology/bibo/ - New Yorker - Abstracts and bibliographies are usually not included in magazines. - stable - 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. - - Contains articles of current events or general interest, geared to the reading public as being informative or recreational - - - - - - - - - Address has properties for department name, street, city, state or province, postal code, and country. For US specific address, classify using core:US Postal Code. core:Address will display all addresses. - - - University of Waterloo, 200 University Avenue West, Waterloo, Ontario, Canada N2L 3G1 - A code and abstract concept expressing a location on the Earth's surface. To classify US specific addresses, use core:US Postal Code. - - - Librarian; Library Systems Analyst; Music Bibliographer - It is the common position in libraries. - - A position held by library and information science professionals, or academic or technical experts, in support of providing information services or materials - - - - - - http://www.fao.org/termportal/contr/zh/ - - http://www.fao.org/termportal/en/ - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/ar/ - 2010-06-24 - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/fr/ - FAO terminology - http://www.fao.org/termportal/contr/es/ - - - - - - - - - - - - - - - - - - - - - - - - - http://purl.org/ontology/bibo/ - stable - - - Library of Congress Control Number - Source: http://en.wikipedia.org/wiki/Library_of_Congress_Control_Number. - - - - - - - - - - - - - - - - - - - - - A group can also be an organization but need not be; typically used for looser associations of people or organizations acting together in some fashion, not necessarily through formal agreement or on a long-term basis. Added to the VIVO ontology to be able to support informal and perhaps even private groups of people around an idea, funding opportunity, or event. - - A group of agents - - - http://purl.org/ontology/bibo/ - unstable - - - A chapter of a book. - A main division of a book - - - Curriculum Steering Committee; PhD Advisory Committee - - - - 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. - 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. - - - Short Definition from OCLC Input Standards, EntW - http://purl.org/ontology/bibo/ - A specification giving a precise statement of a process or a service requirement, often sanctioned by a nation or industry - stable - A document describing a standard - - - - - stable - A legal document; for example, a court decision, a brief, and so forth. - - - http://purl.org/ontology/bibo/ - a document that states some contractual relationship or grants some right - - - - - A lab providing services such as training, protocols, or access to instruments or software - - - 47405-3907 - - - - - - - - - - - - 1 - - - - - - - - - This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - - - 1320 East 10th Street, Wells Library 021 Bloomington, IN 47405 - - Formal address in US postal address system. - - - US postal address follow the format street, apt or office number (optional), city, state, and zipcode. - - - - - Public description modified from the information on this page: http://www.w3.org/TR/2005/WD-swbp-skos-core-guide-20050510/#sechierarchy . - - - - - - - - - - - Use for research involvement in a grant as a named investigator or key personnel. - - - - http://purl.org/ontology/bibo/ - One section of a website that appears at a unique address within the parent site's address or URL on the World Wide Web - unstable - - 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. - - - - Short Definition from the bibo ontology - - unstable - - A section of a book - - - http://purl.org/ontology/bibo/ - - A section of a book. - - - - Not intended to be an institution name. - - - - - - - - - - - - - - - - - - - - - A court associated with a legal document; for example, that which issues a decision. - - Public description take from: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html. Bibo considers this property "unstable". - - http://purl.org/ontology/bibo/ - unstable - - - - - - - - radio or newspaper interview - - A formalized discussion between two or more people. - http://purl.org/ontology/bibo/ - A conversation between two or more people where questions are asked by the interviewer to obtain information from the interviewee. - stable - - - - - - - - - - - - - - - - Definition was take from here: http://dictionary.reference.com/browse/museum - - - The Getty Museum - A building or place where works of art, scientific specimens, or other objects of permanent value are kept and displayed. - - - unstable - http://purl.org/ontology/bibo/ - Official court papers for a case - A document accompanying a legal case. - - - - - - - Indiana; Florida; Minnesota; Michigan; New York; Quebec; Manitoba; Ontario - - - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/en/ - - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/en/ - 2010-06-24 - FAO terminology - http://www.fao.org/termportal/contr/fr/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - For example, National Science Foundation providesFundingThrough Graduate Research Fellowship Program; National Institutes of Health providesFundingThrough National Center for Research Resources. - - - - - - - - - A small reference book, especially one giving instructions. - unstable - A book of instructions or guide to a specific topic - http://purl.org/ontology/bibo/ - - SDB User Manual - - - - sub-Saharan Africa, North America - - - None as yet. - Not sure how to access the "Editor's Comments". But as North America is a continent, it would be placed directly into the continent subclass and viewable through this class along with any other subclass entities. - Any region that goes beyond national boundaries and does not fit into any subclass of core:TransnationalRegion. - - - - - - - - - - - - - - - - - A short form for an longer title or name. - - B.A. - - - - - - - - - - A person holding a position that is not considered to be an academic appointment. - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - 1 - - - - - For example, National Science Foundation providesFundingThrough Graduate Research Fellowship Program; National Institutes of Health providesFundingThrough National Center for Research Resources. - - - - - - A location having coordinates in geographic space. - - Removed the word "stable" because disputed territories from geopolitical.owl are included. This could imply that the geographic coordinates could change. I've also copied this definition to core:Geographic Location. I think core:Geographic Location and core:Geographic Region are both the same and only one is needed. There is also geopolitical.owl:geographical_region which further causes confusion. - - Use subclasses of core:Geographic Location subclasses instead of this class if possible. - - - - - - - - - - - - - - 2010-06-24 - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/en/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - FAO terminology - http://www.fao.org/termportal/contr/ar/ - - - - - - - - - - - - - - - - - - - - - An agent that is interviewed by another agent. - stable - http://purl.org/ontology/bibo/ - - - - - - - - - - - - - - - Used for a single narrative summary of research, typically covering a wide range of activities and time periods; use Researcher Role for information on individual activities - - - - - - - - - A role involving research (funded or unfunded), sometimes linked to a grant - - Examples of research can be seen at: http://www.ufl.edu/research/products/index.html. Note these may have been funded, but the research doesn't have to be funded. - - Bacteria-resistant bandage; Termite prevention system; Hurricane resistant houses - - - - - - - - Relates a document to some transcribed original. - The bibo:transcriptOf public description was found here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . Bibo considers this term unstable. - http://purl.org/ontology/bibo/ - - - unstable - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - http://purl.org/ontology/bibo/ - An entity responsible for issuing often informally published documents such as press releases, reports, etc. - Publication Description source http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . This term is also considered unstable. - unstable - - - - - - - - - - - - - - - - - - - - - An offering through an ongoing program or single request of research support: internships, positions, financial awards or other forms of tangible or intangible support - - - - - - - - - - - - - - - - - - - http://purl.org/ontology/bibo/ - http://info-uri.info/registry/OAIHandler?verb=GetRecord&metadataPrefix=reg&identifier=info:oclcnum/. - - -bibo has the domain of this property set to the union of Collection and Document. - - stable - OCLC Identifier - - - - http://en.wikipedia.org/wiki/Isbn. - - - - - - - FAO terminology - http://www.fao.org/termportal/contr/fr/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/en/ - - 2010-06-24 - - - FAO terminology - - 2010-06-24 - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/fr/ - - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/ar/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - http://purl.org/ontology/bibo/ - http://purl.org/ontology/bibo/1.2/ - bibo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The concept name, URL, and source vocabulary name of a Subject Area. - http://www.getty.edu/vow/AATHierarchy?find=&logic=AND&note=&english=N&subjectid=300000000 - - Reference to a specific source of a vocabulary. - - - - - - source: http://en.wikipedia.org/wiki/Isbn. - - - - - http://www.fao.org/termportal/contr/es/ - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/ar/ - - http://www.fao.org/termportal/contr/en/ - FAO terminology - http://www.fao.org/termportal/contr/fr/ - 2010-06-24 - - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/en/ - - - - - - - - - Definition from: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html - - - - - - - - - 1320 E. 10th St. - Definition take from: http://dictionary.reference.com/browse/street - - - - - - - - - - - - 1 - - - - - - - Short Definition from the bibo ontology - stable - - - http://purl.org/ontology/bibo/ - - 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. - - A bounded physical representation of a body of information designed with the capacity (and usually intent) to communicate - - - - - - - - - - - - - - - FAO terminology - 2010-06-24 - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/en/ - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/contr/ar/ - - - - - - - - - Short Definition from the bibo ontology - - A document that presents authoritative reference information, such as a dictionary or encylopedia - A document that presents authoritative reference information, such as a dictionary or encylopedia . - http://purl.org/ontology/bibo/ - unstable - - - - - - - - - - - - - FAO terminology - http://www.fao.org/termportal/contr/ar/ - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/es/ - - http://www.fao.org/termportal/contr/fr/ - 2010-06-24 - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/zh/ - - - - - stable - http://purl.org/ontology/bibo/ - Definition source: http://en.wikipedia.org/wiki/European_Article_Numbering-Uniform_Code_Council. -The Uniform Code Council (UCC) was the Numbering Organization in the USA to administer and manage the EAN.UCC System. In 2005 the UCC changed its name to GS1 US. - European Article Number/Uniform Commercier Code 13 - - - Since we have defined geopolitical.owl.hasMember to be a subproperty of core:hasMember, we should not make changes to this property that would change the definition of geopolitical.owl.hasMember in ways that may make it inconsistent with its usage in other ontologies. - - - - - An edited book. - http://purl.org/ontology/bibo/ - - - Best American Science Writing 2009 - - stable - An edited collection of stand-alone articles published as a book - - - - - - Use subclasses of core:GeopoliticalEntity subclasses instead of this class if possible. - - A geographical area which is associated with some sort of political structure. - - Short definition obtained here: http://en.wiktionary.org/wiki/geopolitical_entity. - - - - - - - - - - - - - - - - - - - - - - - - 100 Caldwell Hall; 114 Martha Van Rensselaer (Rushmore Conference Room) - Room that provides a particular service or is used for a particular activity. - - - Enter room number of name. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Medicine - - - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/ar/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/es/ - 2010-06-24 - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/fr/ - FAO terminology - - - http://www.fao.org/termportal/contr/zh/ - - - - - Examples shows a book has French language version. Public description source: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . - - - - 1 - - - - - 1 - - - - - - - - - - - - 1 - - - - - - - - - - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/en/ - FAO terminology - http://www.fao.org/termportal/contr/es/ - - http://www.fao.org/termportal/contr/zh/ - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - 2010-06-24 - http://www.fao.org/termportal/contr/ar/ - - - - College of Arts & Sciences; Ivy Tech Community College - - A primary academic unit within a University or a free-standing higher education organization without graduate degree programs. - - - - Document1 isVersionOf Document2 - - This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration. - - - - - - - - - http://data.albankaldawli.org/indicator/NY.GDP.MKTP.CD - http://donnees.banquemondiale.org/indicateur/NY.GDP.MKTP.CD - World Bank national accounts data http://data.worldbank.org/indicator/NY.GDP.MKTP.CD - 2010-04-19 - World Bank - http://datos.bancomundial.org/indicador/NY.GDP.MKTP.CD - GDP at purchaser's prices is the sum of gross value added by all resident producers in the economy plus any product taxes and minus any subsidies not included in the value of the products. It is calculated without making deductions for depreciation of fabricated assets or for depletion and degradation of natural resources. Data are in current U.S. dollars. Dollar figures for GDP are converted from domestic currencies using single year official exchange rates. For a few countries where the official exchange rate does not reflect the rate effectively applied to actual foreign exchange transactions, an alternative conversion factor is used. Source: World Bank national accounts data, and OECD National Accounts data files. http://data.worldbank.org/indicator/NY.GDP.MKTP.CD - - - http://data.worldbank.org/indicator/NY.GDP.MKTP.CD - - - - - - - - - - 1 - - - - - 1 - - - - - - - - - - - - - - - - - - - - - http://purl.org/ontology/bibo/ - Supreme Court Reporter - - - A collection of legal cases. - Collection of legal cases - stable - - - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/fr/ - - http://www.fao.org/termportal/contr/es/ - FAO terminology - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/ar/ - 2010-06-24 - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - - - 1 - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - http://xmlns.com/foaf/spec/#term_firstName. Note from foaf: "The lastName property is provided (alongside firstName) as a mechanism to support legacy data that cannot be easily interpreted in terms of the (otherwise preferred) familyName and givenName properties. The concepts of 'first' and 'last' names do not work well across cultural and linguistic boundaries; however they are widely used in addressbooks and databases." - - - - - - - - - UITS service - - UITS service is the information technology services provided by Indiana University. SC. - - A regularly offered service in support of an academic, research, or administrative function (not personal or professional service by an individual) - - - - - - - - - - - - - - 1 - - - - - - - - - Since we have defined geopolitical.owl.hasMember to be a subproperty of core:hasMember, we should not make changes to this property that would change the definition of geopolitical.owl.hasMember in ways that may make it inconsistent with its usage in other ontologies. - - - - - - Cornell Ithaca; Cornell Geneva; Cornell New York City; Cornell Qatar - Definition taken from dictionary.com (http://dictionary.reference.com/browse/campus). - - The grounds of a school, college, university, or hospital. Or, a large, usually suburban, landscaped business or industrial site. - - - - - - - - - - unstable - A slide in a slideshow - A slide in a slideshow - - http://purl.org/ontology/bibo/ - Short Definition from the bibo ontology - - - - 1 - - - - - - - - - - 1 - - - - - - This is done with a restriction on agent. - - - - Code of Federal Regulations - - Short Definition from OCLC Input Standards, EntW - - http://purl.org/ontology/bibo/ - stable - A work consisting of texts of rules and regulations related to statutes issued by executive or administrative agencies - A collection of statutes. - - - - - - - - - - - - - - - - Used information from this definition: http://dictionary.reference.com/browse/library. - A collection of any materials, for study and enjoyment, which has been systematically arranged. - Marston Science Library - - - - - - - - - A public performance. - - unstable - Something carried out, acted or rendered. - - http://purl.org/ontology/bibo/ - - - - 1 - - - - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/contr/fr/ - 2010-06-24 - - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/contr/en/ - - http://www.fao.org/termportal/en/ - FAO terminology - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - - - - - - - - - - - - - - - - - Public Description for bibo:distributor taken from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . - - - - - - - - - - - - - - 1 - - - - - - - - full email address - - - - - - - - - - -We would like the range of core:outcome to be the union of Event and Process; and that same union to be the range for core:outcomeOf, but we cannot currently express this with the editor. - - - Used to describe any "agent" related to bibliographic items. Such agents can be persons, organizations or groups of any kind. - - - - - - - - - - - - Chicago; New York; Bloomington; Gainesville - - - - - - - - - - - - For data ingest from authoritative sources to record the actual way a person was listed as author, as potentially valuable information for author disambiguation. - - - - - - - - - - - - - - - A person who has already received a bachelor's degree and is working toward a Master's or Doctoral degree. - - - - - - - - - - AGROVOC - http://aims.fao.org/fr/website/Search-AGROVOC/sub - http://aims.fao.org/zh-hans/website/Search-AGROVOC/sub - AGROVOC http://aims.fao.org/website/Search-AGROVOC/sub - http://aims.fao.org/ar/website/Search-AGROVOC/sub - http://aims.fao.org/es/website/Search-AGROVOC/sub - http://aims.fao.org/website/Search-AGROVOC/sub - http://aims.fao.org/website/Search-AGROVOC/sub - - - Used to link a bibliographic item to one of its contributor: can be an author, an editor, a publisher, etc. - - - - - - - - - - - - - - - - - - - - - - - - - - - - Any organization (likely also asserted as another class of Organization) with a primary, ongoing research function, not just through occasional roles - - - - - - - - - 1 - - - - - - The result of rendering a work from one language to another - - - - - - - - - - - - - - administrative secretary - Definition http://en.wikipedia.org/wiki/Job_title#Job_title. - - - - - 1 - - - - - - - - - - - - 1 - - - - http://www.fao.org/figis/servlet/RefServlet - http://www.fao.org/figis/servlet/RefServlet - - - Fisheries Global Information System http://www.fao.org/figis/servlet/RefServlet - - Fisheries Global Information System - - - - - - - - - - - - - Medical Subject Heading (MeSH) definition of Technical Report: Work consisting of a formal report giving details of the investigation and results of a medical or other scientific problem. When issued by a government agency or comparable official body, its contents may be classified, unclassified, or declassified with regard to security clearance. This publication type may also cover a scientific paper or article that records the current state or current position of scientific research and development. If so labeled by the editor or publisher, this publication type may be properly used for journal articles. - 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/ - A document describing an account or statement describing in detail an event, situation, or the like, usually as the result of observation, inquiry, etc. - - stable - - - - 1 - - - - - - - - - http://www.fao.org/termportal/contr/ar/ - - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/contr/en/ - - http://www.fao.org/termportal/contr/zh/ - 2010-06-24 - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/es/ - FAO terminology - - - 2010-06-24 - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/en/ - http://www.fao.org/termportal/contr/ar/ - FAO terminology - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/es/ - - http://www.fao.org/termportal/contr/zh/ - - http://www.fao.org/termportal/contr/fr/ - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - 1 - - - - - - A retired professor who retained their rank, title and privileges. - - - - - - - - - For individual, separate conferences, use conference instead. core:ConferenceSeries and core:SeminarSeries are very similar. - - - An organized series of a meeting for consultation or discussion. - - - - - A person registered in an undergraduate program leading to a bachelor's degree or an undergraduate diploma or certificate. - - - An excerpted collection of words - - - stable - An excerpted collection of words. - http://purl.org/ontology/bibo/ - Short Definition from the bibo ontology - - - - A position involving academic work but without faculty status - Researcher; Academic Extension Associate; Postdoctoral Associate - - - Those positions are held by people who do academic work but do not have faculty positions in universities or institutes. - - - - - - - - - - Currently being used by a restriction on organization. - - - - - - - - - - - The example is one outreach role required by US space agency NASA, which is related with one project in NASA. Name of the outreach role should be put here. - - - An outreach or community service role directed outside a person's primary profession and institution - Communicating Astronomy to the Public - - - - - - - - stable - A loose, thematic, collection of Documents, often Books. - - A thematic collection of documents, usually books, issued at regular or irregular intervals - http://purl.org/ontology/bibo/ - - - - Methods in Molecular Biology - - - - - - - - - - - - - - Definition take from: http://dictionary.reference.com/browse/foundation. - An institution financed by a donation or legacy to aid research, education, the arts, etc. - - The Ford Foundation - - - - - http://purl.org/ontology/bibo/ - - - Public description is from comments of this object property in bibo ontology located here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html - - A legal decision on appeal that takes action on a case (affirming it, reversing it, etc.). - - - - CODEN became particularly common in the scientific community as a citation system for periodicals cited in technical- as well in chemistry-related publications and as a search tool in many bibliographic catalogues. -Definition and description came from Wikipedia here: http://en.wikipedia.org/wiki/CODEN - http://purl.org/ontology/bibo/ - An identifier of serials, still in use by libraries, but replaced by ISSN for any new work - stable - - - - This is done with a restriction on agent. - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - The showing of an object or a collection of objects, in an organized manner. - - - - - Fisheries Global Information System - http://www.fao.org/figis/servlet/RefServlet - http://www.fao.org/figis/servlet/RefServlet - Fisheries Global Information System http://www.fao.org/figis/servlet/RefServlet - - - - - Short Definition modified from the one found here: http://www.thefreedictionary.com/county. - Alachua; Baker; Bradford; Kenora; Ottawa; Waterloo - The largest administrative division of most states or provinces. - - - - - - - - - - Home page for Scopus: http://www.scopus.com/home.url - - - - - Short Definition from bibo ontology - http://purl.org/ontology/bibo/ - stable - A bill enacted into law - A bill enacted into law. - - - - - - - - - - - - - Short Definition from the bibo ontology - A distinct part of a larger document or collected document - - - http://purl.org/ontology/bibo/ - - a distinct part of a larger document or collected document. - unstable - - - - - - 1 - - - - - Short Definition copied from bibo ontology - - - 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 written or printed work of fiction or nonfiction, usually on sheets of paper fastened or bound together within covers - stable - - - - - - - - - - - - - - - - - - A laboratory that exists primarily to conduct research vs. to provide services - - - - - - - - - - - - - - - An endeavor, frequently collaborative, that occurs over a finite period of time and is intended to achieve a particular aim. - An endeavor, frequently collaborative, that occurs over a finite period of time and is intended to achieve a particular aim. - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - A URLLink that is designated (by the user or anyone else) as a primary link for the person, organization, event, etc. - - - - 1 - - - - - - - - - 1 - - - - - 1 - - - - - A formal organization of people or organizations around a subject or practice. - - Special Libraries Association; Association for Computing Machinery(ACM); American Medical Informatics Association(AMIA) - - - - - - - - Note: Bibo:editor is used as the inverse of core:editorOf. Public Description for bibo:editor was obtained from here: http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html . - - - - 1 - - - - - 1 - - - - - - A postdoctoral training appointment (job) - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/contr/es/ - http://www.fao.org/termportal/contr/fr/ - http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/en/ - 2010-06-24 - http://www.fao.org/termportal/contr/ar/ - - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - FAO terminology - - - - - - - - - 1 - - - - - - A possible working example: The conference proceeding of the SPIE was generated from the conference - International Society for Optical Engineering. - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - The name defining a special edition of a document. Normally its a literal value composed of a version number and words. - stable - - http://purl.org/ontology/bibo/ - - - FAO terminology. FAOTERM. http://www.fao.org/termportal/en/ - http://www.fao.org/termportal/contr/zh/ - http://www.fao.org/termportal/contr/es/ - - http://www.fao.org/termportal/contr/ar/ - http://www.fao.org/termportal/contr/fr/ - FAO terminology - http://www.fao.org/termportal/contr/en/ - - http://www.fao.org/termportal/en/ - 2010-06-24 - - - - 1 - - - - - 1 - - - - - - - - - - - - - - - - - - 2010-04-01 - UN Statistics Division http://unstats.un.org/unsd/methods/m49/m49alpha.htm - UN Statistics Division - - - http://unstats.un.org/unsd/methods/m49/m49alphaf.htm - http://unstats.un.org/unsd/methods/m49/m49alpha.htm - http://unstats.un.org/unsd/methods/m49/m49alpha.htm - - - - - - - - - 1 - - - - - paraphrased editorial note from the bibo ontology: We are not defining, using an enumeration, the range of the bibo:status to be a defined list of bibo:DocumentStatus. This is because we want people to be able to define new statuses if needed; and creating such an enumeration would prevent this. - - - - - A list of items in a collection; an ordered compilation of item descriptions and sufficient information to afford access to them - - - NLM Catalog - - Short Definition is the Medical Subject Heading (MeSH) definition - - -