cache.json 400 B

123456789101112131415161718192021
  1. {
  2. "$id": "cache.json#",
  3. "$schema": "http://json-schema.org/draft-06/schema#",
  4. "properties": {
  5. "beforeRequest": {
  6. "oneOf": [
  7. { "type": "null" },
  8. { "$ref": "beforeRequest.json#" }
  9. ]
  10. },
  11. "afterRequest": {
  12. "oneOf": [
  13. { "type": "null" },
  14. { "$ref": "afterRequest.json#" }
  15. ]
  16. },
  17. "comment": {
  18. "type": "string"
  19. }
  20. }
  21. }