{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "User", "type": "object", "properties": { "uid": { "type": "string", "description": "Unique identifier for the user" }, "name": { "type": "string", "description": "Name of the user" }, "email": { "type": "string", "format": "email", "description": "Email address of the user" } } }