Identify the Error
Type name errors occur when the data model contains entity type names that violate naming rules. Symptoms include:- Connection status shows Failed after saving the data model
- Error messages referencing unrecognized type names
- Sheet configuration
fromfield fails to match any entity type
Check Entity Type Naming Rules
Entity type names in
domainModelTypes must follow strict rules:| Rule | Valid | Invalid |
|---|---|---|
| Single word, no spaces | SystemRequirement | System Requirement |
| No special characters | UserNeed | User-Need, User_Need |
| PascalCase recommended | DesignRequirement | designrequirement |
| Must be unique | One Hazard entry | Two Hazard entries |
Distinguish Entity Type Names from Polarion Type IDs
A common mistake is confusing data model entity type names (the YAML keys under 
The
domainModelTypes) with Polarion work item type IDs (the polarionType value):polarionType maps your data model entity to a Polarion work item type, but all references within the data model (relationships, queries, sources) use the entity type name (the YAML key).Fix Relationship References
When relationship
from and to fields reference an invalid entity type name, you may see “left error” or “right error” messages:- “left error” = the
fromentity type name is invalid - “right error” = the
toentity type name is invalid
Fix Source Query References
The
from field in your sheet configuration sources must also use the entity type name:Fix a Wrong-Case `polarionType` Value
This is the single most common reason for an empty sheet, and it produces no error message at all.
- Symptom: The sheet opens but is completely empty — no rows load, the connection status looks fine, and no error is shown.
- Cause: The
polarionTypevalue does not match the Polarion work item type ID exactly, usually because of wrong casing. For example, usingsystemRequirement(camelCase) when the actual Polarion type ID issys_req. Polarion type IDs are case-sensitive, so a near-miss silently matches zero work items. - Fix: Check the exact work item type ID in your Polarion project (Administration > Work Items > Types) and use that exact string — including case and underscores — as the
polarionTypevalue.
Verification
After correcting type names:- Save the data model configuration
- Check that the connection status returns to Active
- Open the powersheet document
- You should now see data loading correctly with no type-related errors in the sheet
See Also
- Create an Entity Type — entity type setup guide
- Fix Model Connection Errors — diagnose data model connection failures
- Fix Relationship Errors — relationship configuration issues
- Validate Your Data Model — full validation checklist