AppSeo
Type: the builder-set SEO metadata block for a built app.
import type { AppSeo } from 'flowstack-sdk'Read with getSeo, written (merged) with setSeo. Every field is optional — the type is a partial by design, so a site can carry as little as a description.
Signature
interface AppSeo { description?: string; keywords?: string[]; og_image?: string; faq?: Array<{ q: string; a: string }>; structured_type?: string }Returns
| Field | Type | Description |
|---|---|---|
description | string | Meta description for the app. |
keywords | string[] | Keyword list. |
og_image | string | Open Graph image URL. |
faq | Array<{ q: string; a: string }> | FAQ pairs, emitted as FAQ structured data. |
structured_type | string | schema.org type to advertise for the app (e.g. SoftwareApplication). |
WarningField names are snake_case on this type (
og_image, structured_type) — unlike most camelCase SDK options objects. A camelCase key is silently ignored by the backend merge.See also
Source: src/api/client.ts (Builder SEO, P0-176) · Also available in llms-full.txt and registry.json.