File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,35 @@ validate-openai-schema schema.json
7979compare-json file1.json file2.json
8080```
8181
82+ ## Project Structure
83+ ```
84+ jsonparser/
85+ ├── .gitignore
86+ ├── LICENSE (MIT)
87+ ├── README.md
88+ ├── examples/
89+ │ └── quickstart.py
90+ ├── requirements.txt
91+ ├── schemas/
92+ │ ├── book.json
93+ │ ├── car.json
94+ │ └── [8 more schema files]
95+ ├── setup.py
96+ └── src/
97+ └── jsonparser/
98+ ├── __init__.py
99+ ├── parsers/
100+ │ ├── __init__.py
101+ │ └── parser.py
102+ └── utils/
103+ ├── __init__.py
104+ ├── compare_json_instance.py
105+ ├── helper.py
106+ ├── validate_json_instance.py
107+ ├── validate_json_schema.py
108+ └── validate_openai_schema.py
109+ ```
110+
82111## License
83112
84113This project is licensed under the MIT License - see the LICENSE file for details.
You can’t perform that action at this time.
0 commit comments