PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / review-schema / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/review-schema/block.json

164 lines 4.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/review-schema",
5 "title": "Review Schema",
6 "description": "Displays an aggregate star rating with Schema.org JSON-LD markup for rich search results.",
7 "category": "bkbg-blog",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-review-schema-editor",
10 "style": "bkbg-review-schema-style",
11 "viewScript": "bkbg-review-schema-frontend",
12 "icon": "star-filled",
13 "supports": {
14 "html": false,
15 "anchor": true,
16 "className": true,
17 "align": [
18 "wide",
19 "full"
20 ]
21 },
22 "attributes": {
23 "itemName": {
24 "type": "string",
25 "default": "Our Product"
26 },
27 "itemType": {
28 "type": "string",
29 "default": "Product"
30 },
31 "description": {
32 "type": "string",
33 "default": ""
34 },
35 "imageUrl": {
36 "type": "string",
37 "default": ""
38 },
39 "ratingValue": {
40 "type": "number",
41 "default": 4.8
42 },
43 "ratingCount": {
44 "type": "integer",
45 "default": 127
46 },
47 "bestRating": {
48 "type": "integer",
49 "default": 5
50 },
51 "worstRating": {
52 "type": "integer",
53 "default": 1
54 },
55 "reviews": {
56 "type": "array",
57 "default": [
58 {
59 "author": "Alex M.",
60 "date": "2024-01-15",
61 "rating": 5,
62 "body": "Absolutely love it! Exceeded all expectations."
63 },
64 {
65 "author": "Sarah K.",
66 "date": "2024-02-03",
67 "rating": 5,
68 "body": "Top quality and great support. Highly recommend."
69 },
70 {
71 "author": "James L.",
72 "date": "2024-02-20",
73 "rating": 4,
74 "body": "Very good overall, minor improvements possible."
75 }
76 ]
77 },
78 "showReviews": {
79 "type": "boolean",
80 "default": true
81 },
82 "showSchema": {
83 "type": "boolean",
84 "default": true
85 },
86 "layout": {
87 "type": "string",
88 "default": "card"
89 },
90 "starSize": {
91 "type": "integer",
92 "default": 32
93 },
94 "reviewColumns": {
95 "type": "integer",
96 "default": 3
97 },
98 "cardRadius": {
99 "type": "integer",
100 "default": 16
101 },
102 "starColor": {
103 "type": "string",
104 "default": "#f59e0b"
105 },
106 "starEmpty": {
107 "type": "string",
108 "default": "#e2e8f0"
109 },
110 "bgColor": {
111 "type": "string",
112 "default": "#ffffff"
113 },
114 "cardBg": {
115 "type": "string",
116 "default": "#f8fafc"
117 },
118 "cardBorder": {
119 "type": "string",
120 "default": "#e2e8f0"
121 },
122 "headingColor": {
123 "type": "string",
124 "default": "#0f172a"
125 },
126 "bodyColor": {
127 "type": "string",
128 "default": "#475569"
129 },
130 "authorColor": {
131 "type": "string",
132 "default": "#64748b"
133 },
134 "ratingSize": {
135 "type": "integer",
136 "default": 56
137 },
138 "sectionBg": {
139 "type": "string",
140 "default": ""
141 },
142 "fontSize": {
143 "type": "number",
144 "default": 14
145 },
146 "fontWeight": {
147 "type": "number",
148 "default": 400
149 },
150 "lineHeight": {
151 "type": "number",
152 "default": 1.5
153 },
154 "headingTypo": {
155 "type": "object",
156 "default": {}
157 },
158 "bodyTypo": {
159 "type": "object",
160 "default": {}
161 }
162 }
163 }
164