Properties
| Name | Type | Description |
|---|---|---|
| active | object | |
| consumer_id | object | |
| guid | object | |
| name | object | |
| onboarding | object | |
| org_id | object | |
| pending | object | |
| teams | object | |
| users | integer | Count of users in the consumer org. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Consumer",
"title": "Consumer",
"type": "object",
"properties": {
"active": {
"$ref": "#/components/schemas/Org/properties/active"
},
"consumer_id": {
"$ref": "#/components/schemas/Org/properties/consumer_id"
},
"guid": {
"$ref": "#/components/schemas/Org/properties/guid"
},
"name": {
"$ref": "#/components/schemas/Org/properties/name"
},
"onboarding": {
"$ref": "#/components/schemas/Org/properties/onboarding"
},
"org_id": {
"$ref": "#/components/schemas/Org/properties/org_id"
},
"pending": {
"$ref": "#/components/schemas/Org/properties/pending"
},
"teams": {
"oneOf": [
{
"type": "integer",
"description": "Count of teams in the consumer org."
},
{
"type": "object",
"description": "Metadata of the teams in the consumer org.",
"properties": {
"guid": {
"$ref": "#/components/schemas/Team/properties/guid"
},
"name": {
"$ref": "#/components/schemas/Team/properties/name"
}
}
}
],
"example": "example_value"
},
"users": {
"type": "integer",
"description": "Count of users in the consumer org.",
"example": 1
}
}
}