// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html exports[`SamlAuthProvidersRoleMapping model > jsonSchema should have the correct schema 1`] = ` { "properties": { "id": { "format": "uuid", "type": "string", }, "remoteRoleName": { "minLength": 1, "type": "string", }, "roleId": { "format": "uuid", "type": "string", }, "samlAuthProviderId": { "format": "uuid", "type": "string", }, }, "required": [ "samlAuthProviderId", "roleId", "remoteRoleName", ], "type": "object", } `; exports[`SamlAuthProvidersRoleMapping model > relationMappings should have samlAuthProvider relation 1`] = ` { "join": { "from": "saml_auth_providers_role_mappings.saml_auth_provider_id", "to": "saml_auth_providers.id", }, "modelClass": [Function], "relation": [Function], } `;