changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "crew": {
+ "description": "Array of SpaceX crew members",
+ "items": {
+ "properties": {
+ "agency": {
+ "description": "Agency affiliation",
+ "type": "string"
+ },
+ "image": {
+ "description": "Image URL",
+ "type": "string"
+ },
+ "name": {
+ "description": "Crew member name",
+ "type": "string"
+ },
+ "status": {
+ "description": "Current status",
+ "type": "string"
+ },
+ "wikipedia": {
+ "description": "Wikipedia link",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "agency",
+ "status",
+ "wikipedia",
+ "image"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "crew"
+ ],
+ "type": "object"
+}