Xata · Schema

BranchCredentials

Credentials for accessing a branch, username and password

DatabasePostgresServerlessDeveloper ToolsBranchingAI Agent

Properties

Name Type Description
username string Username for accessing the branch database
password string Password for accessing the branch database
View JSON Schema on GitHub

JSON Schema

xata-branchcredentials-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BranchCredentials",
  "description": "Credentials for accessing a branch, username and password",
  "type": "object",
  "properties": {
    "username": {
      "description": "Username for accessing the branch database",
      "type": "string"
    },
    "password": {
      "description": "Password for accessing the branch database",
      "type": "string"
    }
  },
  "required": [
    "username",
    "password"
  ],
  "x-internal": true
}