-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabstract-api-vat-validation-context.jsonld
More file actions
84 lines (84 loc) · 1.98 KB
/
abstract-api-vat-validation-context.jsonld
File metadata and controls
84 lines (84 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"@context": {
"@version": 1.1,
"abstract": "https://abstractapi.com/schema/",
"schema": "https://schema.org/",
"dcterms": "http://purl.org/dc/terms/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"VATCalculateResponse": "abstract:VATCalculateResponse",
"VATRatesResponse": "abstract:VATRatesResponse",
"VATValidationResponse": "abstract:VATValidationResponse",
"amountExclVat": {
"@id": "abstract:amount_excl_vat",
"@type": "xsd:decimal"
},
"vatAmount": {
"@id": "abstract:vat_amount",
"@type": "xsd:decimal"
},
"amountInclVat": {
"@id": "abstract:amount_incl_vat",
"@type": "xsd:decimal"
},
"vatCategory": {
"@id": "abstract:vat_category",
"@type": "xsd:string"
},
"vatRate": {
"@id": "abstract:vat_rate",
"@type": "xsd:decimal"
},
"countryCode": {
"@id": "abstract:country_code",
"@type": "xsd:string"
},
"countryName": {
"@id": "abstract:country_name",
"@type": "xsd:string"
},
"standardRate": {
"@id": "abstract:standard_rate",
"@type": "xsd:decimal"
},
"reducedRates": {
"@id": "abstract:reduced_rates",
"@container": "@set",
"@type": "xsd:decimal"
},
"superReducedRate": {
"@id": "abstract:super_reduced_rate",
"@type": "xsd:decimal"
},
"parkingRate": {
"@id": "abstract:parking_rate",
"@type": "xsd:decimal"
},
"vatNumber": {
"@id": "abstract:vat_number",
"@type": "xsd:string"
},
"valid": {
"@id": "abstract:valid",
"@type": "xsd:boolean"
},
"company": {
"@id": "abstract:company",
"@type": "@id"
},
"name": {
"@id": "schema:name"
},
"address": {
"@id": "abstract:address",
"@type": "xsd:string"
},
"country": {
"@id": "abstract:country",
"@type": "@id"
},
"code": {
"@id": "abstract:code",
"@type": "xsd:string"
}
}
}