Prisma · Schema

ProjectWithDatabase

View JSON Schema on GitHub

JSON Schema

prisma-projectwithdatabase-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectWithDatabase",
  "title": "ProjectWithDatabase",
  "allOf": [
    {
      "$ref": "#/components/schemas/Project"
    },
    {
      "type": "object",
      "properties": {
        "databases": {
          "type": "array",
          "description": "Databases associated with the project",
          "items": {
            "$ref": "#/components/schemas/Database"
          }
        }
      }
    }
  ]
}