DocDriven

Projects

Schemas

Schemas are fundamental in ensuring data integrity and consistency across your API. With clearly defined schemas, you can set expectations for what your data should look like, making data validation much more manageable. This can be particularly useful when you have multiple endpoints that share the same data structure.

Instead of defining unique requests and responses for each endpoint, you can define a schema once and reuse it across multiple endpoints. This can help you avoid inconsistencies and reduce the amount of code you need to write and maintain.

The schema design tool resembles the OpenAPI Specification (OAS) schema editor, which allows you to define your data structure using a user-friendly interface. You can define objects, arrays, strings, numbers, booleans, and more, and you can nest them to create complex data structures.

The schema designer

Previous
Endpoints