{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "stalepilot/timed-content",
  "title": "Timed Content",
  "category": "widgets",
  "icon": "visibility",
  "description": "Show or hide inner blocks based on a date/time condition.",
  "textdomain": "stalepilot",
  "usesContext": [
    "postId",
    "postType"
  ],
  "attributes": {
    "visibilityMode": {
      "type": "string",
      "default": "show-until"
    },
    "dateTime": {
      "type": "string",
      "default": ""
    },
    "relativeEnabled": {
      "type": "boolean",
      "default": false
    },
    "relativeValue": {
      "type": "number",
      "default": 7
    },
    "relativeUnit": {
      "type": "string",
      "default": "days"
    },
    "usePostExpiry": {
      "type": "boolean",
      "default": false
    }
  },
  "example": {
    "innerBlocks": [
      {
        "name": "core/paragraph",
        "attributes": {
          "content": "This content will be shown or hidden based on the schedule."
        }
      }
    ]
  },
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css"
}