From 54b25d8750fa5ef7f1cf1d391a202a458f22d139 Mon Sep 17 00:00:00 2001 From: Kevin Liu Date: Sat, 13 Jun 2026 14:09:36 -0700 Subject: [PATCH] Docs: Clarify geography type serialization --- format/spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format/spec.md b/format/spec.md index b88f2af1edcc..be28a6c5f000 100644 --- a/format/spec.md +++ b/format/spec.md @@ -1685,7 +1685,7 @@ Types are serialized according to this table: |**`map`**|`JSON object: {`
  `"type": "map",`
  `"key-id": ,`
  `"key": ,`
  `"value-id": ,`
  `"value-required": `
  `"value": `
`}`|`{`
  `"type": "map",`
  `"key-id": 4,`
  `"key": "string",`
  `"value-id": 5,`
  `"value-required": false,`
  `"value": "double"`
`}`| | **`variant`**| `JSON string: "variant"`|`"variant"`| | **`geometry(C)`** |`JSON string: "geometry()"`|`"geometry(srid:4326)"`| -| **`geography(C, A)`** |`JSON string: "geography(,)"`|`"geography(srid:4326,spherical)"`| +| **`geography(C, A)`** |`JSON string: "geography(, )"`|`"geography(srid:4326, spherical)"`| Note that default values are serialized using the JSON single-value serialization in [Appendix D](#appendix-d-single-value-serialization).