Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| orggroup_ids | array | |
| session_expiry | integer | Session expiry in minutes |
| alarmtemplate_id | string | |
| created_time | number | |
| modified_time | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Organization",
"title": "Organization",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"orggroup_ids": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
}
},
"session_expiry": {
"type": "integer",
"description": "Session expiry in minutes"
},
"alarmtemplate_id": {
"type": "string",
"format": "uuid"
},
"created_time": {
"type": "number"
},
"modified_time": {
"type": "number"
}
}
}