Guest User

Untitled

a guest
Jan 24th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. |-- order: string (nullable = true)
  2. |-- travel: array (nullable = true)
  3. | |-- element: struct (containsNull = true)
  4. | | |-- place: struct (nullable = true)
  5. | | | |-- name: string (nullable = true)
  6. | | | |-- address: string (nullable = true)
  7. | | | |-- distance: double (nullable = true)
  8. | | |-- distance_in_kms: float (nullable = true)
  9. | | |-- estimated_time: struct (nullable = true)
  10. | | | |-- seconds: long (nullable = true)
  11. | | | |-- nanos: integer (nullable = true)
  12.  
  13. |-- order: string (nullable = true)
  14. |-- travel: array (nullable = true)
  15. | |-- element: struct (containsNull = true)
  16. | | |-- place: struct (nullable = true)
  17. | | | |-- name: string (nullable = true)
  18. | | | |-- address: string (nullable = true)
  19. | | | |-- distance: double (nullable = true)
  20. | | |-- distance_in_kms: float (nullable = true)
  21. | | |-- estimated_time: string (nullable = true)
  22.  
  23. {
  24. "order": "c-331"
  25. "travel": [
  26. "place": {
  27. "name": "A place",
  28. "address": "The address",
  29. "latitude": 0.0,
  30. "longitude": 0.0
  31. },
  32. "distance_in_kms": 1.0,
  33. "estimated_time": {
  34. "seconds": 988,
  35. "nanos": 102
  36. }
  37. ]
  38. }
  39.  
  40. {
  41. "order": "c-331"
  42. "travel": [
  43. "place": {
  44. "name": "A place",
  45. "address": "The address",
  46. "latitude": 0.0,
  47. "longitude": 0.0
  48. },
  49. "distance_in_kms": 1.0,
  50. "estimated_time": "988s"
  51. ]
  52. }
Add Comment
Please, Sign In to add comment