records.json 548 B

123456789101112131415161718192021222324252627
  1. {
  2. "documentation": "A records info which is part of a team.",
  3. "fields": [
  4. {
  5. "documentation": "update create_time of this records.",
  6. "name": "create_time",
  7. "type": "Long",
  8. "nullable": false,
  9. "index": true
  10. },
  11. {
  12. "documentation": "name of this records.",
  13. "name": "name",
  14. "type": "String",
  15. "nullable": false
  16. }
  17. ],
  18. "constraints": [
  19. {
  20. "name": "unique_records",
  21. "definition": "UNIQUE (create_time) ON CONFLICT REPLACE"
  22. }
  23. ],
  24. "defaultOrder": "name DESC"
  25. }