1
ObjectScript에서 RESTful POST API를 작성하는 방법 (스키마는 이와 유사 함). 스키마를 준수하는 myList를 받아 들여야합니다.ObjectScript에서 RESTful POST API를 빌드
{
"$schema": "link",
"type": "object",
"properties": {
"myList": {
"type": "array",
"items":{
"type": "string"
}
}
},
"required": [
"myList"
]
}