{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PortalDeveloper", "title": "PortalDeveloper", "type": "object", "properties": { "id": { "$ref": "#/components/schemas/UUID" }, "created_at": { "$ref": "#/components/schemas/CreatedAt" }, "updated_at": { "$ref": "#/components/schemas/UpdatedAt" }, "email": { "type": "string", "format": "email", "maxLength": 255 }, "full_name": { "type": "string", "maxLength": 255 }, "status": { "$ref": "#/components/schemas/DeveloperStatus" } }, "example": { "id": "7cd9feff-b4da-4a9f-ba49-cbe83c75ff22", "email": "[email protected]", "full_name": "Jane Dev", "status": "approved", "created_at": "2022-11-15T20:37:41.457Z", "updated_at": "2022-11-15T20:37:47.456Z" }, "additionalProperties": false, "required": [ "id", "created_at", "updated_at", "email", "full_name", "status" ] }