1
0
mirror of synced 2026-01-10 09:04:48 -05:00
Files
airbyte/airbyte-integrations/connectors/source-spacex-api/source_spacex_api/schemas/payloads.json
Balasubramanian T K 838aebe322 🎉 New Source: SpaceX API [low-code cdk] (#18311)
* Init: New Source: SpaceX API

* Chore: Removed duplicate and unwanted files

* fix: Reconfigured schema and matched the read records. chore: Acceptance test run and results passed without errors

* chore: Added documentation, updated airbyte docs specific to the connector

* fix conflict

* Chore: delete unwanted files

* chore: Created bootstrap.md

* chore: Update doc url, removed unwanted files

* fix: Fixed schema after crosscheck with several schema validators

* fix: resolved .vscode setting conflict, resolved merge conflict

* feat: Added support for all endpoints

* chore: updated documentation

* feat: changes to stream path to accept options and id

* fix: Resolve coomments

* chore: resolved comments

* chore: Delete unwanted files

* chore: Update Readme.md after resolving merge conflict

* update connector

* add spacex api to source def

* run format

* add schemaloader

* auto-bump connector version

Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com>
Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2022-11-03 22:14:39 -03:00

163 lines
3.8 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"payload": {
"title": "payload",
"type": "object",
"properties": {
"name": {
"type": ["string", "null"],
"default": null
},
"type": {
"type": ["string", "null"],
"default": null
},
"reused": {
"type": "boolean",
"default": false
},
"launch": {
"type": ["string", "null"],
"default": null
},
"customers": {
"type": "array",
"items": {
"type": "string"
}
},
"norad_ids": {
"type": "array",
"items": {
"type": "number"
}
},
"nationalities": {
"type": "array",
"items": {
"type": "string"
}
},
"manufacturers": {
"type": "array",
"items": {
"type": "string"
}
},
"mass_kg": {
"type": ["number", "null"],
"default": null
},
"mass_lbs": {
"type": ["number", "null"],
"default": null
},
"orbit": {
"type": ["string", "null"],
"default": null
},
"reference_system": {
"type": ["string", "null"],
"default": null
},
"regime": {
"type": ["string", "null"],
"default": null
},
"longitude": {
"type": ["number", "null"],
"default": null
},
"semi_major_axis_km": {
"type": ["number", "null"],
"default": null
},
"eccentricity": {
"type": ["number", "null"],
"default": null
},
"periapsis_km": {
"type": ["number", "null"],
"default": null
},
"apoapsis_km": {
"type": ["number", "null"],
"default": null
},
"inclination_deg": {
"type": ["number", "null"],
"default": null
},
"period_min": {
"type": ["number", "null"],
"default": null
},
"lifespan_years": {
"type": ["number", "null"],
"default": null
},
"epoch": {
"type": ["string", "null"],
"default": null
},
"mean_motion": {
"type": ["number", "null"],
"default": null
},
"raan": {
"type": ["number", "null"],
"default": null
},
"arg_of_pericenter": {
"type": ["number", "null"],
"default": null
},
"mean_anomaly": {
"type": ["number", "null"],
"default": null
},
"dragon": {
"title": "dragon",
"type": "object",
"properties": {
"capsule": {
"type": ["string", "null"],
"default": null
},
"mass_returned_kg": {
"type": ["number", "null"],
"default": null
},
"mass_returned_lbs": {
"type": ["number", "null"],
"default": null
},
"flight_time_sec": {
"type": ["number", "null"],
"default": null
},
"manifest": {
"type": ["string", "null"],
"default": null
},
"water_landing": {
"type": ["boolean", "null"],
"default": null
},
"land_landing": {
"type": ["boolean", "null"],
"default": null
}
}
}
}
},
"id": {
"type": "string",
"pattern": "^[0-9a-fA-F]{24}$"
}
}
}