Couchbase · Schema

SessionResponse

Session creation response

AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR

Properties

Name Type Description
session_id string Session identifier
expires string Session expiration time
cookie_name string Name of the session cookie
View JSON Schema on GitHub

JSON Schema

couchbase-sessionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SessionResponse",
  "title": "SessionResponse",
  "type": "object",
  "description": "Session creation response",
  "properties": {
    "session_id": {
      "type": "string",
      "description": "Session identifier"
    },
    "expires": {
      "type": "string",
      "format": "date-time",
      "description": "Session expiration time"
    },
    "cookie_name": {
      "type": "string",
      "description": "Name of the session cookie"
    }
  }
}