OJ Break v2 Taxon Reference
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 JavaScript Object Notation (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
- 2.1 Taxon
- 2.1.1 getTaxonInfo
- 2.1.2 getTaxonHierarchy
- 2.1.3 getTaxonIncludedTaxa
- 2.1.4 getTaxonSynonyms
- 2.1.5 getTaxonAssociations
- 2.1.6 getTaxonLiterature
- 2.1.7 getTaxonOccurrences
- 2.1.8 getTaxonOccurrences
- 2.1.9 getTaxonTypes
- 2.1.10 getTaxonLocalities
- 2.1.11 getTaxonDeterminers
- 2.1.12 getTaxonInstitutions
- 2.1.13 getTaxonHabitats
- 2.1.14 getTaxonMedia
- 2.1 Taxon
- 3 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 Taxon 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/getAgentInfo?agent_id=2&format=json&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
Taxon
getTaxonInfo
Description
Parameters
- tnuid: tnuid
- inst_id: inst_id (optional)
- format: string
- key: string
- version: number
Return
- TaxonComplete
Example
getTaxonHierarchy
Description
Parameters
- tnuid: tnuid
- format: string
- key: string
- version: number
Return
- TaxonReturnHierarchy
Example
getTaxonIncludedTaxa
Description
Parameters
- tnuid: tnuid
- inst_id: inst_id (optional)
- show_syns: Boolean_flag (optional)
- show_fossils: Boolean_flag (optional)
- types_only: Boolean_flag (optional)
- show_num_spms: Boolean_flag (optional)
- format: string
- key: string
- version: number
Return
- TaxonReturnIncluded
Example
getTaxonSynonyms
Description
Parameters
- tnuid: tnuid
- show_fossils: Boolean_flag (optional)
- format: string
- key: string
- version: number
Return
- TaxonReturnSynonyms
Example
getTaxonAssociations
Description
Parameters
- tnuid: tnuid
- rank_grouping: rank (optional)
- format: string
- key: string
- version: number
Return
- TaxonReturnAssociations
Example
getTaxonLiterature
Description
Parameters
- tnuid: tnuid
- show_syns: Boolean_flag (optional)
- format: string
- key: string
- version: number
Return
- TaxonReturnLiterature
Example
getTaxonOccurrences
Description
Parameters
- tnuid: tnuid
- show_children: Boolean_flag (optional)
- inst_id: inst_id (optional)
- place_ids: array of place_id (optional)
- format: string
- key: string
- version: number
Return
- TaxonReturnOccurrences
Example
getTaxonOccurrences
Description
Parameters
- tnuids: array of tnuid
- place_ids: array of place_id (optional)
- format: string
- key: string
- version: number
Return
- TaxonReturnOccurrences
Example
getTaxonTypes
Description
Parameters
- tnuid: tnuid
- inst_id: inst_id (optional)
- taxon_author_search: string (optional)
- show_syns: Boolean_flag (optional)
- primary_only: Boolean_flag (optional)
- limit: number (optional)
- offset: number (optional)
- format: string
- key: string
- version: number
Return
- TaxonReturnOccurrences
Example
getTaxonLocalities
Description
Parameters
- tnuid: tnuid
- show_children: Boolean_flag (optional)
- inst_id: inst_id (optional)
- place_ids: array of place_id (optional)
- format: string
- key: string
- version: number
Return
- TaxonReturnLocalities
Example
getTaxonDeterminers
Description
Parameters
- tnuid: tnuid
- format: string
- key: string
- version: number
Return
- TaxonReturnDeterminers
Example
getTaxonInstitutions
Description
Parameters
- tnuid: tnuid
- format: string
- key: string
- version: number
Return
- TaxonReturnInstitutions
Example
getTaxonHabitats
Description
Parameters
- tnuid: tnuid
- format: string
- key: string
- version: number
Return
- TaxonReturnHabitats
Example
getTaxonMedia
Description
Parameters
- tnuid: tnuid
- format: string
- key: string
- version: number
Return
- TaxonReturnMedia
Example
See also
Visit any of the below links to find information about the other data domains defined by OJ_Break Version 2.