diff --git a/cmd/web/docs/docs.go b/cmd/web/docs/docs.go index edb66a4..dac41e3 100644 --- a/cmd/web/docs/docs.go +++ b/cmd/web/docs/docs.go @@ -6568,9 +6568,6 @@ const docTemplate = `{ "company.CompanyProfileResponse": { "type": "object", "properties": { - "country": { - "type": "string" - }, "created_at": { "type": "integer" }, diff --git a/cmd/web/docs/swagger.json b/cmd/web/docs/swagger.json index 0ddbef9..1170b6f 100644 --- a/cmd/web/docs/swagger.json +++ b/cmd/web/docs/swagger.json @@ -6562,9 +6562,6 @@ "company.CompanyProfileResponse": { "type": "object", "properties": { - "country": { - "type": "string" - }, "created_at": { "type": "integer" }, diff --git a/cmd/web/docs/swagger.yaml b/cmd/web/docs/swagger.yaml index f832558..3b1d7b5 100644 --- a/cmd/web/docs/swagger.yaml +++ b/cmd/web/docs/swagger.yaml @@ -80,8 +80,6 @@ definitions: type: object company.CompanyProfileResponse: properties: - country: - type: string created_at: type: integer founded_year: diff --git a/internal/company/entity.go b/internal/company/entity.go index 60c904c..e521734 100644 --- a/internal/company/entity.go +++ b/internal/company/entity.go @@ -208,7 +208,6 @@ type CompanyProfileResponse struct { Name string `json:"name"` RegistrationNumber string `json:"registration_number"` Industry string `json:"industry"` - Country string `json:"country"` FoundedYear *int `json:"founded_year,omitempty"` CreatedAt int64 `json:"created_at"` }