User schema from 1Factory API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/1factory/refs/heads/main/json-schema/1factory-user-schema.json", "title": "User", "description": "User schema from 1Factory API", "type": "object", "properties": { "id": { "type": "integer", "format": "int32", "nullable": false, "description": "Unique identifier for the user.", "example": 5127 }, "name": { "type": "string", "nullable": false, "maxLength": 255, "description": "Full name of the user.", "example": "John Doe" }, "email": { "type": "string", "nullable": false, "format": "email", "maxLength": 255, "description": "Email address of the user.", "example": "[email protected]" } }, "required": [ "id", "name", "email" ] }