image.json 611 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "object",
  4. "properties": {
  5. "h": {
  6. "title": "Height",
  7. "description": "Image Height",
  8. "type": "number"
  9. },
  10. "w": {
  11. "title": "Width",
  12. "description": "Image Width",
  13. "type": "number"
  14. },
  15. "id": {
  16. "title": "ID",
  17. "description": "Image ID",
  18. "type": "string"
  19. },
  20. "p": {
  21. "title": "Image name",
  22. "description": "Image name",
  23. "type": "string"
  24. },
  25. "u": {
  26. "title": "Image path",
  27. "description": "Image path",
  28. "type": "string"
  29. }
  30. }
  31. }