OJ Break v2 Taxon Reference

From xBio:D Wiki
Revision as of 15:24, 20 January 2015 by Tyler (talk | contribs)
Jump to navigation Jump to search

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

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/getTaxonInfo?tnuid=30148&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

http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonInfo?tnuid=30148&inst_id=1&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2

getTaxonHierarchy

Description
Parameters
  • tnuid: tnuid
  • format: string
  • key: string
  • version: number
Return
  • TaxonReturnHierarchy
Example

http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonHierarchy?tnuid=30148&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2

getTaxonIncludedTaxa

Description
Parameters
  • tnuid: tnuid
  • offset: number (optional)
  • limit: number (optional)
  • 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

http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonIncludedTaxa?tnuid=30148&inst_id=1&show_syns=Y&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2

getTaxonSynonyms

Description
Parameters
  • tnuid: tnuid
  • offset: number (optional)
  • limit: number (optional)
  • show_fossils: Boolean_flag (optional)
  • format: string
  • key: string
  • version: number
Return
  • TaxonReturnSynonyms
Example

http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonSynonyms?tnuid=30148&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2

getTaxonAssociations

Description
Parameters
  • tnuid: tnuid
  • offset: number (optional)
  • limit: number (optional)
  • rank_grouping: rank (optional)
  • format: string
  • key: string
  • version: number
Return
  • TaxonReturnAssociations
Example

http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonAssociations?tnuid=30148&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2

getTaxonLiteratureCitations

Description
Parameters
  • tnuid: tnuid
  • offset: number (optional)
  • limit: number (optional)
  • show_syns: Boolean_flag (optional)
  • format: string
  • key: string
  • version: number
Return
  • TaxonReturnLiteratureCitations
Example

http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonLiteratureCitations?tnuid=30148&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2

getTaxonOccurrences

Description
Parameters
  • tnuid: tnuid
  • offset: number (optional)
  • limit: number (optional)
  • show_children: Boolean_flag (optional)
  • inst_id: inst_id (optional)
  • place_id: place_id (optional)
  • format: string
  • key: string
  • version: number
Return
  • TaxonReturnOccurrences
Example

http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonOccurrences?tnuid=30148&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2

getTaxonTypes

Description
Parameters
  • tnuid: tnuid
  • offset: number (optional)
  • limit: number (optional)
  • 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

http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonTypes?tnuid=30148&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2

getTaxonLocalities

Description
Parameters
  • tnuid: tnuid
  • offset: number (optional)
  • limit: number (optional)
  • 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

http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonLocalities?tnuid=30148&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2

getTaxonDeterminers

Description
Parameters
  • tnuid: tnuid
  • offset: number (optional)
  • limit: number (optional)
  • inst_id: inst_id (optional)
  • format: string
  • key: string
  • version: number
Return
  • TaxonReturnDeterminers
Example

http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonDeterminers?tnuid=30148&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2

getTaxonInstitutions

Description
Parameters
  • tnuid: tnuid
  • offset: number (optional)
  • limit: number (optional)
  • format: string
  • key: string
  • version: number
Return
  • TaxonReturnInstitutions
Example

http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonInstitutions?tnuid=30148&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2

getTaxonHabitats

Description
Parameters
  • tnuid: tnuid
  • offset: number (optional)
  • limit: number (optional)
  • format: string
  • key: string
  • version: number
Return
  • TaxonReturnHabitats
Example

http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonHabitats?tnuid=30148&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2

getTaxonMedia

Description
Parameters
  • tnuid: tnuid
  • offset: number (optional)
  • limit: number (optional)
  • media_type: media_type (optional)
  • inst_id: inst_id (optional)
  • format: string
  • key: string
  • version: number
Return
  • TaxonReturnMedia
Example

http://osuc.biosci.ohio-state.edu/OJ_Break/getTaxonMedia?tnuid=30148&format=json&key=FBF57A9F7A666FC0E0430100007F0CDC&version=2

Taxon Data Type Glossary

Classes

TaxonAssociation

TaxonBasic

  • tnuid: tnuid element
  • taxon: taxon element
  • taxon_author: taxon_author element

TaxonComplete (extends TaxonRelationship)

TaxonExtended (extends TaxonBasic)

  • describer: describer element
  • status: status element
  • valid: valid element
  • rank: rank element
  • valid_taxon: TaxonBasic class
  • fossil: fossil element
  • homonym: homonym element
  • common_names': array of common_name element
  • source: TaxonSource class

TaxonHierarchy

Aggregate of one or more of the following classes:

TaxonHierClass

TaxonHierCohort

TaxonHierDivision

TaxonHierFamily

TaxonHierGenus

TaxonHierInfraclass

TaxonHierInfraorder

TaxonHierKingdom

TaxonHierOrder

TaxonHierPhylum

TaxonHierSpecies

TaxonHierSubclass

TaxonHierSubcohort

TaxonHierSubfamily

TaxonHierSuborder

TaxonHierSubphylum

TaxonHierSubspecies

TaxonHierSubtribe

TaxonHierSuperfamily

TaxonHierTribe

TaxonHierUnit (extends TaxonBasic)

  • next: rank element

TaxonInfoStats (extends TaxonStats)

  • rank: rank element
  • rank_value: rank_value element
  • num_taxa: Number

TaxonRelationship (extends TaxonExtended)

TaxonReturn

TaxonReturnAssociations (extends TaxonReturn)

TaxonReturnDeterminers (extends TaxonReturn)

See also

Visit any of the below links to find information about the other data domains defined by OJ_Break Version 2.