action neowsapp_retrieve_sentry_risk_data { label: "Retrieve Sentry (Impact Risk ) Near Earth Objects" description: "Retrieves Near Earth Objects listed in the NASA sentry data set" provider: neowsapp method: GET path: "/rest/v1/neo/sentry" encoding: json input: { type: "object" properties: { is_active: { type: "boolean" } page: { type: "integer" format: "int32" } size: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { links: { type: "object" } page: { type: "object" properties: { number: { type: "integer" format: "int64" } size: { type: "integer" format: "int64" } total_elements: { type: "integer" format: "int64" } total_pages: { type: "integer" format: "int64" } } } sentry_objects: { type: "array" items: { type: "object" properties: { Palermo_scale_max: { type: "string" } absolute_magnitude: { type: "string" } average_lunar_distance: { type: "number" format: "double" } designation: { type: "string" } estimated_diameter: { type: "string" } fullname: { type: "string" } impact_probability: { type: "string" } is_active_sentry_object: { type: "boolean" } last_obs: { type: "string" } last_obs_jd: { type: "string" } palermo_scale_ave: { type: "string" } potential_impacts: { type: "string" } removal_date: { type: "string" } sentryId: { type: "string" } torino_scale: { type: "string" } v_infinity: { type: "string" } year_range_max: { type: "string" } year_range_min: { type: "string" } } } } } } }