{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TeamMapping", "title": "TeamMapping", "description": "A team assignment is a mapping of an IdP group to a Konnect Team.", "type": "object", "properties": { "group": { "description": "The IdP group.", "type": "string", "example": "Service Developers" }, "team_ids": { "description": "An array of ID's that are mapped to the specified group.", "type": "array", "items": { "type": "string", "format": "uuid", "example": "6801e673-cc10-498a-94cd-4271de07a0d3" }, "uniqueItems": true } }, "example": { "group": "Service Developers", "team_ids": [ "6801e673-cc10-498a-94cd-4271de07a0d3" ] } }