forked from stripe-samples/subscription-use-cases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseed.json
57 lines (57 loc) · 1.12 KB
/
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
{
"_meta": {
"template_version": 0
},
"fixtures": [
{
"name": "basic_product",
"path": "/v1/products",
"method": "post",
"params": {
"name": "Basic"
}
},
{
"name": "basic_price",
"path": "/v1/prices",
"method": "post",
"params": {
"product": "${basic_product:id}",
"lookup_key": "sample_basic",
"currency": "usd",
"unit_amount": 500,
"recurring": {
"interval": "month"
},
"metadata": {
"sample": "fixed-price"
}
}
},
{
"name": "premium_product",
"path": "/v1/products",
"method": "post",
"params": {
"name": "Premium"
}
},
{
"name": "premium_price",
"path": "/v1/prices",
"method": "post",
"params": {
"product": "${premium_product:id}",
"lookup_key": "sample_premium",
"currency": "usd",
"unit_amount": 1400,
"recurring": {
"interval": "month"
},
"metadata": {
"sample": "fixed-price"
}
}
}
]
}