schema.hx 459 B

12345678910111213141516171819202122232425262728293031323334353637
  1. N::Continent {
  2. name: String
  3. }
  4. N::Country {
  5. name: String,
  6. currency: String,
  7. population: I64,
  8. gdp: F64
  9. }
  10. N::City {
  11. name: String,
  12. description: String,
  13. zip_codes: [String]
  14. }
  15. E::Continent_to_Country {
  16. From: Continent,
  17. To: Country,
  18. Properties: {
  19. }
  20. }
  21. E::Country_to_City {
  22. From: Country,
  23. To: City,
  24. Properties: {
  25. }
  26. }
  27. E::Country_to_Capital {
  28. From: Country,
  29. To: City,
  30. Properties: {
  31. }
  32. }