Best Practices Documentation? #29
Unanswered
shitwolfymakes
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Our documentation is certainly lacking (we're working on it), but I don't think any of this is the kind of thing that would go in the official documentation. It's all very subjective and isn't specific to JSON Schema. It's all stuff that applies equally to any type of code. There aren't many JSON Schema specific considerations you need to take into account. Just treat your schemas the same way you treat code and you'll be fine. I'll try to address each of your questions as best I can. I hope it's helpful.
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am new to working with JSON Schema, and I'm creating schema to describe the structure and validate the data of some game files. The schema are needed by both the game itself (to validate changes to game files during CI/CD testing), and the RAD tool that develops content for the game. For simplicity and interface segregation, all schema are going to be in a separate public repo.
I have scoured the official documentation, but I haven't seen anything on:
main
, or branch for each official version?)I can definitely figure out a way to do all of this stuff, but I'd rather follow best practices wherever possible. I've also been googling for best practices on generic schema development and publishing, but I haven't found anything useful
Beta Was this translation helpful? Give feedback.
All reactions