Skip to content

Commit eee5486

Browse files
committed
update project structure
1 parent 9b371f9 commit eee5486

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,35 @@ validate-openai-schema schema.json
7979
compare-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

84113
This project is licensed under the MIT License - see the LICENSE file for details.

0 commit comments

Comments
 (0)