Difference between revisions of "OJ Break v2 Search Reference"
(→API Information and Access) |
|||
(9 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
'''Introduction''' | '''Introduction''' | ||
− | OJ_Break is the name of the xBio:D RESTful API service to facilitate discovery of data within the xBio:D database. The API can respond with | + | OJ_Break is the name of the xBio:D RESTful API service to facilitate discovery of data within the xBio:D database. The API can respond with HTML, JSON, XML, or JSON with padding (JSONP) and accepts HTTP GET and POST requests indiscriminately. The backend of the API is written in Oracle's PL/SQL database language, which is fast but often inflexible, while a Python presentation layer mitigates request handling and authentication. |
OJ_Break Version 2 is a new and improved edition of the work started in Version 1. Version 2 introduces a completely restructured and standardized data model to further enhance the functionality of the xBio:D database. | OJ_Break Version 2 is a new and improved edition of the work started in Version 1. Version 2 introduces a completely restructured and standardized data model to further enhance the functionality of the xBio:D database. | ||
Line 10: | Line 10: | ||
Using the OJ_Break Version 2 API requires calling methods with corresponding, method specific parameters (found on this page) and a few other required parameters. These required parameters include specifying a return ''format'', an API access ''key'', and a ''version'' number. | Using the OJ_Break Version 2 API requires calling methods with corresponding, method specific parameters (found on this page) and a few other required parameters. These required parameters include specifying a return ''format'', an API access ''key'', and a ''version'' number. | ||
− | Example: http://osuc.biosci.ohio-state.edu/OJ_Break/getSearchResults?search=Heptascelio& | + | Example: http://osuc.biosci.ohio-state.edu/OJ_Break/getSearchResults?search=%Heptascelio%&domains=TAXON+OCCURRENCES&format=html&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2 |
Notice the specification of the ''version'' parameter at the end of the example method call. With the introduction of OJ_Break Version 2, the ''version'' parameter has a default value of ''2'' making the specification in the example unnecessary. To read more about using the OJ_Break Version 2 API, go to [[OJ_Break API Access]]. | Notice the specification of the ''version'' parameter at the end of the example method call. With the introduction of OJ_Break Version 2, the ''version'' parameter has a default value of ''2'' making the specification in the example unnecessary. To read more about using the OJ_Break Version 2 API, go to [[OJ_Break API Access]]. | ||
+ | |||
+ | |||
+ | [[File:OJ_Break Data Model - Search.png|none|frame|Search Data Model]] | ||
== Procedural Reference == | == Procedural Reference == | ||
Line 20: | Line 23: | ||
===== Parameters ===== | ===== Parameters ===== | ||
* ''search'': string | * ''search'': string | ||
− | * '' | + | * ''*domains'': array of ''[[#domain|domain]]'' |
− | * ''basic_only'': Boolean_flag | + | * ''*basic_only'': Boolean_flag |
− | * ''limit'': number | + | * ''*limit'': number |
+ | * ''*offset'': number | ||
+ | * ''*case_sensative'': Boolean_flag | ||
+ | * ''*inst_id'': [[OJ_Break v2 Institution Reference#inst_id|inst_id]] | ||
* ''format'': string | * ''format'': string | ||
* ''key'': string | * ''key'': string | ||
* ''version'': number | * ''version'': number | ||
+ | |||
===== Return ===== | ===== Return ===== | ||
− | * | + | * [[#SearchReturnComplete (extends SearchReturn)|SearchReturnComplete]] |
===== Example ===== | ===== Example ===== | ||
− | http://osuc.biosci.ohio-state.edu/OJ_Break/getSearchResults?search=Heptascelio& | + | http://osuc.biosci.ohio-state.edu/OJ_Break/getSearchResults?search=%Heptascelio%&domains=TAXON+OCCURRENCES&format=html&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2 |
==== getTaxaFromText ==== | ==== getTaxaFromText ==== | ||
Line 36: | Line 43: | ||
===== Parameters ===== | ===== Parameters ===== | ||
* ''search'': string | * ''search'': string | ||
− | * ''basic_only'': Boolean_flag | + | * ''*basic_only'': Boolean_flag |
− | * ''limit'': number | + | * ''*limit'': number |
+ | * ''*offset'': number | ||
+ | * ''*case_sensative'': Boolean_flag | ||
+ | * ''*inst_id'': [[OJ_Break v2 Institution Reference#inst_id|inst_id]] | ||
* ''format'': string | * ''format'': string | ||
* ''key'': string | * ''key'': string | ||
* ''version'': number | * ''version'': number | ||
===== Return ===== | ===== Return ===== | ||
− | * | + | * [[#SearchReturnTaxa (extends SearchReturn)|SearchReturnTaxa]] |
===== Example ===== | ===== Example ===== | ||
− | http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxaFromText?search=Heptascelio&limit=30&format= | + | http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxaFromText?search=%Heptascelio%&limit=30&format=html&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2 |
==== getOccurrencesFromText ==== | ==== getOccurrencesFromText ==== | ||
Line 51: | Line 61: | ||
===== Parameters ===== | ===== Parameters ===== | ||
* ''search'': string | * ''search'': string | ||
− | * ''basic_only'': Boolean_flag | + | * ''*basic_only'': Boolean_flag |
− | * ''limit'': number | + | * ''*limit'': number |
+ | * ''*offset'': number | ||
+ | * ''*case_sensative'': Boolean_flag | ||
+ | * ''*inst_id'': [[OJ_Break v2 Institution Reference#inst_id|inst_id]] | ||
* ''format'': string | * ''format'': string | ||
* ''key'': string | * ''key'': string | ||
* ''version'': number | * ''version'': number | ||
===== Return ===== | ===== Return ===== | ||
− | * | + | * [[#SearchReturnOccurrences (extends SearchReturn)|SearchReturnOccurrences]] |
===== Example ===== | ===== Example ===== | ||
− | http://osuc.biosci.ohio-state.edu/OJ_Break/getOccurrencesFromText?search=Heptascelio&limit=30&format= | + | http://osuc.biosci.ohio-state.edu/OJ_Break/getOccurrencesFromText?search=%Heptascelio%&limit=30&format=html&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2 |
==== getAgentsFromText ==== | ==== getAgentsFromText ==== | ||
Line 66: | Line 79: | ||
===== Parameters ===== | ===== Parameters ===== | ||
* ''search'': string | * ''search'': string | ||
− | * ''include_party'': Boolean_flag | + | * ''*include_party'': Boolean_flag |
− | * ''basic_only'': Boolean_flag | + | * ''*basic_only'': Boolean_flag |
− | * ''limit'': number | + | * ''*limit'': number |
+ | * ''*offset'': number | ||
+ | * ''*case_sensative'': Boolean_flag | ||
+ | * ''*inst_id'': [[OJ_Break v2 Institution Reference#inst_id|inst_id]] | ||
* ''format'': string | * ''format'': string | ||
* ''key'': string | * ''key'': string | ||
* ''version'': number | * ''version'': number | ||
===== Return ===== | ===== Return ===== | ||
− | * | + | * [[#SearchReturnAgents (extends SearchReturn)|SearchReturnAgents]] |
===== Example ===== | ===== Example ===== | ||
− | http://osuc.biosci.ohio-state.edu/OJ_Break/getAgentsFromText?search=Johnson&limit=30&format= | + | http://osuc.biosci.ohio-state.edu/OJ_Break/getAgentsFromText?search=%Johnson%&limit=30&format=html&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2 |
==== getInstitutionsFromText ==== | ==== getInstitutionsFromText ==== | ||
Line 82: | Line 98: | ||
===== Parameters ===== | ===== Parameters ===== | ||
* ''search'': string | * ''search'': string | ||
− | * ''limit'': number | + | * ''*basic_only'': Boolean_flag |
+ | * ''*limit'': number | ||
+ | * ''*offset'': number | ||
+ | * ''*case_sensative'': Boolean_flag | ||
* ''format'': string | * ''format'': string | ||
* ''key'': string | * ''key'': string | ||
* ''version'': number | * ''version'': number | ||
===== Return ===== | ===== Return ===== | ||
− | * | + | * [[#SearchReturnInstitutions (extends SearchReturn)|SearchReturnInstitutions]] |
===== Example ===== | ===== Example ===== | ||
− | http://osuc.biosci.ohio-state.edu/OJ_Break/getInstitutionsFromText?search=OSUC&limit=30&format= | + | http://osuc.biosci.ohio-state.edu/OJ_Break/getInstitutionsFromText?search=%OSUC%&limit=30&format=html&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2 |
==== getJournalsFromText ==== | ==== getJournalsFromText ==== | ||
Line 96: | Line 115: | ||
===== Parameters ===== | ===== Parameters ===== | ||
* ''search'': string | * ''search'': string | ||
− | * ''limit'': number | + | * ''*basic_only'': Boolean_flag |
+ | * ''*limit'': number | ||
+ | * ''*offset'': number | ||
+ | * ''*case_sensative'': Boolean_flag | ||
* ''format'': string | * ''format'': string | ||
* ''key'': string | * ''key'': string | ||
* ''version'': number | * ''version'': number | ||
===== Return ===== | ===== Return ===== | ||
− | * | + | * [[#SearchReturnJournal (extends SearchReturn)|SearchReturnJournal]] |
===== Example ===== | ===== Example ===== | ||
− | http://osuc.biosci.ohio-state.edu/OJ_Break/getJournalFromText?search=Insect&limit=30&format= | + | http://osuc.biosci.ohio-state.edu/OJ_Break/getJournalFromText?search=%Insect%&limit=30&format=html&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2 |
==== getPlacesFromText ==== | ==== getPlacesFromText ==== | ||
Line 110: | Line 132: | ||
===== Parameters ===== | ===== Parameters ===== | ||
* ''search'': string | * ''search'': string | ||
− | * ''limit'': number | + | * ''*basic_only'': Boolean_flag |
+ | * ''*limit'': number | ||
+ | * ''*offset'': number | ||
+ | * ''*case_sensative'': Boolean_flag | ||
+ | * ''*inst_id'': [[OJ_Break v2 Institution Reference#inst_id|inst_id]] | ||
* ''format'': string | * ''format'': string | ||
* ''key'': string | * ''key'': string | ||
* ''version'': number | * ''version'': number | ||
===== Return ===== | ===== Return ===== | ||
− | * | + | * [[#SearchReturnPlaces (extends SearchReturn)|SearchReturnPlaces]] |
− | |||
===== Example ===== | ===== Example ===== | ||
− | http://osuc.biosci.ohio-state.edu/OJ_Break/getPlacesFromText?search=Sri+Lanka&limit=30&format= | + | http://osuc.biosci.ohio-state.edu/OJ_Break/getPlacesFromText?search=%Sri+Lanka%&limit=30&format=html&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2 |
==== getLocalitiesFromText ==== | ==== getLocalitiesFromText ==== | ||
Line 124: | Line 149: | ||
===== Parameters ===== | ===== Parameters ===== | ||
* ''search'': string | * ''search'': string | ||
− | * ''limit'': number | + | * ''*basic_only'': Boolean_flag |
+ | * ''*limit'': number | ||
+ | * ''*offset'': number | ||
+ | * ''*case_sensative'': Boolean_flag | ||
+ | * ''*inst_id'': [[OJ_Break v2 Institution Reference#inst_id|inst_id]] | ||
* ''format'': string | * ''format'': string | ||
* ''key'': string | * ''key'': string | ||
* ''version'': number | * ''version'': number | ||
===== Return ===== | ===== Return ===== | ||
− | * | + | * [[#SearchReturnLocalities (extends SearchReturn)|SearchReturnLocalities]] |
===== Example ===== | ===== Example ===== | ||
− | http://osuc.biosci.ohio-state.edu/OJ_Break/getLocalitiesFromText?search=Sri+Lanka&limit=30&format= | + | http://osuc.biosci.ohio-state.edu/OJ_Break/getLocalitiesFromText?search=Sri+Lanka&limit=30&format=html&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2 |
== Search Data Type Glossary == | == Search Data Type Glossary == | ||
Line 139: | Line 168: | ||
* ''count'': Number | * ''count'': Number | ||
− | ==== SearchReturnComplete (extends [[#SearchReturn|SearchReturn]] ==== | + | ==== SearchReturnComplete (extends [[#SearchReturn|SearchReturn]]) ==== |
− | * ''taxon_results'': [[# | + | * ''taxon_results'': [[#SearchReturnTaxa (extends SearchReturn)|SearchReturnTaxa]] [0..1] |
− | * ''occurrence_results'': [[# | + | * ''occurrence_results'': [[#SearchReturnOccurrences (extends SearchReturn)|SearchReturnOccurrences]] [0..1] |
− | * ''agent_results'': [[# | + | * ''agent_results'': [[#SearchReturnAgents (extends SearchReturn)|SearchReturnAgents]] [0..1] |
− | * ''institution_results'': [[# | + | * ''institution_results'': [[#SearchReturnInstitutions (extends SearchReturn)|SearchReturnInstitutions]] [0..1] |
− | * ''journal_results'': [[# | + | * ''journal_results'': [[#SearchReturnJournals (extends SearchReturn)|SearchReturnJournals]] [0..1] |
− | * ''locality_results'': [[# | + | * ''locality_results'': [[#SearchReturnLocalities (extends SearchReturn)|SearchReturnLocalities]] [0..1] |
− | * ''place_results'': [[# | + | * ''place_results'': [[#SearchReturnPlaces (extends SearchReturn)|SearchReturnPlaces]] [0..1] |
− | ==== SearchReturnAgents (extends [[#SearchReturn|SearchReturn]] ==== | + | ==== SearchReturnAgents (extends [[#SearchReturn|SearchReturn]]) ==== |
* ''agents'': array of [[OJ_Break v2 Agent Reference#AgentBasic|AgentBasic]] | * ''agents'': array of [[OJ_Break v2 Agent Reference#AgentBasic|AgentBasic]] | ||
− | ==== SearchReturnInstitutions (extends [[#SearchReturn|SearchReturn]] ==== | + | ==== SearchReturnInstitutions (extends [[#SearchReturn|SearchReturn]]) ==== |
* ''institutions'': array of [[OJ_Break v2 Institution Reference#InstitutionBasic|InstitutionBasic]] | * ''institutions'': array of [[OJ_Break v2 Institution Reference#InstitutionBasic|InstitutionBasic]] | ||
− | ==== SearchReturnJournals (extends [[#SearchReturn|SearchReturn]] ==== | + | ==== SearchReturnJournals (extends [[#SearchReturn|SearchReturn]]) ==== |
* ''journals'': array of [[OJ_Break v2 Journal Reference#JournalBasic|JournalBasic]] | * ''journals'': array of [[OJ_Break v2 Journal Reference#JournalBasic|JournalBasic]] | ||
− | ==== SearchReturnLocalities (extends [[#SearchReturn|SearchReturn]] ==== | + | ==== SearchReturnLocalities (extends [[#SearchReturn|SearchReturn]]) ==== |
* ''localities'': array of [[OJ_Break v2 Locality Reference#LocalityBasic|LocalityBasic]] | * ''localities'': array of [[OJ_Break v2 Locality Reference#LocalityBasic|LocalityBasic]] | ||
− | ==== SearchReturnOccurrences (extends [[#SearchReturn|SearchReturn]] ==== | + | ==== SearchReturnOccurrences (extends [[#SearchReturn|SearchReturn]]) ==== |
* ''occurrences'': array of [[OJ_Break v2 Occurrence Reference#OccurrenceBasic|OccurrenceBasic]] | * ''occurrences'': array of [[OJ_Break v2 Occurrence Reference#OccurrenceBasic|OccurrenceBasic]] | ||
− | ==== SearchReturnPlaces (extends [[#SearchReturn|SearchReturn]] ==== | + | ==== SearchReturnPlaces (extends [[#SearchReturn|SearchReturn]]) ==== |
− | * ''places'': array of [[OJ_Break v2 Place Reference#PlaceBasic|PlaceBasic]] | + | * ''places'': array of [[OJ_Break v2 Geographic Place Reference#PlaceBasic|PlaceBasic]] |
− | |||
− | ==== SearchReturnTaxa (extends [[#SearchReturn|SearchReturn]] ==== | + | ==== SearchReturnTaxa (extends [[#SearchReturn|SearchReturn]]) ==== |
* ''taxa'': array of [[OJ_Break v2 Taxon Reference#TaxonBasic|TaxonBasic]] | * ''taxa'': array of [[OJ_Break v2 Taxon Reference#TaxonBasic|TaxonBasic]] | ||
Line 179: | Line 207: | ||
* [[OJ_Break v2 Literature Reference|Literature]] | * [[OJ_Break v2 Literature Reference|Literature]] | ||
* [[OJ_Break v2 Locality Reference|Locality]] | * [[OJ_Break v2 Locality Reference|Locality]] | ||
+ | * [[OJ_Break v2 Media Reference|Media]] | ||
* [[OJ_Break v2 Occurrence Reference|Occurrence]] | * [[OJ_Break v2 Occurrence Reference|Occurrence]] | ||
* [[OJ_Break v2 Taxon Reference|Taxon]] | * [[OJ_Break v2 Taxon Reference|Taxon]] |
Latest revision as of 16:39, 9 June 2015
Introduction
OJ_Break is the name of the xBio:D RESTful API service to facilitate discovery of data within the xBio:D database. The API can respond with HTML, JSON, XML, or JSON with padding (JSONP) and accepts HTTP GET and POST requests indiscriminately. The backend of the API is written in Oracle's PL/SQL database language, which is fast but often inflexible, while a Python presentation layer mitigates request handling and authentication.
OJ_Break Version 2 is a new and improved edition of the work started in Version 1. Version 2 introduces a completely restructured and standardized data model to further enhance the functionality of the xBio:D database.
Contents
- 1 API Information and Access
- 2 Procedural Reference
- 3 Search Data Type Glossary
- 3.1 Classes
- 3.1.1 SearchReturn
- 3.1.2 SearchReturnComplete (extends SearchReturn)
- 3.1.3 SearchReturnAgents (extends SearchReturn)
- 3.1.4 SearchReturnInstitutions (extends SearchReturn)
- 3.1.5 SearchReturnJournals (extends SearchReturn)
- 3.1.6 SearchReturnLocalities (extends SearchReturn)
- 3.1.7 SearchReturnOccurrences (extends SearchReturn)
- 3.1.8 SearchReturnPlaces (extends SearchReturn)
- 3.1.9 SearchReturnTaxa (extends SearchReturn)
- 3.1 Classes
- 4 See also
API Information and Access
This page specifies the methods and data defined by OJ_Break Version 2, more precisely those that are defined by the Search data domain. To get information on any of the other data domains defined in OJ_Break Version 2, visit the See also section.
Using the OJ_Break Version 2 API requires calling methods with corresponding, method specific parameters (found on this page) and a few other required parameters. These required parameters include specifying a return format, an API access key, and a version number.
Example: http://osuc.biosci.ohio-state.edu/OJ_Break/getSearchResults?search=%Heptascelio%&domains=TAXON+OCCURRENCES&format=html&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2
Notice the specification of the version parameter at the end of the example method call. With the introduction of OJ_Break Version 2, the version parameter has a default value of 2 making the specification in the example unnecessary. To read more about using the OJ_Break Version 2 API, go to OJ_Break API Access.
Procedural Reference
Search
getSearchResults
Description
Parameters
- search: string
- *domains: array of domain
- *basic_only: Boolean_flag
- *limit: number
- *offset: number
- *case_sensative: Boolean_flag
- *inst_id: inst_id
- format: string
- key: string
- version: number
Return
Example
getTaxaFromText
Description
Parameters
- search: string
- *basic_only: Boolean_flag
- *limit: number
- *offset: number
- *case_sensative: Boolean_flag
- *inst_id: inst_id
- format: string
- key: string
- version: number
Return
Example
getOccurrencesFromText
Description
Parameters
- search: string
- *basic_only: Boolean_flag
- *limit: number
- *offset: number
- *case_sensative: Boolean_flag
- *inst_id: inst_id
- format: string
- key: string
- version: number
Return
Example
getAgentsFromText
Description
Parameters
- search: string
- *include_party: Boolean_flag
- *basic_only: Boolean_flag
- *limit: number
- *offset: number
- *case_sensative: Boolean_flag
- *inst_id: inst_id
- format: string
- key: string
- version: number
Return
Example
getInstitutionsFromText
Description
Parameters
- search: string
- *basic_only: Boolean_flag
- *limit: number
- *offset: number
- *case_sensative: Boolean_flag
- format: string
- key: string
- version: number
Return
Example
getJournalsFromText
Description
Parameters
- search: string
- *basic_only: Boolean_flag
- *limit: number
- *offset: number
- *case_sensative: Boolean_flag
- format: string
- key: string
- version: number
Return
Example
getPlacesFromText
Description
Parameters
- search: string
- *basic_only: Boolean_flag
- *limit: number
- *offset: number
- *case_sensative: Boolean_flag
- *inst_id: inst_id
- format: string
- key: string
- version: number
Return
Example
getLocalitiesFromText
Description
Parameters
- search: string
- *basic_only: Boolean_flag
- *limit: number
- *offset: number
- *case_sensative: Boolean_flag
- *inst_id: inst_id
- format: string
- key: string
- version: number
Return
Example
Search Data Type Glossary
Classes
SearchReturn
- count: Number
SearchReturnComplete (extends SearchReturn)
- taxon_results: SearchReturnTaxa [0..1]
- occurrence_results: SearchReturnOccurrences [0..1]
- agent_results: SearchReturnAgents [0..1]
- institution_results: SearchReturnInstitutions [0..1]
- journal_results: SearchReturnJournals [0..1]
- locality_results: SearchReturnLocalities [0..1]
- place_results: SearchReturnPlaces [0..1]
SearchReturnAgents (extends SearchReturn)
- agents: array of AgentBasic
SearchReturnInstitutions (extends SearchReturn)
- institutions: array of InstitutionBasic
SearchReturnJournals (extends SearchReturn)
- journals: array of JournalBasic
SearchReturnLocalities (extends SearchReturn)
- localities: array of LocalityBasic
SearchReturnOccurrences (extends SearchReturn)
- occurrences: array of OccurrenceBasic
SearchReturnPlaces (extends SearchReturn)
- places: array of PlaceBasic
SearchReturnTaxa (extends SearchReturn)
- taxa: array of TaxonBasic
See also
Visit any of the below links to find information about the other data domains defined by OJ_Break Version 2.