Advertisement
Guest User

Untitled

a guest
Feb 29th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. {
  2. "definitions": {},
  3. "$schema": "http://json-schema.org/draft-07/schema#",
  4. "$id": "http://example.com/root.json",
  5. "type": "array",
  6. "items": {
  7. "$id": "#/items",
  8. "type": "object",
  9. "properties": {
  10. "title": {
  11. "$id": "#/items/properties/title",
  12. "type": "string"
  13. },
  14. "slug": {
  15. "$id": "#/items/properties/slug",
  16. "type": "string"
  17. },
  18. "priority": {
  19. "$id": "#/items/properties/priority",
  20. "type": "integer"
  21. },
  22. "content": {
  23. "$id": "#/items/properties/content",
  24. "type": "string"
  25. }
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement