Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added better descriptions and netPremium etc #152

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/Characteristics.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ craneCapacity | Carrying capacity for crane in kg. | positiveDecimal
elevatorLoad | Maximum elevator load in kg. | positiveDecimal
floor | Floor number, ground floor is 0, basement floors are negative. | integer
floorLoad | Maximum floor load in kg/m² | positiveDecimal
grossPremium | A gross premium is the total premium of an insurance contract before brokerage or | percentdiscounts have been deducted, in percent.
grossPremium | Current gross return in percentage by reporting date (Net annual rental income x 100 / investment costs) | positiveDecimal
grossPremiumTarget | Targeted gross return in percentage (Net annual rental income x 100 / investment costs) if fully rented out | positiveDecimal
netPremium | Current net return in percentage (Net annual rental income - operation and maintenance costs) x 100 / investment costs) | positiveDecimal
hallHeight | Hall height in m, usually for commercial properties. | positiveDecimal
hasAttic | Has an attic. | [applicable](#type-applicable)
hasBalcony | Balcony available. | [applicable](#type-applicable)
Expand Down
12 changes: 11 additions & 1 deletion schema/schema.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,17 @@
</xs:element>
<xs:element name="grossPremium" type="percent" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>A gross premium is the total premium of an insurance contract before brokerage or discounts have been deducted, in percent.</xs:documentation>
<xs:documentation>Current gross return in percentage (Net annual rental income x 100 / investment costs)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="grossPremiumTarget" type="percent" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Targeted gross return in percentage (Net annual rental income x 100 / investment costs) if fully rented out.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="netPremium" type="percent" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Current net return in percentage (Net annual rental income - operation and maintenance costs) x 100 / investment costs).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="hallHeight" type="positiveDecimal" minOccurs="0" maxOccurs="1">
Expand Down