基于JSON模式生成JSON负载以进行API负载验证

时间:2019-06-20 08:01:00

标签: json

我正在寻找一种基于提供的模式在JSON中生成随机有效载荷的方法。环顾四周,我发现一些有用的东西,但是没有很多github星星。 LINK

客观

能够根据提供的架构为有效载荷中的字段验证多个可能的值。

示例

对于模式-

let scrollCount = 0;

window.addEventListener("mousewheel", function(e){

  if(e.wheelDelta < 0 && scrollCount < 20){
    scrollCount++
  }
 else if(e.wheelDelta > 0 && scrollCount > -20){
    scrollCount--
  }


  let x = scrollCount * window.innerWidth
  let y = 30 * window.innerHeight

  moveEye(irisLeft, x, y)
  moveEye(irisRight, x, y)

  console.log(scrollCount)

});

可能的有效载荷-

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    }
  },
  "required": [
    "name"
  ]
}

我希望我的建议很明确。

0 个答案:

没有答案