CockroachDB · Schema

GetPersonUsersByEmailResponse

Person user accounts matching the queried email address.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
users array Array of user account objects.
View JSON Schema on GitHub

JSON Schema

cockroachdb-getpersonusersbyemailresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetPersonUsersByEmailResponse",
  "title": "GetPersonUsersByEmailResponse",
  "type": "object",
  "description": "Person user accounts matching the queried email address.",
  "properties": {
    "users": {
      "type": "array",
      "description": "Array of user account objects.",
      "items": {
        "type": "object"
      }
    }
  }
}