Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. {
  2. "definitions": {
  3. "address": {
  4. "type": "object",
  5. "properties": {
  6. "street_address": {
  7. "type": "string"
  8. },
  9. "city": {
  10. "type": "string"
  11. },
  12. "state": {
  13. "type": "string"
  14. }
  15. },
  16. "required": [
  17. "street_address",
  18. "city",
  19. "state"
  20. ]
  21. }
  22. },
  23. "type": "object",
  24. "properties": {
  25. "billing_address": {
  26. "title": "Billing address",
  27. "$ref": "#/definitions/address"
  28. },
  29. "shipping_address": {
  30. "title": "Shipping address",
  31. "$ref": "#/definitions/address"
  32. }
  33. },
  34. "required": [
  35. "shipping_address"
  36. ]
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement