action neowsapp_retrieve_near_earth_object_feed { label: "Find Near Earth Objects by date" description: "Get a list of Near Earth Objects within a date range, The max range in one query is 7 days" provider: neowsapp method: GET path: "/rest/v1/feed" encoding: json input: { type: "object" properties: { detailed: { type: "boolean" } end_date: { type: "string" } start_date: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { element_count: { type: "integer" format: "int32" description: "Number of NEOs in list" } links: { type: "object" description: "Hypermedia links to collection" } near_earth_objects: { type: "object" } } } }