About 376 results
Open links in new tab
  1. JSON Schema

    While JSON is probably the most popular format for exchanging data, JSON Schema is the vocabulary that enables JSON data consistency, validity, and interoperability at scale.

  2. Creating your first schema

    JSON Schema is a standard for providing answers to these questions. In this guide, you will create a JSON Schema document that describes the structure, constraints, and data types for …

  3. JSON Schema examples

    { "$id": "https://example.com/user-profile.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "A representation of a user profile", "type": …

  4. Welcome [json-schema.org]

    JSON Schema is a declarative language for annotating and validating JSON documents' structure, constraints, and data types. It helps you standardize and define expectations for …

  5. What is JSON Schema?

    Oct 2, 2023 · What is JSON Schema? JSON Schema is a declarative language for defining structure and constraints for JSON data.

  6. JSON Schema reference

    Master the full power of JSON Schema with our reference documentation. From basic data types to advanced techniques like conditional validation and schema composition, you will learn …

  7. JSON Schema - The basics

    Here, we proceed to write a simple JSON Schema. Hello, World! When learning any new language, it's often helpful to start with the simplest thing possible. In JSON Schema, an …

  8. JSON Schema - Specification [#section]

    It is self-descriptive: the JSON Schema meta-schema validates itself. The latest meta-schema is 2020-12. For an explanation of the change to date-based identifiers, see the Specification …

  9. JSON Schema

    Mar 19, 2018 · The JSON Schema Draft-07 introduces various updates to enhance the functionality of JSON Schemas in contrast to maintaining backward compatibility with Draft-06.

  10. JSON Schema - object

    JSON SchemaProperties The properties (key-value pairs) on an object are defined using the properties keyword. The value of properties is an object, where each key is the name of a …