> ## Documentation Index
> Fetch the complete documentation index at: https://docs.firebolt.io/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.firebolt.io/feedback

```json
{
  "path": "/reference-sql/information-schema/organization",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

> Use this reference to learn about the metadata available for your Firebolt organization using the information schema.

# Organization

You can use the `information_schema.organization` view to return information about your organization.

You can use a `SELECT` query to return information about your organization, as shown in the example below.

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
SELECT
  *
FROM
  information_schema.organization;
```

Read more about organizations [here](/overview/organizations-accounts).

## Columns in information\_schema.organization

Each row has the following columns with information about the organization.

| Column Name                 | Data Type      | Description                                                                 |
| :-------------------------- | :------------- | :-------------------------------------------------------------------------- |
| organization\_name          | TEXT           | The name of the organization.                                               |
| edition                     | TEXT           | The Firebolt edition used by the organization.                              |
| is\_payment\_registered     | BOOLEAN        | Specifies if payment is registered for the organization.                    |
| billing\_profile\_name      | TEXT           | The name of the billing profile for the organization.                       |
| sso                         | TEXT           | JSON configuration for single sign-on (SSO).                                |
| network\_policy\_name       | TEXT           | The name of the network policy applied at the organization level.           |
| payment\_method\_name       | TEXT           | The name of the current payment method for the organization.                |
| next\_payment\_method\_name | TEXT           | The name of the next payment method for the organization.                   |
| credits\_remaining          | DECIMAL(38, 9) | The remaining credit balance (in US dollars) available to the organization. |
| created                     | TIMESTAMPTZ    | Time (UTC) that the organization was created.                               |
| organization\_owner         | TEXT           | The name of the identity that owns this organization.                       |
| last\_altered               | TIMESTAMPTZ    | Time (UTC) that the organization was last edited.                           |
| last\_altered\_by           | TEXT           | Name of the identity that last edited the organization.                     |
