Properties
| Name | Type | Description |
|---|---|---|
| id | string | ID of the owner |
| string | Email of the owner | |
| name | string | Name of the owner |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Owner",
"title": "Owner",
"type": "object",
"x-apideck-schema-id": "Owner",
"readOnly": true,
"x-apideck-weights": {
"id": "critical"
},
"properties": {
"id": {
"type": "string",
"description": "ID of the owner",
"example": "12345",
"readOnly": true
},
"email": {
"type": "string",
"description": "Email of the owner",
"example": "[email protected]",
"readOnly": true,
"nullable": true
},
"name": {
"type": "string",
"description": "Name of the owner",
"example": "Elon Musk",
"readOnly": true,
"nullable": true
}
}
}