@dbbs/strapi-stripe-payment
Version:
Strapi integration plugin for Stripe payment system
39 lines (38 loc) • 945 B
JSON
{
"kind": "collectionType",
"collectionName": "subscriptions",
"info": {
"singularName": "subscription",
"pluralName": "subscriptions",
"displayName": "Subscription"
},
"options": {
"draftAndPublish": false,
"comment": ""
},
"attributes": {
"stripe_id": {
"type": "string"
},
"organization": {
"type": "relation",
"relation": "oneToOne",
"target": "plugin::stripe-payment.organization",
"inversedBy": "subscription"
},
"plan": {
"type": "relation",
"relation": "oneToOne",
"target": "plugin::stripe-payment.plan"
},
"status": {
"type": "enumeration",
"enum": [
"trialing",
"active",
"cancelled",
"paused"
]
}
}
}