telemetry-schema.json 727 B

12345678910111213141516171819202122232425
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "object",
  4. "properties": {
  5. "argv": {"type": "array"},
  6. "system": {
  7. "type": "object",
  8. "properties": {
  9. "architecture": {"type": "array"},
  10. "linux_distribution": {"type": "array"},
  11. "mac_ver": {"type": "array"},
  12. "machine": {"type": "string"},
  13. "python_version": {"type": "string"},
  14. "release": {"type": "string"},
  15. "system": {"type": "string"},
  16. "version": {"type": "string"},
  17. "win_ver": {"type": "array"}
  18. },
  19. "required": ["architecture", "machine", "python_version",
  20. "release", "system", "version"]
  21. }
  22. },
  23. "required": ["argv", "system"]
  24. }