{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserBasicInfo", "title": "UserBasicInfo", "type": "object", "properties": { "id": { "type": "integer" }, "first_name": { "type": "string" }, "email": { "type": "string" } }, "required": [ "email", "first_name", "id" ] }