- ✅ Receives a GET request on route /api/properties/{propertyId}
- ✅ Validates that propertyId has been provided
- ✅ Validates that the propertyId field is an ObjectId
- ✅ Returns 204 if there is no active property with the provided id
- ✅ Returns 200 with the property
- ✅ Returns error 404 if the API does not exist
- ✅ Returns error 400 if propertyId is not provided
- ✅ Returns error 400 if propertyId field is not an ObjectId
- ✅ Returns error 500 if get an error when trying to load the property