We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
right now we just list the root json and the schema it relies on for example:
{ friends: Person[] }
{ name: string }
we should do something like this maybe?
friends
name
Or maybe nested tables?
firstname
middle
lastname
The text was updated successfully, but these errors were encountered:
No branches or pull requests
right now we just list the root json and the schema it relies on for example:
{ friends: Person[] }
{ name: string }
we should do something like this maybe?
friends
Person[]A list of friends
name
string — REQUIREDThe name of the person
Or maybe nested tables?
friends
Person[]A list of friends
name
string — REQUIREDThe name of the person
firstname
string — REQUIREDYour firstname
middle
stringYour middle initial
lastname
string — REQUIREDYour firstname
The text was updated successfully, but these errors were encountered: