Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Validate Objects Against a Schema

HardPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Validate Objects Against a Schema. Start with the requirements on the right.

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.

Problem

Amplitude Experiment and Analytics services receive structured event payloads. Implement a validator that checks whether an object conforms to a recursive schema containing required fields, data types, nested objects, and arrays.

The schema uses nodes with type, and optionally required, properties, items, and additionalProperties. Supported types are string, number, boolean, null, array, and object. Return an object containing valid and an ordered errors list. Report errors in traversal order using paths such as payload.user.id and payload.items[0]. A missing required field should produce missing: <path>. A type mismatch should produce expected <type>: <path>. When additionalProperties is false, report unexpected: <path> for undeclared fields.

Constraints

  • The payload contains JSON-compatible values only.
  • The schema is valid and has a root node.
  • There are at most 10^4 total payload values and schema nodes.
  • Property names are non-empty strings.
  • Required-field and object-key order must be preserved in the errors list.

Function Signature

def validate_payload(payload, schema):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output