Docs / built-apps / AppSeo

AppSeo

typesince 0.5.0not for built apps

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

FieldTypeDescription
descriptionstringMeta description for the app.
keywordsstring[]Keyword list.
og_imagestringOpen Graph image URL.
faqArray<{ q: string; a: string }>FAQ pairs, emitted as FAQ structured data.
structured_typestringschema.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

getSeo · setSeo

Source: src/api/client.ts (Builder SEO, P0-176) · Also available in llms-full.txt and registry.json.