RapidAPI · Schema
Organization
API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the organization |
| name | string | Name of the organization |
| description | string | Description of the organization |
| thumbnail | string | URL to the organization's thumbnail image |
| createdAt | string | Timestamp when the organization was created |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Organization",
"title": "Organization",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the organization"
},
"name": {
"type": "string",
"description": "Name of the organization"
},
"description": {
"type": "string",
"description": "Description of the organization"
},
"thumbnail": {
"type": "string",
"format": "uri",
"description": "URL to the organization's thumbnail image"
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the organization was created"
}
}
}