@dbbs/strapi-stripe-payment
Version:
Strapi integration plugin for Stripe payment system
46 lines (45 loc) • 804 B
JSON
{
"kind": "collectionType",
"collectionName": "plans",
"info": {
"singularName": "plan",
"pluralName": "plans",
"displayName": "Plan"
},
"options": {
"draftAndPublish": false,
"comment": ""
},
"attributes": {
"price": {
"type": "integer"
},
"stripe_id": {
"type": "string"
},
"interval": {
"type": "enumeration",
"enum": [
"month",
"year"
]
},
"type": {
"type": "enumeration",
"enum": [
"recurring",
"one-time"
],
"default": "recurring"
},
"currency": {
"type": "string"
},
"product": {
"type": "relation",
"relation": "manyToOne",
"target": "plugin::stripe-payment.product",
"inversedBy": "plans"
}
}
}