# Person
- [ Property `firstName`](#firstName)
- [ Property `lastName`](#lastName)
- [ Property `age`](#age)
- [ Property `moreInfo`](#moreInfo)
**Title:** Person
| Type | `object` |
| ------------------------- | ------------------------------------------------------------------------------------------------------------------- |
| **Additional properties** | [](# "Additional Properties of any type are allowed.") |
| | |
##  Property `firstName`
**Title:** Person
| Type | `string` |
| ---- | -------- |
| | |
**Description:** the person's first name
**Examples:**
```json
"Guido"
```
```json
"BDFL"
```
##  Property `lastName`
**Title:** Person
| Type | `string` |
| ---- | -------- |
| | |
**Description:** The person's last name.
**Example:**
```json
"Van Rossum"
```
##  Property `age`
**Title:** Person
| Type | `integer` |
| ---- | --------- |
| | |
**Description:** Age in years which must be equal to or greater than zero.
| Restrictions | |
| ------------ | ------ |
| **Minimum** | ≥ 0 |
| | |
**Example:**
```json
64
```
##  Property `moreInfo`
| Type | `object` |
| ------------------------- | ------------------------------------------------------------------------------------------------------------------- |
| **Additional properties** | [](# "Additional Properties of any type are allowed.") |
| | |
**Description:** Any more info you want as an object
**Example:**
```json
{
"birthplace": "Haarlem, Netherlands",
"favorite_emoji": "🐍",
"motto": "Beautiful is better than ugly.\\nExplicit is better than implicit.\\nSimple is better than complex.\\nComplex is better than complicated.\\nFlat is better than nested.\\nSparse is better than dense.\\nReadability counts.\\nSpecial cases aren't special enough to break the rules.\\nAlthough practicality beats purity.\\nErrors should never pass silently.\\nUnless explicitly silenced.\\nIn the face of ambiguity, refuse the temptation to guess.\\nThere should be one-- and preferably only one --obvious way to do it.\\nAlthough that way may not be obvious at first unless you're Dutch.\\nNow is better than never.\\nAlthough never is often better than *right* now.\\nIf the implementation is hard to explain, it's a bad idea.\\nIf the implementation is easy to explain, it may be a good idea.\\nNamespaces are one honking great idea -- let's do more of those!"
}
```
----------------------------------------------------------------------------------------------------------------------------
Generated using [json-schema-for-humans](https://github.com/coveooss/json-schema-for-humans) on date