diff --git a/src/structures/schemas/structure.schema.ts b/src/structures/schemas/structure.schema.ts
index 718d4bb0377705246f7e6c0df31ad3e266b26a2d..fdd977bfc67d6f6ab411d60b1ba36f109a4a5573 100644
--- a/src/structures/schemas/structure.schema.ts
+++ b/src/structures/schemas/structure.schema.ts
@@ -1,5 +1,4 @@
 import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
-import { Exclude } from 'class-transformer';
 import { Document } from 'mongoose';
 import { Address } from './address.schema';
 import { Week } from './week.schema';
@@ -30,7 +29,6 @@ export class Structure {
   lockdownActivity: string;
 
   @Prop()
-  @Exclude()
   address: Address;
 
   @Prop()