Prisma · Schema

ProjectCreate

Request body for creating a new project

Properties

Name Type Description
name string Display name for the new project
View JSON Schema on GitHub

JSON Schema

prisma-projectcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectCreate",
  "title": "ProjectCreate",
  "type": "object",
  "description": "Request body for creating a new project",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the new project",
      "examples": [
        "My New Application"
      ]
    }
  },
  "required": [
    "name"
  ]
}