Affinity · Schema
User
CRMRelationship IntelligencePrivate EquityVenture CapitalContactsOrganizationsOpportunitiesDeal Management
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The user's unique identifier |
| firstName | string | The user's first name |
| lastName | string | The user's last name |
| emailAddress | string | The user's email address |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "User",
"type": "object",
"properties": {
"id": {
"description": "The user's unique identifier",
"type": "integer",
"format": "int64",
"minimum": 1,
"maximum": 9007199254740991,
"examples": [
1
]
},
"firstName": {
"description": "The user's first name",
"type": "string",
"examples": [
"John"
]
},
"lastName": {
"description": "The user's last name",
"type": "string",
"examples": [
"Smith"
],
"nullable": true
},
"emailAddress": {
"description": "The user's email address",
"type": "string",
"format": "email",
"examples": [
"[email protected]"
]
}
},
"required": [
"emailAddress",
"firstName",
"id",
"lastName"
],
"additionalProperties": false,
"examples": [
{
"firstName": "John",
"lastName": "Smith",
"emailAddress": "[email protected]",
"id": 1
}
]
}