{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 2,
  "name": "gutengrow/stripe-subscriptions",
  "version": "0.1.0",
  "title": "Stripe Subscriptions",
  "category": "gutengrow-blocks",
  "icon": "money-alt",
  "description": "Display subscription products from Stripe in a pricing table",
  "keywords": [
    "stripe",
    "subscription",
    "pricing",
    "pricing table"
  ],
  "supports": {
    "html": false
  },
  "textdomain": "gutengrow-blocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js",
  "render": "file:./render.php",
  "attributes": {
    "isYearly": {
      "type": "boolean",
      "default": false
    },
    "selectedProducts": {
      "type": "array",
      "default": []
    },
    "showComparison": {
      "type": "boolean",
      "default": true
    },
    "pricingMode": {
      "type": "string",
      "default": "subscription"
    },
    "heroHeading": {
      "type": "string",
      "default": "Simple, transparent pricing"
    },
    "heroSubheading": {
      "type": "string",
      "default": "Choose the perfect plan for your needs"
    },
    "billingToggleLabelMonthly": {
      "type": "string",
      "default": "Monthly"
    },
    "billingToggleLabelYearly": {
      "type": "string",
      "default": "Yearly"
    },
    "billingToggleSavingText": {
      "type": "string",
      "default": "(Save 20%)"
    },
    "manageProductsButtonLabel": {
      "type": "string",
      "default": "Manage Subscription Products"
    },
    "yearlyDiscountPercent": {
      "type": "number",
      "default": 20
    },
    "className": {
      "type": "string"
    },
    "align": {
      "type": "string",
      "default": "wide"
    }
  }
}