Data Models

Create and manage your API data models.

User

User model with name, email, and role

{
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
   ...

Product

Product model with name, price, and category

{
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "price": {
      "type": "number"
    },
    "category": {
   ...