Demo data - HR¶
There are two dedicated demo data connectors for a non-existing Norwegian municipality named Utkanten Kommune. This connector provides HR data and the other provides school information system data, and is intended for demonstration purposes. We do not recommend using these data for anything in production, but feel free to play around in your development tenants.
Configuration inputs¶
| Input | Description | Example value |
|---|---|---|
| relativedate | A relative date for all start and end dates. Must be written as yyyy-mm-dd. |
2026-08-01 |
Creating a connector using PowerShell¶
You must first Connect-IAMCore, as per the documentation
$Connector = New-IAMCoreConnector `
-Name "HR" `
-TemplateId utkantenkommunehr `
-Configuration @{
relativedate = "2026-08-01"
}
Write-Host "Created with id $($Connector.id)"
Connector object types¶
| Object type | Contents |
|---|---|
| person | The people of the municipality |
| position | Their employments, referencing a person and a department |
| department | The organizational tree |
Example sync rules¶
The worked examples on the sync rules page are written against exactly this data, so they can be used as-is against a connector created from this template — one rule each for person, position and department.