There is an API to get object's properties for model.
GET :urn/metadata/:guid/properties
But it returns only names of the properties. How can I get type (integer, string, ...) of property and some additional info (precision for numeric, etc)?
There is an API to get object's properties for model.
GET :urn/metadata/:guid/properties
But it returns only names of the properties. How can I get type (integer, string, ...) of property and some additional info (precision for numeric, etc)?
这是唯一处理属性的 API 端点,因此遗憾的是,目前无法使用 REST API 实现这一点。
一种解决方法是使用 API 提取模型的所有资源,请查看以下文章:Forge SVF Extractor in Node.js。
下载资源后,查看section_properties.db
一个 sqlite 数据库,从那里您可以重构哪些属性属于哪个组件并能够获取它们的类型,您将访问与您可以获取的信息相同的信息观众,据我所知,正如我在上一个问题中提到的那样,没有办法获得精度。
这是该文件在 sqlite db 查看器中的外观,您需要做一些摆弄才能找到您要查找的内容: