Prisma · Schema

DatabaseApiKey

An API key for accessing the database

Properties

Name Type Description
apiKey string The API key value
connectionString string Full connection string incorporating this API key
View JSON Schema on GitHub

JSON Schema

prisma-databaseapikey-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatabaseApiKey",
  "title": "DatabaseApiKey",
  "type": "object",
  "description": "An API key for accessing the database",
  "properties": {
    "apiKey": {
      "type": "string",
      "description": "The API key value"
    },
    "connectionString": {
      "type": "string",
      "description": "Full connection string incorporating this API key"
    }
  },
  "required": [
    "apiKey",
    "connectionString"
  ]
}