Prisma · Schema

BackupCreate

Request body for creating a manual backup

Properties

Name Type Description
label string Optional label for the backup
View JSON Schema on GitHub

JSON Schema

prisma-backupcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackupCreate",
  "title": "BackupCreate",
  "type": "object",
  "description": "Request body for creating a manual backup",
  "properties": {
    "label": {
      "type": "string",
      "description": "Optional label for the backup"
    }
  }
}