Skip to content

Deprecated clarfications around arrays #753

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

Merged
merged 7 commits into from
Sep 2, 2019
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions jsonschema-validation.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1043,8 +1043,14 @@
is going to be removed in the future.
</t>
<t>
A root schema containing "deprecated" with a value of true indicates the entire
root schema MAY be removed in the future.
A root schema containing "deprecated" with a value of true indicates that
the entire resource being described MAY be removed in the future.
</t>
<t>
When the "deprecated" keyword is used to describe an array, it's meaning will
vary depending on how "items" is used. If "items" is a single schema, it will
deprecate the contents of an array, but if "items" is an array of schemas it
can be used to deprecate positional schemas.
</t>
<t>
Omitting this keyword has the same behavior as a value of false.
Expand Down