brevo · Schema
Category
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the category. |
| name | string | Name of the category. |
| url | string | URL of the category page. |
| createdAt | string | UTC date-time when the category was created. |
| modifiedAt | string | UTC date-time when the category was last modified. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Category",
"title": "Category",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the category."
},
"name": {
"type": "string",
"description": "Name of the category."
},
"url": {
"type": "string",
"format": "uri",
"description": "URL of the category page."
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "UTC date-time when the category was created."
},
"modifiedAt": {
"type": "string",
"format": "date-time",
"description": "UTC date-time when the category was last modified."
}
}
}