Docs · Experiences

Experiences

An Experience is a hostable web app whose UI is DataObjects — pages composed of components, bound to workflows and knowledge on the same graph.

JSON-LD sketch

{
  "@id": "urn:uuid:…",
  "schemaRef": "schema:experience",
  "name": "Lead capture",
  "data": {
    "slug": "lead-capture",
    "homePath": "/",
    "nav": [
      { "label": "Leads", "href": "/" },
      { "label": "Capture", "href": "/capture" }
    ]
  }
}

A page object points at a component tree; a form_slot component binds a workflow id so the human path is the same form you embed publicly.

In Closure

  • Library of Experiences → workbench (preview across Dev / Test / Prod)
  • ?mode=run = product chrome for QA / share
  • Scaffold from your IDE with platform_experience_scaffold

See also: Workflows · Quickstart