CockroachDB · Schema

LoginResponse

Response from a successful login request.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
session string Session token. Also returned in the X-Cockroach-API-Session response header for convenience.
View JSON Schema on GitHub

JSON Schema

cockroachdb-loginresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LoginResponse",
  "title": "LoginResponse",
  "type": "object",
  "description": "Response from a successful login request.",
  "properties": {
    "session": {
      "type": "string",
      "description": "Session token. Also returned in the X-Cockroach-API-Session response header for convenience."
    }
  }
}