schema.json 386 B

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