Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the folder. |
| name | string | Name of the folder. |
| type | string | Type of the folder. |
| ownerEmail | string | Email of the folder owner. |
| flowCount | integer | Number of flows in the folder. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FlowFolder",
"title": "FlowFolder",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the folder."
},
"name": {
"type": "string",
"description": "Name of the folder."
},
"type": {
"type": "string",
"enum": [
"Company",
"Personal",
"Shared"
],
"description": "Type of the folder."
},
"ownerEmail": {
"type": "string",
"format": "email",
"description": "Email of the folder owner."
},
"flowCount": {
"type": "integer",
"description": "Number of flows in the folder."
}
}
}