Properties
| Name | Type | Description |
|---|---|---|
| allowChatterAccessWithoutLogin | boolean | |
| allowMembersToFlag | boolean | |
| description | string | |
| id | string | |
| invitationsEnabled | boolean | |
| knowledgeableEnabled | boolean | |
| loginUrl | string | |
| name | string | |
| nicknameDisplayEnabled | boolean | |
| privateMessagesEnabled | boolean | |
| reputationEnabled | boolean | |
| sendWelcomeEmail | boolean | |
| siteAsContainerEnabled | boolean | |
| siteUrl | string | |
| status | string | |
| url | string | |
| urlPathPrefix | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Community",
"title": "Community",
"type": "object",
"properties": {
"allowChatterAccessWithoutLogin": {
"type": "boolean"
},
"allowMembersToFlag": {
"type": "boolean"
},
"description": {
"type": "string",
"nullable": true
},
"id": {
"type": "string"
},
"invitationsEnabled": {
"type": "boolean"
},
"knowledgeableEnabled": {
"type": "boolean"
},
"loginUrl": {
"type": "string"
},
"name": {
"type": "string"
},
"nicknameDisplayEnabled": {
"type": "boolean"
},
"privateMessagesEnabled": {
"type": "boolean"
},
"reputationEnabled": {
"type": "boolean"
},
"sendWelcomeEmail": {
"type": "boolean"
},
"siteAsContainerEnabled": {
"type": "boolean"
},
"siteUrl": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"Live",
"Inactive",
"UnderConstruction"
]
},
"url": {
"type": "string"
},
"urlPathPrefix": {
"type": "string"
}
}
}