-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabstract-api-exchange-rates-context.jsonld
More file actions
44 lines (44 loc) · 1.1 KB
/
abstract-api-exchange-rates-context.jsonld
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"@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#",
"ConvertResponse": "abstract:ConvertResponse",
"HistoricalRatesResponse": "abstract:HistoricalRatesResponse",
"LiveRatesResponse": "abstract:LiveRatesResponse",
"baseCurrency": {
"@id": "abstract:base_currency",
"@type": "xsd:string"
},
"targetCurrency": {
"@id": "abstract:target_currency",
"@type": "xsd:string"
},
"baseAmount": {
"@id": "abstract:base_amount",
"@type": "xsd:decimal"
},
"convertedAmount": {
"@id": "abstract:converted_amount",
"@type": "xsd:decimal"
},
"base": {
"@id": "abstract:base",
"@type": "xsd:string"
},
"date": {
"@id": "abstract:date",
"@type": "xsd:date"
},
"exchangeRates": {
"@id": "abstract:exchange_rates",
"@type": "@id"
},
"lastUpdated": {
"@id": "abstract:last_updated",
"@type": "xsd:integer"
}
}
}