Schema
public
Owner
waveuser005
Tablespace
(default)
Descriptions
Tabel met URL endpoints van OpenWave (exclusief base-URL) die met REST-API te benaderen zijn
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
|---|---|---|---|---|---|---|---|---|
|
|
dnkey |
serial |
|
|
|
nextval('tbendpointlist_dnkey_seq'::regclass) |
Primary key |
|
|
dvendpointurl |
varchar(1000) |
|
|
|
|
Endpoint URL exclusief base-URL (base-URL is bijv. https://rommeldam.open-wave.nl) waarvoor een (robot) medewerker is gedefinieerd voor dat endpoint en acherliggende. Bijvoorbeeld: /api/zgw. De medewerker is hiermee vanzelf gefinieerd voor achterliggende URL endpoints zoals /api/zgw/authentication/token |
Foreign Keys
There are no foreign keys for table tbendpointlist
Check Constraints
There are no check constraints for table tbendpointlist
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
|---|---|---|---|---|---|---|
cpk_tbendpointlist |
btree |
|
dnkey |
|
|
|
Triggers
There are no triggers for table tbendpointlist
Rules
There are no rules for table tbendpointlist
Policies
There are no policies for table tbendpointlist
Referenced
Table | Schema | Foreign Key | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
|---|---|---|---|---|---|---|---|---|---|---|
public |
cfk_tbipauthorisationlist_dnkeyendpointlist |
dnkeyendpointlist |
dnkey |
Cascade |
No Action |
|
Immediate |
|
||
public |
cfk_tbmedewerkers_dnkeyendpointlist |
dnkeyendpointlist |
dnkey |
Set Null |
No Action |
|
Immediate |
|
Properties
Property | Value |
|---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tbendpointlist (
dnkey SERIAL,
dvendpointurl VARCHAR(1000),
CONSTRAINT cpk_tbendpointlist PRIMARY KEY(dnkey)
) ;
COMMENT ON TABLE public.tbendpointlist
IS 'Tabel met URL endpoints van OpenWave (exclusief base-URL) die met REST-API te benaderen zijn';
COMMENT ON COLUMN public.tbendpointlist.dnkey
IS 'Primary key';
COMMENT ON COLUMN public.tbendpointlist.dvendpointurl
IS 'Endpoint URL exclusief base-URL (base-URL is bijv. https://rommeldam.open-wave.nl) waarvoor een (robot) medewerker is gedefinieerd voor dat endpoint en acherliggende. Bijvoorbeeld: /api/zgw. De medewerker is hiermee vanzelf gefinieerd voor achterliggende URL endpoints zoals /api/zgw/authentication/token';
This file was generated with SQL Manager for PostgreSQL (www.sqlmanager.net/products/postgresql/manager) at 21-10-2025 10:22 |
|