Prerequisites
🚀 Feature Proposal
Add support to deprecated values as stated in the JSON Schema 2019-09 paragraph.
Motivation
Be able to deprecate properties without raw().
Example
S.object().prop('myDeprecatedProperty', S.string()).deprecated();
Current workaround:
S.object().prop('myDeprecatedProperty', S.string()).raw({ deprecated: true });
Prerequisites
🚀 Feature Proposal
Add support to deprecated values as stated in the JSON Schema 2019-09 paragraph.
Motivation
Be able to deprecate properties without
raw().Example
Current workaround: