{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ReplaceUserRequest", "title": "ReplaceUserRequest", "type": "object", "properties": { "firstName": { "type": "string", "example": "example_value" }, "lastName": { "type": "string", "example": "example_value" }, "email": { "type": "string", "example": "user@example.com" }, "role": { "type": "string", "example": "example_value" }, "userGroupId": { "type": "integer", "format": "int64", "example": "500123" } } }