Object Schema in JSON

From the JSON cheat sheet ยท JSON Schema ยท verified Aug 2026

Object Schema

Validate object properties and required fields.

json
{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object"}
๐Ÿ“Œ $schema declares the schema dialect
๐Ÿ” properties alone does not require fields
๐Ÿ“Œ required lists mandatory property names
โš ๏ธ additionalProperties changes extensibility
json-schemaobjectsvalidation

Continue with JSON

Save the full cheat sheet or work through every related task.

More JSON tasks

Back to the full JSON cheat sheet