33 lines
453 B
Plaintext
33 lines
453 B
Plaintext
namespace internal.encoding.fbs;
|
|
|
|
struct Dimensions {
|
|
width:float;
|
|
height:float;
|
|
length:float;
|
|
}
|
|
|
|
table GoodItem {
|
|
sku:string;
|
|
photo:string;
|
|
name:string;
|
|
description:string;
|
|
category:string;
|
|
type:string;
|
|
producer:string;
|
|
pack:short;
|
|
step:short;
|
|
price:float;
|
|
tariff:float;
|
|
cart:long;
|
|
stock:short;
|
|
sizes:Dimensions;
|
|
parameters:string;
|
|
created_at:long;
|
|
}
|
|
|
|
table GoodItems {
|
|
items:[GoodItem];
|
|
}
|
|
|
|
root_type GoodItems;
|