Light
Dark
System
v4latest
v5dev
v4latest
v3
v2
v1

Describe

describe – provide human-readable description of a schema or a schema object

describe schema [ as {ddl | sdl | test [ verbose ]} ];

describe schema-type name [ as {ddl | sdl | text [ verbose ]} ];

where schema-type is one of

  object
  annotation
  constraint
  function
  link
  module
  property
  scalar type
  type

describe generates a human-readable description of a schema object.

The output of a describe command is a str , although it cannot be used as an expression in queries.

There are three output formats to choose from:

as ddl

Provide a valid DDL definition.

The DDL generated is a complete valid definition of the particular schema object assuming all the other referenced schema objects already exist.

This is the default format.

as sdl

Provide an SDL definition.

The SDL generated is a complete valid definition of the particular schema object assuming all the other referenced schema objects already exist.

as text [verbose]

Provide a human-oriented definition.

The human-oriented definition generated is similar to SDL, but it includes all the details that are inherited (if any).

The verbose mode enables displaying additional details, such as annotations and constraints, which are otherwise omitted.

When the describe command is used with the schema the result is a definition of the entire database schema. Only the as ddl option is available for schema description.

The describe command can specify the type of schema object that it should generate the description of:

object name

Match any module level schema object with the specified name.

This is the most general use of the describe command. It does not match modules (and other globals that cannot be uniquely identified just by the name).

annotation name

Match only annotations with the specified name.

constraint name

Match only constraints with the specified name.

function name

Match only functions with the specified name.

link name

Match only links with the specified name.

module name

Match only modules with the specified name.

property name

Match only properties with the specified name.

scalar type name

Match only scalar types with the specified name.

type name

Match only object types with the specified name.

Consider the following schema:

Copy
abstract type Named {
    required name: str {
        delegated constraint exclusive;
    }
}

type User extending Named {
    required email: str {
        annotation title := 'Contact email';
    }
}

Here are some examples of a describe command:

Copy
db> 
describe object User;
{
    "create type default::User extending default::Named {
    create required single property email -> std::str {
        create annotation std::title := 'Contact email';
    };
};"
}
Copy
db> 
describe object User as sdl;
{
    "type default::User extending default::Named {
    required single property email -> std::str {
        annotation std::title := 'Contact email';
    };
};"
}
Copy
db> 
describe object User as text;
{
    'type default::User extending default::Named {
    required single link __type__ -> schema::Type {
        readonly := true;
    };
    required single property email -> std::str;
    required single property id -> std::uuid {
        readonly := true;
    };
    required single property name -> std::str;
};'
}
Copy
db> 
describe object User as text verbose;
{
    "type default::User extending default::Named {
    required single link __type__ -> schema::Type {
        readonly := true;
    };
    required single property email -> std::str {
        annotation std::title := 'Contact email';
    };
    required single property id -> std::uuid {
        readonly := true;
        constraint std::exclusive;
    };
    required single property name -> std::str {
        constraint std::exclusive;
    };
};"
}
Copy
db> 
describe schema;
{
    "create module default if not exists;
create abstract type default::Named {
    create required single property name -> std::str {
        create delegated constraint std::exclusive;
    };
};
create type default::User extending default::Named {
    create required single property email -> std::str {
        create annotation std::title := 'Contact email';
    };
};"
}

The describe command also warns you if there are standard library matches that are masked by some user-defined object. Consider the following schema:

Copy
module default {
    function len(v: tuple<float64, float64>) -> float64 using (
        select (v.0 ^ 2 + v.1 ^ 2) ^ 0.5
    );
}

So within the default module the user-defined function len (computing the length of a vector) masks the built-ins:

Copy
db> 
describe function len as text;
{
  'function default::len(v: tuple<std::float64, std::float64>) ->
std::float64 using (select
    (((v.0 ^ 2) + (v.1 ^ 2)) ^ 0.5)
);

# The following builtins are masked by the above:

# function std::len(array: array<anytype>) ->  std::int64 {
#     volatility := \'Immutable\';
#     annotation std::description := \'A polymorphic function to calculate
a "length" of its first argument.\';
#     using sql $$
#     SELECT cardinality("array")::bigint
#     $$
# ;};
# function std::len(bytes: std::bytes) ->  std::int64 {
#     volatility := \'Immutable\';
#     annotation std::description := \'A polymorphic function to calculate
a "length" of its first argument.\';
#     using sql $$
#     SELECT length("bytes")::bigint
#     $$
# ;};
# function std::len(str: std::str) ->  std::int64 {
#     volatility := \'Immutable\';
#     annotation std::description := \'A polymorphic function to calculate
a "length" of its first argument.\';
#     using sql $$
#     SELECT char_length("str")::bigint
#     $$
# ;};',
}
Light
Dark
System

We use ChatGPT with additional context from our documentation to answer your questions. Not all answers will be accurate. Please join our Discord if you need more help.