{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PortalClaimMappings", "title": "PortalClaimMappings", "description": "Mappings from a portal developer atribute to an Identity Provider claim.", "type": "object", "properties": { "name": { "type": "string", "example": "name", "default": "name" }, "email": { "type": "string", "example": "email", "default": "email" }, "groups": { "type": "string", "example": "custom-group-claim", "default": "groups" } }, "example": { "name": "name", "email": "email", "groups": "custom-group-claim" }, "maxProperties": 3, "minProperties": 0 }