Xata · Schema

Organization

Organization details including ID and name

DatabasePostgresServerlessDeveloper ToolsBranchingAI Agent

Properties

Name Type Description
id object Unique identifier for the organization
name string Human-readable name of the organization
status object Current status of the organization
marketplace string Marketplace provider for this organization (e.g. "aws"), if billed through a marketplace
View JSON Schema on GitHub

JSON Schema

xata-organization-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Organization",
  "description": "Organization details including ID and name",
  "type": "object",
  "properties": {
    "id": {
      "description": "Unique identifier for the organization",
      "$ref": "#/components/schemas/OrganizationID"
    },
    "name": {
      "description": "Human-readable name of the organization",
      "type": "string"
    },
    "status": {
      "description": "Current status of the organization",
      "$ref": "#/components/schemas/OrganizationStatus"
    },
    "marketplace": {
      "description": "Marketplace provider for this organization (e.g. \"aws\"), if billed through a marketplace",
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "id",
    "name",
    "status"
  ]
}