how to build a RESTful POST API in ObjectScript whereas schema is like this. It should accept myList conforming to the schema.
{
"$schema": "link",
"type": "object",
"properties": {
"myList": {
"type": "array",
"items":{
"type": "string"
}
}
},
"required": [
"myList"
]
}
Refer to Creating REST Services chapter in documentation. It describes the process.