namespace internal.encoding.fbs; 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; parameters:string; created_at:long; } table GoodItems { items:[GoodItem]; } root_type GoodItems;