Schema: hr
English table: hr.x_pdf_extraction_type
Italian original table: hr.x_tipi_estrazione_pdf
Description: Lookup table for PDF extraction types/strategies used by the payslip parser.
Overview
- Columns: 5
- Primary key: id
- Outgoing foreign keys: 1
- Incoming foreign keys: 1
- Indexes: 2
Columns
| English column | Italian original column | Type | Null | Default / Generated | Description |
|---|
id | id | integer | NO | | Surrogate primary key. |
pxet_id | xties_id | integer | NO | | Logical extraction type identifier (unique per tenant). |
pxet_extraction_no | xties_num_extraction | integer | NO | | Extraction strategy numeric code used by the parser. |
pxet_description | xties_description | character varying(100) | NO | | Human-readable description of the extraction strategy. |
tenant_id | tenant_id | integer | YES | | Tenant identifier (multi-tenant isolation). |
Relationships
Outgoing foreign keys
| Constraint | Local columns | References | Referenced columns | On update | On delete |
|---|
fk_pxet_tenant | tenant_id | cloud.tenants | ten_internal_id | RESTRICT | CASCADE |
Referenced by
| From table | Foreign key | Source columns | Target columns |
|---|
hr._payslip_marker | fk_psm_pdf_extraction_type | psm_pdf_extraction_type_id, tenant_id | pxet_id, tenant_id |
Constraints
- Primary key:
x_pdf_extraction_type_pkey → id
- Unique:
uk_pxet_id_tenant → pxet_id, tenant_id
Indexes
| Name | Unique | Method | Columns / expression |
|---|
idx_x_pdf_extraction_type_pxet_id_tenant | NO | btree | tenant_id, pxet_id |
idx_x_pdf_extraction_type_tenant | NO | btree | tenant_id |
Navigation