Create a sample dataset for the nasa missions.
Acceptance Criteria
- A file named
nasa_missions.json exists inside the data/ folder.
- Create the
data/ folder in the src folder
- The file contains 5–10 mission objects.
- The file is a valid JSON array (
[...]).
- Every mission object strictly follows this format:
{
"name": "Apollo 11",
"description": "Apollo 11 was the first mission to land humans on the Moon.....",
"launch_date": "1969-07-16",
"destination": "Moon",
"agency": "NASA"
}
Description should be 100-200 words.