nasa_exoplanet
Query and retrieve detailed data about exoplanets from NASA's Exoplanet Archive. Specify tables, columns, filters, and limits to extract precise astronomical information.
Instructions
NASA Exoplanet Archive - data about planets beyond our solar system
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results | |
order | No | Ordering of results | |
select | No | Columns to return | |
table | Yes | Database table to query | |
where | No | Filter conditions |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of results",
"type": "number"
},
"order": {
"description": "Ordering of results",
"type": "string"
},
"select": {
"description": "Columns to return",
"type": "string"
},
"table": {
"description": "Database table to query",
"type": "string"
},
"where": {
"description": "Filter conditions",
"type": "string"
}
},
"required": [
"table"
],
"type": "object"
}