Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. OKHDF: {
  2. x<paper width>: float,
  3. y<paper length>: float,
  4. type<printer type>: inkjet|laser,
  5. color<printer's color ability>: bool,
  6. }
  7. PARSED: {
  8. "x": {
  9. "description": "paper width",
  10. "type": "float"
  11. },
  12. "y": {
  13. "description": "paper length",
  14. "type": "float"
  15. },
  16. "type": {
  17. "description": "printer type",
  18. "types": [
  19. "inkjet",
  20. "laser"
  21. ]
  22. },
  23. "color": {
  24. "description": "printer's color ability",
  25. "type": "bool"
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement