UNPKG

@dbbs/strapi-stripe-payment

Version:
46 lines (45 loc) 1 kB
{ "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" } } }