Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

hyper-schema.json 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "$schema": "http://json-schema.org/draft-03/hyper-schema#",
  3. "id": "http://json-schema.org/draft-03/hyper-schema#",
  4. "extends": { "$ref": "http://json-schema.org/draft-03/schema#" },
  5. "properties": {
  6. "links": {
  7. "type": "array",
  8. "items": { "$ref": "http://json-schema.org/draft-03/links#" }
  9. },
  10. "fragmentResolution": {
  11. "type": "string",
  12. "default": "slash-delimited"
  13. },
  14. "readonly": {
  15. "type": "boolean",
  16. "default": false
  17. },
  18. "contentEncoding": {
  19. "type": "string"
  20. },
  21. "pathStart": {
  22. "type": "string",
  23. "format": "uri"
  24. },
  25. "mediaType": {
  26. "type": "string",
  27. "format": "media-type"
  28. }
  29. },
  30. "links": [
  31. {
  32. "href": "{id}",
  33. "rel": "self"
  34. },
  35. {
  36. "href": "{$ref}",
  37. "rel": "full"
  38. },
  39. {
  40. "href": "{$schema}",
  41. "rel": "describedby"
  42. }
  43. ],
  44. "fragmentResolution": "slash-delimited"
  45. }