Skip to content

The Translator-specific metadata extensions used in SmartAPI registry

Notifications You must be signed in to change notification settings

NCATSTranslator/translator_extensions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

translator_extensions

The Translator-specific metadata extensions used in the SmartAPI registry

x-translator

Status

This extension's schema has been written, and registry files currently contain this extension. It is closely related to the TRAPI standard.

Description

This extension is inside the OpenAPI info object and contains basic API-level metadata. Currently, there are two required properties: component (KP, ARA, ARS, or Utility) and team (one or more Translator team names).

Current properties include:

  • infores: Information Resource CURIE identifying the Translator Resource (see the current inventory of Infores CURIEs and general information about them here).
  • component: One of "KP", "ARA", "ARS", "Utility"
  • team: List of contributing Translator teams (see schema file for the full list)
  • biolink-version: One SemVer-formatted version number (e.g. '1.8.2', '2.2.16', etc.). This is the release of the Biolink Model that to which the Translator Resource is currently compliant."

Associated rules:

  • if the API is tagged "translator" in the OpenAPI top-level tags, then the x-translator extension must be present (in OpenAPI info)
  • if x-translator is present (in OpenAPI info), then the API must be tagged "translator" in the OpenAPI top-level tags

Examples

An example of a valid x-translator extension in YAML is:

  tags:
  - name: translator    ## required translator tag
  - name: biothings
  info:
    x-translator:      ## required x-translator extension
      infores: "infores:biolink-api"
      component: KP
      team:
      - "Service Provider"
      biolink-version: "2.4.8"

Other examples of valid and invalid x-translator annotations (in YAML) are in this example file.

x-trapi

Status

This extension's schema has been written, and registry files currently contain this extension. It is closely related to the TRAPI standard.

Description

This extension is inside the OpenAPI info object and contains basic API-level metadata. Currently, there are 2 required properties (version and operations).

Current properties include:

  • version: States the TRAPI standard version, as a SemVer formatted number (e.g. '1.1', '1.2', '1.3'), indicating that the Translator Resource is compliant with / built to this version.
  • asyncquery: Boolean. true if this service has TRAPI-compliant asyncquery endpoints. Otherwise, false.
  • operations: List of implemented operations. Use the IDs of the operations in this standard.
  • batch_size_limit: Maximum number of CURIEs allowed in any 'ids', 'categories', or 'predicates' list. -1 indicates no limit. See ImplementationRules.md in the TRAPI standard Github repository for details.
  • rate_limit: Maximum number of requests allowed per minute from each client. -1 indicates no limit.
  • test_data_location: URL that resolves to SRI-Testing-harness-compliant test data, in a public internet location (e.g. in the API implementation source code repository).

Note that for test_data_location, several formats are now supported:

  • string (a single URL; original format)
  • array of such URL strings
  • object with one or more key-value pairs. Key options are "default", "production", "staging", "testing", "development" (the last 4 correspond to the x-maturity level of different servers, defined by Architecture/ITRB). The "default" test data may be used to test servers of any x-maturity level not explicitly specified elsewhere. The value of such key-value pairs may also be either a string or array (defined above).

Specified URL strings must point to publicly visible REST internet files containing the expected KP test data or ARA test configuration (as described in the SRI Testing harness documentation).

Examples

An example of a valid x-trapi extension in YAML is:

  tags:
  - trapi
  - name: translator    ## required translator tag
  - name: biothings
  info:
    x-trapi:      ## required x-translator extension
      version: "1.3.0"
      operations:
      - lookup
      test_data_location:  ## complex test_data_location example, but could still be one single URL string as well
        development:
            url: "https://raw.githubusercontent.com/NCATS-Tangerine/translator-api-registry/biolink3/biothings_explorer/qualifier-sri-test-service.json"
        ## The "default" test data set is applied against all other "x-maturity" environments specified in the entry's
        ## "servers" block Registry, but not explicitly specified here (i.e. the default test data here can be applied
        ## to the production environment, but not to development because development-specific test data was already provided).
        default:  
            url:
            - "https://raw.githubusercontent.com/NCATS-Tangerine/translator-api-registry/master/biothings_explorer/sri-test-service-provider.json"
            - "https://raw.githubusercontent.com/NCATS-Tangerine/translator-api-registry/master/biothings_explorer/sri-test-multiomics.json"
            - "https://raw.githubusercontent.com/NCATS-Tangerine/translator-api-registry/master/biothings_explorer/sri-test-text-mining.json"

Other examples of valid and invalid instances (in YAML) are in this example file.

About

The Translator-specific metadata extensions used in SmartAPI registry

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published