// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html exports[`OAuthClient model > jsonSchema should have correct validations 1`] = ` { "properties": { "active": { "type": "boolean", }, "appKey": { "type": "string", }, "authDefaults": { "type": [ "string", "null", ], }, "createdAt": { "type": "string", }, "formattedAuthDefaults": { "type": "object", }, "id": { "format": "uuid", "type": "string", }, "updatedAt": { "type": "string", }, }, "required": [ "name", "appKey", "formattedAuthDefaults", ], "type": "object", } `;