-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplans-context.jsonld
More file actions
93 lines (91 loc) · 2.05 KB
/
Copy pathplans-context.jsonld
File metadata and controls
93 lines (91 loc) · 2.05 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
85
86
87
88
89
90
91
92
93
{
"@context": {
"@version": 1.1,
"plans": "https://api-evangelist.github.io/plans/schema/",
"schema": "https://schema.org/",
"dcterms": "http://purl.org/dc/terms/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"dcat": "https://www.w3.org/ns/dcat#",
"gr": "http://purl.org/goodrelations/v1#",
"PricingPlan": "schema:Offer",
"PlanEntry": "plans:PlanEntry",
"id": "@id",
"name": "schema:name",
"label": "schema:name",
"description": "schema:description",
"provider": "schema:provider",
"provider_id": {
"@id": "plans:provider_id",
"@type": "xsd:string"
},
"type": {
"@id": "plans:type",
"@type": "xsd:string"
},
"currency": {
"@id": "schema:priceCurrency",
"@type": "xsd:string"
},
"billing_period": {
"@id": "plans:billing_period",
"@type": "xsd:string"
},
"base_price": {
"@id": "schema:price",
"@type": "xsd:string"
},
"price": {
"@id": "schema:price",
"@type": "xsd:string"
},
"entries": {
"@id": "plans:entries",
"@container": "@set"
},
"metric": {
"@id": "plans:metric",
"@type": "xsd:string"
},
"limit": {
"@id": "plans:limit"
},
"timeFrame": {
"@id": "plans:timeFrame",
"@type": "xsd:string"
},
"geo": {
"@id": "schema:areaServed",
"@type": "xsd:string"
},
"domains": {
"@id": "plans:domains",
"@container": "@set",
"@type": "xsd:string"
},
"unit": {
"@id": "gr:hasUnitOfMeasurement"
},
"userMultiplied": {
"@id": "plans:userMultiplied",
"@type": "xsd:boolean"
},
"feature_flag": {
"@id": "plans:feature_flag",
"@type": "xsd:string"
},
"sources": {
"@id": "dcterms:source",
"@container": "@set",
"@type": "@id"
},
"reconciled": {
"@id": "plans:reconciled",
"@type": "xsd:boolean"
},
"tags": {
"@id": "dcat:keyword",
"@container": "@set",
"@type": "xsd:string"
}
}
}