Greece
Invoice
Greece-specific fields
type Invoice {
// ...generic invoice fields
lines: [
{
// ...other line item fields
cpv: string;
}
];
// Recipient is required for regular invoices and not allowed for self-billed invoice
recipient: {
peppolId: {
endpointId: string;
};
contract?: {
authority: string;
reference: string;
type: string;
};
};
customInfo: {
grc: {
qrCode?: string;
};
};
};
Name | Type | Required | Description |
---|---|---|---|
lines[].cpv | string | No | Product’s Common Procurement Vocabulary code. |
recipient.peppolId.endpoint | string | Yes | Peppol ID of the recipient (eg. iso6523-actorid-upis::0230:uat-eezi-12345) |
recipient.contract.authority | string | Yes | Contract Authority Unique Code |
recipient.contract.reference | string | Yes | Contract Reference Code. If not available it takes the value 0. |
recipient.contract.type | string | Yes | Contract Reference Code |
customInfo.grc.qrCode | string | N/A | QR Code value (Response) |
Updated 4 days ago