{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OwnerObject", "title": "OwnerObject", "type": "object", "description": "Details of the owner of the device.", "example": { "lastName": "Mac", "firstName": "Jone", "type": "PEOPLE" }, "required": [ "lastName", "firstName", "type" ], "properties": { "lastName": { "type": "string", "example": "user", "description": "First name of device owner." }, "firstName": { "type": "string", "example": "user1", "description": "Last name of device owner." }, "type": { "$ref": "#/components/schemas/MemberType" } } }