-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add JSON schemas #176
Add JSON schemas #176
Conversation
Should one of these schema files contain all the info from section 13.9 of the RP2350 datasheet, or is this the wrong place for that? |
I think this is the wrong place for that - that section of the datasheet is probably the best place for that information, as |
Fix sample-...json file references in readme Use `$defs` for pt permissions Fix typos
Both must be specified in the JSON file, as they get written together
Only 4 values are actually allowed
"description": "Value to write", | ||
"type": ["array", "string", "integer"], | ||
"pattern": "^0x[0-9a-fA-F]{1,6}$", | ||
"items": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess items
here could also be a $ref
, but I'll let you decide if it's worth it or not.
@will-v-pi Don't forget to update the schema URLs before hitting the big green Merge button 😄 |
Add JSON schemas for the JSON inputs used.
Currently the URLs point to the jsonschema branch - these should be changed to the develop branch once merged.
Fixes #172