Romania Invoice
Romania Invoice
Changes to generic fields
lines[].unit
is requiredrecipient.address.line1
is required.recipient.address.city
is required.recipient.address.state
is required.recipient.address.country
is required.recipient.address.postalCode
is required.
Romania-specific fields
type Invoice {
// ...everything from invoice
lines: [
{
// ..other line item fields
unit: UnitsOfMeasure;
}
];
recipient: {
// ...everything from invoice.recipient,
companyId?: string;
},
customInfo?: {
rou?: {
dueDate?: string;
}
}
};
Name | Type | Required | Description |
---|---|---|---|
customInfo.rou.dueDate | string (ISO 8601 date) | Yes | Due date of invoice |
lines[].unit | string | Yes | A value from an enumerated list as outlined on Units of Measure |
recipient.companyId | string | No | Registered company ID |
recipient.address.line1 | string | Yes | Address line 1 (Street address/PO Box/Company name). |
recipient.address.city | string | Yes | City name. If the city is Bucharest, then the city Sector Code needs to be provided, e.g. Sector 5 |
recipient.address.state | string | Yes | County code as per ISO3166-2:RO, e.g. RO-AB. This also includes the city of Bucharest (RO-B) |
recipient.address.country | string | Yes | Three-letter country code (ISO 3166-1 alpha-3 ). |
recipient.address.postalCode | string | Yes | ZIP or postal code |
Example CSV file
Updated 7 days ago