Skip to content
Open
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
2 changes: 1 addition & 1 deletion pages/understanding-json-schema/reference/type.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ The `type` keyword can take two forms:

1. **A single string**. When it is a single string, it must be one of the types mentioned above (`array`, `boolean`, `integer`, `number`, `null`, `object`, `regular expressions`, or `string`). This specifies that the instance data is only valid when it matches that specific type.

Here is an example of using the `string` keyword as a single string:
Here is an example of using the `type` keyword as a single string:

```json
// props { "isSchema": true }
Expand Down
Loading