action neowsapp_browse_near_earth_objects { label: "Browse the Near Earth Objects service" description: "Retieve a paginated list of Near Earth Objects" provider: neowsapp method: GET path: "/rest/v1/neo/browse" encoding: json input: { type: "object" properties: { page: { type: "integer" format: "int32" } size: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { absolute_magnitude_h: { type: "number" format: "double" description: "Is a measure of an asteroids brightness" } close_approach_data: { type: "array" description: "Close approach information of the Asteroid" items: { type: "object" properties: { close_approach_date: { type: "string" } close_approach_date_full: { type: "string" } epoch_date_close_approach: { type: "integer" format: "int64" } miss_distance: { type: "object" properties: { astronomical: { type: "string" } kilometers: { type: "string" } lunar: { type: "string" } miles: { type: "string" } } } orbiting_body: { type: "string" } relative_velocity: { type: "object" properties: { kilometers_per_hour: { type: "string" } miles_per_hour: { type: "string" } } } } } } designation: { type: "string" } estimated_diameter: { type: "object" properties: { feet: { type: "object" properties: { estimated_diameter_max: { type: "number" format: "double" description: "An estimate of the maximum size of the Asteroid - bases on the abosolute magnitude" } estimated_diameter_min: { type: "number" format: "double" description: "An estimate of the minimum size of the Asteroid - bases on the abosolute magnitude" } } } kilometers: { type: "object" additionalProperties: true } meters: { type: "object" additionalProperties: true } miles: { type: "object" additionalProperties: true } } } is_potentially_hazardous_asteroid: { type: "boolean" } is_sentry_object: { type: "boolean" } name: { type: "string" } name_limited: { type: "string" } nasa_jpl_url: { type: "string" description: "A Link to the NASA JPL Small-Body Database website" } neo_reference_id: { type: "string" description: "The reference ID of the Asteroid - This correlates to the SPK ID for the JPL NEO data" } orbital_data: { type: "object" properties: { aphelion_distance: { type: "string" } ascending_node_longitude: { type: "string" } data_arc_in_days: { type: "integer" format: "int64" } eccentricity: { type: "string" } epoch_osculation: { type: "string" } equinox: { type: "string" } first_observation_date: { type: "string" } inclination: { type: "string" } jupiter_tisserand_invariant: { type: "string" } last_observation_date: { type: "string" } mean_anomaly: { type: "string" } mean_motion: { type: "string" } minimum_orbit_intersection: { type: "string" } observations_used: { type: "integer" format: "int64" } orbit_class: { type: "object" properties: { orbit_class_description: { type: "string" } orbit_class_range: { type: "string" } orbit_class_type: { type: "string" enum: ["IEO", "ATE", "APO", "AMO", "MCA", "IMB", "MBA", "OMB", "TJN", "CEN", "TNO", "PAA", "HYA", "HYP", "PAR", "COM", "JFC", "HTC", "ETC", "CTC", "JFc"] } } } orbit_determination_date: { type: "string" } orbit_id: { type: "string" } orbit_uncertainty: { type: "string" } orbital_period: { type: "string" } perihelion_argument: { type: "string" } perihelion_distance: { type: "string" } perihelion_time: { type: "string" } semi_major_axis: { type: "string" } } } sentry_data: { type: "string" } } } }