DEV Community · Schema
User
The representation of a user returned in a list
Developer CommunityArticlesBloggingSocialContentOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| type_of | string | |
| id | integer | |
| username | string | |
| name | string | |
| summary | string | |
| twitter_username | string | |
| github_username | string | |
| website_url | string | |
| location | string | |
| joined_at | string | |
| profile_image | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "User",
"description": "The representation of a user returned in a list",
"type": "object",
"properties": {
"type_of": {
"type": "string"
},
"id": {
"type": "integer",
"format": "int64"
},
"username": {
"type": "string"
},
"name": {
"type": "string"
},
"summary": {
"type": "string",
"nullable": true
},
"twitter_username": {
"type": "string"
},
"github_username": {
"type": "string"
},
"website_url": {
"type": "string",
"nullable": true
},
"location": {
"type": "string",
"nullable": true
},
"joined_at": {
"type": "string"
},
"profile_image": {
"type": "string"
}
}
}