| id | uuid | primary key | Unique identifier for each label element |
| label_format_id | uuid | foreign key | References the associated label format |
| company_id | uuid | foreign key | References the company owning the element |
| type | varchar(50) | check (‘BARCODE’, ‘QR_CODE’, ‘IDENTIFIER’, ‘TEXT’, ‘IMAGE’) | Type of the label element |
| x | float | | Horizontal position in mm (absolute position only) |
| y | float | | Vertical position in mm (absolute position only) |
| text | text | | Content for TextElement |
| font_size | float | | Font size for TextElement and IdentifierElement |
| bold | boolean | | Bold style for TextElement |
| italic | boolean | | Italic style for TextElement |
| underline | boolean | | Underline style for TextElement |
| file_id | uuid | | References the associated file for ImageElement |
| width | float | | Width in mm for ImageElement, BarcodeElement, and QrCodeElement |
| height | float | | Height in mm for BarcodeElement |