1
我有一個名爲pageCount的屬性,它是一個數字,後面跟着一個基於頁碼的信息數組。現在,我想將數組中的maxItems設置爲等於pageCount的值。有沒有辦法可以做到?我看到的大多數地方實際上都使用數字來定義maxItems,但是我們可以爲模式本身分配一個屬性值嗎?在JSON模式中分配數組中的maxItems屬性等於其他屬性
"pageCount": {
"type":"number",
"mininum": 1,
"required":true
},
"pages": {
"type":"array",
"required":true,
"minItems": 1,
"maxItems" : <to be set as the the value of pageCount??>