Properties
| Name | Type | Description |
|---|---|---|
| FirstName | string | First name of the user. |
| LastName | string | Last name of the user. |
| ImageUrl | string | URL of the profile image. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DeviceCommandCreator",
"title": "User",
"required": [
"LastName"
],
"type": "object",
"properties": {
"FirstName": {
"type": "string",
"description": "First name of the user.",
"nullable": true
},
"LastName": {
"minLength": 1,
"type": "string",
"description": "Last name of the user."
},
"ImageUrl": {
"type": "string",
"description": "URL of the profile image.",
"format": "uri",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "DeviceCommandCreator"
}