Skip to content

Commit c0395ac

Browse files
committed
fix: refactor data to fit new schema
1 parent d5ac39f commit c0395ac

File tree

1 file changed

+53
-1
lines changed

1 file changed

+53
-1
lines changed

app/app.config.ts

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,59 @@ export default defineAppConfig({
147147
expand: true,
148148
duration: 5000
149149
},
150-
schemaOrg: [
150+
schemaOrg: {
151+
hasMeasurement: [
152+
{
153+
'name': 'Material Width Max',
154+
'value': 'cutWidth',
155+
'description': 'Maximum width of material that can be processed',
156+
'unitText': 'mm',
157+
'unitCode': 'MMT',
158+
'@type': 'QuantitativeValue'
159+
},
160+
{
161+
'name': 'Material Height Max',
162+
'value': 'cutHeight',
163+
'description': 'Maximum height of material that can be processed',
164+
'unitText': 'mm',
165+
'unitCode': 'MMT',
166+
'@type': 'QuantitativeValue'
167+
},
168+
{
169+
'name': 'Material Diameter Max',
170+
'value': 'cutDiameter',
171+
'description': 'Maximum diameter of material that can be processed',
172+
'unitText': 'mm',
173+
'unitCode': 'MMT',
174+
'@type': 'QuantitativeValue'
175+
},
176+
{
177+
'name': 'Length Interval',
178+
'value': 'lengthInterval',
179+
'description': 'Minimum length interval for cutting',
180+
'unitText': 'mm',
181+
'unitCode': 'MMT',
182+
'@type': 'QuantitativeValue'
183+
},
184+
{
185+
'name': 'Feeding Speed Max',
186+
'value': 'feedSpeed',
187+
'description': 'Maximum feeding speed',
188+
'unitText': 'm/min',
189+
'unitCode': '',
190+
'@type': 'QuantitativeValue'
191+
},
192+
{
193+
'name': 'Cutting Performance',
194+
'value': 'cutRate',
195+
'description': 'Maximum cutting performance',
196+
'unitText': 'cuts/min',
197+
'unitCode': 'CPM',
198+
'@type': 'QuantitativeValue'
199+
}
200+
]
201+
},
202+
schemaOrg1: [
151203
{
152204
'name': 'Material Width Max',
153205
'value': 'cutWidth',

0 commit comments

Comments
 (0)