changedInput schema / examples
Previous value: -[
- {
- "_apiKey": "your-nasa-api-key",
- "camera": "FHAZ",
- "sol": 1000
- },
- {
- "_apiKey": "your-nasa-api-key",
- "sol": 3000
- }
-]New value: +[
+ {
+ "camera": "NAVCAM_LEFT",
+ "sol": 1000
+ },
+ {
+ "limit": 10,
+ "sol": 1500
+ }
+]
removedInput schema / properties / _apiKey
Removed value: -{
- "description": "NASA API key (optional, defaults to DEMO_KEY)",
- "type": "string"
-}
changedInput schema / properties / camera / description
Previous value: -"Camera abbreviation: \"FHAZ\" (front hazard), \"RHAZ\" (rear hazard), \"MAST\" (mast), \"CHEMCAM\", \"MAHLI\", \"MARDI\", \"NAVCAM\" (optional)"New value: +"Camera instrument, exact: \"NAVCAM_LEFT\", \"NAVCAM_RIGHT\", \"FRONT_HAZCAM_LEFT_A\", \"FRONT_HAZCAM_RIGHT_A\", \"REAR_HAZCAM_LEFT\", \"REAR_HAZCAM_RIGHT\", \"MCZ_LEFT\"/\"MCZ_RIGHT\" (Mastcam-Z), \"SHERLOC_WATSON\", \"SUPERCAM_RMI\", \"SKYCAM\", \"PIXL_MCC\", \"CACHECAM\". Short forms FHAZ/RHAZ/NAVCAM/MAST are accepted. Optional."
addedInput schema / properties / limit
Added value: +{
+ "description": "Max images to return (default 20, max 100).",
+ "type": "number"
+}
changedInput schema / properties / sol / description
Previous value: -"Martian sol (day) to retrieve photos from, e.g. 1000 (default: 1000)"New value: +"Martian sol (mission day) to retrieve images from, e.g. 1000. Perseverance landed on sol 0 (2021-02-18) and is past sol 1900. Omit for the most recent images."
addedOutput schema / properties / camera
Added value: +{
+ "type": "null"
+}
removedOutput schema / properties / photos / items / properties / camera_full_name
Removed value: -{
- "description": "Full name of the camera",
- "type": "string"
-}
addedOutput schema / properties / photos / items / properties / credit
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / photos / items / properties / filter
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / photos / items / properties / full_res_url
Added value: +{
+ "type": "string"
+}
changedOutput schema / properties / photos / items / properties / id / type
Previous value: -"number"New value: +"string"
addedOutput schema / properties / photos / items / properties / mars_time
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / photos / items / properties / page_url
Added value: +{
+ "type": "string"
+}
removedOutput schema / properties / photos / items / properties / rover
Removed value: -{
- "description": "Name of the rover (Curiosity, Opportunity, Spirit)",
- "type": "string"
-}
removedOutput schema / properties / photos / items / properties / rover_status
Removed value: -{
- "description": "Current status of the rover",
- "type": "string"
-}
addedOutput schema / properties / photos / items / properties / thumbnail_url
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / photos / items / properties / title
Added value: +{
+ "type": "string"
+}
removedOutput schema / properties / photos / items / required
Removed value: -[
- "id",
- "sol",
- "camera",
- "camera_full_name",
- "image_url",
- "earth_date",
- "rover",
- "rover_status"
-]
addedOutput schema / properties / rover
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / sol
Added value: +{
+ "type": "null"
+}
addedOutput schema / properties / total_matching
Added value: +{
+ "type": "number"
+}
removedOutput schema / required
Removed value: -[
- "count",
- "photos"
-]