Download OpenAPI specification:Download
Data Connect is a standard for discovery and search of biomedical data.
More information on GitHub.
{- "tables": [
- {
- "name": "my_catalog.some_schema.a_table",
- "description": "string",
- "data_model": null,
- "errors": [
- {
- "source": "string",
- "title": "Internal server error",
- "detail": "Internal server error"
}
]
}
], - "errors": [
- {
- "source": "string",
- "title": "Internal server error",
- "detail": "Internal server error"
}
]
}
Returns the information about the Table identified by name.
table_name required | string A table name |
{- "name": "my_catalog.some_schema.a_table",
- "description": "string",
- "data_model": null,
- "errors": [
- {
- "source": "string",
- "title": "Internal server error",
- "detail": "Internal server error"
}
]
}
Returns the data of a Table
table_name required | string A table name |
{- "data_model": null,
- "data": [
- { }
], - "errors": [
- {
- "source": "string",
- "title": "Internal server error",
- "detail": "Internal server error"
}
]
}
Optional operation that accepts a SearchRequest and returns a TableData
Query to execute
query required | string Query in SQL. Supported SQL grammar, data types, and functions are described in the specification. |
parameters | Array of any Positional parameters for the query in |
{- "query": "SELECT some_string, some_num FROM a_table WHERE some_string=? AND some_num=?",
- "parameters": [
- "hello",
- 42
]
}
{- "data_model": null,
- "data": [
- { }
], - "errors": [
- {
- "source": "string",
- "title": "Internal server error",
- "detail": "Internal server error"
}
]
}
{- "id": "org.ga4gh.myservice",
- "name": "My project",
- "type": {
- "group": "org.ga4gh",
- "artifact": "beacon",
- "version": "1.0.0"
}, - "description": "This service provides...",
- "createdAt": "2019-06-04T12:58:19Z",
- "updatedAt": "2019-06-04T12:58:19Z",
- "environment": "test",
- "version": "1.0.0"
}