Skip to content

Demo data - SAS

There are two dedicated demo data connectors for a non-existing Norwegian municipality named Utkanten Kommune. This connector provides school information system data and the other provides HR 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
schoolyear The starting school year of the connector. Choose from the list; the value is the four-digit start year, so the school year shown as 2025/2026 is supplied as 2025. 2025

Creating a connector using PowerShell

You must first Connect-IAMCore, as per the documentation

$Connector = New-IAMCoreConnector `
    -Name "SAS" `
    -TemplateId utkantenkommunesas  `
    -Configuration @{
        schoolyear = "2027"
    }

Write-Host "Created with id $($Connector.id)"

Connector object types

Object type Contents
student Pupils
teacher Teachers
group Schools and teaching groups
member Membership of a group, referencing a person and a group

Example sync rules

Groups become CoreOrgUnits, students and teachers become CoreIdentities, and members become CoreRelationships tying the two together. See sync rules for the shape of each.