Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "$id": "videoDetectionList",
  4. "type": "array",
  5. "additionalProperties": false,
  6. "items": {
  7. "type": "object",
  8. "additionalProperties": false,
  9. "properties": {
  10. "occupancyEstimate": {
  11. "type": "integer"
  12. },
  13. "estimatedError": {
  14. "type": "number"
  15. },
  16. "tags": {
  17. "type": "object",
  18. "patternProperties": {
  19. "^.*$": {
  20. "type": "string"
  21. }
  22. }
  23. }
  24. },
  25. "required": [
  26. "estimatedError",
  27. "tags",
  28. "occupancyEstimate"
  29. ]
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement