DEV Community · Schema
Organization
Representation of an Organization
Developer CommunityArticlesBloggingSocialContentOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| type_of | string | |
| username | string | |
| name | string | |
| summary | string | |
| twitter_username | string | |
| github_username | string | |
| url | string | |
| location | string | |
| joined_at | string | |
| tech_stack | string | |
| tag_line | string | |
| story | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Organization",
"description": "Representation of an Organization",
"type": "object",
"properties": {
"type_of": {
"type": "string"
},
"username": {
"type": "string"
},
"name": {
"type": "string"
},
"summary": {
"type": "string"
},
"twitter_username": {
"type": "string"
},
"github_username": {
"type": "string"
},
"url": {
"type": "string"
},
"location": {
"type": "string"
},
"joined_at": {
"type": "string"
},
"tech_stack": {
"type": "string"
},
"tag_line": {
"type": "string",
"nullable": true
},
"story": {
"type": "string",
"nullable": true
}
}
}