config

-1 rows


Description

General JSON Configuration and Data Values. Defined Data Formats: Currently None

Columns

Column Type Size Nulls Auto Default Children Parents Comments
row_id serial 10 nextval('config_row_id_seq'::regclass)

Synthetic unique key. Always lookup using cardano.follower.preview

id1 varchar 2147483647 null

The primary ID of the config.

id2 varchar 2147483647 null

The secondary ID of the config. Must be defined, use "" if not required.

id3 varchar 2147483647 null

The tertiary ID of the config. Must be defined, use "" if not required.

value jsonb 2147483647 null

The configuration value in JSON format.

value_schema uuid 2147483647 null
json_schema_type.id config_value_schema_fkey C

The Schema the Config Value conforms to. The value field must conform to this schema.

Indexes

Constraint Name Type Sort Column(s)
config_pkey Primary key Asc row_id
config_idx Must be unique Asc/Asc/Asc id1 + id2 + id3

Relationships