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 all 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 applied to an item in an array by means of
"items", if "items" is a single schema, the deprecation relates to the whole
array, while if "items" is an array of schemas, the deprecation relates to
the corrosponding item according to the subschemas position.
</t>
<t>
Omitting this keyword has the same behavior as a value of false.
Expand Down