Schema Class

Table's schema.

Constructor

Schema(*args: Any, **kwargs: Any)

Variables

Name Description
name
str

Table name.

display_name
str

Table display name.

description
str

Table description.

columns

A list of table custom columns.

standard_columns

A list of table standard columns.

categories

Table category.

labels

Table labels.

source

Table's creator. Known values are: "microsoft" and "customer".

table_type

Table's creator. Known values are: "Microsoft", "CustomLog", "RestoredLogs", and "SearchResults".

table_sub_type

The subtype describes what APIs can be used to interact with the table, and what features are available against it. Known values are: "Any", "Classic", and "DataCollectionRuleBased".

solutions

List of solutions the table is affiliated with.

Attributes

categories

Table category.

categories: list[str] | None

columns

A list of table custom columns.

columns: list['_models.Column'] | None

description

Table description.

description: str | None

display_name

Table display name.

display_name: str | None

labels

Table labels.

labels: list[str] | None

name

Table name.

name: str | None

solutions

List of solutions the table is affiliated with.

solutions: list[str] | None

source

"microsoft" and "customer".

source: str | _models.SourceEnum | None

standard_columns

A list of table standard columns.

standard_columns: list['_models.Column'] | None

table_sub_type

The subtype describes what APIs can be used to interact with the table, and what features are available against it. Known values are: "Any", "Classic", and "DataCollectionRuleBased".

table_sub_type: str | _models.TableSubTypeEnum | None

table_type

"Microsoft", "CustomLog", "RestoredLogs", and "SearchResults".

table_type: str | _models.TableTypeEnum | None