Skip to main content

Public View

The public view is what recipients see when they open your share link.

Features

ERD diagram

The full entity-relationship diagram is displayed in read-only mode. Recipients can:

  • Pan and zoom the canvas
  • Click table nodes to inspect fields
  • Use the node visibility panel to focus on specific tables

Conversation history

The full AI conversation that built the schema is displayed, providing context for design decisions.

Export

Recipients can export the schema without logging in:

  • SQL (all 4 dialects)
  • DBML
  • JSON
  • Image (PNG, SVG, PDF)

Mobile-friendly

The public view is fully responsive — works on phones and tablets, not just desktop.

Privacy

  • The public view is read-only — recipients cannot modify anything
  • Only the specific thread you share is accessible — not your other threads or account details
  • Revoke the link at any time to remove access

Embedding

You can link directly to the public view URL in:

  • GitHub README files
  • Notion or Confluence docs
  • Pull request descriptions
  • Slack/email messages

iframe embed

To embed the public view as an iframe on your own site or internal tool, use the following snippet:

<iframe
src="https://talkingschema.ai/public/<your-token>"
width="100%"
height="600"
frameborder="0"
sandbox="allow-scripts allow-same-origin allow-forms allow-popups allow-popups-to-escape-sandbox"
allowfullscreen
></iframe>

The allow-popups and allow-popups-to-escape-sandbox sandbox values are required so that the Try free button can open a new tab. Without them, clicking the button will be silently blocked by the browser.