The Planet API is an HTTP API served by the Global Alliance for Genomics and Health (GA4GH).
The API contains metadata about GA4GH deliverables (ie. technical specifications, policy frameworks, ongoing data sharing initiatives), including product review lifecycle status, released versions, and tools for working with the standards.
Planet API is also a GA4GH Service Registry, implementing the Service Registry Specification. As such, it is possible to search the registry for web services implementing GA4GH API specifications (e.g. htsget, drs, beacon). The registry is filterable based on service type. At this time, only publicly accessible web services are listed.
The API distinguishes between implementations and services.
In this context, an implementation refers to any codebase that works with one or more GA4GH standards. Examples include:
A service refers to a running web server serving genomic data according to a GA4GH API specification.
Implementations and services can be accessed via the /implementations
and /services
routes, respectively.
To register an implementation or web service in the Planet API registry, please complete and submit the registration form.
Once completed, someone from the GA4GH Technical Team will then register your item, or contact you if more information is needed.
The API uses standard rfc2616 HTTP status codes to indicate the success or failure of the API call. The body of an error response will be in JSON in the following format:
{
"timestamp": "2020-08-14T17:14:13Z",
"status": 404,
"error": "Not Found",
"message": "no Implementation by the id: example1",
"path": "/v1/services/example1"
}
/service-info
API endpoint(s) return information about this web
service, according to the
GA4GH Service Info specification
{- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0",
- "environment": "test",
}
/standards
API endpoints are used to retrieve information about GA4GH
standards from the registry, or otherwise create, modify, or delete them.
Get entire list of GA4GH standards. This endpoint shows only high-level info about each standard. For detailed information about a particular standard, see Get standard by Id
[- {
- "id": "drs",
- "name": "Data Repository Service",
- "abbreviation": "DRS",
- "artifact": "drs",
- "summary": "Platform-agnostic data API",
- "category": "API",
- "status": "Approved"
}
]
Create a new standard with the information specified in requestBody
new standard to create
id required | string unique identifier |
name required | string official name |
abbreviation | string abbreviation/acronym |
artifact | string canonical |
summary required | string single-sentence summary of standard |
documentationUrl required | string url to specification homepage |
category required | string Enum: "API" "FileFormat" "Schema" "Policy" broad classification of standard category |
status required | string Enum: "Proposed" "Approved" "Deprecated" release status of standard |
description required | string longer description of standard |
required | Array of objects (StandardVersion) list of versioned releases associated with the specification |
required | object (WorkStream) represents a technical or foundational GA4GH Work Stream |
{- "id": "drs",
- "name": "Data Repository Service",
- "abbreviation": "DRS",
- "artifact": "drs",
- "summary": "Platform-agnostic data API",
- "category": "API",
- "status": "Approved",
- "description": "The Data Repository Service (DRS) API, a standard for building data repositories and adapting access tools to work with those repositories, works with other approved APIs from the GA4GH Cloud Work Stream to allow researchers to discover algorithms across different cloud environments and send them to datasets they wish to analyze.",
- "versions": [
- {
- "id": "drs:1.0.0",
- "versionNumber": "1.0.0",
- "documentationUrl": "https://ga4gh.github.io/data-repository-service-schemas/preview/release/drs-1.0.0/docs/",
- "status": "Approved"
}
], - "workStream": {
- "id": "cloud",
- "name": "Cloud",
- "abbreviation": "string"
}
}
{- "id": "drs",
- "name": "Data Repository Service",
- "abbreviation": "DRS",
- "artifact": "drs",
- "summary": "Platform-agnostic data API",
- "category": "API",
- "status": "Approved",
- "description": "The Data Repository Service (DRS) API, a standard for building data repositories and adapting access tools to work with those repositories, works with other approved APIs from the GA4GH Cloud Work Stream to allow researchers to discover algorithms across different cloud environments and send them to datasets they wish to analyze.",
- "versions": [
- {
- "id": "drs:1.0.0",
- "versionNumber": "1.0.0",
- "documentationUrl": "https://ga4gh.github.io/data-repository-service-schemas/preview/release/drs-1.0.0/docs/",
- "status": "Approved"
}
], - "workStream": {
- "id": "cloud",
- "name": "Cloud",
- "abbreviation": "string"
}
}
Show detailed information about a single standard, including versions and work stream
standardId | any Example: drs unique identifier for the standard |
{- "id": "drs",
- "name": "Data Repository Service",
- "abbreviation": "DRS",
- "artifact": "drs",
- "summary": "Platform-agnostic data API",
- "category": "API",
- "status": "Approved",
- "description": "The Data Repository Service (DRS) API, a standard for building data repositories and adapting access tools to work with those repositories, works with other approved APIs from the GA4GH Cloud Work Stream to allow researchers to discover algorithms across different cloud environments and send them to datasets they wish to analyze.",
- "versions": [
- {
- "id": "drs:1.0.0",
- "versionNumber": "1.0.0",
- "documentationUrl": "https://ga4gh.github.io/data-repository-service-schemas/preview/release/drs-1.0.0/docs/",
- "status": "Approved"
}
], - "workStream": {
- "id": "cloud",
- "name": "Cloud",
- "abbreviation": "string"
}
}
Overwrites the standard at the specified id, with the information specified in requestBody
standardId | any Example: drs unique identifier for the standard |
new properties for existing standard object
id required | string unique identifier |
name required | string official name |
abbreviation | string abbreviation/acronym |
artifact | string canonical |
summary required | string single-sentence summary of standard |
documentationUrl required | string url to specification homepage |
category required | string Enum: "API" "FileFormat" "Schema" "Policy" broad classification of standard category |
status required | string Enum: "Proposed" "Approved" "Deprecated" release status of standard |
description required | string longer description of standard |
required | Array of objects (StandardVersion) list of versioned releases associated with the specification |
required | object (WorkStream) represents a technical or foundational GA4GH Work Stream |
{- "id": "drs",
- "name": "Data Repository Service",
- "abbreviation": "DRS",
- "artifact": "drs",
- "summary": "Platform-agnostic data API",
- "category": "API",
- "status": "Approved",
- "description": "The Data Repository Service (DRS) API, a standard for building data repositories and adapting access tools to work with those repositories, works with other approved APIs from the GA4GH Cloud Work Stream to allow researchers to discover algorithms across different cloud environments and send them to datasets they wish to analyze.",
- "versions": [
- {
- "id": "drs:1.0.0",
- "versionNumber": "1.0.0",
- "documentationUrl": "https://ga4gh.github.io/data-repository-service-schemas/preview/release/drs-1.0.0/docs/",
- "status": "Approved"
}
], - "workStream": {
- "id": "cloud",
- "name": "Cloud",
- "abbreviation": "string"
}
}
{- "id": "drs",
- "name": "Data Repository Service",
- "abbreviation": "DRS",
- "artifact": "drs",
- "summary": "Platform-agnostic data API",
- "category": "API",
- "status": "Approved",
- "description": "The Data Repository Service (DRS) API, a standard for building data repositories and adapting access tools to work with those repositories, works with other approved APIs from the GA4GH Cloud Work Stream to allow researchers to discover algorithms across different cloud environments and send them to datasets they wish to analyze.",
- "versions": [
- {
- "id": "drs:1.0.0",
- "versionNumber": "1.0.0",
- "documentationUrl": "https://ga4gh.github.io/data-repository-service-schemas/preview/release/drs-1.0.0/docs/",
- "status": "Approved"
}
], - "workStream": {
- "id": "cloud",
- "name": "Cloud",
- "abbreviation": "string"
}
}
Deletes the standard at the specified id
standardId | any Example: drs unique identifier for the standard |
{- "timestamp": "2020-08-14T19:56:46Z",
- "status": 404,
- "error": "Not Found",
- "message": "the requested resource could not be located",
- "path": "/v1/services"
}
/services
API endpoints are used to retrieve information about web services
implementing GA4GH standards from the registry. These endpoints can also
create, modify, or delete registered web services
Gets list of all registered web services matching filtering criteria. Services may be filtered using the type
parameter, which will cause the registry to return services of a particular type and/or version
type | any Example: type=org.ga4gh:beacon:1.0.0 Filter services/implementations by ServiceType (the standard they implement). Serialized as 'GROUP:ARTIFACT:VERSION' |
[- {
- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0",
- "environment": "test",
}
]
Creates a new service with the information specified in requestBody
new service to create
id required | string unique identifier for the implementation/web service in reverse domain name notation |
name required | string human readable name of the implementation/web service |
required | object (ServiceType) Type of a GA4GH service |
description | string human readable description of the implementation/web service, providing information about how the tool might be used |
required | object (OrganizationSummary) |
contactUrl | string <uri> url of the contact for the maintainer/provider of the implementation/web service |
documentationUrl | string <uri> url to the documentation of the implementation/web service (RFC 3986 format). This should help someone learn how to use the implementation/service |
createdAt | string <date-time> timestamp describing when the implementation/web service was first made available (RFC 3339 format) |
updatedAt | string <date-time> timestamp describing when the implementation/web service was last updated (RFC 3339 format) |
version required | string version of the implementation/web service |
environment | string environment the web service is running in. can be used to distinguish between production, development, and testing/staging environments. |
url required | string <uri> Base URL of the service (RFC 3986 format). For REST API services, this is the URL to which all endpoints should be relative. In particular, services implementing GA4GH specifications defined in OAS format (as per the |
{- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0",
- "environment": "test",
}
{- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0",
- "environment": "test",
}
Show detailed information about a single service
serviceId | any Example: org.ga4gh.registry unique identifier for the web service |
{- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0",
- "environment": "test",
}
Overwrites the service at the specified id, with the information specified in requestBody
serviceId | any Example: org.ga4gh.registry unique identifier for the web service |
new properties for existing service object
id required | string unique identifier for the implementation/web service in reverse domain name notation |
name required | string human readable name of the implementation/web service |
required | object (ServiceType) Type of a GA4GH service |
description | string human readable description of the implementation/web service, providing information about how the tool might be used |
required | object (OrganizationSummary) |
contactUrl | string <uri> url of the contact for the maintainer/provider of the implementation/web service |
documentationUrl | string <uri> url to the documentation of the implementation/web service (RFC 3986 format). This should help someone learn how to use the implementation/service |
createdAt | string <date-time> timestamp describing when the implementation/web service was first made available (RFC 3339 format) |
updatedAt | string <date-time> timestamp describing when the implementation/web service was last updated (RFC 3339 format) |
version required | string version of the implementation/web service |
environment | string environment the web service is running in. can be used to distinguish between production, development, and testing/staging environments. |
url required | string <uri> Base URL of the service (RFC 3986 format). For REST API services, this is the URL to which all endpoints should be relative. In particular, services implementing GA4GH specifications defined in OAS format (as per the |
{- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0",
- "environment": "test",
}
{- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0",
- "environment": "test",
}
Deletes the service at the specified id
serviceId | any Example: org.ga4gh.registry unique identifier for the web service |
{- "timestamp": "2020-08-14T19:56:46Z",
- "status": 404,
- "error": "Not Found",
- "message": "the requested resource could not be located",
- "path": "/v1/services"
}
/implementations
API endpoints are used to retrieve information about
implementations (codebases, libraries, tools, etc.) that implement GA4GH
standards from the registry. These endpoints can also
create, modify, or delete registered implementations
Gets list all registered implementations (codebases, libraries, tools) matching filtering criteria. Services may be filtered using the type
parameter, which will cause the registry to return implementations relating to particular GA4GH specifications and/or versions
type | any Example: type=org.ga4gh:beacon:1.0.0 Filter services/implementations by ServiceType (the standard they implement). Serialized as 'GROUP:ARTIFACT:VERSION' |
[- {
- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0"
}
]
Creates a new implementation with the information specified in requestBody
new implementation to create
id required | string unique identifier for the implementation/web service in reverse domain name notation |
name required | string human readable name of the implementation/web service |
required | object (ServiceType) Type of a GA4GH service |
description | string human readable description of the implementation/web service, providing information about how the tool might be used |
required | object (OrganizationSummary) |
contactUrl | string <uri> url of the contact for the maintainer/provider of the implementation/web service |
documentationUrl | string <uri> url to the documentation of the implementation/web service (RFC 3986 format). This should help someone learn how to use the implementation/service |
createdAt | string <date-time> timestamp describing when the implementation/web service was first made available (RFC 3339 format) |
updatedAt | string <date-time> timestamp describing when the implementation/web service was last updated (RFC 3339 format) |
version required | string version of the implementation/web service |
{- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0"
}
{- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0"
}
Show detailed information about a single implementation
implementationId | any Example: org.ga4gh.refget.implementation unique identifier for the implementation (codebase, library, tool, etc.) |
{- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0"
}
Overwrites the implementation at the specified id, with the information specified in requestBody
implementationId | any Example: org.ga4gh.refget.implementation unique identifier for the implementation (codebase, library, tool, etc.) |
new properties for existing implementation object
id required | string unique identifier for the implementation/web service in reverse domain name notation |
name required | string human readable name of the implementation/web service |
required | object (ServiceType) Type of a GA4GH service |
description | string human readable description of the implementation/web service, providing information about how the tool might be used |
required | object (OrganizationSummary) |
contactUrl | string <uri> url of the contact for the maintainer/provider of the implementation/web service |
documentationUrl | string <uri> url to the documentation of the implementation/web service (RFC 3986 format). This should help someone learn how to use the implementation/service |
createdAt | string <date-time> timestamp describing when the implementation/web service was first made available (RFC 3339 format) |
updatedAt | string <date-time> timestamp describing when the implementation/web service was last updated (RFC 3339 format) |
version required | string version of the implementation/web service |
{- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0"
}
{- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0"
}
Deletes the implementation at the specified id
implementationId | any Example: org.ga4gh.refget.implementation unique identifier for the implementation (codebase, library, tool, etc.) |
{- "timestamp": "2020-08-14T19:56:46Z",
- "status": 404,
- "error": "Not Found",
- "message": "the requested resource could not be located",
- "path": "/v1/services"
}
/organizations
API endpoints are used to retrieve information about
organizations adopting GA4GH standards, and have registered implementations
and/or web services within the registry. These endpoints can also create,
modify, or delete implementing organizations from the registry
Creates a new implementing organization with the information specified in requestBody
new organization to create
id required | string unique identifier for this organization |
name required | string organization full name |
shortName | string organization short name (abbreviation or acronym) |
url required | string Organization's home page |
Array of objects (Service) list of implementations and services developed/hosted by (or otherwise associated with) the organization |
{- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
- "implementations": [
- {
- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0",
- "environment": "test",
}
]
}
{- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
- "implementations": [
- {
- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0",
- "environment": "test",
}
]
}
Get all details about a single organization implementing GA4GH standards
organizationId | any Example: org.ga4gh unique identifier for the organization |
{- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
- "implementations": [
- {
- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0",
- "environment": "test",
}
]
}
Overwrites the organization at the specified id, with the information specified in requestBody
organizationId | any Example: org.ga4gh unique identifier for the organization |
new properties for existing organization object
id required | string unique identifier for this organization |
name required | string organization full name |
shortName | string organization short name (abbreviation or acronym) |
url required | string Organization's home page |
Array of objects (Service) list of implementations and services developed/hosted by (or otherwise associated with) the organization |
{- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
- "implementations": [
- {
- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0",
- "environment": "test",
}
]
}
{- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
- "implementations": [
- {
- "id": "org.ga4gh.myimplementation",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This implementation of the Beacon API specification ...",
- "organization": {
- "id": "org.ga4gh",
- "name": "Global Alliance for Genomics and Health",
- "shortName": "GA4GH",
}, - "contactUrl": "mailto:support@example.com",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "version": "1.0.0",
- "environment": "test",
}
]
}
Deletes the standard at the specified id
organizationId | any Example: org.ga4gh unique identifier for the organization |
{- "timestamp": "2020-08-14T19:56:46Z",
- "status": 404,
- "error": "Not Found",
- "message": "the requested resource could not be located",
- "path": "/v1/services"
}