Skip to content

Commit

Permalink
docs(refactor): remove italic styles
Browse files Browse the repository at this point in the history
  • Loading branch information
JeelRajodiya committed Aug 5, 2024
1 parent ba28c13 commit b0468d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords: anyOf, properties, conditional validation

# Valid Against anyOf the Subschemas (OR)

`anyOf` [keyword](https://json-schema.org/learn/glossary#keyword) is used to define multiple [subschemas](https://json-schema.org/learn/glossary#subschema). If the [_instance_](https://json-schema.org/learn/glossary#instance) is valid against **any one** of the subschemas, the document is considered valid.
`anyOf` [keyword](https://json-schema.org/learn/glossary#keyword) is used to define multiple [subschemas](https://json-schema.org/learn/glossary#subschema). If the [instance](https://json-schema.org/learn/glossary#instance) is valid against **any one** of the subschemas, the document is considered valid.

You can think of `anyOf` as an **OR** operation. If the instance is valid against **any one** of the subschemas, the document is considered valid.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords: not, properties, conditional validation
# Inverting Validation with not


`not` [keyword](https://json-schema.org/learn/glossary#subschema) is used to invert the validation. If the [_instance_](https://json-schema.org/learn/glossary#instance) is **not** valid against the [subschemas](https://json-schema.org/learn/glossary#subschema), the document is considered valid.
`not` [keyword](https://json-schema.org/learn/glossary#subschema) is used to invert the validation. If the [instance](https://json-schema.org/learn/glossary#instance) is **not** valid against the [subschemas](https://json-schema.org/learn/glossary#subschema), the document is considered valid.


```json
Expand Down

0 comments on commit b0468d3

Please sign in to comment.