Saudi Arabia
Invoice
Changes to generic fields
lines[].itemCode
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
itemCode: string;
vat: {
code: TaxCode;
}
}
];
recipient: {
// ...everything from invoice.recipient,
},
customInfo?: {
sau?: {
translate?: boolean;
}
}
};
Name | Type | Required | Description |
---|---|---|---|
lines[].itemCode | string | Yes | Line item code (3 character) as specified on [Insert Item Code List] |
lines[].vat.code | string | Yes | A value from an enumerated list of types: "S": Standard rate "Z": Zero rated "E": Exempt "O": Outside of scope |
recipient.address.line1 | string | Yes | Address line 1 (Street address/PO Box/Company name). |
recipient.address.city | string | Yes | City/District/Suburb/Town/Village |
recipient.address.state | string | Yes | State/County/Province/Region |
recipient.address.country | string | Yes | Three-letter country code (ISO 3166-1 alpha-3 ). |
recipient.address.postalCode | string | Yes | ZIP or postal code |
customInfo.sau.translate | boolean | No | Translates invoice to Arabic |
Example CSV file
Updated 1 day ago