action amentum_app_api_endpoints_nrlmsise00_sample_atmosphere { label: "Compute atmospheric composition, density, and temperatures\n" description: "at specified conditions.\n" provider: amentum method: GET path: "/nrlmsise00" encoding: json input: { type: "object" properties: { altitude: { type: "number" } ap: { type: "number" } day: { type: "integer" } f107: { type: "number" } f107a: { type: "number" } geodetic_latitude: { type: "number" } geodetic_longitude: { type: "number" } month: { type: "integer" } utc: { type: "number" } year: { type: "integer" } } required: ["altitude", "day", "geodetic_latitude", "geodetic_longitude", "month", "utc", "year"] additionalProperties: false } output: { type: "object" properties: { Ar_density: { type: "object" properties: { units: { type: "string" } value: { type: "number" } } } H_density: { type: "object" properties: { units: { type: "string" } value: { type: "number" } } } He_density: { type: "object" properties: { units: { type: "string" } value: { type: "number" } } } N2_density: { type: "object" properties: { units: { type: "string" } value: { type: "number" } } } N_density: { type: "object" properties: { units: { type: "string" } value: { type: "number" } } } O2_density: { type: "object" properties: { units: { type: "string" } value: { type: "number" } } } O_density: { type: "object" properties: { units: { type: "string" } value: { type: "number" } } } anomalous_O_density: { type: "object" properties: { units: { type: "string" } value: { type: "number" } } } ap: { type: "object" properties: { value: { type: "number" } } } at_alt_temp: { type: "object" properties: { units: { type: "string" } value: { type: "number" } } } exospheric_temp: { type: "object" properties: { units: { type: "string" } value: { type: "number" } } } f107: { type: "object" properties: { units: { type: "string" } value: { type: "number" } } } f107a: { type: "object" properties: { units: { type: "string" } value: { type: "number" } } } total_mass_density: { type: "object" properties: { units: { type: "string" } value: { type: "number" } } } } } }