{ "$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." } } }