Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Infer JSON Schema
00:00
5 left

Infer JSON Schema

HardSQL · PostgreSQL

Problem

Given an input dataset consisting of JSON records (e.g. [{"a": 1, "b": ["hello", "world"], "c": "foo"}]), return the schema of the dataset (a is int, b is list of string, c is string), handling nested records.

Asked in the tech screen stage. Use the records belonging to dataset ID 1.

Output

  1. One row per scalar or list-valued leaf path, with field_path, schema_type, and is_nullable.
  2. Represent nested paths with dot notation and arrays as list of <type>.
  3. Mark a field nullable when it is missing from any record or contains a JSON null.
  4. Order by field_path ascending.

Schema

datasets
ColumnTypeDescription
dataset_idPKINTEGERUnique dataset identifier
dataset_nameVARCHAR(255)Dataset name
dataset_records
ColumnTypeDescription
record_idPKINTEGERUnique record identifier
dataset_idINTEGERReferenced dataset identifier
payloadJSONBJSON record payload
Tablesdatasetsdataset_records
Interviewer

Your question is Infer JSON Schema. Start with the requirements and the two tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.