{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/deviceOwner", "title": "deviceOwner", "type": "object", "required": [ "id", "type", "firstName", "lastName" ], "properties": { "id": { "type": "string", "description": "Unique identifier of a person or a workspace." }, "type": { "$ref": "#/components/schemas/MemberType", "description": "Enumeration that indicates if the member is of type `PEOPLE` or `PLACE`." }, "firstName": { "type": "string", "description": "First name of device owner." }, "lastName": { "type": "string", "description": "Last name of device owner." } } }