blocks_schema.json 534 B

123456789101112131415161718192021222324252627
  1. [
  2. {
  3. "description": "Hash of the block",
  4. "mode": "REQUIRED",
  5. "name": "hash",
  6. "type": "STRING"
  7. },
  8. {
  9. "description": "Address of the miner",
  10. "mode": "REQUIRED",
  11. "name": "miner",
  12. "type": "STRING"
  13. },
  14. {
  15. "description": "Timestamp of the block where this transaction was in",
  16. "mode": "REQUIRED",
  17. "name": "timestamp",
  18. "type": "TIMESTAMP"
  19. },
  20. {
  21. "description": "Block number where this transaction was in",
  22. "mode": "REQUIRED",
  23. "name": "number",
  24. "type": "INTEGER"
  25. }
  26. ]