Description
Add a realistic dataset in JSON format to the examples/ folder. This will help users test Aniwa's JSON reading capabilities.
File Location
examples/example.json
Requirements
- Format: JSON (.json) - array of objects
- Rows: Minimum 100 objects
- Fields: 8-15 fields per object
- Data: Realistic or real-world data (not random/gibberish)
Structure Example
[
{
"field1": "value1",
"field2": 123,
"field3": "2024-01-01"
},
{
"field1": "value2",
"field2": 456,
"field3": null
}
]
Data Characteristics
Include realistic data patterns:
- Some null/missing values
- Mixed data types (strings, numbers, booleans, nulls)
- Consistent field names across all objects
Testing
aniwa profile examples/example.json
Acceptance Criteria
Description
Add a realistic dataset in JSON format to the
examples/folder. This will help users test Aniwa's JSON reading capabilities.File Location
examples/example.jsonRequirements
Structure Example
[ { "field1": "value1", "field2": 123, "field3": "2024-01-01" }, { "field1": "value2", "field2": 456, "field3": null } ]Data Characteristics
Include realistic data patterns:
Testing
Acceptance Criteria
examples/example.jsonjson.loads())