definitions.json 854 B

1234567891011121314151617181920212223242526272829303132
  1. [
  2. {
  3. "description": "valid definition",
  4. "schema": {"$ref": "http://json-schema.org/draft-04/schema#"},
  5. "tests": [
  6. {
  7. "description": "valid definition schema",
  8. "data": {
  9. "definitions": {
  10. "foo": {"type": "integer"}
  11. }
  12. },
  13. "valid": true
  14. }
  15. ]
  16. },
  17. {
  18. "description": "invalid definition",
  19. "schema": {"$ref": "http://json-schema.org/draft-04/schema#"},
  20. "tests": [
  21. {
  22. "description": "invalid definition schema",
  23. "data": {
  24. "definitions": {
  25. "foo": {"type": 1}
  26. }
  27. },
  28. "valid": false
  29. }
  30. ]
  31. }
  32. ]