We are trying to develop a mobile application where users first creates templates such as
(我们正在尝试开发一个移动应用程序,其中用户首先创建模板,例如)
Tea (fields: name, leaves)
(茶 (字段:名称,树叶))
Meeting (fields: location, time)
(会议 (字段:位置,时间))
and finally,
(最后,)
Tea Meeting (fields: Tea , Meeting )
(茶会议 (字段: 茶 , 会议 ))
We did some research and see JSON LD might be very useful.
(我们进行了一些研究,发现JSON LD可能非常有用。)
However we cannot design a backend structure for JSON LD.(但是,我们无法为JSON LD设计后端结构。)
In documentation, it says it is normal JSON however we want to do semantic search.(在文档中,它说这是普通的JSON,但是我们想进行语义搜索。)
For instance, in leaves properties for tea search early-grey.(例如,在叶子属性中搜索茶色为早灰色。)
JSON LD is mostly used in web SEO but should we use it for this context?.(JSON LD主要用于Web SEO中,但是我们应该在此上下文中使用它吗?)
How can we design tables to store such information?(我们如何设计表格来存储此类信息?)
ask by volkan y?lmaz translate from so