-
Notifications
You must be signed in to change notification settings - Fork 335
/
sample-seed.json
96 lines (96 loc) · 2.42 KB
/
sample-seed.json
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
94
95
96
{
"_meta": {
"template_version": 0
},
"fixtures": [
{
"name": "starter_product",
"path": "/v1/products",
"method": "post",
"params": {
"name": "Starter",
"description": "The essentials for when you're just getting started.",
"metadata": {
"features": "[\"2 projects\", \"Up to 1,000 apps\", \"Basic analytics\", \"E-mail support\"]"
}
}
},
{
"name": "starter_monthly_price",
"path": "/v1/prices",
"method": "post",
"params": {
"currency": "usd",
"product": "${starter_product:id}",
"unit_amount": 1200,
"recurring": {
"interval": "month"
},
"lookup_key": "starter",
"transfer_lookup_key": true,
"tax_behavior": "exclusive"
}
},
{
"name": "starter_annual_price",
"path": "/v1/prices",
"method": "post",
"params": {
"currency": "usd",
"product": "${starter_product:id}",
"unit_amount": 12000,
"recurring": {
"interval": "year"
},
"tax_behavior": "exclusive",
"lookup_key": "starter_annual",
"transfer_lookup_key": true
}
},
{
"name": "pro_product",
"path": "/v1/products",
"method": "post",
"params": {
"name": "Professional",
"description": "For professionals looking to achieve maximum efficiency and time savings.",
"metadata": {
"features": "[\"10 projects\", \"Up to 10,000 apps\", \"Advanced analytics\", \"24-hour chat support\", \"Channel management\"]",
"most_popular": true
}
}
},
{
"name": "pro_monthly_price",
"path": "/v1/prices",
"method": "post",
"params": {
"currency": "usd",
"product": "${pro_product:id}",
"unit_amount": 1800,
"recurring": {
"interval": "month"
},
"lookup_key": "pro",
"transfer_lookup_key": true,
"tax_behavior": "exclusive"
}
},
{
"name": "pro_annual_price",
"path": "/v1/prices",
"method": "post",
"params": {
"currency": "usd",
"product": "${pro_product:id}",
"unit_amount": 18000,
"recurring": {
"interval": "year"
},
"tax_behavior": "exclusive",
"lookup_key": "pro_annual",
"transfer_lookup_key": true
}
}
]
}