1
0
mirror of synced 2025-12-25 02:09:19 -05:00

Source-Faker users gain address sub-object (#25903)

* Faker users gain address sub-object

* bump readme and metadata

* fixup expected records

* auto-bump connector version

---------

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
This commit is contained in:
Evan Tahler
2023-05-09 09:24:01 -07:00
committed by GitHub
parent 090c1a9701
commit 4fd9226a73
11 changed files with 51 additions and 14 deletions

View File

@@ -62,6 +62,18 @@ def test_source_streams():
"height": {"type": "string"},
"blood_type": {"type": "string"},
"weight": {"type": "integer"},
'address': {
'type': 'object',
'properties': {
'city': {'type': 'string'},
'country_code': {'type': 'string'},
'postal_code': {'type': 'string'},
'province': {'type': 'string'},
'state': {'type': 'string'},
'street_name': {'type': 'string'},
'street_number': {'type': 'string'}
}
}
}