Skip to content

Commit f9d9b2a

Browse files
authored
handle PostgreSQL JSON types as JSON Schema objects (#1975)
1 parent ee370fb commit f9d9b2a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pygeoapi/provider/postgresql.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Bernhard Mallinger <bernhard.mallinger@eox.at>
1010
#
1111
# Copyright (c) 2018 Jorge Samuel Mendes de Jesus
12-
# Copyright (c) 2024 Tom Kralidis
12+
# Copyright (c) 2025 Tom Kralidis
1313
# Copyright (c) 2022 John A Stevenson and Colin Blackburn
1414
# Copyright (c) 2023 Francesco Bartoli
1515
# Copyright (c) 2024 Bernhard Mallinger
@@ -224,6 +224,7 @@ def get_fields(self):
224224
bool: 'boolean',
225225
datetime: 'string',
226226
Decimal: 'number',
227+
dict: 'object',
227228
float: 'number',
228229
int: 'integer',
229230
str: 'string'

0 commit comments

Comments
 (0)