event.json 329 B

12345678910111213141516171819
  1. {
  2. "type": "object",
  3. "$schema": "https://json-schema.org/draft-2020-12/schema",
  4. "definitions": {
  5. "event.storage.write": {
  6. "type": "object",
  7. "properties": {
  8. "key": {
  9. "type": "string"
  10. },
  11. "body": {}
  12. },
  13. "required": [
  14. "key",
  15. "body"
  16. ]
  17. }
  18. }
  19. }