【发布时间】:2017-01-02 10:22:52
【问题描述】:
如何在 ObjectScript 中构建 RESTful POST API,而架构是这样的。它应该接受符合架构的 myList。
{
"$schema": "link",
"type": "object",
"properties": {
"myList": {
"type": "array",
"items":{
"type": "string"
}
}
},
"required": [
"myList"
]
}
【问题讨论】:
标签: intersystems-cache objectscript