NASA NeoWs · Schema

AsteroidBrowseResponse

Response from GET /neo/browse — paginated list of all near Earth objects.

NASAAsteroidsNear Earth ObjectsSpaceScienceOpen DataPlanetary Defense

Properties

Name Type Description
links object
page object Pagination metadata.
near_earth_objects array
View JSON Schema on GitHub

JSON Schema

asteroid-browse-response.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nasa-neows/refs/heads/main/json-schema/asteroid-browse-response.json",
  "title": "AsteroidBrowseResponse",
  "description": "Response from GET /neo/browse — paginated list of all near Earth objects.",
  "type": "object",
  "properties": {
    "links": {
      "type": "object",
      "properties": {
        "next": { "type": "string", "format": "uri" },
        "previous": { "type": "string", "format": "uri" },
        "self": { "type": "string", "format": "uri" }
      }
    },
    "page": {
      "type": "object",
      "description": "Pagination metadata.",
      "properties": {
        "size": { "type": "integer" },
        "total_elements": { "type": "integer" },
        "total_pages": { "type": "integer" },
        "number": { "type": "integer" }
      }
    },
    "near_earth_objects": {
      "type": "array",
      "items": {
        "$ref": "near-earth-object.json"
      }
    }
  },
  "required": ["near_earth_objects", "page"]
}