|
| 1 | +{ |
| 2 | + "$schema": "http://json-schema.org/draft-07/schema#", |
| 3 | + "title": "Spacecraft Missions", |
| 4 | + "type": "object", |
| 5 | + "required": ["spacecraft_missions"], |
| 6 | + "additionalProperties": false, |
| 7 | + "properties": { |
| 8 | + "spacecraft_missions": { |
| 9 | + "type": "array", |
| 10 | + "items": { |
| 11 | + "type": "object", |
| 12 | + "required": ["id", "name", "status"], |
| 13 | + "additionalProperties": false, |
| 14 | + "properties": { |
| 15 | + "id": { "type": "integer", "minimum": 1 }, |
| 16 | + "name": { "type": "string", "minLength": 1 }, |
| 17 | + "mission_type": { "type": ["string", "null"] }, |
| 18 | + "launch_date": { "type": ["string", "null"], "pattern": "^\\d{4}-\\d{2}-\\d{2}$" }, |
| 19 | + "launch_site": { "type": ["string", "null"] }, |
| 20 | + "launch_vehicle": { "type": ["string", "null"] }, |
| 21 | + "orbit": { "type": ["string", "null"] }, |
| 22 | + "orbit_type": { "type": ["string", "null"], "enum": ["LEO", "SSO", "GEO", "Lunar", "Interplanetary", "Failed", null] }, |
| 23 | + "altitude_km": { "type": ["number", "null"], "minimum": 0 }, |
| 24 | + "inclination_deg": { "type": ["number", "null"], "minimum": 0, "maximum": 180 }, |
| 25 | + "mass_kg": { "type": ["number", "null"], "minimum": 0 }, |
| 26 | + "power_watts": { "type": ["number", "null"], "minimum": 0 }, |
| 27 | + "mission_life": { "type": ["string", "null"] }, |
| 28 | + "status": { "type": "string", "enum": ["active", "decommissioned", "failed", "unknown"] }, |
| 29 | + "payloads": { "type": ["string", "null"] }, |
| 30 | + "stabilization": { "type": ["string", "null"] }, |
| 31 | + "propulsion": { "type": ["string", "null"] } |
| 32 | + } |
| 33 | + } |
| 34 | + } |
| 35 | + } |
| 36 | +} |
0 commit comments