DESCRIBE ORGANIZATION PROFILE

Describes the properties of an organization profile.

DESCRIBE can be abbreviated to DESC.

See also:

ALTER ORGANIZATION PROFILE, CREATE ORGANIZATION PROFILE, DESCRIBE AVAILABLE ORGANIZATION PROFILE, DROP ORGANIZATION PROFILE, SHOW AVAILABLE ORGANIZATION PROFILES, SHOW ORGANIZATION PROFILES, SHOW VERSIONS IN ORGANIZATION PROFILE

Syntax

{ DESC | DESCRIBE } ORGANIZATION PROFILE <name>

Parameters

name

Specifies the identifier for the organization profile to describe. Must contain only uppercase characters or numbers.

If the identifier contains spaces or special characters, the entire string must be enclosed in double quotes. Identifiers enclosed in double quotes are also case sensitive. See Identifier requirements.

Output

The output of the command includes the following columns, which describe the properties and metadata of the object:

ColumnDescription
created_onThe date and time when the organization profile was created.
nameThe organization profile name.
titleThe title of the organization profile.
system_generatedIndicates the organization profile is system generated and can’t be dropped. One of TRUE or FALSE.
stateThe organization profile state. One of ACTIVE or DRAFT.
descriptionThe description of the organization profile.
owner_contactThe contact email of the owner of the organization profile.
approver_contactThe contact email of the access approver of the organization profile.
logoThe organization profile logo URL.
allowed_publishersThe accounts that are allowed to publish the organizational listing.
manifest_yamlThe contents of the default organization profile manifest.
live_version_uriThe URI for the live organization profile version. NONE when the URI is unavailable.
published_version_uriThe URI for the published organization profile version. NONE when the URI is unavailable.
published_version_nameThe name of the published organization profile version.
published_version_aliasThe alias for the published organization profile version.

Access control requirements

A role used to execute this operation must have the following privileges at a minimum:

PrivilegeObjectNotes
MODIFYOrganization profile

For instructions on creating a custom role with a specified set of privileges, see Creating custom roles.

For general information about roles and privilege grants for performing SQL actions on securable objects, see Overview of Access Control.

Examples

The following example describes the organization profile named MYORGANIZATIONPROFILE:

DESCRIBE ORGANIZATION PROFILE myorganizationprofile;
+-------------------------+-------------+--------------------------+---------------------+---------------------+----------------------------------+---------------------+---------------------+----------------+--------------------------------+----------------------------------------------------------------------------------------+----------------------------------------------------------+----------------------------------------------------------+-------------------------+-------------------------+
|created_on               |name         |title                     |system_generated     |state                |description                       |owner_contact        |approver_contact     |logo            |allowed_publishers              |manifest_yaml                                                                           |live_version_uri                                          |published_version_uri                                     |published_version_name   |published_version_alias  |
+-------------------------+-------------+--------------------------+---------------------+---------------------+----------------------------------+---------------------+---------------------+----------------+--------------------------------+----------------------------------------------------------------------------------------+----------------------------------------------------------+----------------------------------------------------------+-------------------------+-------------------------+
|2025-01-01 01:01:01.000  |ORGPROFILE   |My Organization Profile   |FALSE                |ACTIVE               |Organization profile description  |test@test.com        |test@test.com        |urn:icon:shield |{all_internal_accounts: true} | title: "My Organization Profile" description: "Organization profile description". . .  |snow://organization_profile/ORGPROFILE/versions/version$1 |snow://organization_profile/ORGPROFILE/versions/version$1 |VERSION$1                |V1                       |
+-------------------------+-------------+--------------------------+---------------------+---------------------+----------------------------------+---------------------+---------------------+----------------+--------------------------------+----------------------------------------------------------------------------------------+----------------------------------------------------------+----------------------------------------------------------+-------------------------+-------------------------+