action neowsapp_retrieve_neofeed_today { label: "Find Near Earth Objects for today" description: "Get a list of Near Earth Objects for today" provider: neowsapp method: GET path: "/rest/v1/feed/today" encoding: json input: { type: "object" properties: { detailed: { type: "boolean" } } 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" } } } }