Plane docs
ApiSchemas

Organization

One shape from the contract, as it appears on the wire.

Used by auth.me, organizations.get, organizations.list, organizations.update

Referenced from OrganizationMembership

JSON Schema

{
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/OrganizationId"
    },
    "slug": {
      "$ref": "#/components/schemas/ProviderName"
    },
    "name": {
      "type": "string"
    },
    "workosOrganizationId": {
      "type": "string"
    },
    "createdAt": {
      "type": "string"
    },
    "updatedAt": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "slug",
    "name",
    "createdAt",
    "updatedAt"
  ],
  "additionalProperties": false
}

On this page