Appearance
Export to Termboard
TermStorm is designed to work seamlessly with Termboard. After your workshop concludes, you can export the collected and prioritized concepts directly into Termboard for further semantic modeling.
Export Workflow Overview
TermStorm Termboard
┌─────────────────┐ ┌─────────────────┐
│ Copy Stage │ │ Import │
│ │ Copy & │ │
│ Select concepts │ ───────────→ │ Paste JSON │
│ Click "Copy" │ Paste │ Click "Import" │
└─────────────────┘ └─────────────────┘Step 1: Select Concepts in TermStorm
In the Copy stage, select the concepts you want to export:
Individual Selection
- Click on a concept to select or deselect it
- Selected concepts show a blue background with a checkmark
Bulk Selection
Use the selection buttons to quickly select groups:
| Button | Action |
|---|---|
| Select All | Select all concepts |
| Clear | Deselect all concepts |
| Green (N) | Select all positively-voted concepts (+1) |
| Blue (N) | Select all neutral concepts (0) |
| Red (N) | Select all negatively-voted concepts (-1) |
The number in parentheses shows how many concepts are in each category.
TIP
A common workflow is to click Green to select only the concepts that received positive votes, focusing your Termboard model on the most agreed-upon terms.
Step 2: Configure Export Options
Click Copy Selected (N) to open the export options dialog:
Include User Comments
When enabled, participant notes are added to the explanation field in Termboard:
json
{
"name": "Customer",
"explanation": "<span style=\"color: blue;\">Alice</span><br>The person who places orders<br><br><span style=\"color: blue;\">Bob</span><br>Includes both B2B and B2C customers"
}Use Facilitator Note as Description
When enabled, the facilitator's notes are placed in the description field separately:
json
{
"name": "Customer",
"description": "Official definition: An entity that purchases goods or services",
"explanation": "<span style=\"color: blue;\">Alice</span><br>The person who places orders"
}This is useful when the facilitator's notes represent the "official" definition while participant notes provide additional context.
Step 3: Copy to Clipboard
Click Copy in the export dialog. The button will briefly show "Copied!" to confirm.
You can adjust the checkboxes and click Copy again to export with different options.
Step 4: Import into Termboard
Option A: Via Sidebar Import
- Open Termboard
- Open the Left sidebar (click the hamburger menu if collapsed)
- Click Bulk add
- Select the Import JSON tab
- Paste the copied JSON data
- Click Import
Option B: Via File Menu
- Open Termboard
- Go to File → Import → JSON
- Paste the JSON data
- Click Import
The concepts will be added as Terms on your Termboard canvas, with:
- name → Term name
- description → Term description field
- explanation → Term explanation field (Additional Info)
Export Format Reference
Basic Format (no comments)
json
{
"terms": [{ "name": "Customer" }, { "name": "Order" }, { "name": "Product" }]
}With User Comments
json
{
"terms": [
{
"name": "Customer",
"explanation": "<span style=\"color: blue;\">Alice</span><br>The person who places orders"
}
]
}With Facilitator Description
json
{
"terms": [
{
"name": "Customer",
"description": "Official definition from facilitator",
"explanation": "<span style=\"color: blue;\">Alice</span><br>Participant note"
}
]
}Workshop State Export (Backup)
In addition to exporting concepts to Termboard, you can export the complete workshop state for backup or later continuation.
Export Workshop State
- In the Copy stage, click Export Workshop
- A JSON file will be downloaded with the naming pattern:
{workshop-name}-{id}-{date}.json
Import Workshop State
- Go to termstorm.com
- Click Create Workshop
- Select the Import tab
- Upload your previously exported JSON file
- Click Import Workshop
NOTE
Importing a workshop creates a new workshop with a new ID. The data (concepts, votes, notes, participants) is preserved, but it's a fresh instance.
Use Cases for Workshop State Export
- Backup: Save workshop state at the end of a session
- Templates: Create a template workshop and import to start new sessions with predefined concepts
- Cross-device: Export on one device, import on another
- Recovery: Restore if browser data is cleared
- Sharing: Share the full workshop with colleagues for independent review
CSV Export
TermStorm also supports CSV export for use in spreadsheets and other tools:
- In the Copy stage, look for the CSV export option
- The CSV includes concept names, vote totals, and submitter information
- Open in Excel, Google Sheets, or any spreadsheet application
Next Steps After Import
Once your concepts are in Termboard, you can:
- Add Relations between terms to show how concepts are connected
- Group related terms for better organization
- Add descriptions and explanations to define each term
- Apply styling to visually distinguish different types of concepts
- Create a semantic model with proper ontology structure
See the Termboard documentation for detailed guides on working with your imported concepts.