The landing zone contains raw data, the clean zone contains clean data, and the business zone contains domain-specific data, usually related to solve business problems.
# Describing the data through its schema
import singer
singer.write_schema(schema=json_schema,
stream_name='DC_employees',
key_properties=["id"])
#Serializing JSON
import json
json.dumps(json_schema["properties"]["age"])
with open("foo.json", mode="w") as fh:
json.dump(obj=json_schema, fp=fh) # writes the json-serialized object
# to the open file handle