From 19f72345b18f16f36ab10d5e5f95593e7fd7f7e9 Mon Sep 17 00:00:00 2001 From: Joshua Darnell Date: Tue, 13 Apr 2021 16:57:10 -0700 Subject: [PATCH] Make Report Generator Friendlier with Jenkins and Build Processes (#72) * Added file generation to DD Metadata tests * Updated most libraries and build.gradle accordingly * Fixed annotation processor so it read Term instead of Type --- build.gradle | 43 +- .../containers/WebAPITestContainer.java | 2 - .../CertificationReportGenerator.java | 2 +- .../stepdefs/DataDictionary.java | 20 +- .../java/org/reso/commander/Commander.java | 24 +- .../org/reso/commander/common/TestUtils.java | 2 +- .../java/org/reso/models/MetadataReport.java | 73 +- ...ESODataDictionary-1.7.metadata-report.json | 12623 +++++++++++++++- 8 files changed, 12741 insertions(+), 48 deletions(-) diff --git a/build.gradle b/build.gradle index 36317ce..5aef70b 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ plugins { } // Define the main class for the application -mainClassName = 'org.reso.commander.Main' +mainClassName = 'org.reso.commander.App' sourceCompatibility = 1.8 targetCompatibility = 1.8 compileJava.options.encoding = 'UTF-8' @@ -22,8 +22,8 @@ repositories { } dependencies { - compile 'com.google.guava:guava:28.2-jre' - compile 'com.google.inject:guice:4.2.3' + compile 'com.google.guava:guava:30.1.1-jre' + compile 'com.google.inject:guice:5.0.1' compile 'commons-cli:commons-cli:1.4' compile 'org.apache.logging.log4j:log4j-api:2.13.0' @@ -35,22 +35,23 @@ dependencies { compile 'org.apache.olingo:odata-commons-core:4.8.0' compile 'org.apache.olingo:odata-client-core:4.8.0' - compile 'org.apache.poi:poi:3.17' - compile 'org.apache.poi:poi-ooxml:3.17' + compile 'org.apache.poi:poi:5.0.0' + compile 'org.apache.poi:poi-ooxml:5.0.0' - compile 'io.rest-assured:rest-assured:4.2.0' - compile 'io.rest-assured:json-path:4.2.0' - compile 'io.rest-assured:json-schema-validator:4.2.0' + compile 'io.rest-assured:rest-assured:4.3.3' + compile 'io.rest-assured:json-path:4.3.3' + compile 'io.rest-assured:json-schema-validator:4.3.3' - compile 'io.cucumber:cucumber-java8:5.4.0' - compile 'io.cucumber:cucumber-java:5.4.0' - compile 'io.cucumber:cucumber-junit:5.4.0' - compile 'io.cucumber:cucumber-guice:5.4.0' - compile 'io.cucumber:cucumber-core:5.4.0' + compile 'io.cucumber:cucumber-java8:6.10.2' + compile 'io.cucumber:cucumber-java:6.10.2' + compile 'io.cucumber:cucumber-junit:6.10.2' + compile 'io.cucumber:cucumber-guice:6.10.2' + compile 'io.cucumber:cucumber-core:6.10.2' - compile 'net.masterthought:cucumber-reporting:5.1.1' + compile 'net.masterthought:cucumber-reporting:5.5.2' - compile 'com.networknt:json-schema-validator:1.0.35' + //TODO: choose one schema validator between this and rest-assured + compile 'com.networknt:json-schema-validator:1.0.51' compile 'com.google.code.gson:gson:2.8.6' compile 'org.apache.commons:commons-text:1.9' @@ -64,18 +65,19 @@ configurations { jar { manifest { - attributes( - 'Class-Path': configurations.compile.collect { it.getName() }.join(' '), - 'Main-Class': 'org.reso.commander.App' - ) + attributes "Main-Class": mainClassName } - // generate "fat jar" by default from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } + exclude 'META-INF/*.RSA' + exclude 'META-INF/*.SF' + exclude 'META-INF/*.DSA' } + + // don't suppress warnings or deprecation notices tasks.withType(JavaCompile) { options.compilerArgs << '-Xlint:unchecked' @@ -330,3 +332,4 @@ task _jenkins_testWebApiServer_1_0_2_Core() { } } } + diff --git a/src/main/java/org/reso/certification/containers/WebAPITestContainer.java b/src/main/java/org/reso/certification/containers/WebAPITestContainer.java index ce5eaf9..456da31 100644 --- a/src/main/java/org/reso/certification/containers/WebAPITestContainer.java +++ b/src/main/java/org/reso/certification/containers/WebAPITestContainer.java @@ -20,7 +20,6 @@ import org.apache.olingo.client.api.domain.ClientEntitySet; import org.apache.olingo.client.api.edm.xml.XMLMetadata; import org.apache.olingo.client.api.uri.QueryOption; import org.apache.olingo.commons.api.edm.Edm; -import org.apache.olingo.commons.api.edm.provider.CsdlEnumType; import org.apache.olingo.commons.api.edm.provider.CsdlProperty; import org.apache.olingo.commons.api.format.ContentType; import org.reso.commander.Commander; @@ -100,7 +99,6 @@ public final class WebAPITestContainer implements TestContainer { //singleton variables private static final AtomicReference>> fieldMap = new AtomicReference<>(); - private static final AtomicReference>> enumMap = new AtomicReference<>(); /** * Initializes the container with a singleton instance of the RESO Commander diff --git a/src/main/java/org/reso/certification/reporting/CertificationReportGenerator.java b/src/main/java/org/reso/certification/reporting/CertificationReportGenerator.java index d8a9131..d7f184d 100644 --- a/src/main/java/org/reso/certification/reporting/CertificationReportGenerator.java +++ b/src/main/java/org/reso/certification/reporting/CertificationReportGenerator.java @@ -28,7 +28,7 @@ public class CertificationReportGenerator { private static final boolean USE_MINIMAL_REPORT = Boolean.parseBoolean(System.getProperty("minimal", "false")); private static final String DEFAULT_REPORT_DESCRIPTION = "Certification Report"; private static final String projectName = System.getProperty("reportDescription", DEFAULT_REPORT_DESCRIPTION); - private static final String MINIMAL_JSON_EXTENSION = ".minimal.json"; + private static final String MINIMAL_JSON_EXTENSION = "minimal.json"; public static void main(String[] args) { diff --git a/src/main/java/org/reso/certification/stepdefs/DataDictionary.java b/src/main/java/org/reso/certification/stepdefs/DataDictionary.java index e06a204..43ed2c9 100644 --- a/src/main/java/org/reso/certification/stepdefs/DataDictionary.java +++ b/src/main/java/org/reso/certification/stepdefs/DataDictionary.java @@ -184,6 +184,9 @@ public class DataDictionary { container.validateMetadata(); areMetadataValid = container.hasValidMetadata(); + //create metadata report + Commander.generateMetadataReport(container.getEdm()); + } catch (IOException e) { failAndExitWithErrorMessage(getDefaultErrorMessage(e), scenario); } @@ -215,6 +218,9 @@ public class DataDictionary { //if we have gotten to this point without exceptions, then metadata are valid areMetadataValid = container.hasValidMetadata(); + + //create metadata report + Commander.generateMetadataReport(container.getEdm()); } } @@ -260,7 +266,7 @@ public class DataDictionary { foundStandardMembers.set(getFoundStandardMembers(foundMembers.get(), dataTable)); if (foundStandardMembers.get().size() == 0) { - scenario.write("No RESO Standard Enumerations found for field: " + fieldName); + scenario.log("No RESO Standard Enumerations found for field: " + fieldName); } } @@ -461,10 +467,10 @@ public class DataDictionary { ? container.getFieldMap(currentResourceName.get()).get(fieldName).getPrecision() : null; if (!Objects.equals(precision, suggestedPrecision)) { - scenario.write("Precision for field " + fieldName + " SHOULD be equal to the RESO Suggested Max Precision of " + suggestedPrecision + scenario.log("Precision for field " + fieldName + " SHOULD be equal to the RESO Suggested Max Precision of " + suggestedPrecision + " but was " + precision); } else { - scenario.write("Precision for field " + fieldName + " is equal to the RESO Suggested Max Scale of " + suggestedPrecision); + scenario.log("Precision for field " + fieldName + " is equal to the RESO Suggested Max Scale of " + suggestedPrecision); } } @@ -475,10 +481,10 @@ public class DataDictionary { ? container.getFieldMap(currentResourceName.get()).get(fieldName).getScale() : null; if (!Objects.equals(scale, suggestedMaxScale)) { - scenario.write("Scale for field " + fieldName + " SHOULD be equal to the RESO Suggested Max Scale of " + suggestedMaxScale + scenario.log("Scale for field " + fieldName + " SHOULD be equal to the RESO Suggested Max Scale of " + suggestedMaxScale + " but was " + scale); } else { - scenario.write("Scale for field " + fieldName + " is equal to the RESO Suggested Max Scale of " + suggestedMaxScale); + scenario.log("Scale for field " + fieldName + " is equal to the RESO Suggested Max Scale of " + suggestedMaxScale); } } @@ -489,10 +495,10 @@ public class DataDictionary { ? container.getFieldMap(currentResourceName.get()).get(fieldName).getMaxLength() : null; if (!Objects.equals(length, suggestedMaxLength)) { - scenario.write("Length for field " + fieldName + " SHOULD be equal to the RESO Suggested Max Length of " + suggestedMaxLength + scenario.log("Length for field " + fieldName + " SHOULD be equal to the RESO Suggested Max Length of " + suggestedMaxLength + " but was " + length); } else { - scenario.write("Length for field " + fieldName + " is equal to the RESO Suggested Max Length of " + length); + scenario.log("Length for field " + fieldName + " is equal to the RESO Suggested Max Length of " + length); } } diff --git a/src/main/java/org/reso/commander/Commander.java b/src/main/java/org/reso/commander/Commander.java index 3f57555..50cc575 100644 --- a/src/main/java/org/reso/commander/Commander.java +++ b/src/main/java/org/reso/commander/Commander.java @@ -184,19 +184,29 @@ public class Commander { */ public static String generateMetadataReport(Edm metadata, String fileName) { final String DEFAULT_FILENAME = "metadata-report.json"; - MetadataReport report = new MetadataReport(metadata); - GsonBuilder gsonBuilder = new GsonBuilder().setPrettyPrinting(); - gsonBuilder.registerTypeAdapter(MetadataReport.class, report); try { - FileUtils.copyInputStreamToFile(new ByteArrayInputStream(gsonBuilder.create().toJson(report).getBytes()), - new File(fileName != null ? fileName.replaceAll(".edmx|.xml", EMPTY_STRING) + ".metadata-report.json" - : DEFAULT_FILENAME)); + MetadataReport report = new MetadataReport(metadata); + GsonBuilder gsonBuilder = new GsonBuilder().setPrettyPrinting(); + gsonBuilder.registerTypeAdapter(MetadataReport.class, report); + + File targetReportFile; + + if (fileName != null) { + targetReportFile = new File(fileName.replaceAll(".edmx|.xml", EMPTY_STRING) + ".metadata-report.json"); + } else { + //place unnamed files in the build directory + targetReportFile = new File("build", DEFAULT_FILENAME); + } + + FileUtils.copyInputStreamToFile(new ByteArrayInputStream(gsonBuilder.create().toJson(report).getBytes()), targetReportFile); + + return report.toString(); } catch (Exception ex) { LOG.error(getDefaultErrorMessage(ex)); } - return report.toString(); + return null; } public static String generateMetadataReport(Edm metadata) { diff --git a/src/main/java/org/reso/commander/common/TestUtils.java b/src/main/java/org/reso/commander/common/TestUtils.java index a3cbf24..3c08432 100644 --- a/src/main/java/org/reso/commander/common/TestUtils.java +++ b/src/main/java/org/reso/commander/common/TestUtils.java @@ -961,7 +961,7 @@ public final class TestUtils { public static void failAndExitWithErrorMessage(String msg, Scenario scenario) { if (scenario != null) { - scenario.write(getDefaultErrorMessage(msg)); + scenario.log(getDefaultErrorMessage(msg)); } System.exit(NOT_OK); } diff --git a/src/main/java/org/reso/models/MetadataReport.java b/src/main/java/org/reso/models/MetadataReport.java index 952ac9c..85bb900 100644 --- a/src/main/java/org/reso/models/MetadataReport.java +++ b/src/main/java/org/reso/models/MetadataReport.java @@ -1,16 +1,24 @@ package org.reso.models; import com.google.gson.*; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; +import org.apache.olingo.client.core.edm.xml.ClientCsdlAnnotation; import org.apache.olingo.commons.api.edm.*; +import org.apache.olingo.commons.core.edm.EdmAnnotationImpl; import org.reso.commander.common.Utils; +import java.lang.reflect.Field; import java.lang.reflect.Type; import java.util.Date; import java.util.List; import static org.reso.commander.Commander.REPORT_DIVIDER; +import static org.reso.commander.common.ErrorMsg.getDefaultErrorMessage; public class MetadataReport implements JsonSerializer { + private static final Logger LOG = LogManager.getLogger(MetadataReport.class); + private Edm metadata; private MetadataReport() { @@ -59,6 +67,7 @@ public class MetadataReport implements JsonSerializer { DEFAULT_VALUE_KEY = "defaultValue", UNICODE_KEY = "unicode", TYPE_KEY = "type", + TERM_KEY = "term", VALUE_KEY= "value", ANNOTATIONS_KEY = "annotations", FIELDS_KEY = "fields"; @@ -87,9 +96,9 @@ public class MetadataReport implements JsonSerializer { reportBuilder.append("\n"); reportBuilder.append("Annotations:"); annotations.forEach(annotation -> { - if (annotation.getAsJsonObject().get(TYPE_KEY) != null) { - reportBuilder.append("\n\tType: "); - reportBuilder.append(annotation.getAsJsonObject().get(TYPE_KEY)); + if (annotation.getAsJsonObject().get(TERM_KEY) != null) { + reportBuilder.append("\n\tTerm: "); + reportBuilder.append(annotation.getAsJsonObject().get(TERM_KEY)); } if (annotation.getAsJsonObject().get(VALUE_KEY) != null) { @@ -108,9 +117,19 @@ public class MetadataReport implements JsonSerializer { public JsonElement serialize(FieldJson src, Type typeOfSrc, JsonSerializationContext context) { JsonObject field = new JsonObject(); + field.addProperty(RESOURCE_NAME_KEY, src.resourceName); field.addProperty(FIELD_NAME_KEY, src.edmElement.getName()); - field.addProperty(TYPE_KEY, src.edmElement.getType().getFullQualifiedName().getFullQualifiedNameAsString()); + + String typeName = null; + try { + typeName = src.edmElement.getType().getFullQualifiedName().getFullQualifiedNameAsString(); + field.addProperty(TYPE_KEY, typeName); + } catch (Exception ex) { + LOG.error(getDefaultErrorMessage("Field Name:", src.edmElement.getName(), ex.toString())); + field.addProperty(TYPE_KEY, "UNDEFINED"); + } + field.addProperty(NULLABLE_KEY, ((EdmProperty) src.edmElement).isNullable()); field.addProperty(MAX_LENGTH_KEY, ((EdmProperty) src.edmElement).getMaxLength()); field.addProperty(SCALE_KEY, ((EdmProperty) src.edmElement).getScale()); @@ -128,7 +147,10 @@ public class MetadataReport implements JsonSerializer { annotations.forEach(edmAnnotation -> { JsonObject annotation = new JsonObject(); if (edmAnnotation.getTerm() != null) { - annotation.addProperty(TYPE_KEY, edmAnnotation.getTerm().getFullQualifiedName().getFullQualifiedNameAsString()); + annotation.addProperty(TERM_KEY, edmAnnotation.getTerm().getFullQualifiedName().getFullQualifiedNameAsString()); + } else { + SneakyAnnotationReader sneakyAnnotationReader = new SneakyAnnotationReader(edmAnnotation); + annotation.addProperty(TERM_KEY, sneakyAnnotationReader.getTerm()); } if (edmAnnotation.getExpression() != null) { @@ -142,6 +164,36 @@ public class MetadataReport implements JsonSerializer { } } + static class SneakyAnnotationReader { + Class object; + Field field; + EdmAnnotationImpl edmAnnotationImpl; + ClientCsdlAnnotation clientCsdlAnnotation; + + public SneakyAnnotationReader(EdmAnnotation edmAnnotation) { + try { + edmAnnotationImpl = ((EdmAnnotationImpl)edmAnnotation); + + // create an object of the class named Class + object = edmAnnotationImpl.getClass(); + + // access the private variable + field = object.getDeclaredField("annotation"); + // make private field accessible + field.setAccessible(true); + + clientCsdlAnnotation = (ClientCsdlAnnotation) field.get(edmAnnotationImpl); + + } catch (Exception ex) { + LOG.error(ex); + } + } + + public String getTerm() { + return clientCsdlAnnotation.getTerm(); + } + } + /** * LookupJson uses a JSON payload with the following structure: * @@ -181,9 +233,9 @@ public class MetadataReport implements JsonSerializer { reportBuilder.append("\n"); reportBuilder.append("Annotations:"); annotations.forEach(annotation -> { - if (annotation.getAsJsonObject().get(TYPE_KEY) != null) { - reportBuilder.append("\n\tType: "); - reportBuilder.append(annotation.getAsJsonObject().get(TYPE_KEY)); + if (annotation.getAsJsonObject().get(FieldJson.TERM_KEY) != null) { + reportBuilder.append("\n\tTerm: "); + reportBuilder.append(annotation.getAsJsonObject().get(FieldJson.TERM_KEY)); } if (annotation.getAsJsonObject().get(VALUE_KEY) != null) { @@ -210,7 +262,10 @@ public class MetadataReport implements JsonSerializer { src.edmEnumType.getMember(memberName).getAnnotations().forEach(edmAnnotation -> { JsonObject annotation = new JsonObject(); if (edmAnnotation.getTerm() != null) { - annotation.addProperty(TYPE_KEY, edmAnnotation.getTerm().getFullQualifiedName().getFullQualifiedNameAsString()); + annotation.addProperty(FieldJson.TERM_KEY, edmAnnotation.getTerm().getFullQualifiedName().getFullQualifiedNameAsString()); + } else { + SneakyAnnotationReader sneakyAnnotationReader = new SneakyAnnotationReader(edmAnnotation); + annotation.addProperty(FieldJson.TERM_KEY, sneakyAnnotationReader.getTerm()); } if (edmAnnotation.getExpression() != null) { diff --git a/src/main/resources/RESODataDictionary-1.7.metadata-report.json b/src/main/resources/RESODataDictionary-1.7.metadata-report.json index 616a20f..fabf256 100644 --- a/src/main/resources/RESODataDictionary-1.7.metadata-report.json +++ b/src/main/resources/RESODataDictionary-1.7.metadata-report.json @@ -1,7 +1,7 @@ { "description": "RESO Data Dictionary Metadata Report", "version": "1.7", - "generatedOn": "2021-03-30T18:11:11.918Z", + "generatedOn": "2021-04-13T23:23:58.588Z", "fields": [ { "resourceName": "Property", @@ -14,12 +14,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Above Grade Finished Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AboveGradeFinishedArea+Field" }, { + "term": "Core.Description", "value": "Finished area within the structure that is at or above the surface of the ground." } ] @@ -33,12 +36,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Above Grade Finished Area Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AboveGradeFinishedAreaSource+Field" }, { + "term": "Core.Description", "value": "The source of the measurements. This is a pick list of options showing the source of the measurement. i.e. Agent, Assessor, Estimate, etc." } ] @@ -52,12 +58,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Above Grade Finished Area Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AboveGradeFinishedAreaUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit of measurement for the area. i.e. Square Feet, Square Meters, Acres, etc." } ] @@ -72,12 +81,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Access Code" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AccessCode+Field" }, { + "term": "Core.Description", "value": "If the property is located behind an unmanned security gate such as in a Gated Community, what is the code to gain access through the secured gate." } ] @@ -91,12 +103,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessibility Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AccessibilityFeatures+Field" }, { + "term": "Core.Description", "value": "A list or description of the accessibility features included in the sale/lease." } ] @@ -111,12 +126,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Additional Parcels Description" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AdditionalParcelsDescription+Field" }, { + "term": "Core.Description", "value": "If additional parcels are included in the sale, a list of those parcel\u0027s IDs separated by commas. Do not include the first or primary parcel number, that should be located in the Parcel Number field." } ] @@ -130,12 +148,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Additional Parcels Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AdditionalParcelsYN+Field" }, { + "term": "Core.Description", "value": "Are there more than one parcel or lot included in the sale?" } ] @@ -150,12 +171,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Anchors \u0026 Cotenants" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AnchorsCoTenants+Field" }, { + "term": "Core.Description", "value": "The main or most notable tenants as well as other tenants of the shopping center or mall in which the commercial property is located." } ] @@ -169,12 +193,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Appliances" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Appliances+Field" }, { + "term": "Core.Description", "value": "A list of the appliances that will be included in the sale/lease of the property." } ] @@ -188,12 +215,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Architectural Style" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ArchitecturalStyle+Field" }, { + "term": "Core.Description", "value": "A list describing the style of the structure. For example, Victorian, Ranch, Craftsman, etc." } ] @@ -207,12 +237,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Amenities" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssociationAmenities+Field" }, { + "term": "Core.Description", "value": "Amenities provided by the Home Owners Association, Mobile Park or Complex. For example Pool, Clubhouse, etc." } ] @@ -228,12 +261,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Fee" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssociationFee+Field" }, { + "term": "Core.Description", "value": "A fee paid by the homeowner to the Home Owners Association which is used for the upkeep of the common area, neighborhood or other association related benefits." } ] @@ -249,12 +285,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Fee 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssociationFee2+Field" }, { + "term": "Core.Description", "value": "A fee paid by the homeowner to the second of two Home Owners Associations, which is used for the upkeep of the common area, neighborhood or other association related benefits." } ] @@ -268,12 +307,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Fee 2 Frequency" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssociationFee2Frequency+Field" }, { + "term": "Core.Description", "value": "The frequency the association fee is paid. For example, Weekly, Monthly, Annually, Bi-Monthly, One Time, etc." } ] @@ -287,12 +329,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Fee Frequency" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssociationFeeFrequency+Field" }, { + "term": "Core.Description", "value": "The frequency the association fee is paid. For example, Weekly, Monthly, Annually, Bi-Monthly, One Time, etc." } ] @@ -306,12 +351,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Fee Includes" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssociationFeeIncludes+Field" }, { + "term": "Core.Description", "value": "Services included with the association fee. For example Landscaping, Trash, Water, etc." } ] @@ -326,12 +374,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssociationName+Field" }, { + "term": "Core.Description", "value": "The name of the Home Owners Association." } ] @@ -346,12 +397,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Name 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssociationName2+Field" }, { + "term": "Core.Description", "value": "The name of the second of two Home Owners Association." } ] @@ -366,12 +420,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssociationPhone+Field" }, { + "term": "Core.Description", "value": "The phone number of the Home Owners Association. North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -386,12 +443,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Phone 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssociationPhone2+Field" }, { + "term": "Core.Description", "value": "The phone number of the second of two Home Owners Association. North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -405,12 +465,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssociationYN+Field" }, { + "term": "Core.Description", "value": "Is there a Home Owners Association. A separate Y/N field is needed because not all associations have dues." } ] @@ -424,12 +487,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Attached Garage Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AttachedGarageYN+Field" }, { + "term": "Core.Description", "value": "A flag indicating that the garage attached to the dwelling." } ] @@ -443,12 +509,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Availability Date" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AvailabilityDate+Field" }, { + "term": "Core.Description", "value": "The date the property will be available for possession/occupation." } ] @@ -462,12 +531,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Basement" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Basement+Field" }, { + "term": "Core.Description", "value": "A list of information and features about the basement. i.e. None/Slab, Finished, Partially Finished, Crawl Space, Dirt, Outside Entrance, Radon Mitigation" } ] @@ -481,12 +553,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Basement Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BasementYN+Field" }, { + "term": "Core.Description", "value": "Does the property have a basement?" } ] @@ -500,12 +575,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bathrooms Full" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BathroomsFull+Field" }, { + "term": "Core.Description", "value": "A room containing all 4 of the 4 elements constituting a bath, which are; Toilet, Sink, Bathtub or Shower Head. A Full Bath will typically contain four elements; Sink, Toilet, Tub and Shower Head (in tub or stall). However, some may considered a Sink, Toilet and Tub (without a shower) a Full Bath, others consider this to be a Three Quarter Bath. In the event that BathroomsThreeQuarter is not in use, this field may represent the sum of all Full and Three Quarter bathrooms." } ] @@ -519,12 +597,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bathrooms Half" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BathroomsHalf+Field" }, { + "term": "Core.Description", "value": "A room containing 2 of the 4 elements constituting a bath, which are; Toilet, Sink, Bathtub or Shower Head. A Half Bath will typically contain a Sink and Toilet." } ] @@ -538,12 +619,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bathrooms One Quarter" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BathroomsOneQuarter+Field" }, { + "term": "Core.Description", "value": "A room containing 1 of the 4 elements constituting a bath which are; Toilet, Sink, Bathtub or Shower Head. Examples are a vanity with a sink or a WC (Water Closet, which is a room with only a toilet)." } ] @@ -557,12 +641,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bathrooms Partial" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BathroomsPartial+Field" }, { + "term": "Core.Description", "value": "The number of partial bathrooms in the property being sold/leased. When used in combination with the BathroomsFull field, this replaces (or is the sum of) all Half and One Quarter bathrooms; and in the event BathroomsThreeQuarter is not used, BathroomsFull replaces (or is the sum of) all Full and Three Quarter baths. This field should not be used in combination with the BathroomsOneQuarter or the BathroomsHalf." } ] @@ -576,12 +663,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bathrooms Three Quarter" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BathroomsThreeQuarter+Field" }, { + "term": "Core.Description", "value": "A room containing 3 of the 4 elements constituting a bath, which are; Toilet, Sink, Bathtub or Shower Head. A typical Three Quarter Bath will contain Sink, Toilet and Shower. Some may considered a Sink, Toilet and Tub (without a shower) a Three Quarter Bath, others consider this to be a Full Bath." } ] @@ -595,12 +685,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bathrooms Total Integer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BathroomsTotalInteger+Field" }, { + "term": "Core.Description", "value": "The simple sum of the number of bathrooms. For example for a property with two Full Bathrooms and one Half Bathroom, the Bathrooms Total Integer will be 3. Expressing this example as 2.5, you will need to use a non-standard field name. Decimal based bathrooms are not recommended but possible via the Dictionary\u0027s extensibility." } ] @@ -614,12 +707,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bedrooms Possible" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BedroomsPossible+Field" }, { + "term": "Core.Description", "value": "The sum of BedroomsTotal plus other rooms that may be used as a bedroom but are not defined as bedroom per local policy." } ] @@ -633,12 +729,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bedrooms Total" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BedroomsTotal+Field" }, { + "term": "Core.Description", "value": "The total number of bedrooms in the dwelling." } ] @@ -654,12 +753,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Below Grade Finished Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BelowGradeFinishedArea+Field" }, { + "term": "Core.Description", "value": "Finished area within the structure that is below ground." } ] @@ -673,12 +775,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Below Grade Finished Area Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BelowGradeFinishedAreaSource+Field" }, { + "term": "Core.Description", "value": "The source of the measurements. This is a pick list of options showing the source of the measurement. i.e. Agent, Assessor, Estimate, etc." } ] @@ -692,12 +797,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Below Grade Finished Area Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BelowGradeFinishedAreaUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit of measurement for the area. i.e. Square Feet, Square Meters, Acres, etc." } ] @@ -711,12 +819,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Body Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BodyType+Field" }, { + "term": "Core.Description", "value": "Type of mobile home." } ] @@ -731,12 +842,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Builder Model" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuilderModel+Field" }, { + "term": "Core.Description", "value": "The builders model name or number for the property." } ] @@ -751,12 +865,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Builder Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuilderName+Field" }, { + "term": "Core.Description", "value": "Name of the builder of the property or builder\u0027s tract." } ] @@ -770,12 +887,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Building Area Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuildingAreaSource+Field" }, { + "term": "Core.Description", "value": "The source of the measurements. This is a pick list of options showing the source of the measurement. i.e. Agent, Assessor, Estimate, etc." } ] @@ -791,12 +911,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Building Area Total" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuildingAreaTotal+Field" }, { + "term": "Core.Description", "value": "Total area of the structure. Includes both finished and unfinished areas." } ] @@ -810,12 +933,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Building Area Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuildingAreaUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit of measurement for the area. i.e. Square Feet, Square Meters, Acres, etc." } ] @@ -829,12 +955,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Building Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuildingFeatures+Field" }, { + "term": "Core.Description", "value": "Features or amenities of the building or business park." } ] @@ -849,12 +978,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Building Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuildingName+Field" }, { + "term": "Core.Description", "value": "Name of the building or business park." } ] @@ -869,12 +1001,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Business Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BusinessName+Field" }, { + "term": "Core.Description", "value": "Name of the business being sold." } ] @@ -888,12 +1023,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Business Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BusinessType+Field" }, { + "term": "Core.Description", "value": "The type of business being sold. Retail, Wholesale, Grocery, Food \u0026 Bev, etc." } ] @@ -908,12 +1046,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agency Compensation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgencyCompensation+Field" }, { + "term": "Core.Description", "value": "The total commission to be paid for this sale, expressed as either a percentage or a constant currency amount." } ] @@ -927,12 +1068,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agency Compensation Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgencyCompensationType+Field" }, { + "term": "Core.Description", "value": "A list of types to clarify the value entered in the BuyerAgencyCompensation field. For example $, % or some other clarification of the BuyerAgencyCompensation." } ] @@ -946,12 +1090,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent AOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentAOR+Field" }, { + "term": "Core.Description", "value": "The Buyer\u0027s Agent\u0027s Board or Association of REALTORS." } ] @@ -965,12 +1112,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Designation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentDesignation+Field" }, { + "term": "Core.Description", "value": "Designations and certifications acknowledging experience and expertise in various real estate sectors are awarded by NAR and each affiliated group upon completion of required courses." } ] @@ -985,12 +1135,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Direct Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentDirectPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -1005,12 +1158,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentEmail+Field" }, { + "term": "Core.Description", "value": "The email address of the Buyer\u0027s Agent." } ] @@ -1025,12 +1181,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -1045,12 +1204,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent First Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentFirstName+Field" }, { + "term": "Core.Description", "value": "The first name of the buyer\u0027s agent." } ] @@ -1065,12 +1227,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Full Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentFullName+Field" }, { + "term": "Core.Description", "value": "The full name of the buyer\u0027s agent. (First Middle Last)" } ] @@ -1085,12 +1250,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Home Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentHomePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -1105,12 +1273,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -1124,12 +1295,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the BuyerAgentKey field." } ] @@ -1144,12 +1318,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Last Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentLastName+Field" }, { + "term": "Core.Description", "value": "The last name of the buyer\u0027s agent." } ] @@ -1164,12 +1341,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Middle Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentMiddleName+Field" }, { + "term": "Core.Description", "value": "The middle name of the buyer\u0027s agent." } ] @@ -1184,12 +1364,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentMlsId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -1204,12 +1387,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Mobile Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentMobilePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -1224,12 +1410,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Name Prefix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentNamePrefix+Field" }, { + "term": "Core.Description", "value": "Prefix to the name (e.g. Dr. Mr. Ms. etc.)" } ] @@ -1244,12 +1433,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Name Suffix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentNameSuffix+Field" }, { + "term": "Core.Description", "value": "Suffix to the BuyerAgentLastName (e.g. Esq., Jr., III etc.)" } ] @@ -1264,12 +1456,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Office Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentOfficePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -1284,12 +1479,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Office Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentOfficePhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -1304,12 +1502,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Pager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentPager+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -1324,12 +1525,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Preferred Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentPreferredPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -1344,12 +1548,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Preferred Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentPreferredPhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -1364,12 +1571,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent State License" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentStateLicense+Field" }, { + "term": "Core.Description", "value": "The license of the buyers agent. Separate multiple licenses with a comma and space." } ] @@ -1384,12 +1594,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Toll Free Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentTollFreePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -1404,12 +1617,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent URL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentURL+Field" }, { + "term": "Core.Description", "value": "The website URI of the buyers agent." } ] @@ -1424,12 +1640,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Voice Mail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentVoiceMail+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -1444,12 +1663,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent Voice Mail Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerAgentVoiceMailExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -1463,12 +1685,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Financing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerFinancing+Field" }, { + "term": "Core.Description", "value": "A list of options that describe the type of financing used. This field is used when setting a listing to Closed. i.e. cash, FHA loan, etc." } ] @@ -1482,12 +1707,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Office AOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerOfficeAOR+Field" }, { + "term": "Core.Description", "value": "The Buyer\u0027s Office\u0027s Board or Association of REALTORS." } ] @@ -1502,12 +1730,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Office Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerOfficeEmail+Field" }, { + "term": "Core.Description", "value": "The email address of the Buyer\u0027s Office." } ] @@ -1522,12 +1753,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Office Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerOfficeFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -1542,12 +1776,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Office Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerOfficeKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Office resource\u0027s OfficeKey." } ] @@ -1561,12 +1798,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Office Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerOfficeKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Office resource\u0027s OfficeKey. This is the numeric only key and used as an alternative to the BuyerOfficeKey field." } ] @@ -1581,12 +1821,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Office MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerOfficeMlsId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -1601,12 +1844,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Office Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerOfficeName+Field" }, { + "term": "Core.Description", "value": "The legal name of the brokerage representing the buyer." } ] @@ -1621,12 +1867,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Office Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerOfficePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -1641,12 +1890,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Office Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerOfficePhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -1661,12 +1913,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Office URL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerOfficeURL+Field" }, { + "term": "Core.Description", "value": "The website URI for the buyers office." } ] @@ -1681,12 +1936,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Team Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerTeamKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Teams resource\u0027s TeamKey." } ] @@ -1700,12 +1958,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Team Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerTeamKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Teams resource\u0027s TeamKey. This is the numeric only key and used as an alternative to the BuyerTeamKey field." } ] @@ -1720,12 +1981,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Team Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BuyerTeamName+Field" }, { + "term": "Core.Description", "value": "The name of the team representing the buyer." } ] @@ -1741,12 +2005,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cable TV Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CableTvExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -1760,12 +2027,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cancellation Date" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CancellationDate+Field" }, { + "term": "Core.Description", "value": "Date the listing contract between the seller and listing agent was cancelled. This is the date entered by the agent reflecting when the change occurred contractually, not a timestamp of when the change was made in the MLS." } ] @@ -1781,12 +2051,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cap Rate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CapRate+Field" }, { + "term": "Core.Description", "value": "Cap Rate is equivalent to the return on investment you would receive if you pay cash for a property. The ratio between the net operating income produced by an asset and its capital cost (the original price paid to buy the asset) or alternatively its current market value." } ] @@ -1802,12 +2075,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Carport Spaces" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CarportSpaces+Field" }, { + "term": "Core.Description", "value": "The number of carport spaces included in the sale." } ] @@ -1821,12 +2097,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Carport Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CarportYN+Field" }, { + "term": "Core.Description", "value": "A flag indicating that the listing has a car port. This flag may be T/F, Y/N or other true, false or unknown indicator. As with all flags, the field may be null." } ] @@ -1841,12 +2120,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Carrier Route" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CarrierRoute+Field" }, { + "term": "Core.Description", "value": "The group of addresses to which the USPS assigns the same code to aid in mail delivery. For the USPS, these codes are 9 digits: 5 numbers for the ZIP Code, one letter for the carrier route type, and 3 numbers for the carrier route number." } ] @@ -1860,12 +2142,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "City" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/City+Field" }, { + "term": "Core.Description", "value": "The city in listing address." } ] @@ -1880,12 +2165,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "City Region" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CityRegion+Field" }, { + "term": "Core.Description", "value": "A sub-section or area of a defined city. Examples would be SOHO in New York, NY, Ironbound in Newark, NJ or Inside the Beltway." } ] @@ -1899,12 +2187,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Close Date" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CloseDate+Field" }, { + "term": "Core.Description", "value": "With for-sale listings, the date the purchase agreement was fulfilled. With lease listings, the date the requirements were fulfilled, such as contract and/or deposit. This is the date entered by the agent reflecting when the change occurred contractually, not a timestamp of when the change was made in the MLS." } ] @@ -1920,12 +2211,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Close Price" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ClosePrice+Field" }, { + "term": "Core.Description", "value": "The amount of money paid by the purchaser to the seller for the property under the agreement." } ] @@ -1939,12 +2233,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent AOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentAOR+Field" }, { + "term": "Core.Description", "value": "The Co Buyer\u0027s Agent\u0027s Board or Association of REALTORS." } ] @@ -1958,12 +2255,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Designation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentDesignation+Field" }, { + "term": "Core.Description", "value": "Designations and certifications acknowledging experience and expertise in various real estate sectors are awarded by NAR and each affiliated group upon completion of required courses." } ] @@ -1978,12 +2278,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Direct Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentDirectPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -1998,12 +2301,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentEmail+Field" }, { + "term": "Core.Description", "value": "The email address of the Buyer\u0027s Co Agent." } ] @@ -2018,12 +2324,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2038,12 +2347,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent First Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentFirstName+Field" }, { + "term": "Core.Description", "value": "The first name of the buyer\u0027s co-agent." } ] @@ -2058,12 +2370,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Full Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentFullName+Field" }, { + "term": "Core.Description", "value": "The full name of the buyer\u0027s co-agent. (First Middle Last)" } ] @@ -2078,12 +2393,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Home Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentHomePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2098,12 +2416,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -2117,12 +2438,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the CoBuyerAgentKey field." } ] @@ -2137,12 +2461,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Last Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentLastName+Field" }, { + "term": "Core.Description", "value": "The last name of the buyer\u0027s co-agent." } ] @@ -2157,12 +2484,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Middle Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentMiddleName+Field" }, { + "term": "Core.Description", "value": "The middle name of the buyer\u0027s co-agent." } ] @@ -2177,12 +2507,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentMlsId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -2197,12 +2530,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Mobile Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentMobilePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2217,12 +2553,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Name Prefix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentNamePrefix+Field" }, { + "term": "Core.Description", "value": "Prefix to the name (e.g. Dr. Mr. Ms. etc.)" } ] @@ -2237,12 +2576,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Name Suffix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentNameSuffix+Field" }, { + "term": "Core.Description", "value": "Suffix to the CoBuyerAgentLastName (e.g. Esq., Jr., III etc.)" } ] @@ -2257,12 +2599,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Office Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentOfficePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2277,12 +2622,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Office Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentOfficePhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -2297,12 +2645,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Pager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentPager+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2317,12 +2668,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Preferred Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentPreferredPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2337,12 +2691,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Preferred Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentPreferredPhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -2357,12 +2714,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent State License" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentStateLicense+Field" }, { + "term": "Core.Description", "value": "The license of the co-buyers agent. Separate multiple licenses with a comma and space." } ] @@ -2377,12 +2737,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Toll Free Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentTollFreePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2397,12 +2760,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent URL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentURL+Field" }, { + "term": "Core.Description", "value": "The website URI of the co-buyers agent." } ] @@ -2417,12 +2783,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Voice Mail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentVoiceMail+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2437,12 +2806,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Agent Voice Mail Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerAgentVoiceMailExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -2456,12 +2828,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Office AOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerOfficeAOR+Field" }, { + "term": "Core.Description", "value": "The Co Buyer\u0027s Office\u0027s Board or Association of REALTORS." } ] @@ -2476,12 +2851,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Office Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerOfficeEmail+Field" }, { + "term": "Core.Description", "value": "The email address of the Buyer\u0027s Co Office." } ] @@ -2496,12 +2874,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Office Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerOfficeFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2516,12 +2897,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Office Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerOfficeKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Office resource\u0027s OfficeKey." } ] @@ -2535,12 +2919,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Office Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerOfficeKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Office resource\u0027s OfficeKey. This is the numeric only key and used as an alternative to the CoBuyerOfficeKey field." } ] @@ -2555,12 +2942,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Office MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerOfficeMlsId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -2575,12 +2965,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Office Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerOfficeName+Field" }, { + "term": "Core.Description", "value": "The legal name of the brokerage co-representing the buyer." } ] @@ -2595,12 +2988,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Office Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerOfficePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2615,12 +3011,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Office Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerOfficePhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -2635,12 +3034,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-Buyer Office URL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoBuyerOfficeURL+Field" }, { + "term": "Core.Description", "value": "The website URI for the co-buyers office." } ] @@ -2654,12 +3056,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent AOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentAOR+Field" }, { + "term": "Core.Description", "value": "The Co Listing Agent\u0027s Board or Association of REALTORS." } ] @@ -2673,12 +3078,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Designation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentDesignation+Field" }, { + "term": "Core.Description", "value": "Designations and certifications acknowledging experience and expertise in various real estate sectors are awarded by NAR and each affiliated group upon completion of required courses." } ] @@ -2693,12 +3101,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Direct Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentDirectPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2713,12 +3124,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentEmail+Field" }, { + "term": "Core.Description", "value": "The email address of the Co Listing Agent." } ] @@ -2733,12 +3147,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2753,12 +3170,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent First Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentFirstName+Field" }, { + "term": "Core.Description", "value": "The first name of the co-listing agent." } ] @@ -2773,12 +3193,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Full Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentFullName+Field" }, { + "term": "Core.Description", "value": "The full name of the co-listing agent. (First Middle Last)" } ] @@ -2793,12 +3216,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Home Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentHomePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2813,12 +3239,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -2832,12 +3261,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the CoListAgentKey field." } ] @@ -2852,12 +3284,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Last Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentLastName+Field" }, { + "term": "Core.Description", "value": "The last name of the co-listing agent." } ] @@ -2872,12 +3307,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Middle Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentMiddleName+Field" }, { + "term": "Core.Description", "value": "The middle name of the co-listing agent." } ] @@ -2892,12 +3330,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentMlsId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -2912,12 +3353,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Mobile Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentMobilePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2932,12 +3376,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Name Prefix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentNamePrefix+Field" }, { + "term": "Core.Description", "value": "Prefix to the name (e.g. Dr. Mr. Ms. etc.)" } ] @@ -2952,12 +3399,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Name Suffix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentNameSuffix+Field" }, { + "term": "Core.Description", "value": "Suffix to the CoListAgentLastName (e.g. Esq., Jr., III etc.)" } ] @@ -2972,12 +3422,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Office Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentOfficePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -2992,12 +3445,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Office Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentOfficePhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -3012,12 +3468,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Pager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentPager+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -3032,12 +3491,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Preferred Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentPreferredPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -3052,12 +3514,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Preferred Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentPreferredPhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -3072,12 +3537,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent State License" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentStateLicense+Field" }, { + "term": "Core.Description", "value": "The license of the co-listing agent. Separate multiple licenses with a comma and space." } ] @@ -3092,12 +3560,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Toll Free Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentTollFreePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -3112,12 +3583,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent URL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentURL+Field" }, { + "term": "Core.Description", "value": "The website URI of the co-listing agent." } ] @@ -3132,12 +3606,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Voice Mail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentVoiceMail+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -3152,12 +3629,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Agent Voice Mail Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListAgentVoiceMailExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -3171,12 +3651,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Office AOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListOfficeAOR+Field" }, { + "term": "Core.Description", "value": "The Co Listing Office\u0027s Board or Association of REALTORS." } ] @@ -3191,12 +3674,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Office Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListOfficeEmail+Field" }, { + "term": "Core.Description", "value": "The email address of the Co Listing Office." } ] @@ -3211,12 +3697,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Office Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListOfficeFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -3231,12 +3720,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Office Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListOfficeKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Office resource\u0027s OfficeKey." } ] @@ -3250,12 +3742,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Office Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListOfficeKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Office resource\u0027s OfficeKey. This is the numeric only key and used as an alternative to the CoListOfficeKey field." } ] @@ -3270,12 +3765,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Office MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListOfficeMlsId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -3290,12 +3788,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Office Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListOfficeName+Field" }, { + "term": "Core.Description", "value": "The legal name of the brokerage co-representing the seller." } ] @@ -3310,12 +3811,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Office Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListOfficePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -3330,12 +3834,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Office Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListOfficePhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -3350,12 +3857,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Co-List Office URL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoListOfficeURL+Field" }, { + "term": "Core.Description", "value": "The website URI for the co-listing office." } ] @@ -3369,12 +3879,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Common Interest" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CommonInterest+Field" }, { + "term": "Core.Description", "value": "Common Interest is a type of ownership in a property that is composed of an individual lot or unit and a share of the ownership or use of common areas. A Common Interest Development (CID) is usually governed by a recorded set of Covenants, Conditions \u0026 Restrictions (CC\u0026Rs)." } ] @@ -3388,12 +3901,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Common Walls" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CommonWalls+Field" }, { + "term": "Core.Description", "value": "A multi select list with options like 1 Common Wall, 2 Common Walls, No Common Walls, No One Above, No One Below. Implementation should include rules preventing illogical selection combinations and to ensure consistency with the Property Attached Y/N field." } ] @@ -3407,12 +3923,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Community Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CommunityFeatures+Field" }, { + "term": "Core.Description", "value": "A list of features related to, or available within, the community." } ] @@ -3426,12 +3945,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concessions" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Concessions+Field" }, { + "term": "Core.Description", "value": "Are there concessions included in the sales agreement? Yes, No or Call Listing Agent" } ] @@ -3445,12 +3967,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concessions Amount" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ConcessionsAmount+Field" }, { + "term": "Core.Description", "value": "The dollar amount of the concessions. If the concessions are made by the seller, some may subtract this value from the sales price as a means of calculating their own true price. If concessions are made by the buyer, some may add this amount to the sale price to create their own true price. Concessions made by both buyer and seller should be subtracted from each other providing a net value. Details of this calculation should be added to the Concessions Comments field." } ] @@ -3465,12 +3990,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concessions Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ConcessionsComments+Field" }, { + "term": "Core.Description", "value": "Comments describing the concessions made by the buyer or the seller." } ] @@ -3484,12 +4012,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Construction Materials" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ConstructionMaterials+Field" }, { + "term": "Core.Description", "value": "A list of the materials that were used in the construction of the property." } ] @@ -3504,12 +4035,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Continent Region" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContinentRegion+Field" }, { + "term": "Core.Description", "value": "A sub-section or area of a continent. Examples would be Southern Europe or Scandinavia." } ] @@ -3524,12 +4058,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contingency" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Contingency+Field" }, { + "term": "Core.Description", "value": "A list of contingencies that must be satisfied in order to complete the transaction." } ] @@ -3543,12 +4080,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contingent Date" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContingentDate+Field" }, { + "term": "Core.Description", "value": "The date an offer was made with a contingency. The Listing remains On Market. This is the date entered by the agent reflecting when the change occurred contractually, not a timestamp of when the change was made in the MLS." } ] @@ -3562,12 +4102,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contract Status Change Date" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContractStatusChangeDate+Field" }, { + "term": "Core.Description", "value": "The date of the listings contractual status change. This is not necessarily the time the agent made the change in the MLS system, but rather the date of the contractual change." } ] @@ -3581,12 +4124,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cooling" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cooling+Field" }, { + "term": "Core.Description", "value": "A list describing the cooling or air conditioning features of the property." } ] @@ -3600,12 +4146,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cooling Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoolingYN+Field" }, { + "term": "Core.Description", "value": "The property has cooling or Air Conditioning." } ] @@ -3620,12 +4169,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Copyright Notice" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CopyrightNotice+Field" }, { + "term": "Core.Description", "value": "Notice of the legal rights of the owner of the information or data." } ] @@ -3639,12 +4191,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Country" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Country+Field" }, { + "term": "Core.Description", "value": "The country abbreviation in a postal address." } ] @@ -3659,12 +4214,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Country Region" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CountryRegion+Field" }, { + "term": "Core.Description", "value": "A sub-section or area of a defined country. Examples would be Napa Valley in the US, or the Amalfi Coast in Italy." } ] @@ -3678,12 +4236,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "County Or Parish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CountyOrParish+Field" }, { + "term": "Core.Description", "value": "The County, Parish or other regional authority" } ] @@ -3699,12 +4260,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Covered Spaces" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CoveredSpaces+Field" }, { + "term": "Core.Description", "value": "The total number of garage and carport spaces." } ] @@ -3718,12 +4282,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Crops Included Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CropsIncludedYN+Field" }, { + "term": "Core.Description", "value": "Are crops included in the sale of the property." } ] @@ -3738,12 +4305,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cross Street" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CrossStreet+Field" }, { + "term": "Core.Description", "value": "Nearest cross streets to the property. This field is in addition to, and independent of, the driving directions field." } ] @@ -3759,12 +4329,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cultivated Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CultivatedArea+Field" }, { + "term": "Core.Description", "value": "Measurement or percentage of the property that has been cultivated." } ] @@ -3778,12 +4351,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cumulative Days On Market" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CumulativeDaysOnMarket+Field" }, { + "term": "Core.Description", "value": "The number of days the property is on market, as defined by the MLS business rules." } ] @@ -3797,12 +4373,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Current Financing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CurrentFinancing+Field" }, { + "term": "Core.Description", "value": "A list of options that describe the type of financing that the seller currently has in place for the property being sold. i.e. cash, assumable, FHA loan, etc." } ] @@ -3816,12 +4395,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Current Use" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CurrentUse+Field" }, { + "term": "Core.Description", "value": "A list of the type(s) of current use of the property. The current use of the property is an important factor in understanding the overall condition of the land and determining it\u0027s appropriateness for intended use." } ] @@ -3836,12 +4418,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "DOH 1" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DOH1+Field" }, { + "term": "Core.Description", "value": "Department of Housing decal number for the mobile or manufactured home. For the first or only unit/section use DOH 1 over DOH 2 or 3." } ] @@ -3856,12 +4441,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "DOH 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DOH2+Field" }, { + "term": "Core.Description", "value": "Department of Housing decal number for the mobile or manufactured home. For two units/sections use DOH 1 and 2 over DOH 3." } ] @@ -3876,12 +4464,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "DOH 3" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DOH3+Field" }, { + "term": "Core.Description", "value": "Department of Housing decal number for the mobile or manufactured home. For two units/sections use DOH 1 and 2 over DOH 3." } ] @@ -3895,12 +4486,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Days On Market" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DaysOnMarket+Field" }, { + "term": "Core.Description", "value": "The number of days the listing is on market, as defined by the MLS business rules." } ] @@ -3914,12 +4508,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Development Status" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DevelopmentStatus+Field" }, { + "term": "Core.Description", "value": "A list of the Development Status of the property. The developmental status of land is an important factor in selling, purchasing and developing of land properties." } ] @@ -3933,12 +4530,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Direction Faces" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DirectionFaces+Field" }, { + "term": "Core.Description", "value": "The compass direction that the main entrance to the building faces. For example, North, South, East, West, South-West, etc. It may also be known as the building exposure." } ] @@ -3953,12 +4553,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Directions" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Directions+Field" }, { + "term": "Core.Description", "value": "Driving directions to the property." } ] @@ -3973,12 +4576,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Disclaimer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Disclaimer+Field" }, { + "term": "Core.Description", "value": "Text that serves as the negation or limitation of the rights under a warranty given by a seller to a buyer." } ] @@ -3992,12 +4598,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Disclosures" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Disclosures+Field" }, { + "term": "Core.Description", "value": "Legal or pertinent information that should be disclosed to potential buyer\u0027s agents." } ] @@ -4012,12 +4621,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Bus Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToBusComments+Field" }, { + "term": "Core.Description", "value": "A textual description of the distance to local bus stops." } ] @@ -4031,12 +4643,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Bus Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToBusNumeric+Field" }, { + "term": "Core.Description", "value": "Numeric distance from the property to the nearest bus stop." } ] @@ -4050,12 +4665,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Bus Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToBusUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit linear measurement. i.e. feed, meters, yards, kilometers, miles, etc." } ] @@ -4070,12 +4688,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Electric Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToElectricComments+Field" }, { + "term": "Core.Description", "value": "If the property does not currently have electrical utility, is service available and if so, what is the distance." } ] @@ -4089,12 +4710,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Electric Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToElectricNumeric+Field" }, { + "term": "Core.Description", "value": "Numeric distance from the property to the electrical utility." } ] @@ -4108,12 +4732,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Electric Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToElectricUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit linear measurement. i.e. feed, meters, yards, kilometers, miles, etc." } ] @@ -4128,12 +4755,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Freeway Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToFreewayComments+Field" }, { + "term": "Core.Description", "value": "A textual description of the distance to freeways." } ] @@ -4147,12 +4777,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Freeway Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToFreewayNumeric+Field" }, { + "term": "Core.Description", "value": "Numeric distance from the property to the nearest freeway." } ] @@ -4166,12 +4799,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Freeway Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToFreewayUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit linear measurement. i.e. feed, meters, yards, kilometers, miles, etc." } ] @@ -4186,12 +4822,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Gas Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToGasComments+Field" }, { + "term": "Core.Description", "value": "If the property does not currently have natural gas utility, is service available and if so, what is the distance." } ] @@ -4205,12 +4844,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Gas Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToGasNumeric+Field" }, { + "term": "Core.Description", "value": "Numeric distance from the property to the gas utility." } ] @@ -4224,12 +4866,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Gas Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToGasUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit linear measurement. i.e. feed, meters, yards, kilometers, miles, etc." } ] @@ -4244,12 +4889,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Phone Service Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToPhoneServiceComments+Field" }, { + "term": "Core.Description", "value": "If the property does not currently have phone service, is service available and if so, what is the distance." } ] @@ -4263,12 +4911,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Phone Service Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToPhoneServiceNumeric+Field" }, { + "term": "Core.Description", "value": "Numeric distance from the property to the phone utility." } ] @@ -4282,12 +4933,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Phone Service Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToPhoneServiceUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit linear measurement. i.e. feet, meters, yards, kilometers, miles, etc." } ] @@ -4302,12 +4956,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Placeof Worship Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToPlaceofWorshipComments+Field" }, { + "term": "Core.Description", "value": "A textual description of the distance to local places of worship." } ] @@ -4321,12 +4978,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Placeof Worship Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToPlaceofWorshipNumeric+Field" }, { + "term": "Core.Description", "value": "Numeric distance from the property to the nearest place of worship." } ] @@ -4340,12 +5000,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Placeof Worship Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToPlaceofWorshipUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit linear measurement. i.e. feed, meters, yards, kilometers, miles, etc." } ] @@ -4360,12 +5023,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To School Bus Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToSchoolBusComments+Field" }, { + "term": "Core.Description", "value": "Distance from the property to the nearest school bus pickup point." } ] @@ -4379,12 +5045,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To School Bus Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToSchoolBusNumeric+Field" }, { + "term": "Core.Description", "value": "Numeric distance from the property to the nearest school bus pickup point." } ] @@ -4398,12 +5067,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To School Bus Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToSchoolBusUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit linear measurement. i.e. feed, meters, yards, kilometers, miles, etc." } ] @@ -4418,12 +5090,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Schools Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToSchoolsComments+Field" }, { + "term": "Core.Description", "value": "A textual description of the distance to local schools." } ] @@ -4437,12 +5112,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Schools Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToSchoolsNumeric+Field" }, { + "term": "Core.Description", "value": "Numeric distance from the property to the nearest school." } ] @@ -4456,12 +5134,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Schools Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToSchoolsUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit linear measurement. i.e. feed, meters, yards, kilometers, miles, etc." } ] @@ -4476,12 +5157,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Sewer Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToSewerComments+Field" }, { + "term": "Core.Description", "value": "If the property does not currently have sewer or septic, is sewer service available and if so, what is the distance." } ] @@ -4495,12 +5179,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Sewer Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToSewerNumeric+Field" }, { + "term": "Core.Description", "value": "Numeric distance from the property to the sewer utility." } ] @@ -4514,12 +5201,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Sewer Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToSewerUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit linear measurement. i.e. feed, meters, yards, kilometers, miles, etc." } ] @@ -4534,12 +5224,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Shopping Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToShoppingComments+Field" }, { + "term": "Core.Description", "value": "A description of the distance to primary shopping sources such as groceries, gasoline, clothing or department stores." } ] @@ -4553,12 +5246,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Shopping Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToShoppingNumeric+Field" }, { + "term": "Core.Description", "value": "Numeric distance from the property to the nearest shopping." } ] @@ -4572,12 +5268,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Shopping Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToShoppingUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit linear measurement. i.e. feed, meters, yards, kilometers, miles, etc." } ] @@ -4592,12 +5291,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Street Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToStreetComments+Field" }, { + "term": "Core.Description", "value": "If the property does not have a maintained road or street adjacent to the lot, what are the conditions of access and distance to a maintained road." } ] @@ -4611,12 +5313,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Street Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToStreetNumeric+Field" }, { + "term": "Core.Description", "value": "Numeric distance from the property to the street." } ] @@ -4630,12 +5335,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Street Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToStreetUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit linear measurement. i.e. feed, meters, yards, kilometers, miles, etc." } ] @@ -4650,12 +5358,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Water Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToWaterComments+Field" }, { + "term": "Core.Description", "value": "If the property does not currently have water utility, is service available and if so, what is the distance." } ] @@ -4669,12 +5380,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Water Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToWaterNumeric+Field" }, { + "term": "Core.Description", "value": "Numeric distance from the property to the water utility." } ] @@ -4688,12 +5402,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distance To Water Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DistanceToWaterUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit linear measurement. i.e. feed, meters, yards, kilometers, miles, etc." } ] @@ -4707,12 +5424,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Documents Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DocumentsAvailable+Field" }, { + "term": "Core.Description", "value": "A list of the Documents available for the property. Knowing what documents are available for the property is valuable information." } ] @@ -4727,12 +5447,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Documents Change Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DocumentsChangeTimestamp+Field" }, { + "term": "Core.Description", "value": "System generated timestamp of when the last update or change to the documents for this listing was made." } ] @@ -4746,12 +5469,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Documents Count" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DocumentsCount+Field" }, { + "term": "Core.Description", "value": "The total number of documents or supplements included with the listings." } ] @@ -4765,12 +5491,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Door Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DoorFeatures+Field" }, { + "term": "Core.Description", "value": "A list of features or description of the doors included in the sale/lease." } ] @@ -4784,12 +5513,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dual Variable Compensation Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DualVariableCompensationYN+Field" }, { + "term": "Core.Description", "value": "A commission arrangement in which the seller agrees to pay a specified commission to the listing broker if the property is sold through the efforts of a cooperating broker, but the seller pays the Listing broker a different commission amount if the sale occurs if:1) there is no cooperating broker involved or 2) due to the efforts of the seller directly." } ] @@ -4803,12 +5535,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electric+Field" }, { + "term": "Core.Description", "value": "A list of electric-service related features of the property (e.g. 110 Volt, 3 Phase, 220 Volt, RV Hookup). Note: the previous \"Electric\" field was renamed to DistanceToElectricComments" } ] @@ -4824,12 +5559,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ElectricExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -4843,12 +5581,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric On Property Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ElectricOnPropertyYN+Field" }, { + "term": "Core.Description", "value": "Does the property currently have electrical utility available on the property." } ] @@ -4862,12 +5603,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Elementary School" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ElementarySchool+Field" }, { + "term": "Core.Description", "value": "The name of the primary school having a catchment area that includes the associated property." } ] @@ -4881,12 +5625,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Elementary School District" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ElementarySchoolDistrict+Field" }, { + "term": "Core.Description", "value": "The name of the elementary school district having a catchment area that includes the associated property." } ] @@ -4900,12 +5647,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Elevation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Elevation+Field" }, { + "term": "Core.Description", "value": "The elevation of the property in relation to sea level. Use the Elevation Units field to communicate the unit of measurement. i.e. Feet or Meters." } ] @@ -4919,12 +5669,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Elevation Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ElevationUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit of measurement used in the Elevation field. i.e. Feet, Meters." } ] @@ -4938,12 +5691,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Entry Level" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EntryLevel+Field" }, { + "term": "Core.Description", "value": "A numeric field that describes the level within the structure, SFR or a unit in a building, where the main entry to the dwelling is located. When a unit has one floor it is implicit that this is also the level of the unit itself." } ] @@ -4958,12 +5714,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Entry Location" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EntryLocation+Field" }, { + "term": "Core.Description", "value": "A description of the main entry way to the property. i.e. Elevator, Ground Level w/ Steps, Ground Level w/o Steps, Mid Level, Top Level, etc." } ] @@ -4978,12 +5737,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exclusions" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Exclusions+Field" }, { + "term": "Core.Description", "value": "Elements of the property that will not be included in the sale. i.e. Chandeliers will be removed prior to close." } ] @@ -4997,12 +5759,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Existing Lease Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ExistingLeaseType+Field" }, { + "term": "Core.Description", "value": "Information about the status of the existing lease on the property. i.e. Net, NNN, NN, Gross, Absolute Net, Escalation Clause, Ground Lease, etc." } ] @@ -5016,12 +5781,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Expiration Date" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ExpirationDate+Field" }, { + "term": "Core.Description", "value": "The date when the listing agreement will expire. This is the date entered by the agent reflecting when the change occurred, or will occur, contractually, not a timestamp of when the change was made in the MLS. The expiration date of listings, prior to their expiration, cancellation, sale or lease, is confidential information and should be restricted to the agent and their managers, partners or broker." } ] @@ -5035,12 +5803,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exterior Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ExteriorFeatures+Field" }, { + "term": "Core.Description", "value": "A list of features or description of the exterior of the property included in the sale/lease." } ] @@ -5054,12 +5825,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Farm Credit Service Incl Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FarmCreditServiceInclYN+Field" }, { + "term": "Core.Description", "value": "Specifies whether or not Farm Credit Service shares are included in the price of the property." } ] @@ -5073,12 +5847,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Farm Land Area Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FarmLandAreaSource+Field" }, { + "term": "Core.Description", "value": "The source of the measurements. This may be a pick list of options showing the source of the measurement. i.e. Agent, Assessor, Estimate, etc. This field applies to all farm area fields (Cultivated, Pasture, Range, Wooded)" } ] @@ -5092,12 +5869,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Farm Land Area Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FarmLandAreaUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit of measurement for the area. i.e. Square Feet, Square Meters, Acres, etc. This field applies to all farm area fields (Cultivated, Pasture, Range, Wooded)" } ] @@ -5111,12 +5891,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fencing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fencing+Field" }, { + "term": "Core.Description", "value": "A list of types of fencing found at the property being sold." } ] @@ -5130,12 +5913,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Financial Data Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FinancialDataSource+Field" }, { + "term": "Core.Description", "value": "The source of the Rental information. For example Accountant, Owner, etc." } ] @@ -5149,12 +5935,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fireplace Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FireplaceFeatures+Field" }, { + "term": "Core.Description", "value": "A list of features or description of the fireplace(s) included in the sale/lease." } ] @@ -5168,12 +5957,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fireplace Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FireplaceYN+Field" }, { + "term": "Core.Description", "value": "Does the property include a fireplace." } ] @@ -5187,12 +5979,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fireplaces Total" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FireplacesTotal+Field" }, { + "term": "Core.Description", "value": "The total number of fireplaces included in the property." } ] @@ -5206,12 +6001,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Flooring" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Flooring+Field" }, { + "term": "Core.Description", "value": "A list of the type(s) of flooring found within the property." } ] @@ -5227,12 +6025,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Foundation Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FoundationArea+Field" }, { + "term": "Core.Description", "value": "The area or dimensions of the footprint of the structure on the lot." } ] @@ -5246,12 +6047,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Foundation Details" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FoundationDetails+Field" }, { + "term": "Core.Description", "value": "A list of the type(s) of foundation on which the property sits." } ] @@ -5266,12 +6070,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Frontage Length" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FrontageLength+Field" }, { + "term": "Core.Description", "value": "Textual description of the length of the frontages selected in the Frontage Type field." } ] @@ -5285,12 +6092,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Frontage Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FrontageType+Field" }, { + "term": "Core.Description", "value": "Pick list of types of frontage. i.e. Oceanfront, Lakefront, Golf course, etc. Information about roads or road frontage should be located in the Road Frontage Type and Road Surface Type fields." } ] @@ -5306,12 +6116,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fuel Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FuelExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -5325,12 +6138,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Furnished" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Furnished+Field" }, { + "term": "Core.Description", "value": "The property being leased is furnished, unfurnished or partially furnished." } ] @@ -5346,12 +6162,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Furniture Replacement Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FurnitureReplacementExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -5367,12 +6186,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garage Spaces" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GarageSpaces+Field" }, { + "term": "Core.Description", "value": "The number of spaces in the garage(s)." } ] @@ -5386,12 +6208,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garage Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GarageYN+Field" }, { + "term": "Core.Description", "value": "A flag indicating that the listing has a garage. This flag may be T/F, Y/N or other true, false or unknown indicator. As with all flags, the field may be null." } ] @@ -5407,12 +6232,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gardener Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GardenerExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -5426,12 +6254,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Grazing Permits BLM Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GrazingPermitsBlmYN+Field" }, { + "term": "Core.Description", "value": "Specifies whether or not the property owner has grazing permits from the Bureau of Land Management." } ] @@ -5445,12 +6276,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Grazing Permits Forest Service Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GrazingPermitsForestServiceYN+Field" }, { + "term": "Core.Description", "value": "Specifies whether or not the property owner has grazing permits from the Forestry Service." } ] @@ -5464,12 +6298,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Grazing Permits Private Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GrazingPermitsPrivateYN+Field" }, { + "term": "Core.Description", "value": "Specifies whether or not the property owner has private grazing permits." } ] @@ -5483,12 +6320,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Building Verification Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenBuildingVerificationType+Field" }, { + "term": "Core.Description", "value": "The name of the verification or certification awarded to a new or pre-existing residential or commercial structure. For example: LEED, Energy Star, ICC-700. In cases where more than one certification have been awarded, leverage multiple iterations of the green verification fields via the repeating element method." } ] @@ -5502,12 +6342,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Energy Efficient" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenEnergyEfficient+Field" }, { + "term": "Core.Description", "value": "Pick list of general green attributes such as energy efficient doors, or appliances without naming specific elements with ratings that may wane over time." } ] @@ -5521,12 +6364,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Energy Generation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenEnergyGeneration+Field" }, { + "term": "Core.Description", "value": "Methods of generating power that are included in the sale or lease." } ] @@ -5540,12 +6386,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Indoor Air Quality" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenIndoorAirQuality+Field" }, { + "term": "Core.Description", "value": "Pick list of indoor air quality measures without naming specific elements with ratings that may wane over time." } ] @@ -5559,12 +6408,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Location" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenLocation+Field" }, { + "term": "Core.Description", "value": "Pick list describing efficiencies involved with the property\u0027s location such as walkability or transportation proximity without naming specific elements with ratings that may wane over time." } ] @@ -5578,12 +6430,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Sustainability" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenSustainability+Field" }, { + "term": "Core.Description", "value": "Pick list of sustainable elements used in the construction of the structure without naming specific elements with ratings that may wane over time." } ] @@ -5597,12 +6452,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Water Conservation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenWaterConservation+Field" }, { + "term": "Core.Description", "value": "Pick list of general water conserving attributes of the property such as landscaping or reclamation without naming specific elements with ratings that may wane over time." } ] @@ -5618,12 +6476,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gross Income" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GrossIncome+Field" }, { + "term": "Core.Description", "value": "The actual current income from rent and all other revenue generating sources." } ] @@ -5639,12 +6500,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gross Scheduled Income" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GrossScheduledIncome+Field" }, { + "term": "Core.Description", "value": "The maximum amount of annual rent collected if the property were 100% occupied all year and all tenants paid their rent." } ] @@ -5658,12 +6522,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Habitable Residence Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HabitableResidenceYN+Field" }, { + "term": "Core.Description", "value": "Does the property include a structure that can be lived in." } ] @@ -5677,12 +6544,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Heating" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Heating+Field" }, { + "term": "Core.Description", "value": "A list describing the heating features of the property." } ] @@ -5696,12 +6566,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Heating Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HeatingYN+Field" }, { + "term": "Core.Description", "value": "The property has heating." } ] @@ -5715,12 +6588,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "High School" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HighSchool+Field" }, { + "term": "Core.Description", "value": "The name of the high school having a catchment area that includes the associated property." } ] @@ -5734,12 +6610,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "High School District" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HighSchoolDistrict+Field" }, { + "term": "Core.Description", "value": "The name of the high school district having a catchment area that includes the associated property. When only one school district is used, this field should be used over the Junior or Elementary Districts." } ] @@ -5753,12 +6632,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Warranty Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HomeWarrantyYN+Field" }, { + "term": "Core.Description", "value": "Is a home warranty included in the sale of the property? Single select." } ] @@ -5772,12 +6654,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Horse Amenities" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HorseAmenities+Field" }, { + "term": "Core.Description", "value": "A list of horse amenities on the lot or in the community." } ] @@ -5791,12 +6676,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Horse Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HorseYN+Field" }, { + "term": "Core.Description", "value": "The Property is allowed to raise horses." } ] @@ -5810,12 +6698,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hours/Days Of Operation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HoursDaysOfOperation+Field" }, { + "term": "Core.Description", "value": "A simplified enumerated list of the days and hours of operation of the business being sold. i.e. Open 24 Hours or Open 7 Days. For more detailed descriptions use the HoursDaysofOperationDescription field." } ] @@ -5830,12 +6721,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hours/Days Of Operation Description" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HoursDaysOfOperationDescription+Field" }, { + "term": "Core.Description", "value": "A detailed description of the hours and days the business being sold is open for business. For a specific list of simplified times the business is open, use the HoursDaysOfOperation Field (enumerated)." } ] @@ -5850,12 +6744,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Inclusions" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Inclusions+Field" }, { + "term": "Core.Description", "value": "Portable elements of the property that will be included in the sale." } ] @@ -5869,12 +6766,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Income Includes" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IncomeIncludes+Field" }, { + "term": "Core.Description", "value": "A list of income sources included in the GrossScheduledIncome and GrossIncome. i.e. Laundry, Parking, Recreation, Storage, etc." } ] @@ -5890,12 +6790,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Insurance Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/InsuranceExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -5909,12 +6812,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Interior Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/InteriorFeatures+Field" }, { + "term": "Core.Description", "value": "A list of features or description of the interior of the property included in the sale/lease." } ] @@ -5928,12 +6834,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Internet Address Display Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/InternetAddressDisplayYN+Field" }, { + "term": "Core.Description", "value": "A yes/no field that states the seller has allowed the listing address to be displayed on Internet sites." } ] @@ -5947,12 +6856,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Internet Automated Valuation Display Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/InternetAutomatedValuationDisplayYN+Field" }, { + "term": "Core.Description", "value": "A yes/no field that states the seller allows the listing can be displayed with an AVM on Internet sites." } ] @@ -5966,12 +6878,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Internet Consumer Comment Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/InternetConsumerCommentYN+Field" }, { + "term": "Core.Description", "value": "A yes/no field that states the seller allows a comment or blog system to be attached to the listing on Internet sites." } ] @@ -5985,12 +6900,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Internet Entire Listing Display Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/InternetEntireListingDisplayYN+Field" }, { + "term": "Core.Description", "value": "A yes/no field that states the seller has allowed the listing to be displayed on Internet sites." } ] @@ -6004,12 +6922,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Irrigation Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IrrigationSource+Field" }, { + "term": "Core.Description", "value": "The source which the property receives its water for irrigation." } ] @@ -6025,12 +6946,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Irrigation Water Rights Acres" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IrrigationWaterRightsAcres+Field" }, { + "term": "Core.Description", "value": "The number of acres allowed under the property\u0027s water rights." } ] @@ -6044,12 +6968,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Irrigation Water Rights Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IrrigationWaterRightsYN+Field" }, { + "term": "Core.Description", "value": "Does the property include water rights for irrigation? A Boolean or Yes / No field." } ] @@ -6063,12 +6990,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Labor Information" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LaborInformation+Field" }, { + "term": "Core.Description", "value": "Information about labor laws that are applicable to the business being sold. i.e. Union, Non-Union, Employee License Required." } ] @@ -6084,12 +7014,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Land Lease Amount" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LandLeaseAmount+Field" }, { + "term": "Core.Description", "value": "When the land is not included in the sale, but is leased, the amount of the lease. This is the Space Rent for Mobile homes in a Park." } ] @@ -6103,12 +7036,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Land Lease Amount Frequency" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LandLeaseAmountFrequency+Field" }, { + "term": "Core.Description", "value": "When the land is not included in the sale, but is leased, the frequency the Land Lease Fee is paid." } ] @@ -6122,12 +7058,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Land Lease Expiration Date" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LandLeaseExpirationDate+Field" }, { + "term": "Core.Description", "value": "When the land is not included in the sale, but is leased, the expiration date of the Land Lease." } ] @@ -6141,12 +7080,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Land Lease Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LandLeaseYN+Field" }, { + "term": "Core.Description", "value": "The land is not included in the sale and a lease exists." } ] @@ -6162,12 +7104,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Latitude" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Latitude+Field" }, { + "term": "Core.Description", "value": "The geographic latitude of some reference point on the property, specified in degrees and decimal parts. Positive numbers must not include the plus symbol." } ] @@ -6181,12 +7126,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Laundry Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LaundryFeatures+Field" }, { + "term": "Core.Description", "value": "Add this pick list of features and locations where the laundry is located in the property being sold. i.e. Gas Dryer Hookup, In Kitchen, In Garage, etc." } ] @@ -6202,12 +7150,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Leasable Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LeasableArea+Field" }, { + "term": "Core.Description", "value": "The area that may be leased within the commercial property." } ] @@ -6221,12 +7172,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Leasable Area Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LeasableAreaUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit of measurement for the area. i.e. Square Feet, Square Meters, Acres, etc." } ] @@ -6242,12 +7196,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lease Amount" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LeaseAmount+Field" }, { + "term": "Core.Description", "value": "The amount of any lease the business pays for it\u0027s current location." } ] @@ -6261,12 +7218,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lease Amount Frequency" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LeaseAmountFrequency+Field" }, { + "term": "Core.Description", "value": "The frequency of the LeaseAmount is paid. Monthly, weekly, annual, etc." } ] @@ -6280,12 +7240,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lease Assignable Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LeaseAssignableYN+Field" }, { + "term": "Core.Description", "value": "Can the lease at the business\u0027 current location be assigned to another party." } ] @@ -6299,12 +7262,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lease Considered Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LeaseConsideredYN+Field" }, { + "term": "Core.Description", "value": "Will the seller consider leasing the property instead of selling? Single select." } ] @@ -6318,12 +7284,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lease Expiration" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LeaseExpiration+Field" }, { + "term": "Core.Description", "value": "The expiration date of the lease for the business\u0027 current location." } ] @@ -6337,12 +7306,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lease Renewal Compensation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LeaseRenewalCompensation+Field" }, { + "term": "Core.Description", "value": "A list of compensations other than the original Selling Office Compensation. i.e. Compensation Paid on Renewal, Compensation Paid on Tennant Purchase, No Renewal Commission, Call Listing Office, etc." } ] @@ -6356,12 +7328,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lease Renewal Option Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LeaseRenewalOptionYN+Field" }, { + "term": "Core.Description", "value": "Is there an option to renew the lease at the business\u0027 current location." } ] @@ -6375,12 +7350,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lease Term" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LeaseTerm+Field" }, { + "term": "Core.Description", "value": "A pick list of lengths that represent the length of the lease. i.e. Weekly, Month to Month, 6 Month Lease, 12 Month Lease, 24 Month Lease." } ] @@ -6394,12 +7372,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Levels" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Levels+Field" }, { + "term": "Core.Description", "value": "The number of levels in the property being sold. For example, One Level, Two Levels, Three or More Levels, \u003ca href\u003d\"http://ddwiki.reso.org/pages/viewpage.action?pageId\u003d9941240\"\u003eMulti/Split\u003c/a\u003e, Loft. A discreet horizontal plane of interior living space (excluding basements)." } ] @@ -6414,12 +7395,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "License 1" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/License1+Field" }, { + "term": "Core.Description", "value": "License number of the mobile or manufactured home. Also known as the Department of Housing label/insignia number. For the first or only unit/section use License 1 over License 2 or 3." } ] @@ -6434,12 +7418,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "License 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/License2+Field" }, { + "term": "Core.Description", "value": "License number of the mobile or manufactured home. Also known as the Department of Housing label/insignia number. For two units/sections use License 1 and 2 over License 3." } ] @@ -6454,12 +7441,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "License 3" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/License3+Field" }, { + "term": "Core.Description", "value": "License number of the mobile or manufactured home. Also known as the Department of Housing label/insignia number. For two units/sections use License 1 and 2 over License 3." } ] @@ -6475,12 +7465,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Licenses Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LicensesExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -6494,12 +7487,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List AOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAOR+Field" }, { + "term": "Core.Description", "value": "The responsible Board or Association of REALTORS for this listing." } ] @@ -6513,12 +7509,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent AOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentAOR+Field" }, { + "term": "Core.Description", "value": "The Listing Agent\u0027s Board or Association of REALTORS." } ] @@ -6532,12 +7531,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Designation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentDesignation+Field" }, { + "term": "Core.Description", "value": "Designations and certifications acknowledging experience and expertise in various real estate sectors are awarded by NAR and each affiliated group upon completion of required courses." } ] @@ -6552,12 +7554,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Direct Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentDirectPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -6572,12 +7577,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentEmail+Field" }, { + "term": "Core.Description", "value": "The email address of the Listing Agent." } ] @@ -6592,12 +7600,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -6612,12 +7623,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent First Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentFirstName+Field" }, { + "term": "Core.Description", "value": "The first name of the listing agent." } ] @@ -6632,12 +7646,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Full Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentFullName+Field" }, { + "term": "Core.Description", "value": "The full name of the listing agent. (First Middle Last)" } ] @@ -6652,12 +7669,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Home Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentHomePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -6672,12 +7692,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the ListAgentKey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -6691,12 +7714,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the ListAgentKey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the ListAgentKey field." } ] @@ -6711,12 +7737,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Last Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentLastName+Field" }, { + "term": "Core.Description", "value": "The last name of the listing agent." } ] @@ -6731,12 +7760,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Middle Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentMiddleName+Field" }, { + "term": "Core.Description", "value": "The middle name of the listing agent." } ] @@ -6751,12 +7783,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentMlsId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier for the member. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -6771,12 +7806,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Mobile Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentMobilePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -6791,12 +7829,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Name Prefix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentNamePrefix+Field" }, { + "term": "Core.Description", "value": "Prefix to the name (e.g. Dr. Mr. Ms. etc.)" } ] @@ -6811,12 +7852,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Name Suffix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentNameSuffix+Field" }, { + "term": "Core.Description", "value": "Suffix to the ListAgentLastName (e.g. Esq., Jr., III etc.)" } ] @@ -6831,12 +7875,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Office Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentOfficePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -6851,12 +7898,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Office Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentOfficePhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -6871,12 +7921,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Pager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentPager+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -6891,12 +7944,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Preferred Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentPreferredPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -6911,12 +7967,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Preferred Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentPreferredPhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -6931,12 +7990,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent State License" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentStateLicense+Field" }, { + "term": "Core.Description", "value": "The license of the listing agent. Separate multiple licenses with a comma and space." } ] @@ -6951,12 +8013,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Toll Free Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentTollFreePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -6971,12 +8036,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent URL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentURL+Field" }, { + "term": "Core.Description", "value": "The website URI of the listing agent." } ] @@ -6991,12 +8059,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Voice Mail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentVoiceMail+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -7011,12 +8082,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Agent Voice Mail Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListAgentVoiceMailExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -7030,12 +8104,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Office AOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListOfficeAOR+Field" }, { + "term": "Core.Description", "value": "The Listing Office\u0027s Board or Association of REALTORS." } ] @@ -7050,12 +8127,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Office Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListOfficeEmail+Field" }, { + "term": "Core.Description", "value": "The email address of the Listing Office." } ] @@ -7070,12 +8150,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Office Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListOfficeFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -7090,12 +8173,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Office Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListOfficeKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Office resource\u0027s OfficeKey." } ] @@ -7109,12 +8195,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Office Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListOfficeKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Office resource\u0027s OfficeKey. This is the numeric only key and used as an alternative to the ListOfficeKey field." } ] @@ -7129,12 +8218,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Office MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListOfficeMlsId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -7149,12 +8241,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Office Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListOfficeName+Field" }, { + "term": "Core.Description", "value": "The legal name of the brokerage representing the seller." } ] @@ -7169,12 +8264,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Office Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListOfficePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -7189,12 +8287,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Office Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListOfficePhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -7209,12 +8310,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Office URL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListOfficeURL+Field" }, { + "term": "Core.Description", "value": "The website URI for the listing office." } ] @@ -7230,12 +8334,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Price" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListPrice+Field" }, { + "term": "Core.Description", "value": "The current price of the property as determined by the seller and the seller\u0027s broker. For auctions this is the minimum or reserve price." } ] @@ -7251,12 +8358,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Price Low" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListPriceLow+Field" }, { + "term": "Core.Description", "value": "The lower price used for Value Range Pricing. The List Price must be greater than or equal to the ListPriceLow." } ] @@ -7271,12 +8381,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Team Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListTeamKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Teams resource\u0027s TeamKey." } ] @@ -7290,12 +8403,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Team Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListTeamKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Teams resource\u0027s TeamKey. This is the numeric only key and used as an alternative to the ListTeamKey field." } ] @@ -7310,12 +8426,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Team Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListTeamName+Field" }, { + "term": "Core.Description", "value": "The name of the team representing the seller." } ] @@ -7329,12 +8448,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Agreement" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingAgreement+Field" }, { + "term": "Core.Description", "value": "The nature of the agreement between the seller and the listing agent. Examples are Exclusive Agency, Open Listing, etc." } ] @@ -7348,12 +8470,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Contract Date" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingContractDate+Field" }, { + "term": "Core.Description", "value": "The effective date of the agreement between the seller and the seller\u0027s broker. This is the date entered by the agent reflecting when the change occurred contractually, not a timestamp of when the change was made in the MLS." } ] @@ -7368,12 +8493,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingId+Field" }, { + "term": "Core.Description", "value": "The well known identifier for the listing. The value may be identical to that of the Listing Key, but the Listing ID is intended to be the value used by a human to retrieve the information about a specific listing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -7388,12 +8516,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the ListingKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -7407,12 +8538,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the ListingKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -7426,12 +8560,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingService+Field" }, { + "term": "Core.Description", "value": "Defines the type or level of service the listing member will be providing to the selling home owner. This will typically be a single selection. Examples include Full Service, Limited Service or Entry Only." } ] @@ -7445,12 +8582,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Terms" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingTerms+Field" }, { + "term": "Core.Description", "value": "Terms of the listing such as Lien Release, Subject to Court Approval or Owner Will Carry. Also may include options that describe the financing terms that are acceptable to the seller, i.e. cash, assumable, FHA loan, etc." } ] @@ -7466,12 +8606,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Living Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LivingArea+Field" }, { + "term": "Core.Description", "value": "The total livable area within the structure." } ] @@ -7485,12 +8628,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Living Area Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LivingAreaSource+Field" }, { + "term": "Core.Description", "value": "The source of the measurements. This is a pick list of options showing the source of the measurement. i.e. Agent, Assessor, Estimate, etc." } ] @@ -7504,12 +8650,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Living Area Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LivingAreaUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit of measurement for the area. i.e. Square Feet, Square Meters, Acres, etc." } ] @@ -7524,12 +8673,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lock Box Location" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LockBoxLocation+Field" }, { + "term": "Core.Description", "value": "A field describing the location of the lock box." } ] @@ -7544,12 +8696,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lock Box Serial Number" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LockBoxSerialNumber+Field" }, { + "term": "Core.Description", "value": "The serial number of the lockbox placed on the property." } ] @@ -7563,12 +8718,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lock Box Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LockBoxType+Field" }, { + "term": "Core.Description", "value": "A field describing the type of lock box." } ] @@ -7584,12 +8742,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Longitude" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Longitude+Field" }, { + "term": "Core.Description", "value": "The geographic longitude of some reference point on the property, specified in degrees and decimal parts. Positive numbers must not include the plus symbol." } ] @@ -7603,12 +8764,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lot Dimensions Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LotDimensionsSource+Field" }, { + "term": "Core.Description", "value": "The source of the measurements. This may be a pick list of options showing the source of the measurement. i.e. Agent, Assessor, Estimate, etc." } ] @@ -7622,12 +8786,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lot Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LotFeatures+Field" }, { + "term": "Core.Description", "value": "A list of features or description of the lot included in the sale/lease." } ] @@ -7643,12 +8810,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lot Size Acres" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LotSizeAcres+Field" }, { + "term": "Core.Description", "value": "The total Acres of the lot. This field is related to the Lot Size Area and Lot Size Units and must be in sync with the values represented in those fields. Lot Size Source also applies to this field when used." } ] @@ -7664,12 +8834,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lot Size Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LotSizeArea+Field" }, { + "term": "Core.Description", "value": "The total area of the lot. See Lot Size Units for the units of measurement (Square Feet, Square Meters, Acres, etc.)." } ] @@ -7684,12 +8857,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lot Size Dimensions" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LotSizeDimensions+Field" }, { + "term": "Core.Description", "value": "The dimensions of the lot minimally represented as length and width (i.e. 250 x 180) or a measurement of all sides of the polygon representing the property lines of the property. i.e. 30 x 50 x 120 x 60 x 22." } ] @@ -7703,12 +8879,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lot Size Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LotSizeSource+Field" }, { + "term": "Core.Description", "value": "The source of the measurements. This may be a pick list of options showing the source of the measurement. i.e. Agent, Assessor, Estimate, etc." } ] @@ -7724,12 +8903,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lot Size Square Feet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LotSizeSquareFeet+Field" }, { + "term": "Core.Description", "value": "The total square footage of the lot. This field is related to the Lot Size Area and Lot Size Units and must be in sync with the values represented in those fields. Lot Size Source also applies to this field when used." } ] @@ -7743,12 +8925,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lot Size Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LotSizeUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit of measurement for the area. i.e. Square Feet, Square Meters, Acres, etc." } ] @@ -7762,12 +8947,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MLS Area Major" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MLSAreaMajor+Field" }, { + "term": "Core.Description", "value": "The major marketing area name, as defined by the MLS or other non-governmental organization. If there is only one MLS Area in use, it must be the MLSAreaMajor." } ] @@ -7781,12 +8969,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MLS Area Minor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MLSAreaMinor+Field" }, { + "term": "Core.Description", "value": "The minor/sub marketing area name, as defined by the MLS or other non-governmental organization. If there is only one MLS Area in use, it must be the MLSAreaMajor." } ] @@ -7800,12 +8991,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Main Level Bathrooms" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MainLevelBathrooms+Field" }, { + "term": "Core.Description", "value": "The number of bathrooms located on the main or entry level of the property." } ] @@ -7819,12 +9013,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Main Level Bedrooms" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MainLevelBedrooms+Field" }, { + "term": "Core.Description", "value": "The number of bedrooms located on the main or entry level of the property." } ] @@ -7840,12 +9037,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maintenance Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MaintenanceExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -7860,12 +9060,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Major Change Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MajorChangeTimestamp+Field" }, { + "term": "Core.Description", "value": "Timestamp of the last major change on the listing (see also MajorChangeType)." } ] @@ -7879,12 +9082,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Major Change Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MajorChangeType+Field" }, { + "term": "Core.Description", "value": "Description of the last major change on the listing, i.e. “price reduction”, “back on market”, etc. May be used to display on a summary view of listing results to quickly identify listings that have had major changes recently." } ] @@ -7899,12 +9105,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Make" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Make+Field" }, { + "term": "Core.Description", "value": "Make of the mobile or manufactured home." } ] @@ -7920,12 +9129,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Manager Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ManagerExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations. This is for an individual manager. Use ProfessionalManagementExpense for a management company." } ] @@ -7940,12 +9152,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Map Coordinate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MapCoordinate+Field" }, { + "term": "Core.Description", "value": "A map coordinate for the property, as determined by local custom. This is not necessarily the same as the geographic coordinate but may depend on the coordinate system used by whatever mapping service is customarily used by the listing service." } ] @@ -7960,12 +9175,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Map Coordinate Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MapCoordinateSource+Field" }, { + "term": "Core.Description", "value": "Name of the map or map book publisher." } ] @@ -7980,12 +9198,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Map URL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MapURL+Field" }, { + "term": "Core.Description", "value": "URI to a map of the property." } ] @@ -7999,12 +9220,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Middle Or Junior School" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MiddleOrJuniorSchool+Field" }, { + "term": "Core.Description", "value": "The name of the junior or middle school having a catchment area that includes the associated property." } ] @@ -8018,12 +9242,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Middle Or Junior School District" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MiddleOrJuniorSchoolDistrict+Field" }, { + "term": "Core.Description", "value": "The name of the junior or middle school district having a catchment area that includes the associated property." } ] @@ -8037,12 +9264,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MLS Status" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MlsStatus+Field" }, { + "term": "Core.Description", "value": "Local or regional status that are well known by business users. Each MlsStatus must map to a single StandardStatus. Multiple MlsStatus may map to a single StandardStatus." } ] @@ -8056,12 +9286,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mobile Dimensions Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MobileDimUnits+Field" }, { + "term": "Core.Description", "value": "A pick list of the unit linear measurement. i.e. feed, meters, yards, kilometers, miles, etc." } ] @@ -8075,12 +9308,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mobile Home Remains Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MobileHomeRemainsYN+Field" }, { + "term": "Core.Description", "value": "Is the mobile home to remain and be included in the sale of the property." } ] @@ -8094,12 +9330,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mobile Length" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MobileLength+Field" }, { + "term": "Core.Description", "value": "Length of the mobile/manufactured home." } ] @@ -8113,12 +9352,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mobile Width" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MobileWidth+Field" }, { + "term": "Core.Description", "value": "Width of the mobile/manufactured home." } ] @@ -8133,12 +9375,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Model" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Model+Field" }, { + "term": "Core.Description", "value": "Model of the mobile or manufactured home." } ] @@ -8153,12 +9398,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the date/time the listing was last modified." } ] @@ -8174,12 +9422,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Net Operating Income" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NetOperatingIncome+Field" }, { + "term": "Core.Description", "value": "Net operating income is the revenue from a property after operating expenses have been deducted, but before deducting income taxes and financing expenses (interest and Principal Payments). For example, Gross Income - Operating Expenses \u003d Net Operating Income (NOI)." } ] @@ -8193,12 +9444,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "New Construction Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NewConstructionYN+Field" }, { + "term": "Core.Description", "value": "Is the property newly constructed and has not been previously occupied?" } ] @@ -8214,12 +9468,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "New Taxes Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NewTaxesExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -8233,12 +9490,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Of Buildings" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NumberOfBuildings+Field" }, { + "term": "Core.Description", "value": "Total number of separate buildings included in the income property." } ] @@ -8252,12 +9512,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Of Full Time Employees" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NumberOfFullTimeEmployees+Field" }, { + "term": "Core.Description", "value": "The current number of individuals employed by the business on a full-time basis." } ] @@ -8271,12 +9534,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Of Lots" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NumberOfLots+Field" }, { + "term": "Core.Description", "value": "Total number of lots on the property or included in the sale. Land properties are often sold with multiple lots. It is important to be able to describe how many lots are in the property and not in all cases do lots have separate Parcel IDs." } ] @@ -8290,12 +9556,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Of Pads" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NumberOfPads+Field" }, { + "term": "Core.Description", "value": "The number of pads or spaces in the mobile home park." } ] @@ -8309,12 +9578,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Of Part Time Employees" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NumberOfPartTimeEmployees+Field" }, { + "term": "Core.Description", "value": "The current number of individuals employed by the business on a part-time basis." } ] @@ -8328,12 +9600,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Of Separate Electric Meters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NumberOfSeparateElectricMeters+Field" }, { + "term": "Core.Description", "value": "Total number of separate meters on the property." } ] @@ -8347,12 +9622,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Of Separate Gas Meters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NumberOfSeparateGasMeters+Field" }, { + "term": "Core.Description", "value": "Total number of separate meters on the property." } ] @@ -8366,12 +9644,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Of Separate Water Meters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NumberOfSeparateWaterMeters+Field" }, { + "term": "Core.Description", "value": "Total number of separate meters on the property." } ] @@ -8385,12 +9666,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Of Units In Community" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NumberOfUnitsInCommunity+Field" }, { + "term": "Core.Description", "value": "The total number of units in the building, complex or community. This is not the number of units being sold, but rather the size of the community in which the dwelling being sold is located." } ] @@ -8404,12 +9688,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Of Units Leased" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NumberOfUnitsLeased+Field" }, { + "term": "Core.Description", "value": "Total number of units currently under a lease agreement." } ] @@ -8423,12 +9710,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Of Units Month To Month" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NumberOfUnitsMoMo+Field" }, { + "term": "Core.Description", "value": "The total number of units leasable month to month." } ] @@ -8442,12 +9732,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Of Units Total" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NumberOfUnitsTotal+Field" }, { + "term": "Core.Description", "value": "Total number of units included in the income property, occupied or unoccupied." } ] @@ -8461,12 +9754,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Of Units Vacant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NumberOfUnitsVacant+Field" }, { + "term": "Core.Description", "value": "The number of units currently vacant." } ] @@ -8481,12 +9777,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Occupant Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OccupantName+Field" }, { + "term": "Core.Description", "value": "Name of the current occupant, if any, of the property being sold." } ] @@ -8501,12 +9800,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Occupant Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OccupantPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -8520,12 +9822,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Occupant Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OccupantType+Field" }, { + "term": "Core.Description", "value": "A field that describes the type of occupant, i.e. Owner, Tenant, Vacant." } ] @@ -8539,12 +9844,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Off Market Date" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OffMarketDate+Field" }, { + "term": "Core.Description", "value": "The date the listing was taken off market. Where possible, this date is reflective of the date entered by the agent reflecting when the change occurred contractually, not a timestamp of when the change was made in the MLS." } ] @@ -8559,12 +9867,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Off Market Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OffMarketTimestamp+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the most recent date/time the listing\u0027s status was set to and off market status (not Active or Backup)" } ] @@ -8578,12 +9889,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "On Market Date" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OnMarketDate+Field" }, { + "term": "Core.Description", "value": "The date the listing was placed on market. Where possible, this date is reflective of the date entered by the agent reflecting when the change occurred contractually, not a timestamp of when the change was made in the MLS." } ] @@ -8598,12 +9912,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "On Market Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OnMarketTimestamp+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the most recent date/time the listing\u0027s status was set to Active or Backup. This also includes initial input of the listing to Active/Backup or from a draft or approval status to Active/Backup." } ] @@ -8619,12 +9936,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open Parking Spaces" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OpenParkingSpaces+Field" }, { + "term": "Core.Description", "value": "The number of open or uncovered parking spaces included in the sale." } ] @@ -8638,12 +9958,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open Parking Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OpenParkingYN+Field" }, { + "term": "Core.Description", "value": "A flag indicating that any parking spaces associated with the property are not covered by a roof." } ] @@ -8659,12 +9982,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Operating Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OperatingExpense+Field" }, { + "term": "Core.Description", "value": "The costs associated with the operation and maintenance of an income-producing property." } ] @@ -8678,12 +10004,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Operating Expense Includes" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OperatingExpenseIncludes+Field" }, { + "term": "Core.Description", "value": "When individual expense fields are not used and only a total is entered, this lists the expenses that are included in the OperatingExpense field." } ] @@ -8698,12 +10027,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Original Entry Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginalEntryTimestamp+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the date/time the listing was entered and made visible to members of the MLS." } ] @@ -8719,12 +10051,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Original List Price" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginalListPrice+Field" }, { + "term": "Core.Description", "value": "The original price of the property on the initial agreement between the seller and the seller\u0027s broker." } ] @@ -8739,12 +10074,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the listing was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -8759,12 +10097,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the listing was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -8779,12 +10120,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the listing is originally input by the member. The legal name of the company." } ] @@ -8798,12 +10142,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Equipment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherEquipment+Field" }, { + "term": "Core.Description", "value": "A list of other equipment that will be included in the sale of the property." } ] @@ -8819,12 +10166,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -8839,12 +10189,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Parking" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherParking+Field" }, { + "term": "Core.Description", "value": "Other types of parking available to, or part of, the property." } ] @@ -8858,12 +10211,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Structures" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherStructures+Field" }, { + "term": "Core.Description", "value": "A list of structures other than the main dwelling. For example, Guest House, Barn, Shed, etc." } ] @@ -8878,12 +10234,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OwnerName+Field" }, { + "term": "Core.Description", "value": "Name of the owner of the property being sold." } ] @@ -8897,12 +10256,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner Pays" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OwnerPays+Field" }, { + "term": "Core.Description", "value": "A list of expenses for the property paid for by the owner as opposed to the tenant (e.g. Water, Trash, Electric)." } ] @@ -8917,12 +10279,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OwnerPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -8937,12 +10302,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ownership" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ownership+Field" }, { + "term": "Core.Description", "value": "A text description of the manner in which title to a property is held. Trust, Corporation, Joint Tennant, Individual." } ] @@ -8956,12 +10324,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ownership Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OwnershipType+Field" }, { + "term": "Core.Description", "value": "Current type of ownership of the business being sold. i.e. Corporation, LLC, Sole P, Partnership, etc.," } ] @@ -8976,12 +10347,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Parcel Number" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ParcelNumber+Field" }, { + "term": "Core.Description", "value": "A number used to uniquely identify a parcel or lot. This number is typically issued by the county or county assessor. The AP number format varies from county to county. It is recommended that all Parcel Numbers be transmitted without dashes or hyphens." } ] @@ -8996,12 +10370,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Park Manager Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ParkManagerName+Field" }, { + "term": "Core.Description", "value": "Name of the manager of the mobile home park." } ] @@ -9016,12 +10393,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Park Manager Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ParkManagerPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -9036,12 +10416,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Park Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ParkName+Field" }, { + "term": "Core.Description", "value": "Name of the mobile home park or corporate/commercial park." } ] @@ -9055,12 +10438,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Parking Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ParkingFeatures+Field" }, { + "term": "Core.Description", "value": "A list of features or description of the parking included in the sale/lease." } ] @@ -9076,12 +10462,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Parking Total" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ParkingTotal+Field" }, { + "term": "Core.Description", "value": "The total number of parking spaces included in the sale." } ] @@ -9097,12 +10486,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pasture Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PastureArea+Field" }, { + "term": "Core.Description", "value": "Measurement or percentage of the property that has been allocated as pasture or grazing area." } ] @@ -9116,12 +10508,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Patio And Porch Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PatioAndPorchFeatures+Field" }, { + "term": "Core.Description", "value": "A list of features or description of the patio or porch included in the sale/lease." } ] @@ -9136,12 +10531,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pending Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PendingTimestamp+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the most recent date/time the listing\u0027s status was set to Pending." } ] @@ -9157,12 +10555,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pest Control Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PestControlExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -9176,12 +10577,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pets Allowed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PetsAllowed+Field" }, { + "term": "Core.Description", "value": "Are pets allowed at the property being leased? A list of yes, no and more detailed restrictions/allowances." } ] @@ -9196,12 +10600,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Photos Change Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PhotosChangeTimestamp+Field" }, { + "term": "Core.Description", "value": "System generated timestamp of when the last update or change to the photos for this listing was made." } ] @@ -9215,12 +10622,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Photos Count" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PhotosCount+Field" }, { + "term": "Core.Description", "value": "The total number of pictures or photos included with the listing." } ] @@ -9236,12 +10646,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PoolExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -9255,12 +10668,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PoolFeatures+Field" }, { + "term": "Core.Description", "value": "A list of features or description of the pool included in the sale/lease." } ] @@ -9274,12 +10690,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool Private Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PoolPrivateYN+Field" }, { + "term": "Core.Description", "value": "The property has a privately owned pool that is included in the sale/lease." } ] @@ -9293,12 +10712,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Possession" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Possession+Field" }, { + "term": "Core.Description", "value": "A list defining when possession will occur. i.e. COE, COE+1, etc." } ] @@ -9312,12 +10734,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Possible Use" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PossibleUse+Field" }, { + "term": "Core.Description", "value": "A list of the type(s) of possible or best uses of the property. Probable use gives a good indication of what the best use or potential use of the property could be. i.e. Primary, Vacation, Investment, Rental, Retirement" } ] @@ -9331,12 +10756,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Postal City" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PostalCity+Field" }, { + "term": "Core.Description", "value": "The official city per the USPS. May be different from the \"City\"." } ] @@ -9351,12 +10779,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Postal Code" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PostalCode+Field" }, { + "term": "Core.Description", "value": "The postal code portion of a street or mailing address." } ] @@ -9371,12 +10802,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Postal Code Plus4" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PostalCodePlus4+Field" }, { + "term": "Core.Description", "value": "The postal code +4 portion of a street or mailing address." } ] @@ -9390,12 +10824,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Power Production Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PowerProductionType+Field" }, { + "term": "Core.Description", "value": "This field is a list of the types of power production system(s) available on the property. The key characteristics of the system are expected to appear as the \"[type]\" in the related power production fields in a flattened implementation (RETS 1.x only) of the power production fields. A relational implementation of power production must omit the type from the field name and use PowerProductionType to create a vertical representation of the various types of power production available. **Note that PV Solar is the only type of power production currently justified in multiple markets and thus shown. Up and coming renewables that could be added in the future depending on uptake: Wind, Geothermal, Thin Film Solar." } ] @@ -9411,12 +10848,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Previous List Price" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PreviousListPrice+Field" }, { + "term": "Core.Description", "value": "The most recent previous ListPrice of the listing." } ] @@ -9431,12 +10871,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Price Change Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PriceChangeTimestamp+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the date/time the listing\u0027s price was last changed." } ] @@ -9451,12 +10894,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private Office Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PrivateOfficeRemarks+Field" }, { + "term": "Core.Description", "value": "A remarks field that is only visible to members of the same offices as the listing agent." } ] @@ -9471,12 +10917,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PrivateRemarks+Field" }, { + "term": "Core.Description", "value": "Remarks that may contain security or proprietary information and should be restricted from public view." } ] @@ -9492,12 +10941,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Professional Management Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ProfessionalManagementExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations. This is for a management company. Use ManagerExpense for a individual manager." } ] @@ -9511,12 +10963,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Property Attached Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PropertyAttachedYN+Field" }, { + "term": "Core.Description", "value": "A flag indicating that the primary structure is attached to another structure that is not included in the sale. i.e. one unit of a duplex. This flag may be T/F, Y/N or a list of attached or detached. As with all flags, the field may be null. In some systems this information may be part of the Property Sub Type." } ] @@ -9530,12 +10985,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Property Condition" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PropertyCondition+Field" }, { + "term": "Core.Description", "value": "A list describing the condition of the property and any structures included in the sale." } ] @@ -9549,12 +11007,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Property Sub Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PropertySubType+Field" }, { + "term": "Core.Description", "value": "A list of types of residential and residential lease properties, i.e. SFR, Condo, etc. Or a list of Sub Types for Mobile, such as Expando, Manufactured, Modular, etc." } ] @@ -9568,12 +11029,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Property Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PropertyType+Field" }, { + "term": "Core.Description", "value": "A list of types of properties such as Residential, Lease, Income, Land, Mobile, Commercial Sale, etc..." } ] @@ -9588,12 +11052,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PublicRemarks+Field" }, { + "term": "Core.Description", "value": "Text remarks that may be displayed to the public. In an MLS, it is the field where information is entered for the public. This information is intended to be visible on-line. This is typically information that describes the selling points of the building and/or land for sale. Local conditions and rules will determine what such content can contain. Generally, the following information is excluded: any information pertaining to entry to the property, the seller and/or tenant, listing member contact information. In other systems, these remarks will be determined by local business rules." } ] @@ -9608,12 +11075,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public Survey Range" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PublicSurveyRange+Field" }, { + "term": "Core.Description", "value": "This field specifically identifies the Range identified by the Public Land Survey System (PLSS)." } ] @@ -9628,12 +11098,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public Survey Section" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PublicSurveySection+Field" }, { + "term": "Core.Description", "value": "This field specifically identifies the Section identified by the Public Land Survey System (PLSS)." } ] @@ -9648,12 +11121,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public Survey Township" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PublicSurveyTownship+Field" }, { + "term": "Core.Description", "value": "This field specifically identifies the Township identified by the Public Land Survey System (PLSS)." } ] @@ -9667,12 +11143,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Purchase Contract Date" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PurchaseContractDate+Field" }, { + "term": "Core.Description", "value": "With for-sale listings, the date an offer was accepted and the listing was no longer on market. This is the date entered by the agent reflecting when the change occurred contractually, not a timestamp of when the change was made in the MLS. With lease listings this may represent a meeting of the minds to lease, but some contractual requirements are yet to be fulfilled, such as contract signing or receipt of the deposit." } ] @@ -9687,12 +11166,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RV Parking Dimensions" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RVParkingDimensions+Field" }, { + "term": "Core.Description", "value": "The dimensions of the RV parking area minimally represented as length and width (i.e. 25 x 18) or a measurement of all sides of the polygon representing the usable RV parking space. i.e. 33 x 15 x 12 x 60." } ] @@ -9708,12 +11190,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Range Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RangeArea+Field" }, { + "term": "Core.Description", "value": "Measurement or percentage of the property that has been allocated as range." } ] @@ -9727,12 +11212,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rent Control Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RentControlYN+Field" }, { + "term": "Core.Description", "value": "Is the property in a rent control area?" } ] @@ -9746,12 +11234,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rent Includes" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RentIncludes+Field" }, { + "term": "Core.Description", "value": "A list of services or items that the tenant is not responsible to pay." } ] @@ -9765,12 +11256,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Road Frontage Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoadFrontageType+Field" }, { + "term": "Core.Description", "value": "Pick list of types of Road frontage. i.e. Freeway frontage, No Road Frontage, etc. The road frontage of the property is an important factor in determining value of the property and it’s appropriateness for intended use." } ] @@ -9784,12 +11278,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Road Responsibility" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoadResponsibility+Field" }, { + "term": "Core.Description", "value": "The person or entity responsible for road maintenance (e.g., City, County, Private)." } ] @@ -9803,12 +11300,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Road Surface Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoadSurfaceType+Field" }, { + "term": "Core.Description", "value": "Pick list of types of surface of the Road to access the property. The surface of the road(s) for access to the property is an important factor in determining value of the property and it’s appropriateness for intended use." } ] @@ -9822,12 +11322,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Roof" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Roof+Field" }, { + "term": "Core.Description", "value": "A list describing the type or style of roof. For example Spanish Tile, Composite, Shake, etc." } ] @@ -9841,12 +11344,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Room Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomType+Field" }, { + "term": "Core.Description", "value": "This field is a list of the types used in the rooms repeating elements. The Type is a list of possible room types. i.e. Bedroom, Bathroom, Living Room, Workshop, etc. Each selected are expected to appear as the \"[type]\" in the related rooms fields in a flattened implementation (RETS 1.x only) of the room fields. A relational implementation of rooms must omit the type from the field name and use RoomType to create a vertical representation of the various rooms. **Note that Garage or Basement should not be added as a room type and are represented by the ParkingFeatures and Basement fields respectively." } ] @@ -9860,12 +11366,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rooms Total" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomsTotal+Field" }, { + "term": "Core.Description", "value": "The number of rooms in the dwelling." } ] @@ -9879,12 +11388,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seating Capacity" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SeatingCapacity+Field" }, { + "term": "Core.Description", "value": "The seating capacity of the business being sold." } ] @@ -9898,12 +11410,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SecurityFeatures+Field" }, { + "term": "Core.Description", "value": "A list describing the security features included in the sale/lease." } ] @@ -9917,12 +11432,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Senior Community Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SeniorCommunityYN+Field" }, { + "term": "Core.Description", "value": "The community is a senior community." } ] @@ -9937,12 +11455,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Serial U" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SerialU+Field" }, { + "term": "Core.Description", "value": "Serial number of the mobile or manufactured home. For the first or only unit/section use Serial U over Serial X or Serial XX." } ] @@ -9957,12 +11478,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Serial X" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SerialX+Field" }, { + "term": "Core.Description", "value": "Serial number of the mobile or manufactured home. For two units/sections, Serial U should be used first, Serial X second over or Serial XX." } ] @@ -9977,12 +11501,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Serial XX" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SerialXX+Field" }, { + "term": "Core.Description", "value": "Serial number of the mobile or manufactured home. For two units/sections, Serial U should be used first, Serial X second over or Serial XX." } ] @@ -9996,12 +11523,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sewer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sewer+Field" }, { + "term": "Core.Description", "value": "A list describing the sewer or septic features of the property." } ] @@ -10015,12 +11545,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Advance Notice" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingAdvanceNotice+Field" }, { + "term": "Core.Description", "value": "The hours of advance notice required to schedule a showing." } ] @@ -10034,12 +11567,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Attended Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingAttendedYN+Field" }, { + "term": "Core.Description", "value": "Does this home require an attended showing? i.e. Yes \u003d licensed agent representing the seller must be present during showing." } ] @@ -10054,12 +11590,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Contact Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingContactName+Field" }, { + "term": "Core.Description", "value": "The name of the contact for the showing of the listed property." } ] @@ -10074,12 +11613,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Contact Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingContactPhone+Field" }, { + "term": "Core.Description", "value": "A telephone number that should be called to arrange showing the property." } ] @@ -10094,12 +11636,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Contact Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingContactPhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -10113,12 +11658,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Contact Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingContactType+Field" }, { + "term": "Core.Description", "value": "The type of contact for the showing. i.e. Agent, Broker, Seller." } ] @@ -10132,12 +11680,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Days" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingDays+Field" }, { + "term": "Core.Description", "value": "The days of the week that the property is available for showing. i.e. Sundays, Mondays, Tuesdays, Wednesdays, Thursdays, Fridays, Saturdays" } ] @@ -10152,12 +11703,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing End Time" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingEndTime+Field" }, { + "term": "Core.Description", "value": "From the days selected in the ShowingDays field, the end time that the property is available for showing." } ] @@ -10172,12 +11726,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Instructions" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingInstructions+Field" }, { + "term": "Core.Description", "value": "Remarks that detail the seller\u0027s instructions for showing the subject property. Showing instructions may include: contact information, showing times, notice required or other information. These remarks are privileged and are not for public viewing." } ] @@ -10191,12 +11748,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Requirements" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingRequirements+Field" }, { + "term": "Core.Description", "value": "A pick list of types of notice required to see the home. i.e. Appointment Required, Courtesy Call Only, Go Direct, etc." } ] @@ -10211,12 +11771,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Start Time" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingStartTime+Field" }, { + "term": "Core.Description", "value": "From the days selected in the ShowingDays field, the start time that the property is available for showing." } ] @@ -10230,12 +11793,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sign On Property Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SignOnPropertyYN+Field" }, { + "term": "Core.Description", "value": "Is there a sign on the property." } ] @@ -10249,12 +11815,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Skirt" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Skirt+Field" }, { + "term": "Core.Description", "value": "A list of types of mobile home skirting." } ] @@ -10269,12 +11838,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -10289,12 +11861,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -10309,12 +11884,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the immediate record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -10328,12 +11906,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Spa Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SpaFeatures+Field" }, { + "term": "Core.Description", "value": "A list of features or description of the spa included in the sale/lease." } ] @@ -10347,12 +11928,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Spa Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SpaYN+Field" }, { + "term": "Core.Description", "value": "The property has a spa." } ] @@ -10366,12 +11950,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Special Licenses" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SpecialLicenses+Field" }, { + "term": "Core.Description", "value": "Special licenses required/used by the business being sold. i.e. Beer/Wine, Class H, Professional, Gambling, None." } ] @@ -10385,12 +11972,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Special Listing Conditions" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SpecialListingConditions+Field" }, { + "term": "Core.Description", "value": "A list of options that describe the type of sale. i.e. Standard, REO, Short Sale, Probate, Auction, NOD, etc., at the time of listing." } ] @@ -10404,12 +11994,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Standard Status" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StandardStatus+Field" }, { + "term": "Core.Description", "value": "The status of the listing as it reflects the state of the contract between the listing agent and seller or an agreement with a buyer (Active, Active Under Contract, Canceled, Closed, Expired, Pending, Withdrawn). This is a Single Select field." } ] @@ -10423,12 +12016,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "State Or Province" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StateOrProvince+Field" }, { + "term": "Core.Description", "value": "Text field containing the accepted postal abbreviation for the state or province." } ] @@ -10443,12 +12039,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "State Region" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StateRegion+Field" }, { + "term": "Core.Description", "value": "A sub-section or area of a defined state or province. Examples would be the Keys in FL or Hudson Valley in NY." } ] @@ -10463,12 +12062,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Status Change Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StatusChangeTimestamp+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the date/time the listing\u0027s status was last changed." } ] @@ -10482,12 +12084,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stories" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Stories+Field" }, { + "term": "Core.Description", "value": "The number of floors in the property being sold." } ] @@ -10501,12 +12106,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stories Total" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StoriesTotal+Field" }, { + "term": "Core.Description", "value": "The total number of floors in the building. In the case of multi-dwelling structures, this is the entire structure and not the individual dwelling being sold." } ] @@ -10521,12 +12129,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Street Additional Info" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StreetAdditionalInfo+Field" }, { + "term": "Core.Description", "value": "Information other than a prefix or suffix for the street portion of a postal address." } ] @@ -10540,12 +12151,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Street Direction Prefix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StreetDirPrefix+Field" }, { + "term": "Core.Description", "value": "The direction indicator that precedes the listed property\u0027s street name." } ] @@ -10559,12 +12173,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Street Direction Suffix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StreetDirSuffix+Field" }, { + "term": "Core.Description", "value": "The direction indicator that follows a listed property\u0027s street address." } ] @@ -10579,12 +12196,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Street Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StreetName+Field" }, { + "term": "Core.Description", "value": "The street name portion of a listed property\u0027s street address." } ] @@ -10599,12 +12219,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Street Number" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StreetNumber+Field" }, { + "term": "Core.Description", "value": "The street number portion of a listed property\u0027s street address. In some areas the street number may contain non-numeric characters. This field can also contain extensions and modifiers to the street number, such as \"1/2\" or \"-B\". This street number field should not include Prefixes, Direction or Suffixes." } ] @@ -10618,12 +12241,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Street Number Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StreetNumberNumeric+Field" }, { + "term": "Core.Description", "value": "The integer portion of the street number." } ] @@ -10637,12 +12263,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Street Suffix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StreetSuffix+Field" }, { + "term": "Core.Description", "value": "The suffix portion of a listed property\u0027s street address." } ] @@ -10657,12 +12286,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Street Suffix Modifier" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StreetSuffixModifier+Field" }, { + "term": "Core.Description", "value": "The Street Suffix Modifier allows the member to enter a unique Street Suffix that was not found in the Street Suffix pick list or to extend or prefix the suffix." } ] @@ -10676,12 +12308,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Structure Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StructureType+Field" }, { + "term": "Core.Description", "value": "The type of structure that the property completely or partially encompasses. For example, House or Cabin are the overall structure and typically sold or leased as a whole. Multi Family and Docks may be sold in whole, but are often sold or leased by unit/slip. This field is the type of structure as opposed to style, which is under the Architectural Style field." } ] @@ -10696,12 +12331,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sub Agency Compensation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SubAgencyCompensation+Field" }, { + "term": "Core.Description", "value": "The total commission to be paid to the Sub Agency, expressed as either a percentage or a constant currency amount." } ] @@ -10715,12 +12353,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sub Agency Compensation Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SubAgencyCompensationType+Field" }, { + "term": "Core.Description", "value": "A list of types to clarify the value entered in the SubAgencyCompensation field. For example $, % or some other clarification of the SubAgencyCompensation." } ] @@ -10735,12 +12376,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Subdivision Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SubdivisionName+Field" }, { + "term": "Core.Description", "value": "A neighborhood, community, complex or builder tract." } ] @@ -10756,12 +12400,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Supplies Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SuppliesExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -10775,12 +12422,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Syndicate To" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SyndicateTo+Field" }, { + "term": "Core.Description", "value": "When permitted by the broker, the options made by the agent on behalf of the seller, where they would like their listings syndicated. i.e. Zillow, Trulia, Homes.com, etc." } ] @@ -10795,12 +12445,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Syndication Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SyndicationRemarks+Field" }, { + "term": "Core.Description", "value": "Becoming more common in the industry, MLS\u0027s are hosting a separate \"Public Remarks\" for syndication purposes. This field should be defaulted to containing the Public Remarks, but upon broker decision, modified to include contact and other information denied by IDX rules, but allowed under local and national regulations." } ] @@ -10816,12 +12469,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tax Annual Amount" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TaxAnnualAmount+Field" }, { + "term": "Core.Description", "value": "The annual property tax amount as of the last assessment made by the taxing authority." } ] @@ -10835,12 +12491,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tax Assessed Value" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TaxAssessedValue+Field" }, { + "term": "Core.Description", "value": "The property value as of the last assessment made by the taxing authority." } ] @@ -10855,12 +12514,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tax Block" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TaxBlock+Field" }, { + "term": "Core.Description", "value": "A type of legal description for land in developed areas where streets or other rights-of-ways delineate large parcels of land referred to as divided into lots on which homes or other types of developments are built. An example would read \"Lot 12 of Block 45 of Tract 3002 of the City of San Dunes, Desert County.\" Such a description would also reference an official plat filed with the clerk or recorder for that area which shows the location of the block and often the dimensions of the lots therein." } ] @@ -10875,12 +12537,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tax Book Number" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TaxBookNumber+Field" }, { + "term": "Core.Description", "value": "Some systems of parcel identification incorporate a method which utilizes a county identifier, a tax book number, a tax map number and a parcel identification number." } ] @@ -10895,12 +12560,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tax Legal Description" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TaxLegalDescription+Field" }, { + "term": "Core.Description", "value": "A type of legal description for land in developed areas where streets or other rights-of-ways delineate large parcels of land referred to as divided into lots on which homes or other types of developments are built. An example would read \"Lot 12 of Block 45 of Tract 3002 of the City of San Dunes, Desert County.\" Such a description would also reference an official plat filed with the clerk or recorder for that area which shows the location of the block and often the dimensions of the lots therein. The text here is also an index into the property as described by the County Recorder." } ] @@ -10915,12 +12583,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tax Lot" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TaxLot+Field" }, { + "term": "Core.Description", "value": "A type of legal description for land in developed areas where streets or other rights-of-ways delineate large parcels of land referred to as divided into lots on which homes or other types of developments are built. An example would read \"Lot 12 of Block 45 of Tract 3002 of the City of San Dunes, Desert County.\" Such a description would also reference an official plat filed with the clerk or recorder for that area which shows the location of the block and often the dimensions of the lots therein." } ] @@ -10935,12 +12606,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tax Map Number" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TaxMapNumber+Field" }, { + "term": "Core.Description", "value": "Some systems of parcel identification incorporate a method which utilizes a county identifier, a tax book number, a tax map number and a parcel identification number." } ] @@ -10956,12 +12630,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tax Other Annual Assessment Amount" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TaxOtherAnnualAssessmentAmount+Field" }, { + "term": "Core.Description", "value": "Any other annual taxes, not including the tax reported in the TaxAmount field, as of the last assessment made by the taxing authority." } ] @@ -10976,12 +12653,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tax Parcel Letter" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TaxParcelLetter+Field" }, { + "term": "Core.Description", "value": "Some systems of parcel identification incorporate a method which utilizes a county identifier, a tax book number, a tax map number and a parcel identification number." } ] @@ -10995,12 +12675,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tax Status Current" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TaxStatusCurrent+Field" }, { + "term": "Core.Description", "value": "The current tax status of the mobile home in cases where the land or space is included in the sale." } ] @@ -11015,12 +12698,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tax Tract" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TaxTract+Field" }, { + "term": "Core.Description", "value": "A type of legal description for land in developed areas where streets or other rights-of-ways delineate large parcels of land referred to as divided into lots on which homes or other types of developments are built. An example would read \"Lot 12 of Block 45 of Tract 3002 of the City of San Dunes, Desert County.\" Such a description would also reference an official plat filed with the clerk or recorder for that area which shows the location of the block and often the dimensions of the lots therein." } ] @@ -11034,12 +12720,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tax Year" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TaxYear+Field" }, { + "term": "Core.Description", "value": "The year in with the last assessment of the property value/tax was made." } ] @@ -11053,12 +12742,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tenant Pays" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TenantPays+Field" }, { + "term": "Core.Description", "value": "A list of services or items that the tenant is responsible to pay." } ] @@ -11073,12 +12765,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Topography" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Topography+Field" }, { + "term": "Core.Description", "value": "The state of the surface of the land included with the property. i.e. flat, rolling, etc." } ] @@ -11094,12 +12789,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Total Actual Rent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TotalActualRent+Field" }, { + "term": "Core.Description", "value": "Total actual rent currently being collected from tenants of the income property." } ] @@ -11114,12 +12812,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Township" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Township+Field" }, { + "term": "Core.Description", "value": "A subdivision of the county." } ] @@ -11134,12 +12835,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Transaction Broker Compensation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TransactionBrokerCompensation+Field" }, { + "term": "Core.Description", "value": "The total commission to be paid to the transaction facilitator, expressed as either a percentage or a constant currency amount." } ] @@ -11153,12 +12857,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Transaction Broker Compensation Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TransactionBrokerCompensationType+Field" }, { + "term": "Core.Description", "value": "A list of types to clarify the value entered in the TransactionBrokerCompensation field. For example $, % or some other clarification of the TransactionBrokerCompensation." } ] @@ -11174,12 +12881,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trash Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TrashExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -11194,12 +12904,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Number" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitNumber+Field" }, { + "term": "Core.Description", "value": "Text field containing the number or portion of a larger building or complex. Unit Number should appear following the street suffix or, if it exists, the street suffix direction, in the street address. Examples are: \"APT G\", \"55\", etc." } ] @@ -11213,12 +12926,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeType+Field" }, { + "term": "Core.Description", "value": "This field is a list of the types used in the Unit Type repeating elements. The Type is a list of possible Unit Types. i.e. 1, 2, 3 or 2 Bed, Studio, Special Loft, etc. Each selected are expected to appear as the \"[type]\" in the related UnitType fields in a flattened implementation (RETS 1.x only) of the room fields. A relational implementation of UnitTypes must omit the type from the field name and use UnitTypeType to create a vertical representation of the various unit types. The fact that the field repeats the word \"type\" is intentional." } ] @@ -11232,12 +12948,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Units Furnished" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitsFurnished+Field" }, { + "term": "Core.Description", "value": "Are the units furnished? i.e. All Units, Varies By Unit, None." } ] @@ -11252,12 +12971,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Universal Property ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UniversalPropertyId+Field" }, { + "term": "Core.Description", "value": "The Universal Property Identifier is a unique identifier for all real property in the US and Canada. It is based on country and local identification methods and is limited to real property. For cases such as shares of real property, units, and other more granular cases, please utilize the UniversalPropertySubId." } ] @@ -11272,12 +12994,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Universal Property Sub ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UniversalPropertySubId+Field" }, { + "term": "Core.Description", "value": "The Universal Property Sub Identifier is a unique identifier for all sub sets or shares of real property in the US and Canada. This may include Stock Cooperatives, Community Apartment, Units for Rent, etc. Informally abbreviated as \"UPSI\", It is based on country and local identification methods just as the UPI, but is limited to sub sets or shares of real property. For cases of complete real property, please utilize the UniversalPropertyId field." } ] @@ -11292,12 +13017,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unparsed Address" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnparsedAddress+Field" }, { + "term": "Core.Description", "value": "The UnparsedAddress is a text representation of the address with the full civic location as a single entity. It may optionally include any of City, StateOrProvince, PostalCode and Country." } ] @@ -11311,12 +13039,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Utilities" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Utilities+Field" }, { + "term": "Core.Description", "value": "A list of the utilities for the property being sold/leased." } ] @@ -11330,12 +13061,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vacancy Allowance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VacancyAllowance+Field" }, { + "term": "Core.Description", "value": "An estimate of the amount of rent that may be foregone because of unoccupied units." } ] @@ -11351,12 +13085,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vacancy Allowance Rate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VacancyAllowanceRate+Field" }, { + "term": "Core.Description", "value": "An estimate of the percent of rent that may be foregone because of unoccupied units." } ] @@ -11370,12 +13107,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vegetation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Vegetation+Field" }, { + "term": "Core.Description", "value": "A list of the type(s) of vegetation on the property. Note that this is not for farm crops, but more residential type vegetation." } ] @@ -11390,12 +13130,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Videos Change Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VideosChangeTimestamp+Field" }, { + "term": "Core.Description", "value": "System generated timestamp of when the last update or change to the videos for this listing was made." } ] @@ -11409,12 +13152,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Videos Count" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VideosCount+Field" }, { + "term": "Core.Description", "value": "The total number of videos or virtual tours included with the listing." } ] @@ -11428,12 +13174,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "View" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/View+Field" }, { + "term": "Core.Description", "value": "A view as seen from the listed property." } ] @@ -11447,12 +13196,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "View Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ViewYN+Field" }, { + "term": "Core.Description", "value": "The property has a view." } ] @@ -11467,12 +13219,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Virtual Tour URL Branded" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VirtualTourURLBranded+Field" }, { + "term": "Core.Description", "value": "A text field that holds the URL for a branded virtual tour of the property." } ] @@ -11487,12 +13242,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Virtual Tour URL Unbranded" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VirtualTourURLUnbranded+Field" }, { + "term": "Core.Description", "value": "A text field that holds the URL for an unbranded virtual tour of the property." } ] @@ -11506,12 +13264,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Walk Score" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WalkScore+Field" }, { + "term": "Core.Description", "value": "A walkability index based on the time to walk from a property to near by essentials such as grocery stores, schools, churches, etc. See www.walkscore.com for more information and requirements for using WalkScore." } ] @@ -11526,12 +13287,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Body Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WaterBodyName+Field" }, { + "term": "Core.Description", "value": "The name, if known, of the body of water on which the property is located. (E.g., lake name, river name, ocean name, sea name, canal name)." } ] @@ -11547,12 +13311,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Sewer Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WaterSewerExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -11566,12 +13333,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WaterSource+Field" }, { + "term": "Core.Description", "value": "A list of the source(s) of water for the property" } ] @@ -11585,12 +13355,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Waterfront Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WaterfrontFeatures+Field" }, { + "term": "Core.Description", "value": "Features of the waterfront on which the property is located." } ] @@ -11604,12 +13377,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Waterfront Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WaterfrontYN+Field" }, { + "term": "Core.Description", "value": "The property is on the waterfront." } ] @@ -11623,12 +13399,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Window Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WindowFeatures+Field" }, { + "term": "Core.Description", "value": "A list of features or description of the windows included in the sale/lease." } ] @@ -11642,12 +13421,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Withdrawn Date" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WithdrawnDate+Field" }, { + "term": "Core.Description", "value": "Date the listing was withdrawn from the market. This is not when a listing contact was cancelled or closed, but a withdrawal from the market while the contract between the seller and listing agent is still in effect and an offer has not been accepted. This is the date entered by the agent reflecting when the change occurred contractually, not a timestamp of when the change was made in the MLS." } ] @@ -11663,12 +13445,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wooded Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WoodedArea+Field" }, { + "term": "Core.Description", "value": "Measurement or percentage of the property that is wooded or forest." } ] @@ -11684,12 +13469,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Workmans Compensation Expense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WorkmansCompensationExpense+Field" }, { + "term": "Core.Description", "value": "The annual expense that is not paid directly by the tenant and is included in the Operating Expense calculations." } ] @@ -11703,12 +13491,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Year Built" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/YearBuilt+Field" }, { + "term": "Core.Description", "value": "The year that an occupancy permit is first granted for the house or other local measure of initial habitability of the build. The type definition permits an empty value with an attribute noting that it is an unknown date or that the building is new construction. While constraints have not been applied, convention at the time of adoption has this as a four (4) digit year value." } ] @@ -11723,12 +13514,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Year Built Details" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/YearBuiltDetails+Field" }, { + "term": "Core.Description", "value": "A description of the details behind the year the structure was built." } ] @@ -11742,12 +13536,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Year Built Effective" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/YearBuiltEffective+Field" }, { + "term": "Core.Description", "value": "The year a major rebuild/renovated of the structure occurred." } ] @@ -11761,12 +13558,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Year Built Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/YearBuiltSource+Field" }, { + "term": "Core.Description", "value": "Add a list of sources of the year built. i.e. Appraiser, Assessor, Builder, Estimated, etc.," } ] @@ -11780,12 +13580,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Year Established" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/YearEstablished+Field" }, { + "term": "Core.Description", "value": "The year the business being sold was established." } ] @@ -11799,12 +13602,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Years Current Owner" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/YearsCurrentOwner+Field" }, { + "term": "Core.Description", "value": "The number of years the current owner has had possession of the business." } ] @@ -11819,12 +13625,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Zoning" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Zoning+Field" }, { + "term": "Core.Description", "value": "A division of the city or county into areas of different permissible land uses. This Zone field should be used for the short code that is commonly used. For full textual descriptions please use the ZoningDescription field." } ] @@ -11839,12 +13648,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Zoning Description" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ZoningDescription+Field" }, { + "term": "Core.Description", "value": "A list of descriptions of the zoning of the property. The zoning codes are often non-descriptive and variant. Zoning Description is a more descriptive form of the zoning for the property, i.e. Agricultural, Residential, Rezone Possible, etc. Specific zone codes must be added to the Zoning field." } ] @@ -11859,12 +13671,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Job Title" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/JobTitle+Field" }, { + "term": "Core.Description", "value": "The title or position of the member within their organization." } ] @@ -11879,12 +13694,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Last Login Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LastLoginTimestamp+Field" }, { + "term": "Core.Description", "value": "Date/time the member last logged into the source or other system." } ] @@ -11898,12 +13716,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member AOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberAOR+Field" }, { + "term": "Core.Description", "value": "The Member\u0027s Primary Board or Association of REALTORS." } ] @@ -11918,12 +13739,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member AOR MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberAORMlsId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier for the member\u0027s Association of REALTORS. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -11938,12 +13762,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member AOR Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberAORkey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the MemberAORkey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId." } ] @@ -11957,12 +13784,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member AOR Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberAORkeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the MemberAORkey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId. This is the numeric only key and used as an alternative to the MemberAORkey field." } ] @@ -11977,12 +13807,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Address 1" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberAddress1+Field" }, { + "term": "Core.Description", "value": "The street number, direction, name and suffix of the member." } ] @@ -11997,12 +13830,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Address 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberAddress2+Field" }, { + "term": "Core.Description", "value": "The unit/suite number of the member." } ] @@ -12017,12 +13853,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Association Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberAssociationComments+Field" }, { + "term": "Core.Description", "value": "The association\u0027s notes regarding the member." } ] @@ -12037,12 +13876,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Carrier Route" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberCarrierRoute+Field" }, { + "term": "Core.Description", "value": "The group of addresses to which the USPS assigns the same code to aid in mail delivery. For the USPS, these codes are 9 digits: 5 numbers for the ZIP Code, one letter for the carrier route type, and 3 numbers for the carrier route number." } ] @@ -12057,12 +13899,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member City" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberCity+Field" }, { + "term": "Core.Description", "value": "The city of the member." } ] @@ -12076,12 +13921,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Country" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberCountry+Field" }, { + "term": "Core.Description", "value": "The country abbreviation in a postal address." } ] @@ -12095,12 +13943,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member County Or Parish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberCountyOrParish+Field" }, { + "term": "Core.Description", "value": "The county or parish in which the member is addressed." } ] @@ -12114,12 +13965,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Designation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberDesignation+Field" }, { + "term": "Core.Description", "value": "Designations and certifications acknowledging experience and expertise in various real estate sectors are awarded by NAR and each affiliated group upon completion of required courses." } ] @@ -12134,12 +13988,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Direct Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberDirectPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -12154,12 +14011,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberEmail+Field" }, { + "term": "Core.Description", "value": "The email address of the Member." } ] @@ -12174,12 +14034,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -12194,12 +14057,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member First Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberFirstName+Field" }, { + "term": "Core.Description", "value": "The first name of the Member." } ] @@ -12214,12 +14080,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Full Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberFullName+Field" }, { + "term": "Core.Description", "value": "The full name of the Member. (First Middle Last) or a alternate full name." } ] @@ -12234,12 +14103,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Home Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberHomePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -12254,12 +14126,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Is Assistant To" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberIsAssistantTo+Field" }, { + "term": "Core.Description", "value": "The MemberMlsId of the Agent/Broker that this member is an assistant. The typical use will be to add the agent\u0027s ID to this field when editing the member record of the assistant." } ] @@ -12274,12 +14149,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the MemberKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemMemberKey and OriginatingSystemMemberKey." } ] @@ -12293,12 +14171,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the MemberKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemMemberKey and OriginatingSystemMemberKey." } ] @@ -12312,12 +14193,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Languages" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberLanguages+Field" }, { + "term": "Core.Description", "value": "The languages the member speaks." } ] @@ -12332,12 +14216,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Last Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberLastName+Field" }, { + "term": "Core.Description", "value": "The last name of the Member." } ] @@ -12352,12 +14239,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Login ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberLoginId+Field" }, { + "term": "Core.Description", "value": "The ID used to logon to the MLS system." } ] @@ -12372,12 +14262,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Middle Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberMiddleName+Field" }, { + "term": "Core.Description", "value": "The middle name of the Member." } ] @@ -12391,12 +14284,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member MLS Access Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberMlsAccessYN+Field" }, { + "term": "Core.Description", "value": "Does the member have access to the MLS system." } ] @@ -12411,12 +14307,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberMlsId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier for the member. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -12430,12 +14329,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member MLS Security Class" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberMlsSecurityClass+Field" }, { + "term": "Core.Description", "value": "The MLS security group or class given to the member." } ] @@ -12450,12 +14352,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Mobile Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberMobilePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -12470,12 +14375,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Name Prefix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberNamePrefix+Field" }, { + "term": "Core.Description", "value": "Prefix to the name (e.g. Dr. Mr. Ms. etc.)" } ] @@ -12490,12 +14398,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Name Suffix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberNameSuffix+Field" }, { + "term": "Core.Description", "value": "Suffix to the surname (e.g. Esq., Jr., III etc.)" } ] @@ -12510,12 +14421,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member National Association ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberNationalAssociationId+Field" }, { + "term": "Core.Description", "value": "The national association ID of the member. i.e. in the U.S. is the NRDS number." } ] @@ -12530,12 +14444,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Nickname" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberNickname+Field" }, { + "term": "Core.Description", "value": "An alternate name used by the Member, usually as a substitute for the first name." } ] @@ -12550,12 +14467,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Office Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberOfficePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -12570,12 +14490,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Office Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberOfficePhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -12589,12 +14512,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Other Phone Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberOtherPhoneType+Field" }, { + "term": "Core.Description", "value": "The type of \"other\" phone. i.e. Preferred, Office, Mobile, Direct, Home, Fax, Pager, Voicemail, Toll Free, SMS, 1, 2, 3, First, Second, Third, etc.. This is used as the list of options for the Member Other Phone repeating elements." } ] @@ -12609,12 +14535,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Pager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberPager+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -12629,12 +14558,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Password" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberPassword+Field" }, { + "term": "Core.Description", "value": "A password that the member whishes to share with other systems. Normal security considerations apply and are the responsibility of the entity utilizing this field." } ] @@ -12649,12 +14581,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Phone Tty/Tdd" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberPhoneTTYTDD+Field" }, { + "term": "Core.Description", "value": "(Telecommunications Device for the Deaf/TeleTYpewriter) A user terminal with keyboard input and printer or display output used by the hearing and speech impaired. The device contains a modem and is used over a standard analog phone line. If a recipient does not have a corresponding terminal device, TDD/TTY users dial a relay service composed of operators who receive the typed messages, call the recipients and speak the messages to them. The operators also type the responses back to the TDD/TTY user." } ] @@ -12669,12 +14604,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Postal Code" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberPostalCode+Field" }, { + "term": "Core.Description", "value": "The postal code of the member." } ] @@ -12689,12 +14627,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Postal Code Plus 4" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberPostalCodePlus4+Field" }, { + "term": "Core.Description", "value": "The extension of the postal/zip code. i.e. +4" } ] @@ -12709,12 +14650,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Preferred Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberPreferredPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -12729,12 +14673,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Preferred Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberPreferredPhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -12749,12 +14696,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member State License" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberStateLicense+Field" }, { + "term": "Core.Description", "value": "The license of the Member. Separate multiple licenses with a comma and space." } ] @@ -12768,12 +14718,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member State License State" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberStateLicenseState+Field" }, { + "term": "Core.Description", "value": "The state in which the member is licensed." } ] @@ -12787,12 +14740,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member State Or Province" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberStateOrProvince+Field" }, { + "term": "Core.Description", "value": "The state or province in which the member is addressed." } ] @@ -12806,12 +14762,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Status" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberStatus+Field" }, { + "term": "Core.Description", "value": "Is the account active, inactive or under disciplinary action." } ] @@ -12826,12 +14785,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Toll Free Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberTollFreePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -12845,12 +14807,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberType+Field" }, { + "term": "Core.Description", "value": "The type of member. i.e. Agent, Broker, Office Manager, Appraiser, Photographer, Assistants, MLO, Realtor, Association Staff, MLS Staff, etc." } ] @@ -12865,12 +14830,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Voice Mail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberVoiceMail+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -12885,12 +14853,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Voice Mail Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberVoiceMailExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -12905,12 +14876,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28Member%29+Field" }, { + "term": "Core.Description", "value": "Date/time the roster (member or office) record was last modified." } ] @@ -12925,12 +14899,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Office resource\u0027s OfficeKey." } ] @@ -12944,12 +14921,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set. This is a foreign key relating to the Office resource\u0027s OfficeKey. This is the numeric only key and used as an alternative to the MemberAORkey field." } ] @@ -12964,12 +14944,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeMlsId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -12984,12 +14967,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeName+Field" }, { + "term": "Core.Description", "value": "The legal name of the brokerage." } ] @@ -13004,12 +14990,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Original Entry Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginalEntryTimestamp+%28Member%29+Field" }, { + "term": "Core.Description", "value": "Date/time the roster (member or office) record was originally input into the source system." } ] @@ -13024,12 +15013,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemID+%28Member%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the member was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -13044,12 +15036,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Member Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemMemberKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the member was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -13064,12 +15059,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemName+%28Member%29+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the member is originally input by the member. The legal name of the company." } ] @@ -13083,12 +15081,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Social Media Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SocialMediaType+Field" }, { + "term": "Core.Description", "value": "A list of types of sites, blog, social media, the Member URL or ID is referring to. i.e. Website, Blog, Facebook, Twitter, LinkedIn, Skype, etc., This list is used to populate the Type with repeating Social Media URL or ID types." } ] @@ -13103,12 +15104,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemID+%28Member%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -13123,12 +15127,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Member Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemMemberKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -13143,12 +15150,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemName+%28Member%29+Field" }, { + "term": "Core.Description", "value": "The name of the immediate record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -13162,12 +15172,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Syndicate To" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SyndicateTo+%28Member%29+Field" }, { + "term": "Core.Description", "value": "When permitted by the broker, the options made by the individual agent on where they would like their listings syndicated. i.e. Zillow, Trulia, Homes.com, etc." } ] @@ -13182,12 +15195,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Franchise Affiliation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FranchiseAffiliation+Field" }, { + "term": "Core.Description", "value": "The name of the franchise to which the broker/office is contracted." } ] @@ -13201,12 +15217,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IDX Office Participation Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IDXOfficeParticipationYN+Field" }, { + "term": "Core.Description", "value": "Does the Office/Broker participate in IDX." } ] @@ -13221,12 +15240,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Main Office Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MainOfficeKey+Field" }, { + "term": "Core.Description", "value": "OfficeKey of the Main Office in a firm/company of offices. This is a self referencing foreign key relating to this resource\u0027s OfficeKey. This key may be the same value as the OfficeKey for a given record if the given office is the Main Office." } ] @@ -13240,12 +15262,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Main Office Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MainOfficeKeyNumeric+Field" }, { + "term": "Core.Description", "value": "OfficeKey of the Main Office in a firm/company of offices. This is a self referencing foreign key relating to this resource\u0027s OfficeKey. This key may be the same value as the OfficeKey for a given record if the given office is the Main Office. This is the numeric only key and used as an alternative to the MainOfficeKey field." } ] @@ -13260,12 +15285,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Main Office MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MainOfficeMlsId+Field" }, { + "term": "Core.Description", "value": "OfficeMlsId of the Main Office in a firm/company of offices." } ] @@ -13280,12 +15308,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28Office%29+Field" }, { + "term": "Core.Description", "value": "Date/time the roster (member or office) record was last modified." } ] @@ -13299,12 +15330,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office AOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeAOR+Field" }, { + "term": "Core.Description", "value": "The Office\u0027s Board or Association of REALTORS." } ] @@ -13319,12 +15353,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office AOR MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeAORMlsId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier for the office\u0027s Association of REALTORS. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -13339,12 +15376,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office AOR Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeAORkey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the OfficeAORkey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId. This is a foreign key relating to the AOR\u0027s member management system in which the record was originated." } ] @@ -13358,12 +15398,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office AOR Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeAORkeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the OfficeAORkey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId. This is a foreign key relating to the AOR\u0027s member management system in which the record was originated. This is the numeric only key and used as an alternative to the OfficeAORkey field." } ] @@ -13378,12 +15421,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Address 1" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeAddress1+Field" }, { + "term": "Core.Description", "value": "The street number, direction, name and suffix of the office." } ] @@ -13398,12 +15444,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Address 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeAddress2+Field" }, { + "term": "Core.Description", "value": "The unit/suite number of the office." } ] @@ -13418,12 +15467,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Association Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeAssociationComments+Field" }, { + "term": "Core.Description", "value": "Notes relating to the office." } ] @@ -13437,12 +15489,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Branch Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeBranchType+Field" }, { + "term": "Core.Description", "value": "The level of the office in the hierarchy of Main, Branch, Stand Alone, etc.," } ] @@ -13457,12 +15512,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Broker Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeBrokerKey+Field" }, { + "term": "Core.Description", "value": "The MemberKey of the responsible/owning broker. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -13476,12 +15534,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Broker Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeBrokerKeyNumeric+Field" }, { + "term": "Core.Description", "value": "The MemberKey of the responsible/owning broker. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the OfficeBrokerKey field." } ] @@ -13496,12 +15557,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Broker MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeBrokerMlsId+Field" }, { + "term": "Core.Description", "value": "The MemberMlsId of the responsible/owning broker." } ] @@ -13516,12 +15580,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office City" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeCity+Field" }, { + "term": "Core.Description", "value": "The city of the office." } ] @@ -13536,12 +15603,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Corporate License" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeCorporateLicense+Field" }, { + "term": "Core.Description", "value": "When an office/firm is a corporation, an independent license number is issued." } ] @@ -13555,12 +15625,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office County Or Parish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeCountyOrParish+Field" }, { + "term": "Core.Description", "value": "The county or parish in which the offices is located." } ] @@ -13575,12 +15648,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeEmail+Field" }, { + "term": "Core.Description", "value": "The email address of the office" } ] @@ -13595,12 +15671,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -13615,12 +15694,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeKey+%28Office%29+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set." } ] @@ -13634,12 +15716,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeKeyNumeric+%28Office%29+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the OfficeKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemOfficeKey and OriginatingSystemOfficeKey." } ] @@ -13654,12 +15739,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Manager Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeManagerKey+Field" }, { + "term": "Core.Description", "value": "The lead Office Manager for the given office. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -13673,12 +15761,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Manager Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeManagerKeyNumeric+Field" }, { + "term": "Core.Description", "value": "The lead Office Manager for the given office. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the OfficeManagerKey field." } ] @@ -13693,12 +15784,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Manager MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeManagerMlsId+Field" }, { + "term": "Core.Description", "value": "The lead Office Manager for the given office." } ] @@ -13713,12 +15807,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeMlsId+%28Office%29+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -13733,12 +15830,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeName+%28Office%29+Field" }, { + "term": "Core.Description", "value": "The legal name of the brokerage." } ] @@ -13753,12 +15853,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office National Association ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeNationalAssociationId+Field" }, { + "term": "Core.Description", "value": "The national association ID of the office. i.e. in the U.S. is the NRDS number." } ] @@ -13773,12 +15876,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -13793,12 +15899,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficePhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -13813,12 +15922,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Postal Code" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficePostalCode+Field" }, { + "term": "Core.Description", "value": "The postal code of the office." } ] @@ -13833,12 +15945,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Postal Code Plus 4" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficePostalCodePlus4+Field" }, { + "term": "Core.Description", "value": "The extension of the postal/zip code. i.e. +4" } ] @@ -13852,12 +15967,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office State Or Province" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeStateOrProvince+Field" }, { + "term": "Core.Description", "value": "The state or province in which the office is located." } ] @@ -13871,12 +15989,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Status" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeStatus+Field" }, { + "term": "Core.Description", "value": "Is the office active, inactive or under disciplinary action." } ] @@ -13890,12 +16011,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficeType+Field" }, { + "term": "Core.Description", "value": "The type of business conducted by the office. i.e. Real Estate, Appraiser, etc." } ] @@ -13910,12 +16034,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Original Entry Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginalEntryTimestamp+%28Office%29+Field" }, { + "term": "Core.Description", "value": "Date/time the roster (member or office) record was originally input into the source system." } ] @@ -13930,12 +16057,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemID+%28Office%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the office was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -13950,12 +16080,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemName+%28Office%29+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the office is originally input by the member. The legal name of the company." } ] @@ -13970,12 +16103,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Office Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemOfficeKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the office was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -13989,12 +16125,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Social Media Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SocialMediaType+%28Office%29+Field" }, { + "term": "Core.Description", "value": "A list of types of sites, blog, social media, the Office URL or ID is referring to. i.e. Website, Blog, Facebook, Twitter, LinkedIn, Skype, etc., This list is used to populate the Type with repeating Social Media URL or ID types." } ] @@ -14009,12 +16148,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemID+%28Office%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -14029,12 +16171,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemName+%28Office%29+Field" }, { + "term": "Core.Description", "value": "The name of the immediate record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -14049,12 +16194,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Office Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemOfficeKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -14068,12 +16216,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Syndicate Agent Option" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SyndicateAgentOption+Field" }, { + "term": "Core.Description", "value": "A list of options allowing the broker to pass the decision of syndication choice down to the listing agents. i.e. No Agent Choice, Allow Agent Choice, Restrict Agent Choice, etc." } ] @@ -14087,12 +16238,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Syndicate To" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SyndicateTo+%28Office%29+Field" }, { + "term": "Core.Description", "value": "The principal broker\u0027s choice on where they would like their listings syndicated. i.e. Zillow, Trulia, Homes.com, etc." } ] @@ -14106,12 +16260,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Anniversary" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Anniversary+Field" }, { + "term": "Core.Description", "value": "The wedding anniversary of the contact; month, day and year." } ] @@ -14126,12 +16283,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assistant Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssistantEmail+Field" }, { + "term": "Core.Description", "value": "Email address of the contact\u0027s assistant." } ] @@ -14146,12 +16306,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assistant Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssistantName+Field" }, { + "term": "Core.Description", "value": "Name of the contact\u0027s assistant." } ] @@ -14166,12 +16329,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assistant Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssistantPhone+Field" }, { + "term": "Core.Description", "value": "Phone number of the contact\u0027s assistant." } ] @@ -14186,12 +16352,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assistant Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AssistantPhoneExt+Field" }, { + "term": "Core.Description", "value": "Phone number extension of the contact\u0027s assistant." } ] @@ -14205,12 +16374,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Birthdate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Birthdate+Field" }, { + "term": "Core.Description", "value": "The birthday of the contact; month, day and year." } ] @@ -14225,12 +16397,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Business Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BusinessFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -14245,12 +16420,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Children" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Children+Field" }, { + "term": "Core.Description", "value": "A list of the names of the contact\u0027s children in a comma separated list." } ] @@ -14265,12 +16443,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Company" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Company+Field" }, { + "term": "Core.Description", "value": "The contact\u0027s company or employer." } ] @@ -14285,12 +16466,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the ContactKey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId." } ] @@ -14304,12 +16488,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the ContactKey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId. This is the numeric only key and used as an alternative to the ContactKey field." } ] @@ -14324,12 +16511,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Login ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactLoginId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier for the contact. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system and is used by the Contact to logon to a client portal in that system." } ] @@ -14344,12 +16534,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Password" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactPassword+Field" }, { + "term": "Core.Description", "value": "A client password that the member wishes to share with other systems. Normal security considerations apply and are the responsibility of the entity utilizing this field." } ] @@ -14363,12 +16556,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Status" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactStatus+Field" }, { + "term": "Core.Description", "value": "The status of the contact. Active, Inactive, On Vacation, Deleted, etc.," } ] @@ -14382,12 +16578,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactType+Field" }, { + "term": "Core.Description", "value": "The type of contact. i.e. Business, Friend, Family, Prospect, Ready to Buy, etc." } ] @@ -14402,12 +16601,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Department" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Department+Field" }, { + "term": "Core.Description", "value": "The department in which the contact works." } ] @@ -14422,12 +16624,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Direct Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DirectPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -14442,12 +16647,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Email+Field" }, { + "term": "Core.Description", "value": "The preferred Email address of the contact." } ] @@ -14462,12 +16670,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Email 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Email2+Field" }, { + "term": "Core.Description", "value": "The secondary email address of the contact." } ] @@ -14482,12 +16693,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Email 3" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Email3+Field" }, { + "term": "Core.Description", "value": "The tertiary email address of the contact." } ] @@ -14502,12 +16716,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "First Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FirstName+Field" }, { + "term": "Core.Description", "value": "The first name of the Contact." } ] @@ -14522,12 +16739,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Full Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FullName+Field" }, { + "term": "Core.Description", "value": "The full name of the Contact. (First Middle Last) or a alternate full name." } ] @@ -14542,12 +16762,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Address 1" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HomeAddress1+Field" }, { + "term": "Core.Description", "value": "The street number, direction, name and suffix of the contact\u0027s home." } ] @@ -14562,12 +16785,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Address 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HomeAddress2+Field" }, { + "term": "Core.Description", "value": "The unit/suite number of the contact\u0027s home." } ] @@ -14582,12 +16808,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Carrier Route" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HomeCarrierRoute+Field" }, { + "term": "Core.Description", "value": "The group of addresses to which the USPS assigns the same code to aid in mail delivery. For the USPS, these codes are 9 digits: 5 numbers for the ZIP Code, one letter for the carrier route type, and 3 numbers for the carrier route number." } ] @@ -14602,12 +16831,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home City" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HomeCity+Field" }, { + "term": "Core.Description", "value": "The city of the contact\u0027s home." } ] @@ -14621,12 +16853,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Country" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HomeCountry+Field" }, { + "term": "Core.Description", "value": "The country abbreviation in a postal address." } ] @@ -14640,12 +16875,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home County Or Parish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HomeCountyOrParish+Field" }, { + "term": "Core.Description", "value": "The county or parish in which the contact\u0027s home is addressed." } ] @@ -14660,12 +16898,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HomeFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -14680,12 +16921,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HomePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -14700,12 +16944,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Postal Code" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HomePostalCode+Field" }, { + "term": "Core.Description", "value": "The postal code of the contact\u0027s home." } ] @@ -14720,12 +16967,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Postal Code Plus 4" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HomePostalCodePlus4+Field" }, { + "term": "Core.Description", "value": "The extension of the postal/zip code. i.e. +4" } ] @@ -14739,12 +16989,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home State Or Province" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HomeStateOrProvince+Field" }, { + "term": "Core.Description", "value": "The state or province in which the contact\u0027s home is addressed." } ] @@ -14759,12 +17012,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Job Title" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/JobTitle+%28Contacts%29+Field" }, { + "term": "Core.Description", "value": "The title or position of the contact within their organization." } ] @@ -14778,12 +17034,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Language" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Language+Field" }, { + "term": "Core.Description", "value": "The languages spoken by the contact." } ] @@ -14798,12 +17057,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Last Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LastName+Field" }, { + "term": "Core.Description", "value": "The last name of the Contact." } ] @@ -14818,12 +17080,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lead Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LeadSource+Field" }, { + "term": "Core.Description", "value": "The source or person that provided the contact." } ] @@ -14838,12 +17103,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Middle Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MiddleName+Field" }, { + "term": "Core.Description", "value": "The middle name of the Contact." } ] @@ -14858,12 +17126,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mobile Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MobilePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -14878,12 +17149,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28Contacts%29+Field" }, { + "term": "Core.Description", "value": "Date/time the contact record was last modified." } ] @@ -14898,12 +17172,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Name Prefix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NamePrefix+Field" }, { + "term": "Core.Description", "value": "Prefix to the name (e.g. Dr. Mr. Ms. etc.)" } ] @@ -14918,12 +17195,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Name Suffix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NameSuffix+Field" }, { + "term": "Core.Description", "value": "Suffix to the surname (e.g. Esq., Jr., III etc.)" } ] @@ -14938,12 +17218,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Nickname" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Nickname+Field" }, { + "term": "Core.Description", "value": "An alternate name used by the Contact, usually as a substitute for the first name." } ] @@ -14958,12 +17241,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Notes" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Notes+Field" }, { + "term": "Core.Description", "value": "Notes about the client." } ] @@ -14978,12 +17264,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficePhone+%28Contacts%29+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -14998,12 +17287,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OfficePhoneExt+%28Contacts%29+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -15018,12 +17310,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Original Entry Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginalEntryTimestamp+%28Contacts%29+Field" }, { + "term": "Core.Description", "value": "Date/time the contact record was originally input into the source system." } ] @@ -15038,12 +17333,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Contact Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemContactKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the Contact was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -15058,12 +17356,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemID+%28Contacts%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the Contact was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -15078,12 +17379,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemName+%28Contacts%29+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the Contact is originally input by the member. The legal name of the company." } ] @@ -15098,12 +17402,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Address 1" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherAddress1+Field" }, { + "term": "Core.Description", "value": "The other street number, direction, name and suffix of the contact." } ] @@ -15118,12 +17425,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Address 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherAddress2+Field" }, { + "term": "Core.Description", "value": "The other unit/suite number of the contact." } ] @@ -15138,12 +17448,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Carrier Route" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherCarrierRoute+Field" }, { + "term": "Core.Description", "value": "The group of addresses to which the USPS assigns the same code to aid in mail delivery. For the USPS, these codes are 9 digits: 5 numbers for the ZIP Code, one letter for the carrier route type, and 3 numbers for the carrier route number." } ] @@ -15158,12 +17471,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other City" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherCity+Field" }, { + "term": "Core.Description", "value": "The other city of the contact." } ] @@ -15177,12 +17493,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Country" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherCountry+Field" }, { + "term": "Core.Description", "value": "The other country abbreviation in a postal address." } ] @@ -15196,12 +17515,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other County Or Parish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherCountyOrParish+Field" }, { + "term": "Core.Description", "value": "The other county or parish in which contact is addressed." } ] @@ -15215,12 +17537,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Phone Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherPhoneType+Field" }, { + "term": "Core.Description", "value": "The type of \"other\" phone that does not already exist in the given phone fields or if a second of any type of phone field is needed. i.e. HomePhone2, BrothersPhone, etc. This is used as the list of options for the Other Phone repeating elements." } ] @@ -15235,12 +17560,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Postal Code" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherPostalCode+Field" }, { + "term": "Core.Description", "value": "The other postal code of the contact." } ] @@ -15255,12 +17583,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Postal Code Plus 4" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherPostalCodePlus4+Field" }, { + "term": "Core.Description", "value": "The other extension of the postal/zip code. i.e. +4" } ] @@ -15274,12 +17605,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other State Or Province" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherStateOrProvince+Field" }, { + "term": "Core.Description", "value": "The other state or province in which the contact is addressed." } ] @@ -15294,12 +17628,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner Member ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OwnerMemberID+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier for the member owning the contact." } ] @@ -15314,12 +17651,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner Member Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OwnerMemberKey+Field" }, { + "term": "Core.Description", "value": "The unique identifier (key) of the member owning the contact. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -15333,12 +17673,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner Member Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OwnerMemberKeyNumeric+Field" }, { + "term": "Core.Description", "value": "The unique identifier (key) of the member owning the contact. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the OwnerMemberKey field." } ] @@ -15353,12 +17696,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pager+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -15373,12 +17719,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Phone Tty/Tdd" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PhoneTTYTDD+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -15392,12 +17741,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Preferred Address" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PreferredAddress+Field" }, { + "term": "Core.Description", "value": "A list of the address options Home, Work and Other used to determine the address preferred by the client." } ] @@ -15411,12 +17763,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Preferred Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PreferredPhone+Field" }, { + "term": "Core.Description", "value": "A list of the phone options Office, Mobile, Direct, Voicemail, Other used to determine the phone preferred by the client." } ] @@ -15431,12 +17786,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Referred By" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ReferredBy+Field" }, { + "term": "Core.Description", "value": "Name of the person who referred the contact." } ] @@ -15450,12 +17808,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Social Media Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SocialMediaType+%28Contacts%29+Field" }, { + "term": "Core.Description", "value": "A list of types of sites, blog, social media, the Contact URL or ID is referring to. i.e. Website, Blog, Facebook, Twitter, LinkedIn, Skype, etc., This list is used to populate the Type with repeating Social Media URL or ID types." } ] @@ -15470,12 +17831,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Contact Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemContactKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -15490,12 +17854,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemID+%28Contacts%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -15510,12 +17877,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemName+%28Contacts%29+Field" }, { + "term": "Core.Description", "value": "The name of the immediate record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -15530,12 +17900,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Spouse Partner Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SpousePartnerName+Field" }, { + "term": "Core.Description", "value": "The contact\u0027s spouse or partner." } ] @@ -15550,12 +17923,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Toll Free Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TollFreePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -15570,12 +17946,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Voice Mail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VoiceMail+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -15590,12 +17969,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Voice Mail Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VoiceMailExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -15610,12 +17992,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Work Address 1" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WorkAddress1+Field" }, { + "term": "Core.Description", "value": "The street number, direction, name and suffix of the contact\u0027s work." } ] @@ -15630,12 +18015,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Work Address 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WorkAddress2+Field" }, { + "term": "Core.Description", "value": "The unit/suite number of the contact\u0027s work." } ] @@ -15650,12 +18038,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Work Carrier Route" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WorkCarrierRoute+Field" }, { + "term": "Core.Description", "value": "The group of addresses to which the USPS assigns the same code to aid in mail delivery. For the USPS, these codes are 9 digits: 5 numbers for the ZIP Code, one letter for the carrier route type, and 3 numbers for the carrier route number." } ] @@ -15670,12 +18061,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Work City" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WorkCity+Field" }, { + "term": "Core.Description", "value": "The city of the contact\u0027s work." } ] @@ -15689,12 +18083,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Work Country" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WorkCountry+Field" }, { + "term": "Core.Description", "value": "The country abbreviation in a postal address." } ] @@ -15708,12 +18105,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Work County Or Parish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WorkCountyOrParish+Field" }, { + "term": "Core.Description", "value": "The county or parish in which the contact\u0027s work is addressed." } ] @@ -15728,12 +18128,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Work Postal Code" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WorkPostalCode+Field" }, { + "term": "Core.Description", "value": "The postal code of the contact\u0027s work." } ] @@ -15748,12 +18151,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Work Postal Code Plus 4" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WorkPostalCodePlus4+Field" }, { + "term": "Core.Description", "value": "The extension of the postal/zip code. i.e. +4" } ] @@ -15767,12 +18173,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Work State Or Province" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WorkStateOrProvince+Field" }, { + "term": "Core.Description", "value": "The state or province in which the contact\u0027s work is addressed." } ] @@ -15787,12 +18196,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Changed By Member ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ChangedByMemberID+Field" }, { + "term": "Core.Description", "value": "ID of the user, agent, member, etc., that uploaded the media this record refers to." } ] @@ -15807,12 +18219,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Changed By Member Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ChangedByMemberKey+Field" }, { + "term": "Core.Description", "value": "The primary key of the member who uploaded the media this record refers to. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -15826,12 +18241,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Changed By Member Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ChangedByMemberKeyNumeric+Field" }, { + "term": "Core.Description", "value": "The primary key of the member who uploaded the media this record refers to. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the ChangedByMemberKey field." } ] @@ -15845,12 +18263,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Class Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ClassName+Field" }, { + "term": "Core.Description", "value": "The class or table of the listing or other record the media. Residential, Lease, Agent, Office, Contact, etc." } ] @@ -15864,12 +18285,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Image Height" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ImageHeight+Field" }, { + "term": "Core.Description", "value": "The height of the image expressed in pixels." } ] @@ -15883,12 +18307,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Image Of" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ImageOf+Field" }, { + "term": "Core.Description", "value": "When the media is an image, a list of possible matches such as kitchen, bathroom, front of structure, etc. This field may be used to identify a required image under association or MLS rules." } ] @@ -15902,12 +18329,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Image Size Description" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ImageSizeDescription+Field" }, { + "term": "Core.Description", "value": "A text description of the size of the image. i.e. Small, Thumbnail, Medium, Large, X-Large. The largest image must be described as \"Largest\". Thumbnail must also be included. Pick List will remain open/extendable." } ] @@ -15921,12 +18351,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Image Width" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ImageWidth+Field" }, { + "term": "Core.Description", "value": "The width of the image expressed in pixels." } ] @@ -15941,12 +18374,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Long Description" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LongDescription+Field" }, { + "term": "Core.Description", "value": "The full robust description of the object." } ] @@ -15960,12 +18396,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Media Category" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MediaCategory+Field" }, { + "term": "Core.Description", "value": "Category describing the , Photos, Documents, Video, Unbranded Virtual Tour, Branded Virtual Tour, Floor Plan, Logo" } ] @@ -15980,12 +18419,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Media HTML" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MediaHTML+Field" }, { + "term": "Core.Description", "value": "The JavaScript or other method to embed a video, image, virtual tour or other media." } ] @@ -16000,12 +18442,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Media Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MediaKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record." } ] @@ -16019,12 +18464,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Media Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MediaKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record. This is the numeric only key and used as an alternative to the MediaKey field." } ] @@ -16039,12 +18487,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Media Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MediaModificationTimestamp+Field" }, { + "term": "Core.Description", "value": "This timestamp is updated when a change to the object has been made, which may differ from a change to the Media Resource." } ] @@ -16059,12 +18510,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Media Object ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MediaObjectID+Field" }, { + "term": "Core.Description", "value": "ID of the image, supplement or other object specified by the given media record." } ] @@ -16078,12 +18532,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Media Status" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MediaStatus+Field" }, { + "term": "Core.Description", "value": "The status of the media item referenced by this record. (Updated, Deleted, etc.,_" } ] @@ -16097,12 +18554,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Media Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MediaType+Field" }, { + "term": "Core.Description", "value": "Media Types as defined by IANA. http://www.iana.org/assignments/media-types/index.html. Note that the former name of MimeType, used by both IANA and RESO may still be in use by some systems/entities." } ] @@ -16117,12 +18577,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Media URL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MediaURL+Field" }, { + "term": "Core.Description", "value": "The URI to the media file referenced by this record." } ] @@ -16137,12 +18600,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28Media%29+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the date/time the media record was last modified." } ] @@ -16156,12 +18622,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Order" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Order+Field" }, { + "term": "Core.Description", "value": "Only a positive integer including zero. Element zero is the primary photo per RETS convention." } ] @@ -16176,12 +18645,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemID+%28Media%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the Media was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -16196,12 +18668,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Media Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemMediaKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the Media was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -16216,12 +18691,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemName+%28Media%29+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the Media is originally input by the member. The legal name of the company." } ] @@ -16235,12 +18713,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Permission" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Permission+Field" }, { + "term": "Core.Description", "value": "Public, Private, IDX, VOW, Office Only, Firm Only, Agent Only," } ] @@ -16254,12 +18735,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Preferred Photo Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PreferredPhotoYN+Field" }, { + "term": "Core.Description", "value": "When set to true, the media record in question is the preferred photo. This will typically mean the photo to be shown when only one of the photos is to be displayed." } ] @@ -16273,12 +18757,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceName+Field" }, { + "term": "Core.Description", "value": "The resource or table of the listing or other record the media relates to. i.e. Property, Member, Office, etc." } ] @@ -16293,12 +18780,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordID+Field" }, { + "term": "Core.Description", "value": "The well known identifier of the related record from the source resource. The value may be identical to that of the Listing Key, but the Listing ID is intended to be the value used by a human to retrieve the information about a specific listing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -16313,12 +18803,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordKey+Field" }, { + "term": "Core.Description", "value": "The primary key of the related record from the source resource. For example the ListingKey, AgentKey, OfficeKey, TeamKey, etc. This is the system you are connecting to and not necessarily the original source of the record. This is a foreign key from the resource selected in the ResourceName field." } ] @@ -16332,12 +18825,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordKeyNumeric+Field" }, { + "term": "Core.Description", "value": "The primary key of the related record from the source resource. For example the ListingKey, AgentKey, OfficeKey, TeamKey, etc. This is the system you are connecting to and not necessarily the original source of the record. This is a foreign key from the resource selected in the ResourceName field. This is the numeric only key and used as an alternative to the ResourceRecordKey field." } ] @@ -16352,12 +18848,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Short Description" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShortDescription+Field" }, { + "term": "Core.Description", "value": "The short text given to summarize the object. Commonly used as the short description displayed under a photo." } ] @@ -16372,12 +18871,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemID+%28Media%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -16392,12 +18894,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Media Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemMediaKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -16412,12 +18917,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemName+%28Media%29+Field" }, { + "term": "Core.Description", "value": "The name of the immediate record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -16431,12 +18939,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Change Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ChangeType+Field" }, { + "term": "Core.Description", "value": "Description of the last major change on the listing, i.e. price reduction, back on market, etc. May be used to display on a summary view of listing results to quickly identify listings that have had major changes recently." } ] @@ -16451,12 +18962,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Changed By Member ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ChangedByMemberID+%28HistoryTransactional%29+Field" }, { + "term": "Core.Description", "value": "The local, well-know identifier of the member (user) who made the change." } ] @@ -16471,12 +18985,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Changed By Member Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ChangedByMemberKey+%28HistoryTransactional%29+Field" }, { + "term": "Core.Description", "value": "The unique identifier of the member (user) who made the change. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -16490,12 +19007,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Changed By Member Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ChangedByMemberKeyNumeric+%28HistoryTransactional%29+Field" }, { + "term": "Core.Description", "value": "The unique identifier of the member (user) who made the change. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the ChangedByMemberKey field." } ] @@ -16510,12 +19030,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Class Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ClassName+%28HistoryTransactional%29+Field" }, { + "term": "Core.Description", "value": "Name of the class which this history record applies." } ] @@ -16530,12 +19053,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Field Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FieldKey+Field" }, { + "term": "Core.Description", "value": "The unique identifier of the field whose data is being changed. This is a foreign key relating to the field found in the resource per the ResourceName." } ] @@ -16549,12 +19075,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Field Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FieldKeyNumeric+Field" }, { + "term": "Core.Description", "value": "The unique identifier of the field whose data is being changed. This is a foreign key relating to the field found in the resource per the ResourceName. This is the numeric only key and used as an alternative to the FieldKey field." } ] @@ -16569,12 +19098,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Field Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FieldName+Field" }, { + "term": "Core.Description", "value": "The name of the field whose data is being changed." } ] @@ -16589,12 +19121,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "History Transactional Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HistoryTransactionalKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record." } ] @@ -16608,12 +19143,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "History Transactional Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HistoryTransactionalKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record. This is the numeric only key and used as an alternative to the HistoryTransactionalKey field." } ] @@ -16628,12 +19166,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28HistoryTransactional%29+Field" }, { + "term": "Core.Description", "value": "Timestamp of the last major change on the listing (see also MajorChangeType)." } ] @@ -16648,12 +19189,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "New Value" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NewValue+Field" }, { + "term": "Core.Description", "value": "The new value applied to the named field." } ] @@ -16668,12 +19212,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System History Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemHistoryKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the History was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -16688,12 +19235,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemID+%28HistoryTransactional%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the History was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -16708,12 +19258,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemName+%28HistoryTransactional%29+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the History is originally input. The legal name of the company." } ] @@ -16728,12 +19281,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Previous Value" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PreviousValue+Field" }, { + "term": "Core.Description", "value": "The value found in the named field prior to the change represented by this record." } ] @@ -16748,12 +19304,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceName+%28HistoryTransactional%29+Field" }, { + "term": "Core.Description", "value": "The name of the resource which this history record applies." } ] @@ -16768,12 +19327,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordID+%28HistoryTransactional%29+Field" }, { + "term": "Core.Description", "value": "The well known identifier of the related record from the source resource. The value may be identical to that of the Listing Key, but the Listing ID is intended to be the value used by a human to retrieve the information about a specific listing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -16788,12 +19350,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordKey+%28HistoryTransactional%29+Field" }, { + "term": "Core.Description", "value": "The primary key of the related record from the source resource. For example the ListingKey, AgentKey, OfficeKey, etc. This is the system you are connecting to and not necessarily the original source of the record. This is a foreign key from the resource selected in the ResourceName field." } ] @@ -16807,12 +19372,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordKeyNumeric+%28HistoryTransactional%29+Field" }, { + "term": "Core.Description", "value": "The primary key of the related record from the source resource. For example the ListingKey, AgentKey, OfficeKey, etc. This is the system you are connecting to and not necessarily the original source of the record. This is a foreign key from the resource selected in the ResourceName field. This is the numeric only key and used as an alternative to the ResourceRecordKey field." } ] @@ -16827,12 +19395,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System History Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemHistoryKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -16847,12 +19418,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemID+%28HistoryTransactional%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -16867,12 +19441,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemName+%28HistoryTransactional%29+Field" }, { + "term": "Core.Description", "value": "The name of the History record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -16886,12 +19463,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agent Notes Unread Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AgentNotesUnreadYN+Field" }, { + "term": "Core.Description", "value": "When True, one or more of the agent notes are unread." } ] @@ -16905,12 +19485,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Class Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246771" }, { + "term": "Core.Description", "value": "The name of the class where the listing record is located." } ] @@ -16925,12 +19508,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactKey+%28ContactListings%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the Contact resource. A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the ContactKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey variants." } ] @@ -16944,12 +19530,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactKeyNumeric+%28ContactListings%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the Contact resource. A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the ContactKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKeyNumeric and OriginatingSystemKeyNumeric variants." } ] @@ -16963,12 +19552,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Listing Preference" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactListingPreference+Field" }, { + "term": "Core.Description", "value": "The contacts preference selection on the given listing. Favorite, Possibility or Discard." } ] @@ -16983,12 +19575,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Listings Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactListingsKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set.." } ] @@ -17002,12 +19597,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Listings Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactListingsKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record. This is the numeric only key and used as an alternative to the ContactListingsKey field." } ] @@ -17022,12 +19620,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Login ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactLoginId+%28ContactListings%29+Field" }, { + "term": "Core.Description", "value": "This is a foreign key refering to the Contact Resource\u0027s local, well-known identifier for the contact. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system and is used by the Contact to logon to a client portal in that system." } ] @@ -17041,12 +19642,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Notes Unread Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactNotesUnreadYN+Field" }, { + "term": "Core.Description", "value": "When True, one or more of the contacts notes are unread." } ] @@ -17060,12 +19664,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Direct Email Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DirectEmailYN+Field" }, { + "term": "Core.Description", "value": "If True, the email was a direct email sent to the client by the member. If False the email was an auto email." } ] @@ -17080,12 +19687,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Last Agent Note Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LastAgentNoteTimestamp+Field" }, { + "term": "Core.Description", "value": "The Date/Time the Member last added or updated a ListingNote." } ] @@ -17100,12 +19710,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Last Contact Note Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LastContactNoteTimestamp+Field" }, { + "term": "Core.Description", "value": "The Date/Time the Contact last added or updated a ListingNote." } ] @@ -17120,12 +19733,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingId+%28ContactListings%29+Field" }, { + "term": "Core.Description", "value": "The well known identifier for the listing. The value may be identical to that of the Listing Key, but the Listing ID is intended to be the value used by a human to retrieve the information about a specific listing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -17140,12 +19756,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKey+%28ContactListings%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key related to the Property Resource\u0027s unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the ListingKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -17159,12 +19778,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKeyNumeric+%28ContactListings%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key related to the Property Resource\u0027s unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the ListingKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -17179,12 +19801,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingModificationTimestamp+Field" }, { + "term": "Core.Description", "value": "The last time the listing was updated. This does not refer to the ContactListing record, but changes to the referenced listing." } ] @@ -17199,12 +19824,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Sent Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingSentTimestamp+Field" }, { + "term": "Core.Description", "value": "The Date/Time the listing was sent to the contact." } ] @@ -17218,12 +19846,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Viewed Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingViewedYN+Field" }, { + "term": "Core.Description", "value": "When True, the Client has viewed the listing. This is typically when the client clicks to view a detailed report, rather than seen in a one line or thumbnail display." } ] @@ -17238,12 +19869,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28ContactListings%29+Field" }, { + "term": "Core.Description", "value": "The Date/Time that the ContactListing record was last modified." } ] @@ -17258,12 +19892,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Portal Last Visited Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PortalLastVisitedTimestamp+Field" }, { + "term": "Core.Description", "value": "The Date/Time the listing was last viewed by the Contact." } ] @@ -17277,12 +19914,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceName+%28ContactListings%29+Field" }, { + "term": "Core.Description", "value": "The name of the resource where the listing record is located." } ] @@ -17297,12 +19937,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor City" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorCity+Field" }, { + "term": "Core.Description", "value": "The city location of the Actor as recorded by the source." } ] @@ -17317,12 +19960,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorEmail+Field" }, { + "term": "Core.Description", "value": "The email address of the Actor in this event." } ] @@ -17337,12 +19983,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorID+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier the actor, provided by the source when applicable. This value may not be unique specifically in the case of aggregation systems, this value should be the human friendly identifier from the original system. Use of the ID may be common when the actor is an MLS or other software user. Otherwise, use the ActorKey or ActorKeyNumeric is recommended." } ] @@ -17357,12 +20006,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor IP" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorIP+Field" }, { + "term": "Core.Description", "value": "The recorded IP address of the Actor in this event. IPv4 addresses are 15 charaters and IPv6 addresses are a max of 39 characters. IP addresses should not omit leading zeros. i.e. 10.1.1.1 should appear as 010.001.001.001." } ] @@ -17377,12 +20029,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the MemberKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, utilize the SourceSystemActorKey and/or the OriginatingSystemActorKey." } ] @@ -17396,12 +20051,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the MemberKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, utilize the SourceSystemActorKey and/or the OriginatingSystemActorKey." } ] @@ -17417,12 +20075,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Latitude" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorLatitude+Field" }, { + "term": "Core.Description", "value": "The geographic latitude of some reference point for the location of the actor, specified in degrees and decimal parts. Positive numbers must not include the plus symbol." } ] @@ -17438,12 +20099,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Longitude" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorLongitude+Field" }, { + "term": "Core.Description", "value": "The geographic longitude of some reference point for the location of the actor, specified in degrees and decimal parts. Positive numbers must not include the plus symbol." } ] @@ -17458,12 +20122,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorOriginatingSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the listing was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -17478,12 +20145,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorOriginatingSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the listing is originally input by the member. The legal name of the company." } ] @@ -17498,12 +20168,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorPhone+Field" }, { + "term": "Core.Description", "value": "The phone number of the Actor in this event." } ] @@ -17518,12 +20191,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorPhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -17538,12 +20214,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Postal Code" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorPostalCode+Field" }, { + "term": "Core.Description", "value": "The postal code of the Actor." } ] @@ -17558,12 +20237,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Postal Code Plus4" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorPostalCodePlus4+Field" }, { + "term": "Core.Description", "value": "The extension of the postal/zip code. i.e. +4" } ] @@ -17578,12 +20260,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Region" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorRegion+Field" }, { + "term": "Core.Description", "value": "A geographical region defined by the source. For this use, the regoin is not specifically at the city, county, state, country or contenant level and this is typical in internet tracking standards." } ] @@ -17598,12 +20283,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorSourceSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -17618,12 +20306,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorSourceSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the immediate record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -17637,12 +20328,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor State Or Province" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorStateOrProvince+Field" }, { + "term": "Core.Description", "value": "The state or province location of the Actor as recorded by the source." } ] @@ -17656,12 +20350,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actor Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActorType+Field" }, { + "term": "Core.Description", "value": "A list of actor types; where the event was originated. (i.e. Agent, Consumer, Bot) In implementation this is typically a required field" } ] @@ -17675,12 +20372,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Color Depth" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ColorDepth+Field" }, { + "term": "Core.Description", "value": "The color depth of the Actor\u0027s device display" } ] @@ -17694,12 +20394,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Device Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DeviceType+Field" }, { + "term": "Core.Description", "value": "The device type used by the Actor (mobile, desktop etc...) in this event" } ] @@ -17714,12 +20417,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Event Description" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EventDescription+Field" }, { + "term": "Core.Description", "value": "A description of the event being tracked. (i.e. \"the listing was viewed\")" } ] @@ -17734,12 +20440,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Event Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EventKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the MemberKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, utilize the SourceSystemEventKey and/or the OriginatingSystemEventKey." } ] @@ -17753,12 +20462,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Event Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EventKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the MemberKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, utilize the SourceSystemEventKey and/or the OriginatingSystemEventKey." } ] @@ -17773,12 +20485,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Event Label" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EventLabel+Field" }, { + "term": "Core.Description", "value": "A short description of the Event being tracked." } ] @@ -17793,12 +20508,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Event Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EventOriginatingSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the listing was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -17813,12 +20531,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Event Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EventOriginatingSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the listing is originally input by the member. The legal name of the company." } ] @@ -17833,12 +20554,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Event Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EventSourceSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -17853,12 +20577,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Event Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EventSourceSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the immediate record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -17872,12 +20599,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Event Target" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EventTarget+Field" }, { + "term": "Core.Description", "value": "A defined target of the event type." } ] @@ -17892,12 +20622,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Event Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EventTimestamp+Field" }, { + "term": "Core.Description", "value": "A UTC timestamp of when the event being tracked occurred. In implementation this is typically a required field." } ] @@ -17911,12 +20644,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Event Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EventType+Field" }, { + "term": "Core.Description", "value": "The type of event being tracked. In implementation this is typically a required a field." } ] @@ -17931,12 +20667,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Object ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ObjectID+Field" }, { + "term": "Core.Description", "value": "An ID pertaining to the ObjectType (i.e. the MLS listing id for ObjectType.Listing). When the ObjectIdType is a property, this should be a PUID." } ] @@ -17950,12 +20689,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Object ID Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ObjectIdType+Field" }, { + "term": "Core.Description", "value": "A label that defines the ObjectID field (i.e. ObjectID is an MLS listing ID or ObjectID is a unique ID from the source...)" } ] @@ -17970,12 +20712,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Object Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ObjectKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the MemberKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, utilize the SourceSystemObjectKey and/or the OriginatingSystemObjectKey." } ] @@ -17989,12 +20734,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Object Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ObjectKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the MemberKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, utilize the SourceSystemObjectKey and/or the OriginatingSystemObjectKey." } ] @@ -18009,12 +20757,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Object Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ObjectOriginatingSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the listing was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -18029,12 +20780,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Object Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ObjectOriginatingSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the listing is originally input by the member. The legal name of the company." } ] @@ -18049,12 +20803,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Object Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ObjectSourceSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -18069,12 +20826,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Object Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ObjectSourceSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the immediate record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -18088,12 +20848,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Object Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ObjectType+Field" }, { + "term": "Core.Description", "value": "The type of Object being tracked in this event. In implementation this is typically a required field." } ] @@ -18108,12 +20871,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Object URL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ObjectURL+Field" }, { + "term": "Core.Description", "value": "The URL of the tracked event." } ] @@ -18128,12 +20894,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Actor Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemActorKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the member was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -18148,12 +20917,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Event Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemEventKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the member was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -18168,12 +20940,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Object Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemObjectKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the member was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -18188,12 +20963,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Referring URL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ReferringURL+Field" }, { + "term": "Core.Description", "value": "The referring URL of the tracked event." } ] @@ -18207,12 +20985,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Screen Height" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ScreenHeight+Field" }, { + "term": "Core.Description", "value": "The screen height, in pixels, of the Actor\u0027s device" } ] @@ -18226,12 +21007,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Screen Width" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ScreenWidth+Field" }, { + "term": "Core.Description", "value": "The screen width, in pixels, of the Actor\u0027s device" } ] @@ -18246,12 +21030,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Session ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SessionID+Field" }, { + "term": "Core.Description", "value": "A unique session ID number, created by the source, that can be used to query data for a single session" } ] @@ -18266,12 +21053,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Actor Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemActorKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -18286,12 +21076,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Event Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemEventKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -18306,12 +21099,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Object Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemObjectKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -18325,12 +21121,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Time Zone Offset" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TimeZoneOffset+Field" }, { + "term": "Core.Description", "value": "The timezone offset is the difference, in minutes, between UTC and local time." } ] @@ -18345,12 +21144,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "User Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UserAgent+Field" }, { + "term": "Core.Description", "value": "The software agent acting on behalf of the user (Actor) in this event. This is commonly conveyed by browser applications. e.g. Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0). This can also be a user configurable string as seen in RETS client applications." } ] @@ -18364,12 +21166,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Class Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ClassName+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "The class or table to which the SearchQuery criteria refers. i.e. Residential, Residential Lease, Income, Mobile, etc." } ] @@ -18384,12 +21189,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberKey+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the MemberKey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -18403,12 +21211,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberKeyNumeric+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the MemberKey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the MemberKey field." } ] @@ -18423,12 +21234,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberMlsId+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier for the member. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -18443,12 +21257,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the date/time the saved search was last modified." } ] @@ -18463,12 +21280,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Original Entry Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginalEntryTimestamp+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the date/time the saved search was entered." } ] @@ -18483,12 +21303,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemID+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the Saved Search was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -18503,12 +21326,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemKey+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the Saved Search was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -18523,12 +21349,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Member Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemMemberKey+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "Unique identifier from the originating system which is commonly a key to that system. In the case where data is passed through more than one system, this is the originating system key. This is a foreign key relating to the system where this record was originated." } ] @@ -18543,12 +21372,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Member Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemMemberName+Field" }, { + "term": "Core.Description", "value": "The name of the originating record provider. Most commonly the name of the MLS. The place where the listing is originally input by the member. The legal name of the company. To be used for display." } ] @@ -18563,12 +21395,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemName+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the Saved Search is originally input. The legal name of the company." } ] @@ -18582,12 +21417,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceName+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "The resource to which the SearchQuery criteria refers. i.e. Property, Open House, Agent, Office, Contact, etc." } ] @@ -18602,12 +21440,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Saved Search Description" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SavedSearchDescription+Field" }, { + "term": "Core.Description", "value": "A textual description of the saved search input by the member who created the saved search." } ] @@ -18622,12 +21463,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Saved Search Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SavedSearchKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record." } ] @@ -18641,12 +21485,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Saved Search Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SavedSearchKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record. This is the numeric only key and used as an alternative to the SavedSearchKey field." } ] @@ -18661,12 +21508,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Saved Search Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SavedSearchName+Field" }, { + "term": "Core.Description", "value": "The name given to the search by the member inputting the saved search." } ] @@ -18680,12 +21530,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Saved Search Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SavedSearchType+Field" }, { + "term": "Core.Description", "value": "Is the saved search used to pass criteria to be stored and executed by the client or is the saved search a key to be passed to the host for execution. i.e. Client Receives Criteria, Host Returns Listings. This may be described at the record level with this field, or at some other level of implementation to be determined by RESO R\u0026D." } ] @@ -18700,12 +21553,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Search Query" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SearchQuery+Field" }, { + "term": "Core.Description", "value": "Textual representation of the search performed by the member that was saved. It is required to present in ODATA\u0027s $filter format. Additional formats are under review. See additional documentation for specific requirements for this field." } ] @@ -18720,12 +21576,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Search Query Exception Details" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SearchQueryExceptionDetails+Field" }, { + "term": "Core.Description", "value": "A free text description used to expand on the SearchQueryExceptions selections made by the host." } ] @@ -18739,12 +21598,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Search Query Exceptions" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SearchQueryExceptions+Field" }, { + "term": "Core.Description", "value": "A list of exceptions or errors with the given search query during it\u0027s creation by the host. Analogous to an error code this is the host\u0027s opportunity to describe an inability to fully express a saved search under the constraints of the given protocol. i.e. $filter. The client may use this information to bring attention to the user about a given saved search and a need to review or recreate the search." } ] @@ -18759,12 +21621,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Search Query Human Readable" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SearchQueryHumanReadable+Field" }, { + "term": "Core.Description", "value": "A human readable version of the search query that is commonly used for display and may not contain all actual criteria. For actual search criteria, use the SearchQuery field." } ] @@ -18778,12 +21643,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Search Query Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SearchQueryType+Field" }, { + "term": "Core.Description", "value": "A picklist of the type of query language used in the SearchQuery field. i.e. DMQL2, $filter, etc." } ] @@ -18798,12 +21666,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemID+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -18818,12 +21689,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemKey+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -18838,12 +21712,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemName+%28SavedSearch%29+Field" }, { + "term": "Core.Description", "value": "The name of the Saved Search record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -18857,12 +21734,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Appointment Required Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AppointmentRequiredYN+Field" }, { + "term": "Core.Description", "value": "Indicates whether or not the OpenHouse requires an appointment." } ] @@ -18877,12 +21757,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingId+%28OpenHouse%29+Field" }, { + "term": "Core.Description", "value": "The well known identifier for the listing related to this Open House. The value may be identical to that of the Listing Key, but the Listing ID is intended to be the value used by a human to retrieve the information about a specific listing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -18897,12 +21780,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKey+%28OpenHouse%29+Field" }, { + "term": "Core.Description", "value": "A unique identifier for the listing record related to this Open House. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record. This may be a foreign key from the resource selected in the ResourceName field." } ] @@ -18916,12 +21802,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKeyNumeric+%28OpenHouse%29+Field" }, { + "term": "Core.Description", "value": "A unique identifier for the listing record related to this Open House. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record. This may be a foreign key from the resource selected in the ResourceName field. This is the numeric only key and used as an alternative to the ListingKey field." } ] @@ -18936,12 +21825,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28OpenHouse%29+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the date/time the Open House was last modified." } ] @@ -18955,12 +21847,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open House Attended By" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OpenHouseAttendedBy+Field" }, { + "term": "Core.Description", "value": "Will the open house be attended by a licensed agent? Options are attended by agent, attended by the seller or unattended." } ] @@ -18974,12 +21869,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open House Date" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OpenHouseDate+Field" }, { + "term": "Core.Description", "value": "The date on which the open house will occur." } ] @@ -18994,12 +21892,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open House End Time" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OpenHouseEndTime+Field" }, { + "term": "Core.Description", "value": "The time the open house ends." } ] @@ -19014,12 +21915,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open House ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OpenHouseId+Field" }, { + "term": "Core.Description", "value": "The well-known identifier for the Open House resource. The value may be identical to that of the OpenHouseKey, but the OpenHouseId intended to be the value used by a human to retrieve the information about a specific open house. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -19034,12 +21938,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open House Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OpenHouseKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record." } ] @@ -19053,12 +21960,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open House Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OpenHouseKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record. This is the numeric only key and used as an alternative to the OpenHouseKey field." } ] @@ -19073,12 +21983,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open House Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OpenHouseRemarks+Field" }, { + "term": "Core.Description", "value": "Comments, instructions or information about the open house." } ] @@ -19093,12 +22006,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open House Start Time" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OpenHouseStartTime+Field" }, { + "term": "Core.Description", "value": "The time the open house begins." } ] @@ -19112,12 +22028,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open House Status" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OpenHouseStatus+Field" }, { + "term": "Core.Description", "value": "Status of the open house, i.e. Active, Cancelled, Ended." } ] @@ -19131,12 +22050,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open House Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OpenHouseType+Field" }, { + "term": "Core.Description", "value": "The type of open house. i.e. Public, Broker, Office, Association, Private (invitation or targeted publication)." } ] @@ -19151,12 +22073,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Original Entry Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginalEntryTimestamp+%28OpenHouse%29+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the date/time the Open House was entered and made visible to members of the MLS." } ] @@ -19171,12 +22096,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemID+%28OpenHouse%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the Open House was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -19191,12 +22119,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemKey+%28OpenHouse%29+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the Open House was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -19211,12 +22142,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemName+%28OpenHouse%29+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the Open House is originally input. The legal name of the company." } ] @@ -19231,12 +22165,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Refreshments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Refreshments+Field" }, { + "term": "Core.Description", "value": "A description of the refreshments that will be served at the open house." } ] @@ -19251,12 +22188,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Agent First Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingAgentFirstName+Field" }, { + "term": "Core.Description", "value": "The first name of the showing agent." } ] @@ -19271,12 +22211,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Agent Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingAgentKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the ListAgentKey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -19290,12 +22233,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Agent Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingAgentKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the ListAgentKey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the ShowingAgentKey field." } ] @@ -19310,12 +22256,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Agent Last Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingAgentLastName+Field" }, { + "term": "Core.Description", "value": "The last name of the showing agent." } ] @@ -19330,12 +22279,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Agent MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingAgentMlsID+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier for the member. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -19350,12 +22302,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemID+%28OpenHouse%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -19370,12 +22325,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemKey+%28OpenHouse%29+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -19390,12 +22348,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemName+%28OpenHouse%29+Field" }, { + "term": "Core.Description", "value": "The name of the Open House record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -19409,12 +22370,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Active Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ActiveYN+Field" }, { + "term": "Core.Description", "value": "If set to True, the given auto email is active. False records may be disabled or waiting activation." } ] @@ -19429,12 +22393,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BCC Email List" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BccEmailList+Field" }, { + "term": "Core.Description", "value": "A comma separate list of email addresses that are the \"BCC\", or Blind Carbon Copy, address the auto emails are being sent to." } ] @@ -19448,12 +22415,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BCC Me Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BccMeYN+Field" }, { + "term": "Core.Description", "value": "When set to True, the auto mail is also sent as a Blind Carbon Copy to the Member who created the Auto Email." } ] @@ -19468,12 +22438,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CC Email List" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CcEmailList+Field" }, { + "term": "Core.Description", "value": "A comma separate list of email addresses that are the \"CC\", or Carbon Copy, address the auto emails are being sent to." } ] @@ -19487,12 +22460,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Client Activated Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ClientActivatedYN+Field" }, { + "term": "Core.Description", "value": "If set to True, the client has clicked through to accept automatic of emails. Recipant acceptance is an important part of CAN-SPAM and other bulk automatic emailing regulations." } ] @@ -19506,12 +22482,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concierge Notifications Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ConciergeNotificationsYN+Field" }, { + "term": "Core.Description", "value": "If set to True, notifications are to be sent to the member when the auto email is in Concierge mode." } ] @@ -19525,12 +22504,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concierge Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ConciergeYN+Field" }, { + "term": "Core.Description", "value": "When set to True, the auto mail is in Concierge mode and to be approved by the member before sent to the client." } ] @@ -19545,12 +22527,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactKey+%28Prospecting%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the Contact resource. A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the ContactKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey variants." } ] @@ -19564,12 +22549,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactKeyNumeric+%28Prospecting%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the Contact resource. A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the ContactKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKeyNumeric and OriginatingSystemKeyNumeric variants." } ] @@ -19583,12 +22571,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Daily Schedule" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DailySchedule+Field" }, { + "term": "Core.Description", "value": "When Daily is selected as the ScheduleType, a list of days of the week and AM or PM options." } ] @@ -19603,12 +22594,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Display Template ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DisplayTemplateID+Field" }, { + "term": "Core.Description", "value": "The system ID of the display that has been related, or set as the default, to this saved search." } ] @@ -19622,12 +22616,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Language" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Language+%28Prospecting%29+Field" }, { + "term": "Core.Description", "value": "The language that will be used in the given auto email." } ] @@ -19642,12 +22639,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Last New Changed Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LastNewChangedTimestamp+Field" }, { + "term": "Core.Description", "value": "Timestamp of when the prospector last found new or modified listings for this auto-email." } ] @@ -19662,12 +22662,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Last Viewed Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LastViewedTimestamp+Field" }, { + "term": "Core.Description", "value": "A timestamp of when the auto email was last viewed by the client in the portal." } ] @@ -19682,12 +22685,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Message New" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MessageNew+Field" }, { + "term": "Core.Description", "value": "The body of the auto email message when the first email is sent for the prospecting campaign." } ] @@ -19702,12 +22708,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Message Revise" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MessageRevise+Field" }, { + "term": "Core.Description", "value": "The body of the auto email message to be used when the criteria or settings of this auto email have been modified." } ] @@ -19722,12 +22731,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Message Update" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MessageUpdate+Field" }, { + "term": "Core.Description", "value": "The body of the auto email message for subsequent email messages after the first email is sent. If a first email option isn\u0027t used, this field is used for all emails including the first." } ] @@ -19742,12 +22754,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28Prospecting%29+Field" }, { + "term": "Core.Description", "value": "The date/time this prospecting record was last modified." } ] @@ -19762,12 +22777,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Next Send Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NextSendTimestamp+Field" }, { + "term": "Core.Description", "value": "A timestamp of when the auto email is schedule to next send." } ] @@ -19782,12 +22800,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner Member ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OwnerMemberID+%28Prospecting%29+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier for the member owning the contact." } ] @@ -19802,12 +22823,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner Member Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OwnerMemberKey+%28Prospecting%29+Field" }, { + "term": "Core.Description", "value": "The unique identifier (key) of the member owning the contact. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -19821,12 +22845,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner Member Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OwnerMemberKeyNumeric+%28Prospecting%29+Field" }, { + "term": "Core.Description", "value": "The unique identifier (key) of the member owning the contact. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the OwnerMemberKey field." } ] @@ -19841,12 +22868,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Prospecting Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ProspectingKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the ProspectKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey variants." } ] @@ -19860,12 +22890,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Prospecting Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ProspectingKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the ProspectKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKeyNumeric and OriginatingSystemKeyNumeric variants." } ] @@ -19879,12 +22912,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Reason Active Or Disabled" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ReasonActiveOrDisabled+Field" }, { + "term": "Core.Description", "value": "A list of reasons the Auto Email was set to inactive or set back to active. e.g. AgentDisabled, OverLimit, No Listings Found, Re-Activated, Client Disabled, etc." } ] @@ -19899,12 +22935,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Saved Search Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SavedSearchKey+%28Prospecting%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the SavedSearch resource. A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the SavedSearchKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey variants." } ] @@ -19918,12 +22957,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Saved Search Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SavedSearchKeyNumeric+%28Prospecting%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the SavedSearch resource. A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the SavedSearchKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKeyNumeric and OriginatingSystemKeyNumeric variants." } ] @@ -19937,12 +22979,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Schedule Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ScheduleType+Field" }, { + "term": "Core.Description", "value": "A selection of the type of schedule that the auto email will be sent. Daily, Monthly or ASAP." } ] @@ -19957,12 +23002,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Subject" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Subject+Field" }, { + "term": "Core.Description", "value": "The subject line of the auto email being sent." } ] @@ -19977,12 +23025,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "To Email List" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ToEmailList+Field" }, { + "term": "Core.Description", "value": "A comma separate list of email addresses that are the \"To\" address the auto emails are being sent to." } ] @@ -19996,12 +23047,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Class Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ClassName+%28Queue%29+Field" }, { + "term": "Core.Description", "value": "Name of the class which this queue record is referencing." } ] @@ -20016,12 +23070,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28Queue%29+Field" }, { + "term": "Core.Description", "value": "Timestamp of the last major change on the listing (see also MajorChangeType)." } ] @@ -20036,12 +23093,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemID+%28Queue%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the Queue record was generated. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -20056,12 +23116,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemName+%28Queue%29+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the Queue record or originally generated. The legal name of the company." } ] @@ -20076,12 +23139,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Queue Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemQueueKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the Queue record was generated. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -20096,12 +23162,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Queue Transaction Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/QueueTransactionKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record." } ] @@ -20115,12 +23184,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Queue Transaction Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/QueueTransactionKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record. This is the numeric only key and used as an alternative to the QueueKey field." } ] @@ -20134,12 +23206,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Queue Transaction Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/QueueTransactionType+Field" }, { + "term": "Core.Description", "value": "The type of change that the queue transaction record is representing. For example, add, change, delete, etc." } ] @@ -20153,12 +23228,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceName+%28Queue%29+Field" }, { + "term": "Core.Description", "value": "The name of the resource which this queue record is referencing." } ] @@ -20173,12 +23251,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordID+%28Queue%29+Field" }, { + "term": "Core.Description", "value": "The well known identifier of the related record from the source resource. The value may be identical to that of the Listing Key, but the Listing ID is intended to be the value used by a human to retrieve the information about a specific listing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -20193,12 +23274,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordKey+%28Queue%29+Field" }, { + "term": "Core.Description", "value": "The primary key of the related record from the source resource. For example the ListingKey, AgentKey, OfficeKey, etc. This is the system you are connecting to and not necessarily the original source of the record. This is a foreign key from the resource selected in the ResourceName field." } ] @@ -20212,12 +23296,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordKeyNumeric+%28Queue%29+Field" }, { + "term": "Core.Description", "value": "The primary key of the related record from the source resource. For example the ListingKey, AgentKey, OfficeKey, etc. This is the system you are connecting to and not necessarily the original source of the record. This is a foreign key from the resource selected in the ResourceName field. This is the numeric only key and used as an alternative to the ResourceRecordKey field." } ] @@ -20232,12 +23319,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemID+%28Queue%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -20252,12 +23342,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemName+%28Queue%29+Field" }, { + "term": "Core.Description", "value": "The name of the Queue record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -20272,12 +23365,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Queue Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemQueueKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -20291,12 +23387,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Class Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ClassName+%28Rules%29+Field" }, { + "term": "Core.Description", "value": "The class or table to which the Rule refers. i.e. Residential, Residential Lease, Income, Mobile, etc." } ] @@ -20311,12 +23410,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Field Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FieldKey+%28Rules%29+Field" }, { + "term": "Core.Description", "value": "The unique identifier of the field to which the Rule applies. This is a foreign key relating to the field found in the resource per the ResourceName." } ] @@ -20330,12 +23432,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Field Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FieldKeyNumeric+%28Rules%29+Field" }, { + "term": "Core.Description", "value": "The unique identifier of the field to which the Rule applies. This is a foreign key relating to the field found in the resource per the ResourceName. This is the numeric only key and used as an alternative to the FieldKey field." } ] @@ -20350,12 +23455,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Field Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FieldName+%28Rules%29+Field" }, { + "term": "Core.Description", "value": "The name of the field to which the Rule applies." } ] @@ -20370,12 +23478,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28Rules%29+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the date/time the rule was last modified." } ] @@ -20390,12 +23501,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Original Entry Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginalEntryTimestamp+%28Rules%29+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the date/time the rule was initially entered." } ] @@ -20410,12 +23524,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemID+%28Rules%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the Rule originated. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -20430,12 +23547,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemName+%28Rules%29+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the Rules is originally input. The legal name of the company." } ] @@ -20450,12 +23570,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Rule Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemRuleKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the Rule originated. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -20469,12 +23592,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceName+%28Rules%29+Field" }, { + "term": "Core.Description", "value": "The resource to which the Rule refers. E.g. Property, Member, Office, Open House, etc." } ] @@ -20489,12 +23615,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Action" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleAction+Field" }, { + "term": "Core.Description", "value": "The action to be taken when processing the rule." } ] @@ -20509,12 +23638,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Description" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleDescription+Field" }, { + "term": "Core.Description", "value": "A detailed textual description of the rule." } ] @@ -20528,12 +23660,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Enabled Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleEnabledYN+Field" }, { + "term": "Core.Description", "value": "Is the rule currently enabled?" } ] @@ -20548,12 +23683,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Error Text" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleErrorText+Field" }, { + "term": "Core.Description", "value": "Textual information conveyed when the given rule is in error or fails. (e.g. The listing price must be greater than 0.)" } ] @@ -20568,12 +23706,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Expression" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleExpression+Field" }, { + "term": "Core.Description", "value": "The expression or details of the rule." } ] @@ -20587,12 +23728,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Format" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleFormat+Field" }, { + "term": "Core.Description", "value": "$filter, JavaScript, RETS1.8, REBR, etc.… ?" } ] @@ -20607,12 +23751,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Help Text" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleHelpText+Field" }, { + "term": "Core.Description", "value": "The text that might be displayed on a form that helps the user fix the rule (e.g. enter phone number in the 10 digit format ###-###-####.)" } ] @@ -20627,12 +23774,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleKey+Field" }, { + "term": "Core.Description", "value": "\u003cac:structured-macro ac:name\u003d\"tooltip\" ac:schema-version\u003d\"1\" ac:macro-id\u003d\"d9385e45-37c2-4bf8-9f64-6a4568d6b0b4\"\u003e\u003cac:parameter ac:name\u003d\"tip\"\u003eA single designation identifying what category of fields to which the given field belongs.\u003c/ac:parameter\u003e\u003cac:parameter ac:name\u003d\"text\"\u003eGroup\u003c/ac:parameter\u003e\u003c/ac:structured-macro\u003e\u003cac:link ac:anchor\u003d\"Group\"\u003e\u003cri:page ri:content-title\u003d\"Data Dictionary Terms and Meta Definitions\" /\u003e\u003cac:plain-text-link-body\u003e\u003c![CDATA[?]]\u003e\u003c/ac:plain-text-link-body\u003e\u003c/ac:link\u003e: \u003cac:link\u003e\u003cri:page ri:content-title\u003d\"Rules Resource\" /\u003e\u003cac:link-body\u003eRules Resource\u003c/ac:link-body\u003e\u003c/ac:link\u003e" } ] @@ -20646,12 +23796,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleKeyNumeric+Field" }, { + "term": "Core.Description", "value": "\u003cac:structured-macro ac:name\u003d\"tooltip\" ac:schema-version\u003d\"1\" ac:macro-id\u003d\"dddc1b50-f511-45b5-8c68-773cf136e7b5\"\u003e\u003cac:parameter ac:name\u003d\"tip\"\u003eA single designation identifying what category of fields to which the given field belongs.\u003c/ac:parameter\u003e\u003cac:parameter ac:name\u003d\"text\"\u003eGroup\u003c/ac:parameter\u003e\u003c/ac:structured-macro\u003e\u003cac:link ac:anchor\u003d\"Group\"\u003e\u003cri:page ri:content-title\u003d\"Data Dictionary Terms and Meta Definitions\" /\u003e\u003cac:plain-text-link-body\u003e\u003c![CDATA[?]]\u003e\u003c/ac:plain-text-link-body\u003e\u003c/ac:link\u003e: \u003cac:link\u003e\u003cri:page ri:content-title\u003d\"Rules Resource\" /\u003e\u003cac:link-body\u003eRules Resource\u003c/ac:link-body\u003e\u003c/ac:link\u003e" } ] @@ -20666,12 +23819,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleName+Field" }, { + "term": "Core.Description", "value": "A descriptive name for the rule." } ] @@ -20685,12 +23841,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Order" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleOrder+Field" }, { + "term": "Core.Description", "value": "When in use, execution of rules are to follow the order specified by this field. Any rule that references another field will need to be ordered." } ] @@ -20704,12 +23863,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleType+Field" }, { + "term": "Core.Description", "value": "Validation, Required, Warning, etc." } ] @@ -20724,12 +23886,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Version" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleVersion+Field" }, { + "term": "Core.Description", "value": "A semantically-versioned rule version. https://semver.org/" } ] @@ -20744,12 +23909,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rule Warning Text" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RuleWarningText+Field" }, { + "term": "Core.Description", "value": "Textual information conveyed when a given rule has met a condition that warrants a warning message. e.g. you\u0027ve entered a sale price that is has a difference from the listing price greater than 25%." } ] @@ -20764,12 +23932,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System History Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemHistoryKey+%28Rules%29+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -20784,12 +23955,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemID+%28Rules%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -20804,12 +23978,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemName+%28Rules%29+Field" }, { + "term": "Core.Description", "value": "The name of the Rule record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -20824,12 +24001,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28Teams%29+Field" }, { + "term": "Core.Description", "value": "Date/time the roster (Team or office) record was last modified." } ] @@ -20844,12 +24024,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Original Entry Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginalEntryTimestamp+%28Teams%29+Field" }, { + "term": "Core.Description", "value": "Date/time the roster (Team or office) record was originally input into the source system." } ] @@ -20864,12 +24047,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemID+%28Teams%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the Team was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -20884,12 +24070,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemKey+%28Teams%29+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the Team was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -20904,12 +24093,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemName+%28Teams%29+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the Team is originally input. The legal name of the company." } ] @@ -20923,12 +24115,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Social Media Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SocialMediaType+%28Teams%29+Field" }, { + "term": "Core.Description", "value": "A list of types of sites, blog, social media, the Team URL or ID is referring to. i.e. Website, Blog, Facebook, Twitter, LinkedIn, Skype, etc., This list is used to populate the Type with repeating Social Media URL or ID types." } ] @@ -20943,12 +24138,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemID+%28Teams%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -20963,12 +24161,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemKey+%28Teams%29+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -20983,12 +24184,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemName+%28Teams%29+Field" }, { + "term": "Core.Description", "value": "The name of the Team record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -21003,12 +24207,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Address 1" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamAddress1+Field" }, { + "term": "Core.Description", "value": "The street number, direction, name and suffix of the Team." } ] @@ -21023,12 +24230,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Address 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamAddress2+Field" }, { + "term": "Core.Description", "value": "The unit/suite number of the Team." } ] @@ -21043,12 +24253,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Carrier Route" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamCarrierRoute+Field" }, { + "term": "Core.Description", "value": "The group of addresses to which the USPS assigns the same code to aid in mail delivery. For the USPS, these codes are 9 digits: 5 numbers for the ZIP Code, one letter for the carrier route type, and 3 numbers for the carrier route number." } ] @@ -21063,12 +24276,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team City" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamCity+Field" }, { + "term": "Core.Description", "value": "The city of the Team." } ] @@ -21082,12 +24298,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Country" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamCountry+Field" }, { + "term": "Core.Description", "value": "The country abbreviation in a postal address." } ] @@ -21101,12 +24320,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team County Or Parish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamCountyOrParish+Field" }, { + "term": "Core.Description", "value": "The county or parish in which the Team is addressed." } ] @@ -21121,12 +24343,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Description" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamDescription+Field" }, { + "term": "Core.Description", "value": "A description or marketing information about the team." } ] @@ -21141,12 +24366,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Direct Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamDirectPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -21161,12 +24389,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamEmail+Field" }, { + "term": "Core.Description", "value": "The email address of the Team." } ] @@ -21181,12 +24412,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -21201,12 +24435,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the TeamKey is the system unique identifier from the system that the record was retrieved." } ] @@ -21220,12 +24457,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the TeamKey is the system unique identifier from the system that the record was retrieved. This is the numeric only key and used as an alternative to the TeamKey field." } ] @@ -21240,12 +24480,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Lead Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamLeadKey+Field" }, { + "term": "Core.Description", "value": "The unique system identifier of the team\u0027s lead member." } ] @@ -21259,12 +24502,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Lead Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamLeadKeyNumeric+Field" }, { + "term": "Core.Description", "value": "The unique system identifier of the team\u0027s lead member. This is the numeric only key and used as an alternative to the TeamLeadKey field." } ] @@ -21279,12 +24525,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Lead Login ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamLeadLoginId+Field" }, { + "term": "Core.Description", "value": "The ID used to logon to the MLS system." } ] @@ -21299,12 +24548,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Lead MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamLeadMlsId+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier for the Team Lead. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -21319,12 +24571,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Lead National Association ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamLeadNationalAssociationId+Field" }, { + "term": "Core.Description", "value": "The national association ID of the team lead. i.e. in the U.S. is the NRDS number." } ] @@ -21339,12 +24594,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Lead State License" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamLeadStateLicense+Field" }, { + "term": "Core.Description", "value": "The license of the Team Lead. Separate multiple licenses with a comma and space." } ] @@ -21358,12 +24616,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Lead State License State" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamLeadStateLicenseState+Field" }, { + "term": "Core.Description", "value": "The state in which the Team Lead is licensed." } ] @@ -21378,12 +24639,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Mobile Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamMobilePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -21398,12 +24662,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamName+Field" }, { + "term": "Core.Description", "value": "The name under which the team operates. If a business this may be a DBA." } ] @@ -21418,12 +24685,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Office Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamOfficePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -21438,12 +24708,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Office Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamOfficePhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -21458,12 +24731,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Postal Code" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamPostalCode+Field" }, { + "term": "Core.Description", "value": "The postal code of the Team." } ] @@ -21478,12 +24754,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Postal Code Plus 4" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamPostalCodePlus4+Field" }, { + "term": "Core.Description", "value": "The extension of the postal/zip code. i.e. +4" } ] @@ -21498,12 +24777,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Preferred Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamPreferredPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -21518,12 +24800,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Preferred Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamPreferredPhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -21537,12 +24822,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team State Or Province" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamStateOrProvince+Field" }, { + "term": "Core.Description", "value": "The state or province in which the Team is addressed." } ] @@ -21556,12 +24844,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Status" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamStatus+Field" }, { + "term": "Core.Description", "value": "Is the account active, inactive or under disciplinary action." } ] @@ -21576,12 +24867,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Toll Free Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamTollFreePhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -21596,12 +24890,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Voice Mail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamVoiceMail+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -21616,12 +24913,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Voice Mail Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamVoiceMailExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -21636,12 +24936,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agent Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AgentOriginatingSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the listing was input. In cases where the Originating system was not where the record was retrieved, see the Source System fields." } ] @@ -21656,12 +24959,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agent Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AgentOriginatingSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the listing is originally input by the member. The legal name of the company. In cases where the Originating system was not where the record was retrieved, see hte Source System fields." } ] @@ -21676,12 +24982,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agent Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AgentSourceSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -21696,12 +25005,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agent Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AgentSourceSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the immediate record provider. The system from which the record was directly received. The legal name of the company. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -21716,12 +25028,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingId+%28Showing%29+Field" }, { + "term": "Core.Description", "value": "The well known identifier for the listing being shown. The value may be identical to that of the Listing Key, but the Listing ID is intended to be the value used by a human to retrieve the information about a specific listing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -21736,12 +25051,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKey+%28Showing%29+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record. This is a string that can include URI or other forms. Alternatively use the ListingKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -21755,12 +25073,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKeyNumeric+%28Showing%29+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record. This is the numeric only key and used as an alternative to the ListingKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -21775,12 +25096,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingOriginatingSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the listing was input. In cases where the Originating system was not where the record was retrieved, see the Source System fields." } ] @@ -21795,12 +25119,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingOriginatingSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the listing is originally input by the member. The legal name of the company. In cases where the Originating system was not where the record was retrieved, see the Source System fields." } ] @@ -21815,12 +25142,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingSourceSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -21835,12 +25165,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingSourceSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the immediate record provider. The system from which the record was directly received. The legal name of the company. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields" } ] @@ -21855,12 +25188,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28Showing%29+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the system representing the date/time the Showing record was last modified." } ] @@ -21875,12 +25211,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Original Entry Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginalEntryTimestamp+%28Showing%29+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the system representing the date/time the Showing record was entered and made visible to members of the system." } ] @@ -21895,12 +25234,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Agent Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemAgentKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the member was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -21915,12 +25257,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Listing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemListingKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the member was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -21935,12 +25280,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Showing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemShowingKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the member was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -21955,12 +25303,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Agent Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingAgentKey+%28Showing%29+Field" }, { + "term": "Core.Description", "value": "A system unique identifier of the member who has scheduled to access the property. Specifically, in aggregation systems, the ListAgentKey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -21974,12 +25325,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Agent Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingAgentKeyNumeric+%28Showing%29+Field" }, { + "term": "Core.Description", "value": "A system unique identifier of the member who has scheduled to access the property. Specifically, in aggregation systems, the ListAgentKey is the system unique identifier from the system that the record was retrieved. This may be identical to the related xxxId. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the ShowingAgentKey field." } ] @@ -21994,12 +25348,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Agent MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingAgentMlsID+%28Showing%29+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier for the member who has scheduled to access the property, most commonly representing a buyer. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -22014,12 +25371,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing End Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingEndTimestamp+Field" }, { + "term": "Core.Description", "value": "The date and time the showing ends. Where other timestamps are typically stored in UTC, showing start and end date/times are typically stored in the local time zone of the property being showed." } ] @@ -22034,12 +25394,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingId+Field" }, { + "term": "Core.Description", "value": "The well-known identifier for the showing record. The value may be identical to that of the ShowingKey, but the ShowingID is intended to be the value used by a human to retrieve the information about a specific showing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -22054,12 +25417,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the ShowingKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -22073,12 +25439,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the ShowingKey field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -22093,12 +25462,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingOriginatingSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the listing was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -22113,12 +25485,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingOriginatingSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the listing is originally input by the member. The legal name of the company." } ] @@ -22133,12 +25508,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Requested Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingRequestedTimestamp+Field" }, { + "term": "Core.Description", "value": "The date/time when the showing agent submitted their request to access the property. This is a system timestamp normally generated by a showing system, which is commonly the Originating System for showing records." } ] @@ -22153,12 +25531,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingSourceSystemID+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -22173,12 +25554,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingSourceSystemName+Field" }, { + "term": "Core.Description", "value": "The name of the immediate record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -22193,12 +25577,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Start Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ShowingStartTimestamp+Field" }, { + "term": "Core.Description", "value": "The date and time the showing begins. Where other timestamps are typically stored in UTC, showing start and end date/times are typically stored in the local time zone of the property being showed." } ] @@ -22213,12 +25600,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Agent Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemAgentKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -22233,12 +25623,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Listing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemListingKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -22253,12 +25646,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Showing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemShowingKey+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -22273,12 +25669,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberKey+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, the foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -22292,12 +25691,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberKeyNumeric+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, the foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the MemberKey field." } ] @@ -22312,12 +25714,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member Login ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberLoginId+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "The ID used to logon to the MLS system." } ] @@ -22332,12 +25737,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member MLS ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MemberMlsId+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier for the member. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -22352,12 +25760,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "Date/time the roster (member or office) record was last modified." } ] @@ -22372,12 +25783,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Original Entry Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginalEntryTimestamp+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "Date/time the roster (member or office) record was originally input into the source system." } ] @@ -22392,12 +25806,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemID+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Originating record provider. The Originating system is the system with authoritative control over the record. For example; the name of the MLS where the Team Member was input. In cases where the Originating system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -22412,12 +25829,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemKey+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Originating system. The Originating system is the system with authoritative control over the record. For example, the Multiple Listing Service where the Team Member was input. There may be cases where the Source System (how you received the record) is not the Originating System. See Source System Key for more information." } ] @@ -22432,12 +25852,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Originating System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginatingSystemName+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "The name of the Originating record provider. Most commonly the name of the MLS. The place where the Team Member is originally input. The legal name of the company." } ] @@ -22452,12 +25875,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemID+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "The RESO OUID\u0027s OrganizationUniqueId of the Source record provider. The source system is the system from which the record was directly received. In cases where the source system was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -22472,12 +25898,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemKey+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "The system key, a unique record identifier, from the Source System. The Source System is the system from which the record was directly received. In cases where the Source System was not where the record originated (the authoritative system), see the Originating System fields." } ] @@ -22492,12 +25921,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Source System Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SourceSystemName+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "The name of the Team Member record provider. The system from which the record was directly received. The legal name of the company." } ] @@ -22511,12 +25943,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Impersonation Level" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamImpersonationLevel+Field" }, { + "term": "Core.Description", "value": "The level of impersonation the member is allowed within the team. i.e. Impersonate (to work as the team), On Behalf (to show the team name, but also show the member\u0027s info, None (don\u0027t allow this member to appear as part of team)." } ] @@ -22531,12 +25966,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamKey+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, a foreign key referencing the Teams resource\u0027s primary key." } ] @@ -22550,12 +25988,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamKeyNumeric+%28TeamMembers%29+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, a foreign key referencing the Teams resource\u0027s primary key. This is the numeric only key and used as an alternative to the TeamKey field." } ] @@ -22570,12 +26011,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Member Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamMemberKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, the local key to the TeamMembers resource." } ] @@ -22589,12 +26033,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Member Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamMemberKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, the local key to the TeamMembers resource. This is the numeric only key and used as an alternative to the TeamKey field." } ] @@ -22609,12 +26056,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Member National Association ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamMemberNationalAssociationId+Field" }, { + "term": "Core.Description", "value": "The national association ID of the member. i.e. in the U.S. is the NRDS number." } ] @@ -22629,12 +26079,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Member State License" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamMemberStateLicense+Field" }, { + "term": "Core.Description", "value": "The license of the member. Separate multiple licenses with a comma and space." } ] @@ -22648,12 +26101,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Member Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TeamMemberType+Field" }, { + "term": "Core.Description", "value": "The role of the member within the team. i.e. team lead, principle, associate, assistant, etc." } ] @@ -22668,12 +26124,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Changed By Member ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ChangedByMemberID+%28OUID%29+Field" }, { + "term": "Core.Description", "value": "The local, well-know identifier of the member (user) who made the change." } ] @@ -22688,12 +26147,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Changed By Member Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ChangedByMemberKey+%28OUID%29+Field" }, { + "term": "Core.Description", "value": "The unique identifier of the member (user) who made the change. This is a foreign key relating to the Member resource\u0027s MemberKey." } ] @@ -22707,12 +26169,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Changed By Member Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ChangedByMemberKeyNumeric+%28OUID%29+Field" }, { + "term": "Core.Description", "value": "The unique identifier of the member (user) who made the change. This is a foreign key relating to the Member resource\u0027s MemberKey. This is the numeric only key and used as an alternative to the ChangedByMemberKey field." } ] @@ -22727,12 +26192,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28OUID%29+Field" }, { + "term": "Core.Description", "value": "Date/time the Organization record was last modified." } ] @@ -22746,12 +26214,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization AOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationAOR+Field" }, { + "term": "Core.Description", "value": "The Organization\u0027s Primary Board or Association of REALTORS if applicable." } ] @@ -22766,12 +26237,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Address 1" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationAddress1+Field" }, { + "term": "Core.Description", "value": "The street number, direction, name and suffix of the organization." } ] @@ -22786,12 +26260,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Address 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationAddress2+Field" }, { + "term": "Core.Description", "value": "The unit/suite number of the organization." } ] @@ -22806,12 +26283,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization AOR OUID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationAorOuid+Field" }, { + "term": "Core.Description", "value": "The OUID for the Organization\u0027s Association of REALTORS if applicable." } ] @@ -22826,12 +26306,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization AOR OUID Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationAorOuidKey+Field" }, { + "term": "Core.Description", "value": "The OrganizationUniqueIdKey of the AOR from the system serving the OUID resource." } ] @@ -22845,12 +26328,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization AOR OUID Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationAorOuidKeyNumeric+Field" }, { + "term": "Core.Description", "value": "The OrganizationUniqueIdKey of the AOR from the system serving the OUID resource. This is the numeric only key and used as an alternative to the OrganizationAorOuidKey field." } ] @@ -22865,12 +26351,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Carrier Route" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationCarrierRoute+Field" }, { + "term": "Core.Description", "value": "The group of addresses to which the USPS assigns the same code to aid in mail delivery. For the USPS, these codes are 9 digits: 5 numbers for the ZIP Code, one letter for the carrier route type, and 3 numbers for the carrier route number." } ] @@ -22885,12 +26374,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization City" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationCity+Field" }, { + "term": "Core.Description", "value": "The city of the organization." } ] @@ -22905,12 +26397,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationComments+Field" }, { + "term": "Core.Description", "value": "Comments or notes about the Organization." } ] @@ -22925,12 +26420,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Contact Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationContactEmail+Field" }, { + "term": "Core.Description", "value": "The email address of the Organization Contact." } ] @@ -22945,12 +26443,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Contact Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationContactFax+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -22965,12 +26466,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Contact First Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationContactFirstName+Field" }, { + "term": "Core.Description", "value": "The first name of the Organization Contact." } ] @@ -22985,12 +26489,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Contact Full Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationContactFullName+Field" }, { + "term": "Core.Description", "value": "The full name of the Organization Contact. (First Middle Last) or a alternate full name." } ] @@ -23005,12 +26512,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Contact Job Title" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationContactJobTitle+Field" }, { + "term": "Core.Description", "value": "The title or position of the Organization Contact." } ] @@ -23025,12 +26535,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Contact Last Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationContactLastName+Field" }, { + "term": "Core.Description", "value": "The last name of the Organization Contact." } ] @@ -23045,12 +26558,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Contact Middle Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationContactMiddleName+Field" }, { + "term": "Core.Description", "value": "The middle name of the Organization Contact." } ] @@ -23065,12 +26581,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Contact Name Prefix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationContactNamePrefix+Field" }, { + "term": "Core.Description", "value": "Prefix to the name of the Organization Contact. (e.g. Dr. Mr. Ms. etc.)" } ] @@ -23085,12 +26604,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Contact Name Suffix" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationContactNameSuffix+Field" }, { + "term": "Core.Description", "value": "Suffix to the surname (e.g. Esq., Jr., III etc.) of the Organization Contact." } ] @@ -23105,12 +26627,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Contact Phone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationContactPhone+Field" }, { + "term": "Core.Description", "value": "North American 10 digit phone numbers should be in the format of ###-###-#### (separated by hyphens). Other conventions should use the common local standard. International numbers should be preceded by a plus symbol." } ] @@ -23125,12 +26650,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Contact Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationContactPhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -23144,12 +26672,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Country" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationCountry+Field" }, { + "term": "Core.Description", "value": "The country abbreviation in a postal address." } ] @@ -23163,12 +26694,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization County Or Parish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationCountyOrParish+Field" }, { + "term": "Core.Description", "value": "The county or parish in which the organization is addressed." } ] @@ -23182,12 +26716,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Member Count" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationMemberCount+Field" }, { + "term": "Core.Description", "value": "The total number of active members in the Organization if applicable." } ] @@ -23202,12 +26739,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization MLS Code" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationMlsCode+Field" }, { + "term": "Core.Description", "value": "If the organization is an MLS it is likely they already have an ID or code based on their name or an abbreviation. This field supports the continued use/reference to that legacy code." } ] @@ -23222,12 +26762,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization MLS Vendor Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationMlsVendorName+Field" }, { + "term": "Core.Description", "value": "If the organization uses an MLS system, this is the textual name of the vendor." } ] @@ -23242,12 +26785,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization MLS Vendor OUID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationMlsVendorOuid+Field" }, { + "term": "Core.Description", "value": "If the organization uses an MLS system, this is that vendor\u0027s OUID." } ] @@ -23262,12 +26808,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationName+Field" }, { + "term": "Core.Description", "value": "The textual name of the organization represented by a given OUID record." } ] @@ -23282,12 +26831,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization National Association ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationNationalAssociationId+Field" }, { + "term": "Core.Description", "value": "The national association ID of the Organization if applicable. i.e. in the U.S. is the NRDS number." } ] @@ -23302,12 +26854,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Postal Code" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationPostalCode+Field" }, { + "term": "Core.Description", "value": "The postal code of the organization." } ] @@ -23322,12 +26877,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Postal Code Plus4" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationPostalCodePlus4+Field" }, { + "term": "Core.Description", "value": "The extension of the postal/zip code. i.e. +4" } ] @@ -23341,12 +26899,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Social Media Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationSocialMediaType+Field" }, { + "term": "Core.Description", "value": "A list of types of sites, blog, social media, the Organization URL or ID is referring to. i.e. Website, Blog, Facebook, Twitter, LinkedIn, Skype, etc., This list is used to populate the Type with repeating Social Media URL or ID types." } ] @@ -23361,12 +26922,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization State License" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationStateLicense+Field" }, { + "term": "Core.Description", "value": "The license of the Organization if applicable. Separate multiple licenses with a comma and space." } ] @@ -23380,12 +26944,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization State License State" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationStateLicenseState+Field" }, { + "term": "Core.Description", "value": "The state in which the Organization is licensed if applicable." } ] @@ -23399,12 +26966,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization State Or Province" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationStateOrProvince+Field" }, { + "term": "Core.Description", "value": "The state or province in which the organization is addressed." } ] @@ -23418,12 +26988,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Status" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationStatus+Field" }, { + "term": "Core.Description", "value": "Is the Organization active or inactive. 1 or true is active, 0 or false is inactive. This field is not nullable." } ] @@ -23438,12 +27011,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Status Change Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationStatusChangeTimestamp+Field" }, { + "term": "Core.Description", "value": "The date/time of when the Organization Status was last changed." } ] @@ -23457,12 +27033,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationType+Field" }, { + "term": "Core.Description", "value": "The type of organization. i.e. MLS, Vendor, Association, etc. This is not a substitute or alternative for the Office resource, however it may be that a brokerage has a record in this table for a non-listing purpose." } ] @@ -23477,12 +27056,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Unique ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationUniqueId+Field" }, { + "term": "Core.Description", "value": "The OUID. This is the unique ID assigned to organizations included in the OUID resource. Assignment of OUIDs will be centralized and may not be created by systems hosting the OUID resource. Contact info@RESO.org for information on obtaining an OUID." } ] @@ -23497,12 +27079,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Unique ID Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationUniqueIdKey+Field" }, { + "term": "Core.Description", "value": "The key field used by the system hosting a table of OUIDs. This key is likely to be unique to each hosting system and is not meant to be a universal ID for an organization, but rather a key used by clients of the hosting system. The actual OUID is the Organization Unique ID field." } ] @@ -23516,12 +27101,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Organization Unique ID Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OrganizationUniqueIdKeyNumeric+Field" }, { + "term": "Core.Description", "value": "The key field used by the system hosting a table of OUIDs. This key is likely to be unique to each hosting system and is not meant to be a universal ID for an organization, but rather a key used by clients of the hosting system. The actual OUID is the Organization Unique ID field. This is the numeric only key and used as an alternative to the OrganizationUniqueIdKey field." } ] @@ -23536,12 +27124,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Original Entry Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OriginalEntryTimestamp+%28OUID%29+Field" }, { + "term": "Core.Description", "value": "Date/time the Organization record was originally input into the source system." } ] @@ -23556,12 +27147,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactKey+%28ContactListingNotes%29+Field" }, { + "term": "Core.Description", "value": "Key of the corresponding Contact record. ContactKey and the ListingKey are used as a compound key for this record." } ] @@ -23575,12 +27169,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactKeyNumeric+%28ContactListingNotes%29+Field" }, { + "term": "Core.Description", "value": "Numeric only key of the corresponding Contact record. ContactKeyNumeric and the ListingKeyNumeric are used as a compound key for this record." } ] @@ -23595,12 +27192,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Listing Notes Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactListingNotesKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set.." } ] @@ -23614,12 +27214,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact Listing Notes Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ContactListingNotesKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record from the immediate source. This may be a number, or string that can include URI or other forms. This is the system you are connecting to and not necessarily the original source of the record. This is the numeric only key and used as an alternative to the ContactListingsKey field." } ] @@ -23634,12 +27237,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingId+%28ContactListingNotes%29+Field" }, { + "term": "Core.Description", "value": "ID for the corresponding listing record." } ] @@ -23654,12 +27260,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKey+%28ContactListingNotes%29+Field" }, { + "term": "Core.Description", "value": "Key of the corresponding Listing record. ContactKey and the ListingKey are used as a compound key for this record." } ] @@ -23673,12 +27282,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKeyNumeric+%28ContactListingNotes%29+Field" }, { + "term": "Core.Description", "value": "Numeric only key of the corresponding Listing record. ContactKeyNumeric and the ListingKeyNumeric are used as a compound key for this record." } ] @@ -23693,12 +27305,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28ContactListingNotes%29+Field" }, { + "term": "Core.Description", "value": "The Date/Time this note was written." } ] @@ -23713,12 +27328,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Note Contents" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NoteContents+Field" }, { + "term": "Core.Description", "value": "The contents of the note." } ] @@ -23732,12 +27350,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Noted By" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NotedBy+Field" }, { + "term": "Core.Description", "value": "The individual who wrote this note, the Agent or Contact." } ] @@ -23751,12 +27372,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Class Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ClassName+%28OtherPhone%29+Field" }, { + "term": "Core.Description", "value": "Name of the class to which the record is referencing." } ] @@ -23771,12 +27395,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28OtherPhone%29+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the date/time the media record was last modified." } ] @@ -23791,12 +27418,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Phone Ext" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherPhoneExt+Field" }, { + "term": "Core.Description", "value": "The extension of the given phone number (if applicable)." } ] @@ -23811,12 +27441,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Phone Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherPhoneKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set." } ] @@ -23830,12 +27463,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Phone Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherPhoneKeyNumeric+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -23850,12 +27486,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Phone Number" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherPhoneNumber+Field" }, { + "term": "Core.Description", "value": "The \"other\" phone option allowing members to convey additional phone numbers other than those already covered by the MemberMobilePhone, MemberFax, etc., fields." } ] @@ -23869,12 +27508,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Phone Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OtherPhoneType+%28OtherPhone%29+Field" }, { + "term": "Core.Description", "value": "The type of \"other\" phone that does not already exist in the given phone fields or if a second of any type of phone field is needed. i.e. HomePhone2, BrothersPhone, etc. This is used as the list of options for the Other Phone repeating elements." } ] @@ -23888,12 +27530,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceName+%28OtherPhone%29+Field" }, { + "term": "Core.Description", "value": "The resource or table of the listing or other record the media relates to. i.e. Property, Member, Office, etc." } ] @@ -23908,12 +27553,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordID+%28OtherPhone%29+Field" }, { + "term": "Core.Description", "value": "The well known identifier of the related record from the source resource. The value may be identical to that of the Listing Key, but the Listing ID is intended to be the value used by a human to retrieve the information about a specific listing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -23928,12 +27576,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordKey+%28OtherPhone%29+Field" }, { + "term": "Core.Description", "value": "The primary key of the related record from the source resource. For example the ListingKey, AgentKey, OfficeKey, TeamKey, etc. This is the system you are connecting to and not necessarily the original source of the record. This is a foreign key from the resource selected in the ResourceName field." } ] @@ -23947,12 +27598,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordKeyNumeric+%28OtherPhone%29+Field" }, { + "term": "Core.Description", "value": "The primary key of the related record from the source resource. For example the ListingKey, AgentKey, OfficeKey, TeamKey, etc. This is the system you are connecting to and not necessarily the original source of the record. This is a foreign key from the resource selected in the ResourceName field. This is the numeric only key and used as an alternative to the ResourceRecordKey field." } ] @@ -23967,12 +27621,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Building Verification Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenBuildingVerificationKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record. This is a string that can include URI or other forms. Alternatively use the \"...KeyNumeric\" for a numeric only key field. This is the local key of the system." } ] @@ -23986,12 +27643,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Building Verification Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenBuildingVerificationKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record. This is the numeric only key and used as an alternative to the string Key field. This is the local key of the system." } ] @@ -24005,12 +27665,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Building Verification Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenBuildingVerificationType+%28PropertyGreenVerification%29+Field" }, { + "term": "Core.Description", "value": "The name of the verification or certification awarded to a new or pre-existing residential or commercial structure. For example: LEED, Energy Star, ICC-700. In cases where more than one certification have been awarded, leverage multiple iterations of the green verification fields via the repeating element method." } ] @@ -24025,12 +27688,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Verification Body" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenVerificationBody+Field" }, { + "term": "Core.Description", "value": "The name of the body or group providing the verification/certification/rating named in the GreenBuildingVerificationType field. There is almost always a direct correlation between bodies and programs." } ] @@ -24044,12 +27710,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Verification Metric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenVerificationMetric+Field" }, { + "term": "Core.Description", "value": "A final score indicating the performance of energy efficiency design and measures in the home as tested by a third-party rater. Points achieved to earn a certification in the GreenVerificationRating field do not apply to this field. HERS Index is most common with new homes and runs with a lower number being more efficient. A net-zero home uses zero energy and has a HERS score of 0. A home that produces more energy than it uses has a negative score. Home Energy Score is a tool more common for existing homes and runs with a higher number being more efficient. It takes square footage into account and caps with 10 as the highest number of points." } ] @@ -24064,12 +27733,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Verification Rating" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenVerificationRating+Field" }, { + "term": "Core.Description", "value": "Many verifications or certifications have a rating system that provides an indication of the structure\u0027s level of energy efficiency. When expressed in a numeric value, please use the GreenVerificationMetric field. Verifications and Certifications can also be a name, such as Gold or Silver, which is the purpose of this field." } ] @@ -24083,12 +27755,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Verification Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenVerificationSource+Field" }, { + "term": "Core.Description", "value": "The source of the green data. May address photovoltaic characteristics, or a verified score, certification, label, etc. This may be a pick list of options showing the source. i.e. Program Sponsor, Program Verifier, Public Record, Assessor, etc." } ] @@ -24102,12 +27777,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Verification Status" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenVerificationStatus+Field" }, { + "term": "Core.Description", "value": "Many verification programs include a multi-step process that may begin with plans and specs, involve testing and/or submission of building specifications along the way and include a final verification step. When ratings are involved it is not uncommon for the final rating to be either higher or lower than the target preliminary rating. Sometimes the final approval is not available until after sale and occupancy. Status indicates what the target was at the time of listing and may be updated when verification is complete. To limit liability concerns this field reflects information that was available at the time of listing or updated later and should be confirmed by the buyer." } ] @@ -24122,12 +27800,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Verification URL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenVerificationURL+Field" }, { + "term": "Core.Description", "value": "Provides a link to the specific property’s high-performance rating or scoring details directly from and hosted by the sponsoring body of the program. Typically provides thorough details, for example, which points where achieved and how, or in the case of a score what specifically was tested and the results." } ] @@ -24142,12 +27823,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Verification Version" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenVerificationVersion+Field" }, { + "term": "Core.Description", "value": "The version of the certification or verification that was awarded. Some rating programs have a year, a version, or possibly both." } ] @@ -24161,12 +27845,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Verification Year" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GreenVerificationYear+Field" }, { + "term": "Core.Description", "value": "The year the certification or verification was awarded." } ] @@ -24181,12 +27868,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingId+%28PropertyGreenVerification%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign ID relating to the Property. The well known identifier for the listing. The value may be identical to that of the Listing Key, but the Listing ID is intended to be the value used by a human to retrieve the information about a specific listing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -24201,12 +27891,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKey+%28PropertyGreenVerification%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the Property. A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the ListingKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -24220,12 +27913,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKeyNumeric+%28PropertyGreenVerification%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the property resource. A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the ListingKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -24240,12 +27936,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28PropertyGreenVerification%29+Field" }, { + "term": "Core.Description", "value": "Date/time this record was last modified." } ] @@ -24260,12 +27959,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingId+%28PropertyPowerProduction%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign ID relating to the Property Resource. The well known identifier for the listing. The value may be identical to that of the Listing Key, but the Listing ID is intended to be the value used by a human to retrieve the information about a specific listing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -24280,12 +27982,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKey+%28PropertyPowerProduction%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the Property Resource. A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the ListingKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -24299,12 +28004,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKeyNumeric+%28PropertyPowerProduction%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the property resource. A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the ListingKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -24319,12 +28027,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28PropertyPowerProduction%29+Field" }, { + "term": "Core.Description", "value": "Date/time this record was last modified." } ] @@ -24338,12 +28049,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Power Production Annual" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PowerProductionAnnual+Field" }, { + "term": "Core.Description", "value": "The most important metric of a renewables system is the amount of power it produces per year. This number can be actual or estimated. Annual production for systems producing electricity like wind or solar are measured in kilowatt hours (kWh) per year. A kWh is like a measure of the distance traveled per hour for a car – how far did it go over a certain period of time. Annual production is influenced by the size of the system, the conditions (How shady are the trees? How many cloudy days?, and the installation. Sellers typically have access to software that provides historical production totals." } ] @@ -24357,12 +28071,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Power Production Annual Status" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PowerProductionAnnualStatus+Field" }, { + "term": "Core.Description", "value": "The most important metric of a renewables system is the amount of power it produces per year. This number can be actual or estimated, or a combination if less than 12 months of actual data is available (any missing months of actual data is extrapolated). This field allows the status of the number shown in the PowerProducationAnnual to be clarified." } ] @@ -24377,12 +28094,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Power Production Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PowerProductionKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record. This is a string that can include URI or other forms. Alternatively use the \"...KeyNumeric\" for a numeric only key field. This is the local key of the system." } ] @@ -24396,12 +28116,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Power Production Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PowerProductionKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record. This is the numeric only key and used as an alternative to the string Key field. This is the local key of the system." } ] @@ -24417,12 +28140,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Power Production Size" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PowerProductionSize+Field" }, { + "term": "Core.Description", "value": "The “capacity” of a renewables system. Size is measured in kilowatts (kW) DC (referring to direct current). A kW indicates how much power the system can produce under standard conditions, like the size of a car engine. Renewables systems are sized when they are installed to cover all or a portion of the power needs of the property. Therefore, a system designed to produce 50% of the power needs will be sized smaller than a system on the exact same property designed to produce 100%. Size may be influenced by available space at the property, orientation, landscaping, etc." } ] @@ -24436,12 +28162,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Power Production Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PowerProductionType+%28PropertyPowerProduction%29+Field" }, { + "term": "Core.Description", "value": "This field is a list of the type of power production system available on the property." } ] @@ -24455,12 +28184,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Power Production Year Install" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PowerProductionYearInstall+Field" }, { + "term": "Core.Description", "value": "The year a renewables system was installed. Ideally this should be the year the system was interconnected with the grid and began producing power. Renewables systems have a limited lifespan and year installed helps buyers and appraisers determine remaining useful life of the system." } ] @@ -24475,12 +28207,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingId+%28PropertyRooms%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign ID relating to the Property Resource. The well known identifier for the listing. The value may be identical to that of the Listing Key, but the Listing ID is intended to be the value used by a human to retrieve the information about a specific listing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -24495,12 +28230,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKey+%28PropertyRooms%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the Property Resource. A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the ListingKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -24514,12 +28252,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKeyNumeric+%28PropertyRooms%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the property resource. A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the ListingKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -24534,12 +28275,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28PropertyRooms%29+Field" }, { + "term": "Core.Description", "value": "Date/time this record was last modified." } ] @@ -24555,12 +28299,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Room Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomArea+Field" }, { + "term": "Core.Description", "value": "The area of the room being described. Use the RoomAreaUnits field to describe the unit of measurement for the value in this field." } ] @@ -24574,12 +28321,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Room Area Source" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomAreaSource+Field" }, { + "term": "Core.Description", "value": "The source of the measurement of the given room\u0027s area." } ] @@ -24593,12 +28343,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Room Area Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomAreaUnits+Field" }, { + "term": "Core.Description", "value": "The unit of measurement used for the value in the RoomArea field. e.g. square feet, square meters, etc." } ] @@ -24613,12 +28366,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Room Description" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomDescription+Field" }, { + "term": "Core.Description", "value": "A textual description of the given room." } ] @@ -24633,12 +28389,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Room Dimensions" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomDimensions+Field" }, { + "term": "Core.Description", "value": "A textual description of the dimensions of the given room." } ] @@ -24652,12 +28411,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Room Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomFeatures+Field" }, { + "term": "Core.Description", "value": "A list of features present in the given room." } ] @@ -24672,12 +28434,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Room Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record. This is a string that can include URI or other forms. Alternatively use the \"...KeyNumeric\" for a numeric only key field. This is the local key of the system." } ] @@ -24691,12 +28456,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Room Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record. This is the numeric only key and used as an alternative to the string Key field. This is the local key of the system." } ] @@ -24712,12 +28480,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Room Length" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomLength+Field" }, { + "term": "Core.Description", "value": "A numeric representation of the length of the given room. See the RoomLengthWidthUnits for the unit of measurement used for the length and width." } ] @@ -24731,12 +28502,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Room Length Width Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomLengthWidthUnits+Field" }, { + "term": "Core.Description", "value": "The unit of measurement used for the value in the RoomLength and the RoomWidth fields. e.g. feet, meters, etc." } ] @@ -24750,12 +28524,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Room Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomType+%28PropertyRooms%29+Field" }, { + "term": "Core.Description", "value": "The type of room being described by the other fields in the PropertyRooms resource." } ] @@ -24771,12 +28548,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Room Width" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RoomWidth+Field" }, { + "term": "Core.Description", "value": "A numeric representation of the width of the given room. See the RoomLengthWidthUnits for the unit of measurement used for the length and width." } ] @@ -24791,12 +28571,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingId+%28PropertyUnitTypes%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign ID relating to the Property Resource. The well known identifier for the listing. The value may be identical to that of the Listing Key, but the Listing ID is intended to be the value used by a human to retrieve the information about a specific listing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -24811,12 +28594,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKey+%28PropertyUnitTypes%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the Property Resource. A unique identifier for this record from the immediate source. This is a string that can include URI or other forms. Alternatively use the ListingKeyNumeric for a numeric only key field. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -24830,12 +28616,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListingKeyNumeric+%28PropertyUnitTypes%29+Field" }, { + "term": "Core.Description", "value": "This is the foreign key relating to the property resource. A unique identifier for this record from the immediate source. This is the numeric only key and used as an alternative to the ListingKey fields. This is the local key of the system. When records are received from other systems, a local key is commonly applied. If conveying the original keys from the source or originating systems, see SourceSystemKey and OriginatingSystemKey." } ] @@ -24850,12 +28639,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28PropertyUnitTypes%29+Field" }, { + "term": "Core.Description", "value": "Date/time this record was last modified." } ] @@ -24871,12 +28663,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Actual Rent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeActualRent+Field" }, { + "term": "Core.Description", "value": "The actual rent per month being collected for a given type of unit." } ] @@ -24890,12 +28685,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Baths Total" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeBathsTotal+Field" }, { + "term": "Core.Description", "value": "The total number of baths for a given type of unit." } ] @@ -24909,12 +28707,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Beds Total" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeBedsTotal+Field" }, { + "term": "Core.Description", "value": "The total number of bedrooms for a given type of unit." } ] @@ -24929,12 +28730,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Description" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeDescription+Field" }, { + "term": "Core.Description", "value": "A textual description of a given type of unit." } ] @@ -24948,12 +28752,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Furnished" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeFurnished+Field" }, { + "term": "Core.Description", "value": "The level of furnishing for a given type of unit. i.e. furnished, partial or unfurnished." } ] @@ -24967,12 +28774,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Garage Attached Yes/No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeGarageAttachedYN+Field" }, { + "term": "Core.Description", "value": "Does the given type of unit have an attached garage? Yes/No." } ] @@ -24988,12 +28798,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Garage Spaces" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeGarageSpaces+Field" }, { + "term": "Core.Description", "value": "The number of garage spaces included with the given type of unit." } ] @@ -25008,12 +28821,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeKey+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record. This is a string that can include URI or other forms. Alternatively use the \"...KeyNumeric\" for a numeric only key field. This is the local key of the system." } ] @@ -25027,12 +28843,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeKeyNumeric+Field" }, { + "term": "Core.Description", "value": "A unique identifier for this record. This is the numeric only key and used as an alternative to the string Key field. This is the local key of the system." } ] @@ -25046,12 +28865,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Pro Forma" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeProForma+Field" }, { + "term": "Core.Description", "value": "The pro forma rent, or the expected rental income from the given type of unit. This may vary from actual rent which can be affected by factors other than current market value." } ] @@ -25067,12 +28889,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Total Rent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeTotalRent+Field" }, { + "term": "Core.Description", "value": "The total actual rent is the sum of all rent being collected for all units of the given type. For example if you had 5 units of a particular type each collecting $1000, the total actual rent would be $5000." } ] @@ -25086,12 +28911,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeType+%28PropertyUnitTypes%29+Field" }, { + "term": "Core.Description", "value": "A list of possible Unit Types. i.e. 1, 2, 3 or 2 Bed, Studio, Special Loft, etc." } ] @@ -25105,12 +28933,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unit Type Units Total" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UnitTypeUnitsTotal+Field" }, { + "term": "Core.Description", "value": "The total number of units of the given type." } ] @@ -25124,12 +28955,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Class Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ClassName+%28SocialMedia%29+Field" }, { + "term": "Core.Description", "value": "Name of the class to which the record is referencing." } ] @@ -25144,12 +28978,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modification Timestamp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ModificationTimestamp+%28SocialMedia%29+Field" }, { + "term": "Core.Description", "value": "The transactional timestamp automatically recorded by the MLS system representing the date/time the media record was last modified." } ] @@ -25163,12 +29000,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Name" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceName+%28SocialMedia%29+Field" }, { + "term": "Core.Description", "value": "The resource or table of the listing or other record the media relates to. i.e. Property, Member, Office, etc." } ] @@ -25183,12 +29023,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordID+%28SocialMedia%29+Field" }, { + "term": "Core.Description", "value": "The well known identifier of the related record from the source resource. The value may be identical to that of the Listing Key, but the Listing ID is intended to be the value used by a human to retrieve the information about a specific listing. In a multiple originating system or a merged system, this value may not be unique and may require the use of the provider system to create a synthetic unique value." } ] @@ -25203,12 +29046,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordKey+%28SocialMedia%29+Field" }, { + "term": "Core.Description", "value": "The primary key of the related record from the source resource. For example the ListingKey, AgentKey, OfficeKey, TeamKey, etc. This is the system you are connecting to and not necessarily the original source of the record. This is a foreign key from the resource selected in the ResourceName field." } ] @@ -25222,12 +29068,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resource Record Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ResourceRecordKeyNumeric+%28SocialMedia%29+Field" }, { + "term": "Core.Description", "value": "The primary key of the related record from the source resource. For example the ListingKey, AgentKey, OfficeKey, TeamKey, etc. This is the system you are connecting to and not necessarily the original source of the record. This is a foreign key from the resource selected in the ResourceName field. This is the numeric only key and used as an alternative to the ResourceRecordKey field." } ] @@ -25242,12 +29091,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Social Media Key" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SocialMediaKey+Field" }, { + "term": "Core.Description", "value": "A system unique identifier. Specifically, in aggregation systems, the Key is the system unique identifier from the system that the record was just retrieved. This may be identical to the related xxxId identifier, but the key is guaranteed unique for this record set." } ] @@ -25261,12 +29113,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Social Media Key Numeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SocialMediaKeyNumeric+Field" }, { + "term": "Core.Description", "value": "The local, well-known identifier. This value may not be unique, specifically in the case of aggregation systems, this value should be the identifier from the original system." } ] @@ -25280,12 +29135,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Social Media Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SocialMediaType+%28SocialMedia%29+Field" }, { + "term": "Core.Description", "value": "A list of types of sites, blog, social media, the Member URL or ID is referring to. i.e. Website, Blog, Facebook, Twitter, LinkedIn, Skype, etc., This list is used to populate the Type with repeating Social Media URL or ID types." } ] @@ -25300,12 +29158,15 @@ "unicode": true, "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Social Media URL or ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SocialMediaUrlOrId+Field" }, { + "term": "Core.Description", "value": "The website URL or ID of social media site or account of the member. This is a repeating element. Replace [Type] with any of the options from the SocialMediaType field to create a unique field for that type of social media. For example: SocialMediaFacebookUrlOrID, SocialMediaSkypeUrlOrID, etc." } ] @@ -25318,12 +29179,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Appraiser" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Appraiser" }, { + "term": "Core.Description", "value": "An appraiser provided the measurement of the area." } ] @@ -25334,12 +29198,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assessor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Assessor" }, { + "term": "Core.Description", "value": "The assessor provided the measurement of the area." } ] @@ -25350,12 +29217,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Builder" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Builder" }, { + "term": "Core.Description", "value": "The builder provided the measurement of the area." } ] @@ -25366,12 +29236,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Estimated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Estimated" }, { + "term": "Core.Description", "value": "The measurement of the area is an estimate." } ] @@ -25382,12 +29255,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Other" }, { + "term": "Core.Description", "value": "The measurement of the area was provided by another party not listed." } ] @@ -25398,12 +29274,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Owner" }, { + "term": "Core.Description", "value": "The owner provided the measurement of the area." } ] @@ -25414,12 +29293,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Plans" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Plans" }, { + "term": "Core.Description", "value": "The measurement of the area was taken from building plans." } ] @@ -25430,12 +29312,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public Records" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Public+Records" }, { + "term": "Core.Description", "value": "The measurement of the area was received from public records." } ] @@ -25446,12 +29331,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/See+Remarks" }, { + "term": "Core.Description", "value": "See remarks for information about the source of the area measurement." } ] @@ -25462,12 +29350,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Square Feet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Square+Feet" }, { + "term": "Core.Description", "value": "The value reported in the related Area field is in square feet." } ] @@ -25478,12 +29369,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Square Meters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Square+Meters" }, { + "term": "Core.Description", "value": "The value reported in the related Area field is in square feet." } ] @@ -25494,12 +29388,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Approach with Ramp" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+Approach+with+Ramp" }, { + "term": "Core.Description", "value": "A minimum of one entrance to the structure with clear, evenly-paved walkway from parking area or pedestrian arrival area; Path of travel does not include a running slope in excess of 1:12 (8.33%); a cross slope exceeding 1:50 (2%); nor level changes of more than 1/2 inch; if slope is over 5%, handrails are required. Level landing; 32 inch clear width opening doors; and adequate lighting on pathway and landing. This is required to be considered \"Visitable\"." } ] @@ -25510,12 +29407,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Bedroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+Bedroom" }, { + "term": "Core.Description", "value": "Bedroom has adequate turnaround of 60 inches or other approved turnaround configuration; Closet doors have 32 inch clearance. Accessible environmental controls. Multiple lighting fixtures. This is required to be considered Enhanced Accessible. Optional: Some lower-height storage in closet. Remote control of lighting and environmental controls." } ] @@ -25526,12 +29426,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Central Living Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+Central+Living+Area" }, { + "term": "Core.Description", "value": "Hard surface flooring or low-pile carpet, securely attached along edges. Entrances to all rooms on all floors provide 36 inch clear passage. Multiple lighting fixtures installed to provide adaptable lighting for general purpose and tasks. This is required to be considered Enhanced Accessible." } ] @@ -25542,12 +29445,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Closets" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+Closets" }, { + "term": "Core.Description", "value": "Closet doors are 32” clearance throughout Central Living Area." } ] @@ -25558,12 +29464,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Common Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+Common+Area" }, { + "term": "Core.Description", "value": "Common Area, used for entertaining guests, is level, with 36-inch passage through and around the space. Required to be considered Visitable." } ] @@ -25574,12 +29483,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Doors" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+Doors" }, { + "term": "Core.Description", "value": "Minimum 32 inches clear passage; levered handle; threshold, if present, maximum 1/2-inch, but beveled on both sides when over 1/4 inch. Required to be considered Visitable or Enhanced Accessible." } ] @@ -25590,12 +29502,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Electrical and Environmental Controls" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+Electrical+and+Environmental+Controls" }, { + "term": "Core.Description", "value": "Thermostats and security system controls located on floor with central living area. Control devices for light switches and thermostats at 42-48 inches height off floor and side- to-side. Electrical plugs minimum of 18 inches above floor. This is required to be considered Enhanced Accessible. Optional: Rocker-style light switches; Lighted switches; Automatic/remote control for environmental controls." } ] @@ -25606,12 +29521,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Elevator Installed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+Elevator+Installed" }, { + "term": "Core.Description", "value": "Elevator with minimum 32\" door and minimum 36\" x 48\" turning radius." } ] @@ -25622,12 +29540,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Entrance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+Entrance" }, { + "term": "Core.Description", "value": "Entrance door is a minimum of 32 inches wide; threshold , when present, maximum 1/2-inch, but when over 1/4-inch, is beveled on both sides. The entry door has lever handle for egress. This is required to be considered Visitable. Optional: Entryway is covered; Bench near outside entry door; Motion-detection outside lights. Accessible peephole or other method for inside viewing of anyone outside the entry door. House number easily visible from street by emergency responders." } ] @@ -25638,12 +29559,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible for Hearing-Impairment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+for+Hearing-Impairment" }, { + "term": "Core.Description", "value": "Home is wired for flashing lights and/or vibrating smoke alarm, door bell, other alerting features." } ] @@ -25654,12 +29578,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Full Bath" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+Full+Bath" }, { + "term": "Core.Description", "value": "Bathroom has adequate turnaround: 60 inches or other approved turnaround configuration. Accessible bathing area: Roll-in shower or space for shower chair or transfer bench in bathtub. Slip-resistant surface on bathroom floor and bathtub/shower. Roll-under or side-access to sink, with padded trap. Lighting directly over shower/bathing areas, in addition to general bathroom lighting. This is required to be considered Enhanced Accessible. Optional: Removable cabinet doors and base under sink. Grab bars with shear force of 250 pounds, installed around toilet and shower/tub, with proper backing. Hand-held and/or height-adjustable shower head; automatic water temperature controlled (anti-scald) tub/shower; offset tub/shower controls toward front edge of tub/shower for easy access. Raised toilet (17-19 inches minimum)." } ] @@ -25670,12 +29597,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Hallway(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243658" }, { + "term": "Core.Description", "value": "Hallway is minimum 36, preferred 42 inches wide (or adequate alternative based on individual configuration). At least one lighting fixture is present." } ] @@ -25686,12 +29616,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Kitchen" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+Kitchen" }, { + "term": "Core.Description", "value": "40\" clear turn-around, or 36\" clear with clear under-counter space for T-turn space in kitchen, unimpeded by fixtures. Roll-under/adaptable sink with padded trap or side-access to sink. Roll-out shelves in at least 50% of lower cabinets, Roll-under work area (36\" clearance). Lighting fixtures directed over all task areas with adaptable control. This is required to be considered Enhanced Accessible. Optional: Adaptable under-sink cabinet with removable doors and cabinet base. Accessible features for upper kitchen cabinets. Space for side-by-side refrigerator (minimum 36 inches); Contrasting color counter edges for vison accessibility." } ] @@ -25702,12 +29635,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Kitchen Appliances" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+Kitchen+Appliances" }, { + "term": "Core.Description", "value": "Stove controls in front or side, at counter top height; Oven with side-access door at counter level; Microwave is at counter level. This is required to be considered Enhanced Accessible. Optional: Raised dishwasher. Microwave has clear work area below or to the right side." } ] @@ -25718,12 +29654,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Stairway" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accessible+Stairway" }, { + "term": "Core.Description", "value": "Handrails on both sides of stairs, extended when possible, with shear force of 250 pounds. Interior and exterior stairs have adequate number of light fixtures for full coverage. Non-slip stair treads. If stairs are carpeted, covering is non-moveable, low-pile carpet. This is required to be considered Enhanced Accessible. Optional: Stair treads are in high contrast colors for increased visibility." } ] @@ -25734,12 +29673,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accessible Washer/Dryer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243662" }, { + "term": "Core.Description", "value": "Raised clothes washer and/or dryer, front controls, side opening, both open to center." } ] @@ -25750,12 +29692,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Adaptable Bathroom Walls" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Adaptable+Bathroom+Walls" }, { + "term": "Core.Description", "value": "Reinforced main bathroom walls, including bath or shower, to permit installation of grab bars (with shear force of 250 pounds) and/or fixtures in the future. This is required to be considered Enhanced Accessible." } ] @@ -25766,12 +29711,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Adaptable For Elevator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Adaptable+For+Elevator" }, { + "term": "Core.Description", "value": "Stacked closets in a multi-story house for possible future conversion to an elevator." } ] @@ -25782,12 +29730,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ceiling Track" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ceiling+Track" }, { + "term": "Core.Description", "value": "Track installed in ceiling for lift chair (Hoyer lift)." } ] @@ -25798,12 +29749,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Central Living Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Central+Living+Area" }, { + "term": "Core.Description", "value": "Central Living Area includes: Common Area, hallway(s), full or 3/4 bathroom, kitchen, at least one bedroom, access to environmental controls, and access to floors above main floor, if necessary." } ] @@ -25814,12 +29768,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Common Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Common+Area" }, { + "term": "Core.Description", "value": "The Common Area is the portion of the home near accessible entrance, used for entertaining guests." } ] @@ -25830,12 +29787,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Customized Wheelchair Accessible" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Customized+Wheelchair+Accessible" }, { + "term": "Core.Description", "value": "Customized accessibility for specific size or style of wheelchair or scooter." } ] @@ -25846,12 +29806,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electronic Environmental Controls" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electronic+Environmental+Controls" }, { + "term": "Core.Description", "value": "Programmable electronic controls for thermostat, lights, security system and automatic doors." } ] @@ -25862,12 +29825,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Enhanced Accessible" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Enhanced+Accessible" }, { + "term": "Core.Description", "value": "The Central Living Area is fully accessible for lifelong living by all residents, no matter their ability. A person in a wheel chair or with other disability is able to perform all personal and housekeeping tasks. Persons without disabilities are also able to perform basic tasks with greater ease. To be considered \"Enhanced Accessible\" the home also includes all \"Visitable\" features." } ] @@ -25878,12 +29844,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exterior Wheelchair Lift" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Exterior+Wheelchair+Lift" }, { + "term": "Core.Description", "value": "Mechanical wheelchair lift is installed outside the home to facilitate barrier-free approach." } ] @@ -25894,12 +29863,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Grip-Accessible Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Grip-Accessible+Features" }, { + "term": "Core.Description", "value": "All doors, faucets and other mechanisms throughout central living area are lever, hands-free or other style that can be controlled with a closed, clenched fist or weak hands. This is required to be considered Enhanced Accessible. Optional: Wire pull (D-ring) handles or equivalent or easy touch latches on cabinets and drawers." } ] @@ -25910,12 +29882,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Reinforced Floors" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Reinforced+Floors" }, { + "term": "Core.Description", "value": "Reinforced floors for bariatric needs, power wheelchairs, therapeutic tub or heavy medical equipment." } ] @@ -25926,12 +29901,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Safe Emergency Egress from Home" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Safe+Emergency+Egress+from+Home" }, { + "term": "Core.Description", "value": "Minimum two, no-step, accessible egresses from Central Living Area. Window locks are 19 to 54 inches from the floor and can be opened with a closed fist. Emergency egress windows in sleeping areas require minimal effort to open. This is required to be considered Enhanced Accessible." } ] @@ -25942,12 +29920,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Smart Technology" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Smart+Technology" }, { + "term": "Core.Description", "value": "Smart Home (computer-controlled) and/or smart products— for example, voice activated controls, voice reminder, remote monitoring of individuals with dementia." } ] @@ -25958,12 +29939,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stair Lift" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Stair+Lift" }, { + "term": "Core.Description", "value": "Stair lift with motorized rail to climb interior or exterior stairway installed professionally." } ] @@ -25974,12 +29958,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Standby Generator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Standby+Generator" }, { + "term": "Core.Description", "value": "Backup generator for refrigeration of medications, life-sustaining medical equipment or essential room temperature control." } ] @@ -25990,12 +29977,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Therapeutic Whirlpool" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Therapeutic+Whirlpool" }, { + "term": "Core.Description", "value": "Therapeutic whirlpool, properly installed." } ] @@ -26006,12 +29996,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Visitable" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Visitable" }, { + "term": "Core.Description", "value": "The home is “visitable” for all guests: a person in a wheel chair can easily enter the home and access the main Common Area, a half-bathroom at minimum, and the hall leading to that bathroom." } ] @@ -26022,12 +30015,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Visitor Bathroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Visitor+Bathroom" }, { + "term": "Core.Description", "value": "Bathroom that is closest to Common Area. Minimum half bath. Door has minimum 32-inch clear width opening; lever handles. Minimum 60-inch turnaround or other approved turnaround configuration (30\" x 48\" clear space if door opens out.). Grab bar installed in toilet area with proper blocking. This is required to be considered Visitable." } ] @@ -26038,12 +30034,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Walker-Accessible Stairs" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Walker-Accessible+Stairs" }, { + "term": "Core.Description", "value": "Treads are minimum 25 inches deep, with maximum 4 inches rise, minimum 36 inches wide. May be a custom feature in addition to approach with ramp." } ] @@ -26054,12 +30053,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bar Fridge" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bar+Fridge" }, { + "term": "Core.Description", "value": "A refrigerator that is sized and/or built to be part of a bar." } ] @@ -26070,12 +30072,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Built-In Electric Oven" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Built-In+Electric+Oven" }, { + "term": "Core.Description", "value": "A built-in electric oven." } ] @@ -26086,12 +30091,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Built-In Electric Range" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Built-In+Electric+Range" }, { + "term": "Core.Description", "value": "A built-in electric range." } ] @@ -26102,12 +30110,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Built-In Freezer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Built-In+Freezer" }, { + "term": "Core.Description", "value": "A built-in freezer." } ] @@ -26118,12 +30129,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Built-In Gas Oven" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Built-In+Gas+Oven" }, { + "term": "Core.Description", "value": "A built-in gas oven" } ] @@ -26134,12 +30148,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Built-In Gas Range" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Built-In+Gas+Range" }, { + "term": "Core.Description", "value": "A built-in gas range." } ] @@ -26150,12 +30167,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Built-In Range" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Built-In+Range" }, { + "term": "Core.Description", "value": "A built-in range where the fuel type is not specified." } ] @@ -26166,12 +30186,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Built-In Refrigerator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Built-In+Refrigerator" }, { + "term": "Core.Description", "value": "A built-in refrigerator" } ] @@ -26182,12 +30205,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Convection Oven" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Convection+Oven" }, { + "term": "Core.Description", "value": "A convection oven (also known as a fan-assisted oven or simply a fan oven) is an oven that has fans to circulate air around food." } ] @@ -26198,12 +30224,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cooktop" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cooktop" }, { + "term": "Core.Description", "value": "A kitchen stove, often called simply a stove or a cooker, is a kitchen appliance designed for the purpose of cooking food. Kitchen stoves rely on the application of direct heat for the cooking process." } ] @@ -26214,12 +30243,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dishwasher" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dishwasher" }, { + "term": "Core.Description", "value": "A dishwasher is a mechanical device for cleaning dishware and cutlery." } ] @@ -26230,12 +30262,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Disposal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Disposal" }, { + "term": "Core.Description", "value": "A garbage disposal unit (also known as a garbage disposal, waste disposal unit, garbage disposer, or in Canadian English a garburator) is a device, usually electrically powered, installed under a kitchen sink between the sink\u0027s drain and the trap. The disposal unit shreds food waste into pieces small enough, generally less than 2 mm (0.079 in), to pass through plumbing." } ] @@ -26246,12 +30281,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Double Oven" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Double+Oven" }, { + "term": "Core.Description", "value": "A built-in oven fixture that has either two ovens, or one oven and one microwave oven. It is usually built into the kitchen cabinet." } ] @@ -26262,12 +30300,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Down Draft" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Down+Draft" }, { + "term": "Core.Description", "value": "A vent that is part of the surface of a cook top that has a fan which sucks cooking fumes/smoke down. This is an alternative to a hooded cooktop/range." } ] @@ -26278,12 +30319,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dryer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dryer" }, { + "term": "Core.Description", "value": "A cloths dryer." } ] @@ -26294,12 +30338,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric Cooktop" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electric+Cooktop" }, { + "term": "Core.Description", "value": "A cooktop or stove that produces heat by way of electricity rather than gas. An induction cooktop is electric, but not all electric cooktops are induction." } ] @@ -26310,12 +30357,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric Oven" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electric+Oven" }, { + "term": "Core.Description", "value": "An oven that is heated by electricity, typically by way of heating coils." } ] @@ -26326,12 +30376,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric Range" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electric+Range" }, { + "term": "Core.Description", "value": "An oven and cooktop that generates heat by way of electricity." } ] @@ -26342,12 +30395,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric Water Heater" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electric+Water+Heater" }, { + "term": "Core.Description", "value": "A water heater that heats the water by way of electricity." } ] @@ -26358,12 +30414,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR Qualified Appliances" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+Appliances" }, { + "term": "Core.Description", "value": "The property includes Energy Star qualified appliances." } ] @@ -26374,12 +30433,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR Qualified Dishwasher" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+Dishwasher" }, { + "term": "Core.Description", "value": "The property includes an Energy Star qualified dishwasher." } ] @@ -26390,12 +30452,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR Qualified Dryer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+Dryer" }, { + "term": "Core.Description", "value": "The property includes an Energy Star qualified cloths dryer." } ] @@ -26406,12 +30471,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR Qualified Freezer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+Freezer" }, { + "term": "Core.Description", "value": "The property includes an Energy Star qualified freezer." } ] @@ -26422,12 +30490,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR Qualified Refrigerator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+Refrigerator" }, { + "term": "Core.Description", "value": "The property includes an Energy Star qualified refrigerator." } ] @@ -26438,12 +30509,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR Qualified Washer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+Washer" }, { + "term": "Core.Description", "value": "The property includes an Energy Star qualified cloths washer." } ] @@ -26454,12 +30528,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR Qualified Water Heater" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+Water+Heater" }, { + "term": "Core.Description", "value": "The property includes an Energy Star qualified water heater." } ] @@ -26470,12 +30547,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exhaust Fan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Exhaust+Fan" }, { + "term": "Core.Description", "value": "The cooktop has an exhaust fan." } ] @@ -26486,12 +30566,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Free-Standing Electric Oven" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Free-Standing+Electric+Oven" }, { + "term": "Core.Description", "value": "The oven is free standing, not built-in, and uses electricity to produce heat." } ] @@ -26502,12 +30585,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Free-Standing Electric Range" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Free-Standing+Electric+Range" }, { + "term": "Core.Description", "value": "The range is free standing, not built-in, and uses electricity to produce heat for its oven and cooktop." } ] @@ -26518,12 +30604,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Free-Standing Freezer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Free-Standing+Freezer" }, { + "term": "Core.Description", "value": "The freezer is free standing and not built-in." } ] @@ -26534,12 +30623,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Free-Standing Gas Oven" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Free-Standing+Gas+Oven" }, { + "term": "Core.Description", "value": "The oven is free standing, not built-in, and uses gas to produce heat." } ] @@ -26550,12 +30642,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Free-Standing Gas Range" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Free-Standing+Gas+Range" }, { + "term": "Core.Description", "value": "The range is free standing, not built-in, and uses gas to produce heat for its oven and cooktop." } ] @@ -26566,12 +30661,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Free-Standing Range" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Free-Standing+Range" }, { + "term": "Core.Description", "value": "The range is free standing, not built-in." } ] @@ -26582,12 +30680,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Free-Standing Refrigerator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Free-Standing+Refrigerator" }, { + "term": "Core.Description", "value": "The refrigerator is free-standing, not built-in." } ] @@ -26598,12 +30699,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Freezer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Freezer" }, { + "term": "Core.Description", "value": "The property includes a freezer." } ] @@ -26614,12 +30718,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas Cooktop" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gas+Cooktop" }, { + "term": "Core.Description", "value": "A cooktop or stove that produces heat by way of gas rather than electricity. An induction cooktop is electric, but not all electric cooktops are induction." } ] @@ -26630,12 +30737,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas Oven" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gas+Oven" }, { + "term": "Core.Description", "value": "An oven that is heated by gas." } ] @@ -26646,12 +30756,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas Range" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gas+Range" }, { + "term": "Core.Description", "value": "An oven and cooktop that generates heat by way of gas." } ] @@ -26662,12 +30775,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas Water Heater" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gas+Water+Heater" }, { + "term": "Core.Description", "value": "A water heater that heats the water with gas." } ] @@ -26678,12 +30794,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Humidifier" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Humidifier" }, { + "term": "Core.Description", "value": "The property includes a humidity control device or system." } ] @@ -26694,12 +30813,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ice Maker" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ice+Maker" }, { + "term": "Core.Description", "value": "The property includes an ice maker." } ] @@ -26710,12 +30832,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Indoor Grill" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Indoor+Grill" }, { + "term": "Core.Description", "value": "The property has an indoor grill." } ] @@ -26726,12 +30851,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Induction Cooktop" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Induction+Cooktop" }, { + "term": "Core.Description", "value": "The electric cooktop is based on magnetic induction rather than heating coils." } ] @@ -26742,12 +30870,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Instant Hot Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Instant+Hot+Water" }, { + "term": "Core.Description", "value": "The property has a circulatory or instant hot water system." } ] @@ -26758,12 +30889,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Microwave" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Microwave" }, { + "term": "Core.Description", "value": "The property includes a microwave." } ] @@ -26774,12 +30908,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243734" }, { + "term": "Core.Description", "value": "The property includes no appliances." } ] @@ -26790,12 +30927,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243735" }, { + "term": "Core.Description", "value": "The property includes appliances other than those available in this list." } ] @@ -26806,12 +30946,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Oven" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Oven" }, { + "term": "Core.Description", "value": "The property includes an oven." } ] @@ -26822,12 +30965,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Plumbed For Ice Maker" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Plumbed+For+Ice+Maker" }, { + "term": "Core.Description", "value": "The property has plumbing for an ice maker." } ] @@ -26838,12 +30984,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Portable Dishwasher" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Portable+Dishwasher" }, { + "term": "Core.Description", "value": "The property includes a portable dishwasher." } ] @@ -26854,12 +31003,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Propane Cooktop" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Propane+Cooktop" }, { + "term": "Core.Description", "value": "The gas cooktop uses propane as its fuel and either has a local tank or runs on a house wide propane system." } ] @@ -26870,12 +31022,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Range" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Range" }, { + "term": "Core.Description", "value": "The property includes a range, which is a single unit that has both an oven and a cooktop." } ] @@ -26886,12 +31041,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Range Hood" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Range+Hood" }, { + "term": "Core.Description", "value": "The range has a hooded exhaust." } ] @@ -26902,12 +31060,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Refrigerator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Refrigerator" }, { + "term": "Core.Description", "value": "The property includes a refrigerator." } ] @@ -26918,12 +31079,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Self Cleaning Oven" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Self+Cleaning+Oven" }, { + "term": "Core.Description", "value": "The oven included with the property has a self-cleaning feature." } ] @@ -26934,12 +31098,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Solar Hot Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Solar+Hot+Water" }, { + "term": "Core.Description", "value": "The hot water heater has either a passive or active solar component." } ] @@ -26950,12 +31117,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stainless Steel Appliance(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243745" }, { + "term": "Core.Description", "value": "Some or all of the appliances included in the property are stainless steal." } ] @@ -26966,12 +31136,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tankless Water Heater" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tankless+Water+Heater" }, { + "term": "Core.Description", "value": "A tankless water heater is included with the property." } ] @@ -26982,12 +31155,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trash Compactor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Trash+Compactor" }, { + "term": "Core.Description", "value": "The property has a trash compactor." } ] @@ -26998,12 +31174,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vented Exhaust Fan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Vented+Exhaust+Fan" }, { + "term": "Core.Description", "value": "The cooktop has an exhaust fan that is vented." } ] @@ -27014,12 +31193,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Warming Drawer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Warming+Drawer" }, { + "term": "Core.Description", "value": "The property has a warming drawer." } ] @@ -27030,12 +31212,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Washer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Washer" }, { + "term": "Core.Description", "value": "The property includes a cloths washer." } ] @@ -27046,12 +31231,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Washer/Dryer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243751" }, { + "term": "Core.Description", "value": "The property includes a cloths washer and dryer." } ] @@ -27062,12 +31250,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Washer/Dryer Stacked" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243752" }, { + "term": "Core.Description", "value": "The property has a stacked cloths washer and dryer." } ] @@ -27078,12 +31269,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Heater" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243753" }, { + "term": "Core.Description", "value": "The property has a water heater." } ] @@ -27094,12 +31288,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Purifier" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Water+Purifier" }, { + "term": "Core.Description", "value": "The property has a water purifier." } ] @@ -27110,12 +31307,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Purifier Owned" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Water+Purifier+Owned" }, { + "term": "Core.Description", "value": "The property has a water purifier that is owned and not rented/leased." } ] @@ -27126,12 +31326,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Purifier Rented" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Water+Purifier+Rented" }, { + "term": "Core.Description", "value": "The property has a water purifier that is on a rental or lease agreement." } ] @@ -27142,12 +31345,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Softener" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Water+Softener" }, { + "term": "Core.Description", "value": "The property has a water softening system." } ] @@ -27158,12 +31364,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Softener Owned" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Water+Softener+Owned" }, { + "term": "Core.Description", "value": "The property has a water softening system that is owned and not rented/leased." } ] @@ -27174,12 +31383,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Softener Rented" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Water+Softener+Rented" }, { + "term": "Core.Description", "value": "The property has a water softening system that is on a rental or lease agreement." } ] @@ -27190,12 +31402,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wine Cooler" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wine+Cooler" }, { + "term": "Core.Description", "value": "The property includes a wine cooler." } ] @@ -27206,12 +31421,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wine Refrigerator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wine+Refrigerator" }, { + "term": "Core.Description", "value": "The property includes a wine refrigerator." } ] @@ -27227,12 +31445,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Airport/Runway" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243763" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes access or some service related to an airport or runway." } ] @@ -27243,12 +31464,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Barbecue" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Barbecue" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a barbecue." } ] @@ -27259,12 +31483,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Basketball Court" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Basketball+Court" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a basketball court." } ] @@ -27275,12 +31502,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Beach Access" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Beach+Access" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes access to a beach." } ] @@ -27291,12 +31521,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Beach Rights" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Beach+Rights" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of a beach that has beach rights restrictions." } ] @@ -27307,12 +31540,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Billiard Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Billiard+Room" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a billiard room." } ] @@ -27323,12 +31559,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Boat Dock" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Boat+Dock" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a boat dock." } ] @@ -27339,12 +31578,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Boating" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Boating" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, boating." } ] @@ -27355,12 +31597,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Boat Slip" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243771" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a boat slip." } ] @@ -27371,12 +31616,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cabana" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243773" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a cabana." } ] @@ -27387,12 +31635,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cable TV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243774" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes cable based services." } ] @@ -27403,12 +31654,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Car Wash Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Car+Wash+Area" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, an are to wash your car." } ] @@ -27419,12 +31673,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Clubhouse" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Clubhouse" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a clubhouse." } ] @@ -27435,12 +31692,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Coin Laundry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Coin+Laundry" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a coin laundry." } ] @@ -27451,12 +31711,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concierge" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Concierge" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a concierge service." } ] @@ -27467,12 +31730,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Day Care" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Day+Care" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a day care service." } ] @@ -27483,12 +31749,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dog Park" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dog+Park" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a dog park." } ] @@ -27499,12 +31768,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dry Dock" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dry+Dock" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a dry dock." } ] @@ -27515,12 +31787,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electricity" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243782" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes electricity." } ] @@ -27531,12 +31806,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Elevator(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243783" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, an elevator(s)." } ] @@ -27547,12 +31825,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exercise Course" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Exercise+Course" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, an exercise course." } ] @@ -27563,12 +31844,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fitness Center" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fitness+Center" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a fitness center." } ] @@ -27579,12 +31863,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Game Court Exterior" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Game+Court+Exterior" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, an outdoors game court." } ] @@ -27595,12 +31882,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Game Court Interior" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Game+Court+Interior" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, an indoors game court." } ] @@ -27611,12 +31901,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Game Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243788" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a game room ." } ] @@ -27627,12 +31920,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243789" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes natural gas." } ] @@ -27643,12 +31939,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gated" }, { + "term": "Core.Description", "value": "The home owner\u0027s association property/area is gated." } ] @@ -27659,12 +31958,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Golf Course" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243791" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a golf course." } ] @@ -27675,12 +31977,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hot Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243792" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes hot water." } ] @@ -27691,12 +31996,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Indoor Pool" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Indoor+Pool" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, an indoor pool." } ] @@ -27707,12 +32015,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Insurance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243794" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes insurance." } ] @@ -27723,12 +32034,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Jogging Path" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Jogging+Path" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a jogging path." } ] @@ -27739,12 +32053,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Landscaping" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243796" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes landscaping." } ] @@ -27755,12 +32072,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Laundry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243797" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes laundry." } ] @@ -27771,12 +32091,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maid service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Maid+service" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a maid service." } ] @@ -27787,12 +32110,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maintenance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243799" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes maintenance." } ] @@ -27803,12 +32129,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maintenance Grounds" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243838" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes grounds maintenance." } ] @@ -27819,12 +32148,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maintenance Structure" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243772" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes building maintenance." } ] @@ -27835,12 +32167,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Management" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243800" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes management services." } ] @@ -27851,12 +32186,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Marina" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Marina" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a marina." } ] @@ -27867,12 +32205,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Meeting Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Meeting+Room" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a meeting room." } ] @@ -27883,12 +32224,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243803" }, { + "term": "Core.Description", "value": "The home owner\u0027s association has no amenities." } ] @@ -27899,12 +32243,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243804" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes amenities not included in this list." } ] @@ -27915,12 +32262,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Park" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Park" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a park." } ] @@ -27931,12 +32281,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Parking" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243806" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, parking." } ] @@ -27947,12 +32300,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Party Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Party+Room" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a party room." } ] @@ -27963,12 +32319,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Picnic Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Picnic+Area" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a picnic area." } ] @@ -27979,12 +32338,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Playground" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Playground" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a playground." } ] @@ -27995,12 +32357,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pond Seasonal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pond+Seasonal" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a seasonal pond." } ] @@ -28011,12 +32376,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pond Year Round" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pond+Year+Round" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a year round pond." } ] @@ -28027,12 +32395,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243812" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a pool." } ] @@ -28043,12 +32414,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Powered Boats Allowed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Powered+Boats+Allowed" }, { + "term": "Core.Description", "value": "The home owner\u0027s association allows the use of powered boats." } ] @@ -28059,12 +32433,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Racquetball" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Racquetball" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a racquetball court(s)." } ] @@ -28075,12 +32452,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Recreation Facilities" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Recreation+Facilities" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, recreation facilities." } ] @@ -28091,12 +32471,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Recreation Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243816" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a recreation room." } ] @@ -28107,12 +32490,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Roof Deck" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Roof+Deck" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a roof deck." } ] @@ -28123,12 +32509,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RV/Boat Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243818" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, RV and/or boat storage." } ] @@ -28139,12 +32528,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RV Parking" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RV+Parking" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, recreational vehicle (RV) parking." } ] @@ -28155,12 +32547,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sauna" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243820" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a sauna." } ] @@ -28171,12 +32566,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243821" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes security services." } ] @@ -28187,12 +32585,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Service Elevator(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243822" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a service elevator(s)." } ] @@ -28203,12 +32604,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Shuffleboard Court" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Shuffleboard+Court" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a shuffleboard court." } ] @@ -28219,12 +32623,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ski Accessible" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ski+Accessible" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes access to skiing." } ] @@ -28235,12 +32642,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Snow Removal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243825" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes snow removal." } ] @@ -28251,12 +32661,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Spa/Hot Tub" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243826" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a spa and/or hot tub." } ] @@ -28267,12 +32680,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sport Court" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sport+Court" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a sport court." } ] @@ -28283,12 +32699,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stable(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243828" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, horse stable(s)." } ] @@ -28299,12 +32718,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243829" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes storage space." } ] @@ -28315,12 +32737,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stream Seasonal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Stream+Seasonal" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a seasonal stream." } ] @@ -28331,12 +32756,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stream Year Round" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Stream+Year+Round" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a year round accessible stream." } ] @@ -28347,12 +32775,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Taxes" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243832" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes taxes." } ] @@ -28363,12 +32794,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tennis Court(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243833" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a tennis court(s)." } ] @@ -28379,12 +32813,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trail(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243834" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a trail(s)." } ] @@ -28395,12 +32832,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trash" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243835" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes trash service." } ] @@ -28411,12 +32851,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243836" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes water." } ] @@ -28427,12 +32870,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Workshop Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Workshop+Area" }, { + "term": "Core.Description", "value": "The home owner\u0027s association includes use of, or access to, a workshop area." } ] @@ -28443,12 +32889,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Annually" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Annually" }, { + "term": "Core.Description", "value": "Fee is paid or received once a year." } ] @@ -28459,12 +32908,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bi-Monthly" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bi-Monthly" }, { + "term": "Core.Description", "value": "Fee is paid or received every other month." } ] @@ -28475,12 +32927,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bi-Weekly" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bi-Weekly" }, { + "term": "Core.Description", "value": "Fee is paid or received every other week." } ] @@ -28491,12 +32946,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Daily" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Daily" }, { + "term": "Core.Description", "value": "Fee is paid or received daily." } ] @@ -28507,12 +32965,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Monthly" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Monthly" }, { + "term": "Core.Description", "value": "Fee is paid or received once a month." } ] @@ -28523,12 +32984,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "One Time" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/One+Time" }, { + "term": "Core.Description", "value": "Fee is paid or received once and is not reoccurring." } ] @@ -28539,12 +33003,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Quarterly" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Quarterly" }, { + "term": "Core.Description", "value": "Fee is paid or received every three months." } ] @@ -28555,12 +33022,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seasonal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Seasonal" }, { + "term": "Core.Description", "value": "Fee is paid or received seasonally." } ] @@ -28571,12 +33041,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Semi-Annually" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Semi-Annually" }, { + "term": "Core.Description", "value": "Fee is paid or received twice a year." } ] @@ -28587,12 +33060,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Semi-Monthly" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Semi-Monthly" }, { + "term": "Core.Description", "value": "Fee is paid or received twice a month, generally on the 1st and 15th, but that may vary." } ] @@ -28603,12 +33079,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Weekly" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Weekly" }, { + "term": "Core.Description", "value": "Fee is paid or received weekly." } ] @@ -28619,12 +33098,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cable TV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cable+TV" }, { + "term": "Core.Description", "value": "Cable TV is included in the fee paid to the Association." } ] @@ -28635,12 +33117,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Earthquake Insurance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Earthquake+Insurance" }, { + "term": "Core.Description", "value": "Earthquake Insurance is included in the fee paid to the Association." } ] @@ -28651,12 +33136,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electricity" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electricity" }, { + "term": "Core.Description", "value": "Electricity is included in the fee paid to the Association." } ] @@ -28667,12 +33155,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gas" }, { + "term": "Core.Description", "value": "Gas is included in the fee paid to the Association." } ] @@ -28683,12 +33174,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Insurance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Insurance" }, { + "term": "Core.Description", "value": "Insurance is included in the fee paid to the Association." } ] @@ -28699,12 +33193,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Internet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243641" }, { + "term": "Core.Description", "value": "Internet access is included with the Home Owner’s Association dues paid by the owner. Questions about the means of access (e.g. wifi, ethernet), the speed of the access and other information about the Internet Service Provider (ISP) may be directed to the Home Owner’s Association." } ] @@ -28715,12 +33212,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maintenance Grounds" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Maintenance+Grounds" }, { + "term": "Core.Description", "value": "Maintenance of the grounds including lawns and common areas but not including exterior structures." } ] @@ -28731,12 +33231,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maintenance Structure" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243632" }, { + "term": "Core.Description", "value": "Maintenance of the exterior of the structure including roofing, walls, exterior structures and does not include the grounds." } ] @@ -28747,12 +33250,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pest Control" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pest+Control" }, { + "term": "Core.Description", "value": "Pest Control is included in the fee paid to the Association." } ] @@ -28763,12 +33269,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Security" }, { + "term": "Core.Description", "value": "Security is included in the fee paid to the Association." } ] @@ -28779,12 +33288,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sewer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sewer" }, { + "term": "Core.Description", "value": "Sewer is included in the fee paid to the Association." } ] @@ -28795,12 +33307,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Snow Removal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Snow+Removal" }, { + "term": "Core.Description", "value": "Snow Removal is included in the fee paid to the Association." } ] @@ -28811,12 +33326,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trash" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Trash" }, { + "term": "Core.Description", "value": "Trash is included in the fee paid to the Association." } ] @@ -28827,12 +33345,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Utilities" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Utilities" }, { + "term": "Core.Description", "value": "Utilities is included in the fee paid to the Association." } ] @@ -28843,12 +33364,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Water" }, { + "term": "Core.Description", "value": "Water is included in the fee paid to the Association." } ] @@ -28859,12 +33383,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Apartment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244002" }, { + "term": "Core.Description", "value": "The basement is setup as an apartment living space." } ] @@ -28875,12 +33402,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bath/Stubbed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244003" }, { + "term": "Core.Description", "value": "The basement is stubbed for a bathroom." } ] @@ -28891,12 +33421,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Block" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244004" }, { + "term": "Core.Description", "value": "The basement has block construction." } ] @@ -28907,12 +33440,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concrete" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244005" }, { + "term": "Core.Description", "value": "The basement has a concrete floor and/or walls." } ] @@ -28923,12 +33459,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Crawl Space" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Crawl+Space" }, { + "term": "Core.Description", "value": "The basement is/has a crawl space." } ] @@ -28939,12 +33478,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Daylight" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Daylight" }, { + "term": "Core.Description", "value": "The basement has natural lighting." } ] @@ -28955,12 +33497,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dirt Floor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dirt+Floor" }, { + "term": "Core.Description", "value": "The basement has a dirt floor." } ] @@ -28971,12 +33516,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exterior Entry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Exterior+Entry" }, { + "term": "Core.Description", "value": "The basement has an exterior entry." } ] @@ -28987,12 +33535,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Finished" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Finished" }, { + "term": "Core.Description", "value": "The basement is finished to a given standard of competition. Examples may include underlayment and flooring; walls are framed, insulated, drywalled and painted; etc." } ] @@ -29003,12 +33554,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "French Drain" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/French+Drain" }, { + "term": "Core.Description", "value": "The basement has a French drain." } ] @@ -29019,12 +33573,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Full" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244012" }, { + "term": "Core.Description", "value": "The basement fills the entire space under the house." } ] @@ -29035,12 +33592,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Interior Entry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Interior+Entry" }, { + "term": "Core.Description", "value": "The basement has an interior entry." } ] @@ -29051,12 +33611,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244014" }, { + "term": "Core.Description", "value": "The property has no basement." } ] @@ -29067,12 +33630,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244015" }, { + "term": "Core.Description", "value": "The basement has features or attributes other than those listed in this field." } ] @@ -29083,12 +33649,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Partial" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244016" }, { + "term": "Core.Description", "value": "The basement partially fills the space under the house." } ] @@ -29099,12 +33668,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Partially Finished" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Partially+Finished" }, { + "term": "Core.Description", "value": "The basement is partially finished. Some finishing work is done but not all. Examples may include underlayment and flooring; walls are framed, insulated, drywalled and painted; etc." } ] @@ -29115,12 +33687,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Storage Space" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Storage+Space" }, { + "term": "Core.Description", "value": "The basement has storage space." } ] @@ -29131,12 +33706,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sump Pump" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sump+Pump" }, { + "term": "Core.Description", "value": "The basement has a sump pump." } ] @@ -29147,12 +33725,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unfinished" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Unfinished" }, { + "term": "Core.Description", "value": "The basement is unfinished." } ] @@ -29163,12 +33744,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Walk-Out Access" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Walk-Out+Access" }, { + "term": "Core.Description", "value": "A walk-out basement is a structure where the basement space directly accessible from the outside with the entryway level with the ground." } ] @@ -29179,12 +33763,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Walk-Up Access" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Walk-Up+Access" }, { + "term": "Core.Description", "value": "A walk-up basement is a structure where the basement space directly accessible from the outside with the entryway below ground and usually exterior stairs leading up to ground level." } ] @@ -29195,12 +33782,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Double Wide" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Double+Wide" }, { + "term": "Core.Description", "value": "The body/structure type of the mobile/manufacture home is double wide." } ] @@ -29211,12 +33801,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Expando" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Expando" }, { + "term": "Core.Description", "value": "The body/structure type of the mobile/manufacture home is Expando." } ] @@ -29227,12 +33820,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243847" }, { + "term": "Core.Description", "value": "A body type not included in this list." } ] @@ -29243,12 +33839,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Quad Wide" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Quad+Wide" }, { + "term": "Core.Description", "value": "The body/structure type of the mobile/manufacture home is quad wide." } ] @@ -29259,12 +33858,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243844" }, { + "term": "Core.Description", "value": "The body/structure type of the mobile/manufacture home is see remarks." } ] @@ -29275,12 +33877,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Single Wide" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Single+Wide" }, { + "term": "Core.Description", "value": "The body/structure type of the mobile/manufacture home is single wide." } ] @@ -29291,12 +33896,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Triple Wide" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Triple+Wide" }, { + "term": "Core.Description", "value": "The body/structure type of the mobile/manufacture home is triple wide." } ] @@ -29312,12 +33920,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accounting" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accounting" }, { + "term": "Core.Description", "value": "The listing is for an accounting business." } ] @@ -29328,12 +33939,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Administrative and Support" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Administrative+and+Support" }, { + "term": "Core.Description", "value": "The listing is for an administrative and support business." } ] @@ -29344,12 +33958,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Advertising" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Advertising" }, { + "term": "Core.Description", "value": "The listing is for an advertising business." } ] @@ -29360,12 +33977,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agriculture" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Agriculture" }, { + "term": "Core.Description", "value": "The listing is for an agriculture business." } ] @@ -29376,12 +33996,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Animal Grooming" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Animal+Grooming" }, { + "term": "Core.Description", "value": "The listing is for an animal grooming business." } ] @@ -29392,12 +34015,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Appliances" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Appliances" }, { + "term": "Core.Description", "value": "The listing is for an appliances business." } ] @@ -29408,12 +34034,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Aquarium Supplies" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Aquarium+Supplies" }, { + "term": "Core.Description", "value": "The listing is for an aquarium supplies business." } ] @@ -29424,12 +34053,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Arts and Entertainment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Arts+and+Entertainment" }, { + "term": "Core.Description", "value": "The listing is for an arts and entertainment business." } ] @@ -29440,12 +34072,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Athletic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Athletic" }, { + "term": "Core.Description", "value": "The listing is for an athletic business." } ] @@ -29456,12 +34091,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Auto Body" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Auto+Body" }, { + "term": "Core.Description", "value": "The listing is for an Auto Body business." } ] @@ -29472,12 +34110,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Auto Dealer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Auto+Dealer" }, { + "term": "Core.Description", "value": "The listing is for an auto dealer business." } ] @@ -29488,12 +34129,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Auto Glass" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Auto+Glass" }, { + "term": "Core.Description", "value": "The listing is for an Auto Glass business." } ] @@ -29504,12 +34148,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Auto Parts" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Auto+Parts" }, { + "term": "Core.Description", "value": "The listing is for an Auto Parts business." } ] @@ -29520,12 +34167,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Auto Rent/Lease" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243862" }, { + "term": "Core.Description", "value": "The listing is for an Auto Rent/Lease business." } ] @@ -29536,12 +34186,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Auto Repair-Specialty" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Auto+Repair-Specialty" }, { + "term": "Core.Description", "value": "The listing is for an Auto Repair-Specialty business." } ] @@ -29552,12 +34205,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Auto Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Auto+Service" }, { + "term": "Core.Description", "value": "The listing is for an auto service business." } ] @@ -29568,12 +34224,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Auto Stereo/Alarm" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243865" }, { + "term": "Core.Description", "value": "The listing is for an Auto Stereo/Alarm business." } ] @@ -29584,12 +34243,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Auto Tires" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Auto+Tires" }, { + "term": "Core.Description", "value": "The listing is for an Auto Tires business." } ] @@ -29600,12 +34262,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Auto Wrecking" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Auto+Wrecking" }, { + "term": "Core.Description", "value": "The listing is for an Auto Wrecking business." } ] @@ -29616,12 +34281,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bakery" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bakery" }, { + "term": "Core.Description", "value": "The listing is for a bakery business." } ] @@ -29632,12 +34300,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Barber/Beauty" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243870" }, { + "term": "Core.Description", "value": "The listing is for a barber/beauty business." } ] @@ -29648,12 +34319,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bar/Tavern/Lounge" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243869" }, { + "term": "Core.Description", "value": "The listing is for a bar/tavern/lounge business." } ] @@ -29664,12 +34338,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bed \u0026 Breakfast" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243871" }, { + "term": "Core.Description", "value": "The listing is for a bed \u0026 breakfast business." } ] @@ -29680,12 +34357,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Books/Cards/Stationary" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243872" }, { + "term": "Core.Description", "value": "The listing is for a Books/Cards/Stationary business." } ] @@ -29696,12 +34376,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Butcher" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Butcher" }, { + "term": "Core.Description", "value": "The listing is for a butcher business." } ] @@ -29712,12 +34395,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cabinets" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cabinets" }, { + "term": "Core.Description", "value": "The listing is for a Cabinets business." } ] @@ -29728,12 +34414,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Candy/Cookie" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243875" }, { + "term": "Core.Description", "value": "The listing is for a Candy/Cookie business." } ] @@ -29744,12 +34433,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Carpet/Tile" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243877" }, { + "term": "Core.Description", "value": "The listing is for a Carpet/Tile business." } ] @@ -29760,12 +34452,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Car Wash" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Car+Wash" }, { + "term": "Core.Description", "value": "The listing is for a car wash business." } ] @@ -29776,12 +34471,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Child Care" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Child+Care" }, { + "term": "Core.Description", "value": "The listing is for a child care business." } ] @@ -29792,12 +34490,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Church" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Church" }, { + "term": "Core.Description", "value": "The listing is for a church business." } ] @@ -29808,12 +34509,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Clothing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Clothing" }, { + "term": "Core.Description", "value": "The listing is for a clothing business." } ] @@ -29824,12 +34528,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Commercial" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Commercial" }, { + "term": "Core.Description", "value": "The listing is for a commercial business." } ] @@ -29840,12 +34547,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Computer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Computer" }, { + "term": "Core.Description", "value": "The listing is for a computer business." } ] @@ -29856,12 +34566,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Construction/Contractor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243883" }, { + "term": "Core.Description", "value": "The listing is for a construction/contractor business." } ] @@ -29872,12 +34585,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Convalescent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Convalescent" }, { + "term": "Core.Description", "value": "The listing is for a Convalescent business." } ] @@ -29888,12 +34604,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Convenience Store" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Convenience+Store" }, { + "term": "Core.Description", "value": "The listing is for a convenience store business." } ] @@ -29904,12 +34623,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dance Studio" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dance+Studio" }, { + "term": "Core.Description", "value": "The listing is for a Dance Studio business." } ] @@ -29920,12 +34642,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Decorator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Decorator" }, { + "term": "Core.Description", "value": "The listing is for a Decorator business." } ] @@ -29936,12 +34661,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Deli/Catering" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243888" }, { + "term": "Core.Description", "value": "The listing is for a Deli/Catering business." } ] @@ -29952,12 +34680,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dental" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dental" }, { + "term": "Core.Description", "value": "The listing is for a dental business." } ] @@ -29968,12 +34699,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Distribution" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Distribution" }, { + "term": "Core.Description", "value": "The listing is for a distribution business." } ] @@ -29984,12 +34718,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Doughnut" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Doughnut" }, { + "term": "Core.Description", "value": "The listing is for a doughnut business." } ] @@ -30000,12 +34737,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Drugstore" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Drugstore" }, { + "term": "Core.Description", "value": "The listing is for a Drugstore business." } ] @@ -30016,12 +34756,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dry Cleaner" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dry+Cleaner" }, { + "term": "Core.Description", "value": "The listing is for a dry cleaner business." } ] @@ -30032,12 +34775,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Education/School" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243894" }, { + "term": "Core.Description", "value": "The listing is for an education/school business." } ] @@ -30048,12 +34794,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electronics" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electronics" }, { + "term": "Core.Description", "value": "The listing is for an Electronics business." } ] @@ -30064,12 +34813,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Employment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Employment" }, { + "term": "Core.Description", "value": "The listing is for an Employment business." } ] @@ -30080,12 +34832,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Farm" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Farm" }, { + "term": "Core.Description", "value": "The listing is for a farm business." } ] @@ -30096,12 +34851,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fast Food" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fast+Food" }, { + "term": "Core.Description", "value": "The listing is for a fast food business." } ] @@ -30112,12 +34870,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Financial" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Financial" }, { + "term": "Core.Description", "value": "The listing is for a financial business." } ] @@ -30128,12 +34889,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fitness" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fitness" }, { + "term": "Core.Description", "value": "The listing is for a fitness business." } ] @@ -30144,12 +34908,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Florist/Nursery" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243901" }, { + "term": "Core.Description", "value": "The listing is for a florist/nursery business." } ] @@ -30160,12 +34927,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Food \u0026 Beverage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243902" }, { + "term": "Core.Description", "value": "The listing is for a food \u0026 beverage business." } ] @@ -30176,12 +34946,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Forest Reserve" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Forest+Reserve" }, { + "term": "Core.Description", "value": "The listing is for a forest reserve business." } ] @@ -30192,12 +34965,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Franchise" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Franchise" }, { + "term": "Core.Description", "value": "The listing is for a franchise business." } ] @@ -30208,12 +34984,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Furniture" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Furniture" }, { + "term": "Core.Description", "value": "The listing is for a Furniture business." } ] @@ -30224,12 +35003,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas Station" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gas+Station" }, { + "term": "Core.Description", "value": "The listing is for a gas station business." } ] @@ -30240,12 +35022,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gift Shop" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gift+Shop" }, { + "term": "Core.Description", "value": "The listing is for a gift shop business." } ] @@ -30256,12 +35041,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Grocery" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Grocery" }, { + "term": "Core.Description", "value": "The listing is for a grocery business." } ] @@ -30272,12 +35060,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hardware" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hardware" }, { + "term": "Core.Description", "value": "The listing is for a hardware business." } ] @@ -30288,12 +35079,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Health Food" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Health+Food" }, { + "term": "Core.Description", "value": "The listing is for a Health Food business." } ] @@ -30304,12 +35098,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Health Services" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Health+Services" }, { + "term": "Core.Description", "value": "The listing is for a health services business." } ] @@ -30320,12 +35117,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hobby" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hobby" }, { + "term": "Core.Description", "value": "The listing is for a Hobby business." } ] @@ -30336,12 +35136,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Cleaner" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Home+Cleaner" }, { + "term": "Core.Description", "value": "The listing is for a Home Cleaner business." } ] @@ -30352,12 +35155,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hospitality" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hospitality" }, { + "term": "Core.Description", "value": "The listing is for a hospitality business." } ] @@ -30368,12 +35174,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hotel/Motel" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243915" }, { + "term": "Core.Description", "value": "The listing is for a hotel/motel business." } ] @@ -30384,12 +35193,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ice Cream/Frozen Yogurt" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243916" }, { + "term": "Core.Description", "value": "The listing is for an ice cream/frozen yogurt business." } ] @@ -30400,12 +35212,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Industrial" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Industrial" }, { + "term": "Core.Description", "value": "The listing is for an industrial business." } ] @@ -30416,12 +35231,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Jewelry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Jewelry" }, { + "term": "Core.Description", "value": "The listing is for a Jewelry business." } ] @@ -30432,12 +35250,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Landscaping" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Landscaping" }, { + "term": "Core.Description", "value": "The listing is for a Landscaping business." } ] @@ -30448,12 +35269,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Laundromat" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Laundromat" }, { + "term": "Core.Description", "value": "The listing is for a laundromat business." } ] @@ -30464,12 +35288,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Liquor Store" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Liquor+Store" }, { + "term": "Core.Description", "value": "The listing is for a liquor store business." } ] @@ -30480,12 +35307,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Locksmith" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Locksmith" }, { + "term": "Core.Description", "value": "The listing is for a Locksmith business." } ] @@ -30496,12 +35326,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Manufacturing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Manufacturing" }, { + "term": "Core.Description", "value": "The listing is for a manufacturing business." } ] @@ -30512,12 +35345,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Medical" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Medical" }, { + "term": "Core.Description", "value": "The listing is for a medical business." } ] @@ -30528,12 +35364,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mixed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Mixed" }, { + "term": "Core.Description", "value": "The listing is for a mixed business." } ] @@ -30544,12 +35383,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mobile/Trailer Park" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243927" }, { + "term": "Core.Description", "value": "The listing is for a mobile/trailer park business." } ] @@ -30560,12 +35402,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Music" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Music" }, { + "term": "Core.Description", "value": "The listing is for a Music business." } ] @@ -30576,12 +35421,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Nursing Home" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Nursing+Home" }, { + "term": "Core.Description", "value": "The listing is for a nursing home business." } ] @@ -30592,12 +35440,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Supply" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Office+Supply" }, { + "term": "Core.Description", "value": "The listing is for an Office Supply business." } ] @@ -30608,12 +35459,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243931" }, { + "term": "Core.Description", "value": "The listing is for an other business." } ] @@ -30624,12 +35478,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Paints" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Paints" }, { + "term": "Core.Description", "value": "The listing is for a Paints business." } ] @@ -30640,12 +35497,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Parking" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Parking" }, { + "term": "Core.Description", "value": "The listing is for a parking business." } ] @@ -30656,12 +35516,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pet Store" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pet+Store" }, { + "term": "Core.Description", "value": "The listing is for a pet store business." } ] @@ -30672,12 +35535,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Photographer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Photographer" }, { + "term": "Core.Description", "value": "The listing is for a Photographer business." } ] @@ -30688,12 +35554,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pizza" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pizza" }, { + "term": "Core.Description", "value": "The listing is for a Pizza business." } ] @@ -30704,12 +35573,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Printing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Printing" }, { + "term": "Core.Description", "value": "The listing is for a printing business." } ] @@ -30720,12 +35592,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Professional/Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243939" }, { + "term": "Core.Description", "value": "The listing is for a professional/office business." } ] @@ -30736,12 +35611,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Professional Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Professional+Service" }, { + "term": "Core.Description", "value": "The listing is for a professional service business." } ] @@ -30752,12 +35630,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Real Estate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Real+Estate" }, { + "term": "Core.Description", "value": "The listing is for a Real Estate business." } ] @@ -30768,12 +35649,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Recreation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Recreation" }, { + "term": "Core.Description", "value": "The listing is for a recreation business." } ] @@ -30784,12 +35668,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rental" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Rental" }, { + "term": "Core.Description", "value": "The listing is for a Rental business." } ] @@ -30800,12 +35687,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Residential" }, { + "term": "Core.Description", "value": "The listing is for a residential business." } ] @@ -30816,12 +35706,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Restaurant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Restaurant" }, { + "term": "Core.Description", "value": "The listing is for a restaurant business." } ] @@ -30832,12 +35725,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Retail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Retail" }, { + "term": "Core.Description", "value": "The listing is for a retail business." } ] @@ -30848,12 +35744,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Saddlery/Harness" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243946" }, { + "term": "Core.Description", "value": "The listing is for a Saddlery/Harness business." } ] @@ -30864,12 +35763,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sporting Goods" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sporting+Goods" }, { + "term": "Core.Description", "value": "The listing is for a sporting goods business." } ] @@ -30880,12 +35782,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Storage" }, { + "term": "Core.Description", "value": "The listing is for a storage business." } ] @@ -30896,12 +35801,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Toys" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Toys" }, { + "term": "Core.Description", "value": "The listing is for a Toys business." } ] @@ -30912,12 +35820,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Transportation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Transportation" }, { + "term": "Core.Description", "value": "The listing is for a transportation business." } ] @@ -30928,12 +35839,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Travel" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Travel" }, { + "term": "Core.Description", "value": "The listing is for a Travel business." } ] @@ -30944,12 +35858,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Upholstery" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Upholstery" }, { + "term": "Core.Description", "value": "The listing is for an Upholstery business." } ] @@ -30960,12 +35877,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Utility" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Utility" }, { + "term": "Core.Description", "value": "The listing is for a Utility business." } ] @@ -30976,12 +35896,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Variety" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Variety" }, { + "term": "Core.Description", "value": "The listing is for a Variety business." } ] @@ -30992,12 +35915,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Video" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Video" }, { + "term": "Core.Description", "value": "The listing is for a Video business." } ] @@ -31008,12 +35934,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wallpaper" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wallpaper" }, { + "term": "Core.Description", "value": "The listing is for a Wallpaper business." } ] @@ -31024,12 +35953,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Warehouse" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Warehouse" }, { + "term": "Core.Description", "value": "The listing is for a warehouse business." } ] @@ -31040,12 +35972,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wholesale" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wholesale" }, { + "term": "Core.Description", "value": "The listing is for a wholesale business." } ] @@ -31056,12 +35991,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "$" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244063" }, { + "term": "Core.Description", "value": "The value entered in the BuyerAgencyCompensation field is in dollars." } ] @@ -31072,12 +36010,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244066" }, { + "term": "Core.Description", "value": "A compensation type not included in this list" } ] @@ -31088,12 +36029,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "%" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244064" }, { + "term": "Core.Description", "value": "The value entered in the BuyerAgencyCompensation field is a percent of the gross compensation." } ] @@ -31104,12 +36048,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244065" }, { + "term": "Core.Description", "value": "The Buyer Agency Compensation Type is something other than % or $ or is some special combination of $, %, and other compensation types. See the applicable remarks field for more details about the compensation." } ] @@ -31125,12 +36072,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accredited Buyer\u0027s Representative / ABR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243974" }, { + "term": "Core.Description", "value": "The Accredited Buyer’s Representative (ABR®) designation is designed for real estate buyer agents who focus on working directly with buyer-clients. http://www.rebac.net/abr" } ] @@ -31141,12 +36091,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accredited Land Consultant / ALC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243975" }, { + "term": "Core.Description", "value": "Accredited Land Consultants (ALCs) are the most trusted, knowledgeable, experienced, and highest-producing experts in all segments of land. Conferred by the REALTORS® Land Institute, the designation requires successful completion of a rigorous LANDU education program, a specific, high-volume and experience level, and adherence to an honorable Code of Conduct. https://www.nar.realtor/designations-and-certifications/alc" } ] @@ -31157,12 +36110,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "At Home With Diversity / AHWD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243976" }, { + "term": "Core.Description", "value": "Learn to work effectively with – and within – today’s diverse real estate market. The At Home With Diversity certification teaches you how to conduct your business with sensitivity to all client profiles and build a business plan to successfully serve them. https://www.nar.realtor/designations-and-certifications/ahwd" } ] @@ -31173,12 +36129,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Commercial Investment Member / CCIM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243977" }, { + "term": "Core.Description", "value": "The Certified Commercial Investment Member (CCIM) designation is commercial real estate’s global standard for professional achievement, earned through an extensive curriculum of 200 classroom hours and professional experiential requirements. https://www.nar.realtor/designations-and-certifications/ccim" } ] @@ -31189,12 +36148,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Distressed Property Expert / CDPE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243978" }, { + "term": "Core.Description", "value": "A Certified Distressed Property Expert® (CDPE) has a thorough understanding of complex issues in today’s turbulent real estate industry and knowledge of foreclosure avoidance options available to homeowners. CDPEs can provide solutions, specifically short sales, for homeowners facing market hardships. http://www.cdpe.com/" } ] @@ -31205,12 +36167,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified International Property Specialist / CIPS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243979" }, { + "term": "Core.Description", "value": "The CIPS designation is for REALTORS® from the United States and abroad, as well as association staff and volunteer leaders who wish to develop or grow their international real estate business. It will provide you with the knowledge, research, network, and tools to globalize your business. https://www.nar.realtor/designations-and-certifications/cips-designation" } ] @@ -31221,12 +36186,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Property Manager / CPM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243980" }, { + "term": "Core.Description", "value": "Certified Property Managers® (CPM®) are recognized as experts in real estate management, and they are at the top of the profession. 70% of those who hold the CPM® designation hold the highest management positions in their offices (owner/partner/officer/director). https://www.nar.realtor/designations-and-certifications/cpm" } ] @@ -31237,12 +36205,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Real Estate Brokerage Manager / CRB" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243981" }, { + "term": "Core.Description", "value": "The Certified Real Estate Brokerage Manager (CRB) Designation raises professional standards, strengthens individual and office performance, and indicates expertise in brokerage management. This designation represents the highest level of professional achievement in real estate brokerage management. You do not need a broker\u0027s license to earn the CRB Designation. https://www.nar.realtor/designations-and-certifications/crb" } ] @@ -31253,12 +36224,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Real Estate Team Specialist / C-RETS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243982" }, { + "term": "Core.Description", "value": "The Certified Real Estate Team Specialist certification is designed to improve team development, individual leadership skills, and financial performance. The courses provide the tools, strategies, and knowledge that are required of today’s real estate professionals who are either considering or currently operating in a team environment. It is for team leaders, team members, those looking to start a team, and those who simply want to sharpen their management skills. https://www.nar.realtor/designations-and-certifications/c-rets" } ] @@ -31269,12 +36243,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Residential Specialist / CRS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243983" }, { + "term": "Core.Description", "value": "Certified Residential Specialist (CRS) is the highest credential awarded to residential sales agents, managers and brokers. https://www.nar.realtor/designations-and-certifications/crs" } ] @@ -31285,12 +36262,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Counselor of Real Estate / CRE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243984" }, { + "term": "Core.Description", "value": "The Counselors of Real Estate® is an international group of recognized professionals who provide seasoned, expert, objective advice on real property and land-related matters. Only 1,100 practitioners throughout the world carry the CRE® designation. Membership is by invitation only. https://www.nar.realtor/designations-and-certifications/cre" } ] @@ -31301,12 +36281,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "e-PRO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/e-PRO" }, { + "term": "Core.Description", "value": "NAR\u0027s e-PRO® certification teaches you to use cutting-edge technologies and digital initiatives to link up with today\u0027s savvy real estate consumer. https://www.nar.realtor/designations-and-certifications/e-pro" } ] @@ -31317,12 +36300,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "General Accredited Appraiser / GAA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243986" }, { + "term": "Core.Description", "value": "For general appraisers, this designation is awarded to those whose education and experience exceed state appraisal certification requirements and is supported by the National Association of REALTORS®. https://www.nar.realtor/designations-and-certifications/gaa" } ] @@ -31333,12 +36319,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Graduate, REALTOR Institute / GRI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243987" }, { + "term": "Core.Description", "value": "REALTORS® with the GRI designation have in-depth training in legal and regulatory issues, technology, professional standards, and the sales process. Earning the designation is a way to stand out to prospective buyers and sellers as a professional with expertise in these areas. https://www.nar.realtor/designations-and-certifications/gri" } ] @@ -31349,12 +36338,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Military Relocation Professional / MRP" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243988" }, { + "term": "Core.Description", "value": "NAR\u0027s Military Relocation Professional certification focuses on educating real estate professionals about working with current and former military service members to find housing solutions that best suit their needs and take full advantage of military benefits and support. https://www.nar.realtor/designations-and-certifications/mrp" } ] @@ -31365,12 +36357,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NAR\u0027s Green Designation / GREEN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243989" }, { + "term": "Core.Description", "value": "Through NAR\u0027s Green Designation, the Green Resource Council provides ongoing education, resources and tools to help real estate practitioners find, understand, and market properties with green features. https://www.nar.realtor/designations-and-certifications/green" } ] @@ -31381,12 +36376,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Performance Management Network / PMN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243990" }, { + "term": "Core.Description", "value": "This designation is unique to the REALTOR® family designations, emphasizing that in order to enhance your business, you must enhance yourself. It focuses on negotiating strategies and tactics, networking and referrals, business planning and systems, personal performance management and leadership development. https://www.nar.realtor/designations-and-certifications/pmn" } ] @@ -31397,12 +36395,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pricing Strategy Advisor / PSA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243991" }, { + "term": "Core.Description", "value": "Enhance your skills in pricing properties, creating CMAs, working with appraisers, and guiding clients through the anxieties and misperceptions they often have about home values with NAR’s PSA (Pricing Strategy Advisor) certification. https://www.nar.realtor/designations-and-certifications/psa" } ] @@ -31413,12 +36414,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Real Estate Negotiation Expert / RENE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243992" }, { + "term": "Core.Description", "value": "This certification is for real estate professionals who want to sharpen their negotiation skills. The RENE certification program gives REALTORS® the tips and tools they need to be skillful advocates for their clients. https://www.nar.realtor/designations-and-certifications/rene" } ] @@ -31429,12 +36433,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "REALTOR Association Certified Executive / RCE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243993" }, { + "term": "Core.Description", "value": "RCE is the only professional designation designed specifically for REALTOR® association executives. RCE designees exemplify goal-oriented AEs with drive, experience and commitment to professional growth. https://www.nar.realtor/designations-and-certifications/rce" } ] @@ -31445,12 +36452,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential Accredited Appraiser / RAA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243994" }, { + "term": "Core.Description", "value": "For residential appraisers, this designation is awarded to those whose education and experience exceed state appraisal certification requirements and is supported by the National Association of REALTORS®. https://www.nar.realtor/designations-and-certifications/raa" } ] @@ -31461,12 +36471,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resort \u0026 Second-Home Property Specialist / RSPS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243995" }, { + "term": "Core.Description", "value": "This certification is designed for REALTORS® who facilitate the buying, selling, or management of properties for investment, development, retirement, or second homes in a resort, recreational and/or vacation destination are involved in this market niche. https://www.nar.realtor/designations-and-certifications/rsps" } ] @@ -31477,12 +36490,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seller Representative Specialist / SRS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243996" }, { + "term": "Core.Description", "value": "The Seller Representative Specialist (SRS) designation is the premier credential in seller representation. It is designed to elevate professional standards and enhance personal performance. The designation is awarded to real estate practitioners by the Real Estate Business Institute (REBI) who meet specific educational and practical experience criteria. https://www.nar.realtor/designations-and-certifications/seller-representative-specialist-srs" } ] @@ -31493,12 +36509,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seniors Real Estate Specialist / SRES" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243997" }, { + "term": "Core.Description", "value": "The SRES® Designation program educates REALTORS® on how to profitably and ethically serve the real estate needs of the fastest growing market in real estate, clients age 50+. By earning the SRES® designation, you gain access to valuable member benefits, useful resources, and networking opportunities across the U.S. and Canada to help you in your business. https://www.nar.realtor/designations-and-certifications/sres" } ] @@ -31509,12 +36528,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Short Sales \u0026 Foreclosure Resource / SFR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243998" }, { + "term": "Core.Description", "value": "The SFR® certification teaches real estate professionals to work with distressed sellers and the finance, tax, and legal professionals who can help them, qualify sellers for short sales, develop a short sale package, negotiate with lenders, safeguard your commission, limit risk, and protect buyers. https://www.nar.realtor/designations-and-certifications/sfr" } ] @@ -31525,12 +36547,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Society of Industrial and Office REALTORS / SIOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243999" }, { + "term": "Core.Description", "value": "The SIOR designation is held by only the most knowledgeable, experienced, and successful commercial real estate brokerage specialists. To earn it, designees must meet standards of experience, production, education, ethics, and provide recommendations. https://www.nar.realtor/designations-and-certifications/sior" } ] @@ -31541,12 +36566,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Transnational Referral Certification / TRC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244000" }, { + "term": "Core.Description", "value": "Real estate professionals who have taken the Transnational Referral Certified (TRC) training, have completed special training on making and receiving client referrals from professionals in other countries. https://worldproperties.com/about-us/international-referrals-and-trc/" } ] @@ -31557,12 +36585,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assumed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Assumed" }, { + "term": "Core.Description", "value": "The buyer assumed a current form of financing." } ] @@ -31573,12 +36604,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cash" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cash" }, { + "term": "Core.Description", "value": "The buyer paid cash for the property." } ] @@ -31589,12 +36623,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contract" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Contract" }, { + "term": "Core.Description", "value": "The purchase of a property involves an agreement to perform services, provide product, share of income, or some other agreement as the method of payment for the property." } ] @@ -31605,12 +36642,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Conventional" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Conventional" }, { + "term": "Core.Description", "value": "The buyer is using conventional financing to purchase the home." } ] @@ -31621,12 +36661,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FHA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FHA" }, { + "term": "Core.Description", "value": "A loan from an approved provider that follows the guidelines of, and is insured by, the Federal Housing Administration." } ] @@ -31637,12 +36680,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FHA 203(b)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243965" }, { + "term": "Core.Description", "value": "The basic home mortgage loan from an approved provider that follows the guidelines of, and is insured by, the Federal Housing Administration." } ] @@ -31653,12 +36699,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FHA 203(k)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243966" }, { + "term": "Core.Description", "value": "A loan, for the rehabilitation and repair of single family residence, from an approved provider that follows the guidelines of, and is insured by, the Federal Housing Administration." } ] @@ -31669,12 +36718,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243967" }, { + "term": "Core.Description", "value": "The buyer is using another form of financing that is not included in the options provided in this list." } ] @@ -31685,12 +36737,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Private" }, { + "term": "Core.Description", "value": "Financing is provided by a private party." } ] @@ -31701,12 +36756,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seller Financing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Seller+Financing" }, { + "term": "Core.Description", "value": "The seller is providing financing to the buyer." } ] @@ -31717,12 +36775,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trust Deed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Trust+Deed" }, { + "term": "Core.Description", "value": "Financing where title of the property is placed with a trustee who secures payment of the loan for a beneficiary." } ] @@ -31733,12 +36794,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "USDA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/USDA" }, { + "term": "Core.Description", "value": "A loan from an approved provider that follows the guidelines of, and is insured by, the US Department of Agriculture." } ] @@ -31749,12 +36813,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VA" }, { + "term": "Core.Description", "value": "A loan from an approved provider that follows the guidelines of, and is insured by, the US Department of Veteran\u0027s Affairs." } ] @@ -31770,12 +36837,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accredited Buyer\u0027s Representative / ABR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244408" }, { + "term": "Core.Description", "value": "The Accredited Buyer’s Representative (ABR®) designation is designed for real estate buyer agents who focus on working directly with buyer-clients. http://www.rebac.net/abr" } ] @@ -31786,12 +36856,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accredited Land Consultant / ALC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244409" }, { + "term": "Core.Description", "value": "Accredited Land Consultants (ALCs) are the most trusted, knowledgeable, experienced, and highest-producing experts in all segments of land. Conferred by the REALTORS® Land Institute, the designation requires successful completion of a rigorous LANDU education program, a specific, high-volume and experience level, and adherence to an honorable Code of Conduct. https://www.nar.realtor/designations-and-certifications/alc" } ] @@ -31802,12 +36875,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "At Home With Diversity / AHWD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244410" }, { + "term": "Core.Description", "value": "Learn to work effectively with – and within – today’s diverse real estate market. The At Home With Diversity certification teaches you how to conduct your business with sensitivity to all client profiles and build a business plan to successfully serve them. https://www.nar.realtor/designations-and-certifications/ahwd" } ] @@ -31818,12 +36894,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Commercial Investment Member / CCIM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244411" }, { + "term": "Core.Description", "value": "The Certified Commercial Investment Member (CCIM) designation is commercial real estate’s global standard for professional achievement, earned through an extensive curriculum of 200 classroom hours and professional experiential requirements. https://www.nar.realtor/designations-and-certifications/ccim" } ] @@ -31834,12 +36913,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Distressed Property Expert / CDPE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244412" }, { + "term": "Core.Description", "value": "A Certified Distressed Property Expert® (CDPE) has a thorough understanding of complex issues in today’s turbulent real estate industry and knowledge of foreclosure avoidance options available to homeowners. CDPEs can provide solutions, specifically short sales, for homeowners facing market hardships. http://www.cdpe.com/" } ] @@ -31850,12 +36932,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified International Property Specialist / CIPS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244413" }, { + "term": "Core.Description", "value": "The CIPS designation is for REALTORS® from the United States and abroad, as well as association staff and volunteer leaders who wish to develop or grow their international real estate business. It will provide you with the knowledge, research, network, and tools to globalize your business. https://www.nar.realtor/designations-and-certifications/cips-designation" } ] @@ -31866,12 +36951,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Property Manager / CPM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244414" }, { + "term": "Core.Description", "value": "Certified Property Managers® (CPM®) are recognized as experts in real estate management, and they are at the top of the profession. 70% of those who hold the CPM® designation hold the highest management positions in their offices (owner/partner/officer/director). https://www.nar.realtor/designations-and-certifications/cpm" } ] @@ -31882,12 +36970,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Real Estate Brokerage Manager / CRB" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244415" }, { + "term": "Core.Description", "value": "The Certified Real Estate Brokerage Manager (CRB) Designation raises professional standards, strengthens individual and office performance, and indicates expertise in brokerage management. This designation represents the highest level of professional achievement in real estate brokerage management. You do not need a broker\u0027s license to earn the CRB Designation. https://www.nar.realtor/designations-and-certifications/crb" } ] @@ -31898,12 +36989,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Real Estate Team Specialist / C-RETS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244416" }, { + "term": "Core.Description", "value": "The Certified Real Estate Team Specialist certification is designed to improve team development, individual leadership skills, and financial performance. The courses provide the tools, strategies, and knowledge that are required of today’s real estate professionals who are either considering or currently operating in a team environment. It is for team leaders, team members, those looking to start a team, and those who simply want to sharpen their management skills. https://www.nar.realtor/designations-and-certifications/c-rets" } ] @@ -31914,12 +37008,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Residential Specialist / CRS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244417" }, { + "term": "Core.Description", "value": "Certified Residential Specialist (CRS) is the highest credential awarded to residential sales agents, managers and brokers. https://www.nar.realtor/designations-and-certifications/crs" } ] @@ -31930,12 +37027,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Counselor of Real Estate / CRE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244418" }, { + "term": "Core.Description", "value": "The Counselors of Real Estate® is an international group of recognized professionals who provide seasoned, expert, objective advice on real property and land-related matters. Only 1,100 practitioners throughout the world carry the CRE® designation. Membership is by invitation only. https://www.nar.realtor/designations-and-certifications/cre" } ] @@ -31946,12 +37046,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "e-PRO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244419" }, { + "term": "Core.Description", "value": "NAR\u0027s e-PRO® certification teaches you to use cutting-edge technologies and digital initiatives to link up with today\u0027s savvy real estate consumer. https://www.nar.realtor/designations-and-certifications/e-pro" } ] @@ -31962,12 +37065,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "General Accredited Appraiser / GAA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244420" }, { + "term": "Core.Description", "value": "For general appraisers, this designation is awarded to those whose education and experience exceed state appraisal certification requirements and is supported by the National Association of REALTORS®. https://www.nar.realtor/designations-and-certifications/gaa" } ] @@ -31978,12 +37084,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Graduate, REALTOR Institute / GRI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244421" }, { + "term": "Core.Description", "value": "REALTORS® with the GRI designation have in-depth training in legal and regulatory issues, technology, professional standards, and the sales process. Earning the designation is a way to stand out to prospective buyers and sellers as a professional with expertise in these areas. https://www.nar.realtor/designations-and-certifications/gri" } ] @@ -31994,12 +37103,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Military Relocation Professional / MRP" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244422" }, { + "term": "Core.Description", "value": "NAR\u0027s Military Relocation Professional certification focuses on educating real estate professionals about working with current and former military service members to find housing solutions that best suit their needs and take full advantage of military benefits and support. https://www.nar.realtor/designations-and-certifications/mrp" } ] @@ -32010,12 +37122,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NAR\u0027s Green Designation / GREEN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244423" }, { + "term": "Core.Description", "value": "Through NAR\u0027s Green Designation, the Green Resource Council provides ongoing education, resources and tools to help real estate practitioners find, understand, and market properties with green features. https://www.nar.realtor/designations-and-certifications/green" } ] @@ -32026,12 +37141,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Performance Management Network / PMN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244424" }, { + "term": "Core.Description", "value": "This designation is unique to the REALTOR® family designations, emphasizing that in order to enhance your business, you must enhance yourself. It focuses on negotiating strategies and tactics, networking and referrals, business planning and systems, personal performance management and leadership development. https://www.nar.realtor/designations-and-certifications/pmn" } ] @@ -32042,12 +37160,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pricing Strategy Advisor / PSA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244425" }, { + "term": "Core.Description", "value": "Enhance your skills in pricing properties, creating CMAs, working with appraisers, and guiding clients through the anxieties and misperceptions they often have about home values with NAR’s PSA (Pricing Strategy Advisor) certification. https://www.nar.realtor/designations-and-certifications/psa" } ] @@ -32058,12 +37179,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Real Estate Negotiation Expert / RENE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244426" }, { + "term": "Core.Description", "value": "This certification is for real estate professionals who want to sharpen their negotiation skills. The RENE certification program gives REALTORS® the tips and tools they need to be skillful advocates for their clients. https://www.nar.realtor/designations-and-certifications/rene" } ] @@ -32074,12 +37198,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "REALTOR Association Certified Executive / RCE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244427" }, { + "term": "Core.Description", "value": "RCE is the only professional designation designed specifically for REALTOR® association executives. RCE designees exemplify goal-oriented AEs with drive, experience and commitment to professional growth. https://www.nar.realtor/designations-and-certifications/rce" } ] @@ -32090,12 +37217,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential Accredited Appraiser / RAA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244428" }, { + "term": "Core.Description", "value": "For residential appraisers, this designation is awarded to those whose education and experience exceed state appraisal certification requirements and is supported by the National Association of REALTORS®. https://www.nar.realtor/designations-and-certifications/raa" } ] @@ -32106,12 +37236,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resort \u0026 Second-Home Property Specialist / RSPS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244429" }, { + "term": "Core.Description", "value": "This certification is designed for REALTORS® who facilitate the buying, selling, or management of properties for investment, development, retirement, or second homes in a resort, recreational and/or vacation destination are involved in this market niche. https://www.nar.realtor/designations-and-certifications/rsps" } ] @@ -32122,12 +37255,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seller Representative Specialist / SRS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244430" }, { + "term": "Core.Description", "value": "The Seller Representative Specialist (SRS) designation is the premier credential in seller representation. It is designed to elevate professional standards and enhance personal performance. The designation is awarded to real estate practitioners by the Real Estate Business Institute (REBI) who meet specific educational and practical experience criteria. https://www.nar.realtor/designations-and-certifications/seller-representative-specialist-srs" } ] @@ -32138,12 +37274,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seniors Real Estate Specialist / SRES" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244431" }, { + "term": "Core.Description", "value": "The SRES® Designation program educates REALTORS® on how to profitably and ethically serve the real estate needs of the fastest growing market in real estate, clients age 50+. By earning the SRES® designation, you gain access to valuable member benefits, useful resources, and networking opportunities across the U.S. and Canada to help you in your business. https://www.nar.realtor/designations-and-certifications/sres" } ] @@ -32154,12 +37293,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Short Sales \u0026 Foreclosure Resource / SFR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244432" }, { + "term": "Core.Description", "value": "The SFR® certification teaches real estate professionals to work with distressed sellers and the finance, tax, and legal professionals who can help them, qualify sellers for short sales, develop a short sale package, negotiate with lenders, safeguard your commission, limit risk, and protect buyers. https://www.nar.realtor/designations-and-certifications/sfr" } ] @@ -32170,12 +37312,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Society of Industrial and Office REALTORS / SIOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244433" }, { + "term": "Core.Description", "value": "The SIOR designation is held by only the most knowledgeable, experienced, and successful commercial real estate brokerage specialists. To earn it, designees must meet standards of experience, production, education, ethics, and provide recommendations. https://www.nar.realtor/designations-and-certifications/sior" } ] @@ -32186,12 +37331,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Transnational Referral Certification / TRC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244434" }, { + "term": "Core.Description", "value": "Real estate professionals who have taken the Transnational Referral Certified (TRC) training, have completed special training on making and receiving client referrals from professionals in other countries. https://worldproperties.com/about-us/international-referrals-and-trc/" } ] @@ -32202,12 +37350,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accredited Buyer\u0027s Representative / ABR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244436" }, { + "term": "Core.Description", "value": "The Accredited Buyer’s Representative (ABR®) designation is designed for real estate buyer agents who focus on working directly with buyer-clients. http://www.rebac.net/abr" } ] @@ -32218,12 +37369,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accredited Land Consultant / ALC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244437" }, { + "term": "Core.Description", "value": "Accredited Land Consultants (ALCs) are the most trusted, knowledgeable, experienced, and highest-producing experts in all segments of land. Conferred by the REALTORS® Land Institute, the designation requires successful completion of a rigorous LANDU education program, a specific, high-volume and experience level, and adherence to an honorable Code of Conduct. https://www.nar.realtor/designations-and-certifications/alc" } ] @@ -32234,12 +37388,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "At Home With Diversity / AHWD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244438" }, { + "term": "Core.Description", "value": "Learn to work effectively with – and within – today’s diverse real estate market. The At Home With Diversity certification teaches you how to conduct your business with sensitivity to all client profiles and build a business plan to successfully serve them. https://www.nar.realtor/designations-and-certifications/ahwd" } ] @@ -32250,12 +37407,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Commercial Investment Member / CCIM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244439" }, { + "term": "Core.Description", "value": "The Certified Commercial Investment Member (CCIM) designation is commercial real estate’s global standard for professional achievement, earned through an extensive curriculum of 200 classroom hours and professional experiential requirements. https://www.nar.realtor/designations-and-certifications/ccim" } ] @@ -32266,12 +37426,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Distressed Property Expert / CDPE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244440" }, { + "term": "Core.Description", "value": "A Certified Distressed Property Expert® (CDPE) has a thorough understanding of complex issues in today’s turbulent real estate industry and knowledge of foreclosure avoidance options available to homeowners. CDPEs can provide solutions, specifically short sales, for homeowners facing market hardships. http://www.cdpe.com/" } ] @@ -32282,12 +37445,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified International Property Specialist / CIPS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244441" }, { + "term": "Core.Description", "value": "The CIPS designation is for REALTORS® from the United States and abroad, as well as association staff and volunteer leaders who wish to develop or grow their international real estate business. It will provide you with the knowledge, research, network, and tools to globalize your business. https://www.nar.realtor/designations-and-certifications/cips-designation" } ] @@ -32298,12 +37464,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Property Manager / CPM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244442" }, { + "term": "Core.Description", "value": "Certified Property Managers® (CPM®) are recognized as experts in real estate management, and they are at the top of the profession. 70% of those who hold the CPM® designation hold the highest management positions in their offices (owner/partner/officer/director). https://www.nar.realtor/designations-and-certifications/cpm" } ] @@ -32314,12 +37483,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Real Estate Brokerage Manager / CRB" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244443" }, { + "term": "Core.Description", "value": "The Certified Real Estate Brokerage Manager (CRB) Designation raises professional standards, strengthens individual and office performance, and indicates expertise in brokerage management. This designation represents the highest level of professional achievement in real estate brokerage management. You do not need a broker\u0027s license to earn the CRB Designation. https://www.nar.realtor/designations-and-certifications/crb" } ] @@ -32330,12 +37502,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Real Estate Team Specialist / C-RETS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244444" }, { + "term": "Core.Description", "value": "The Certified Real Estate Team Specialist certification is designed to improve team development, individual leadership skills, and financial performance. The courses provide the tools, strategies, and knowledge that are required of today’s real estate professionals who are either considering or currently operating in a team environment. It is for team leaders, team members, those looking to start a team, and those who simply want to sharpen their management skills. https://www.nar.realtor/designations-and-certifications/c-rets" } ] @@ -32346,12 +37521,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Residential Specialist / CRS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244445" }, { + "term": "Core.Description", "value": "Certified Residential Specialist (CRS) is the highest credential awarded to residential sales agents, managers and brokers. https://www.nar.realtor/designations-and-certifications/crs" } ] @@ -32362,12 +37540,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Counselor of Real Estate / CRE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244446" }, { + "term": "Core.Description", "value": "The Counselors of Real Estate® is an international group of recognized professionals who provide seasoned, expert, objective advice on real property and land-related matters. Only 1,100 practitioners throughout the world carry the CRE® designation. Membership is by invitation only. https://www.nar.realtor/designations-and-certifications/cre" } ] @@ -32378,12 +37559,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "e-PRO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244447" }, { + "term": "Core.Description", "value": "NAR\u0027s e-PRO® certification teaches you to use cutting-edge technologies and digital initiatives to link up with today\u0027s savvy real estate consumer. https://www.nar.realtor/designations-and-certifications/e-pro" } ] @@ -32394,12 +37578,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "General Accredited Appraiser / GAA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244448" }, { + "term": "Core.Description", "value": "For general appraisers, this designation is awarded to those whose education and experience exceed state appraisal certification requirements and is supported by the National Association of REALTORS®. https://www.nar.realtor/designations-and-certifications/gaa" } ] @@ -32410,12 +37597,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Graduate, REALTOR Institute / GRI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244449" }, { + "term": "Core.Description", "value": "REALTORS® with the GRI designation have in-depth training in legal and regulatory issues, technology, professional standards, and the sales process. Earning the designation is a way to stand out to prospective buyers and sellers as a professional with expertise in these areas. https://www.nar.realtor/designations-and-certifications/gri" } ] @@ -32426,12 +37616,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Military Relocation Professional / MRP" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244450" }, { + "term": "Core.Description", "value": "NAR\u0027s Military Relocation Professional certification focuses on educating real estate professionals about working with current and former military service members to find housing solutions that best suit their needs and take full advantage of military benefits and support. https://www.nar.realtor/designations-and-certifications/mrp" } ] @@ -32442,12 +37635,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NAR\u0027s Green Designation / GREEN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244451" }, { + "term": "Core.Description", "value": "Through NAR\u0027s Green Designation, the Green Resource Council provides ongoing education, resources and tools to help real estate practitioners find, understand, and market properties with green features. https://www.nar.realtor/designations-and-certifications/green" } ] @@ -32458,12 +37654,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Performance Management Network / PMN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244452" }, { + "term": "Core.Description", "value": "This designation is unique to the REALTOR® family designations, emphasizing that in order to enhance your business, you must enhance yourself. It focuses on negotiating strategies and tactics, networking and referrals, business planning and systems, personal performance management and leadership development. https://www.nar.realtor/designations-and-certifications/pmn" } ] @@ -32474,12 +37673,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pricing Strategy Advisor / PSA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244453" }, { + "term": "Core.Description", "value": "Enhance your skills in pricing properties, creating CMAs, working with appraisers, and guiding clients through the anxieties and misperceptions they often have about home values with NAR’s PSA (Pricing Strategy Advisor) certification. https://www.nar.realtor/designations-and-certifications/psa" } ] @@ -32490,12 +37692,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Real Estate Negotiation Expert / RENE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244454" }, { + "term": "Core.Description", "value": "This certification is for real estate professionals who want to sharpen their negotiation skills. The RENE certification program gives REALTORS® the tips and tools they need to be skillful advocates for their clients. https://www.nar.realtor/designations-and-certifications/rene" } ] @@ -32506,12 +37711,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "REALTOR Association Certified Executive / RCE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244455" }, { + "term": "Core.Description", "value": "RCE is the only professional designation designed specifically for REALTOR® association executives. RCE designees exemplify goal-oriented AEs with drive, experience and commitment to professional growth. https://www.nar.realtor/designations-and-certifications/rce" } ] @@ -32522,12 +37730,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential Accredited Appraiser / RAA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244456" }, { + "term": "Core.Description", "value": "For residential appraisers, this designation is awarded to those whose education and experience exceed state appraisal certification requirements and is supported by the National Association of REALTORS®. https://www.nar.realtor/designations-and-certifications/raa" } ] @@ -32538,12 +37749,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resort \u0026 Second-Home Property Specialist / RSPS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244457" }, { + "term": "Core.Description", "value": "This certification is designed for REALTORS® who facilitate the buying, selling, or management of properties for investment, development, retirement, or second homes in a resort, recreational and/or vacation destination are involved in this market niche. https://www.nar.realtor/designations-and-certifications/rsps" } ] @@ -32554,12 +37768,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seller Representative Specialist / SRS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244458" }, { + "term": "Core.Description", "value": "The Seller Representative Specialist (SRS) designation is the premier credential in seller representation. It is designed to elevate professional standards and enhance personal performance. The designation is awarded to real estate practitioners by the Real Estate Business Institute (REBI) who meet specific educational and practical experience criteria. https://www.nar.realtor/designations-and-certifications/seller-representative-specialist-srs" } ] @@ -32570,12 +37787,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seniors Real Estate Specialist / SRES" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244459" }, { + "term": "Core.Description", "value": "The SRES® Designation program educates REALTORS® on how to profitably and ethically serve the real estate needs of the fastest growing market in real estate, clients age 50+. By earning the SRES® designation, you gain access to valuable member benefits, useful resources, and networking opportunities across the U.S. and Canada to help you in your business. https://www.nar.realtor/designations-and-certifications/sres" } ] @@ -32586,12 +37806,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Short Sales \u0026 Foreclosure Resource / SFR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244460" }, { + "term": "Core.Description", "value": "The SFR® certification teaches real estate professionals to work with distressed sellers and the finance, tax, and legal professionals who can help them, qualify sellers for short sales, develop a short sale package, negotiate with lenders, safeguard your commission, limit risk, and protect buyers. https://www.nar.realtor/designations-and-certifications/sfr" } ] @@ -32602,12 +37825,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Society of Industrial and Office REALTORS / SIOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244461" }, { + "term": "Core.Description", "value": "The SIOR designation is held by only the most knowledgeable, experienced, and successful commercial real estate brokerage specialists. To earn it, designees must meet standards of experience, production, education, ethics, and provide recommendations. https://www.nar.realtor/designations-and-certifications/sior" } ] @@ -32618,12 +37844,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Transnational Referral Certification / TRC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244462" }, { + "term": "Core.Description", "value": "Real estate professionals who have taken the Transnational Referral Certified (TRC) training, have completed special training on making and receiving client referrals from professionals in other countries. https://worldproperties.com/about-us/international-referrals-and-trc/" } ] @@ -32634,12 +37863,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Community Apartment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Community+Apartment" }, { + "term": "Core.Description", "value": "Ownership interest where purchaser receives a partial/fractional interest in the land coupled with the right of exclusive occupancy of an apartment located thereon. The owners elect a governing board which operates and maintains the project." } ] @@ -32650,12 +37882,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Condominium" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244396" }, { + "term": "Core.Description", "value": "Ownership of an individual unit where each homeowner only owns their individual unit space, and an undivided share in the ownership of common areas or in a common homeowner’s association (HOA). Generally, the ownership of the individual unit is described in a Condominium Plan and usually consists of ownership of the surface of the walls and the space within. The CC\u0026Rs will detail what building components and other complex amenities are considered part of the common area and will describe the common area or HOA ownership percentages, and maintenance responsibilities." } ] @@ -32666,12 +37901,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244401" }, { + "term": "Core.Description", "value": "Ownership of an entire parcel or lot that is not in a CID, or not held subject to any other Common Interest rights." } ] @@ -32682,12 +37920,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Planned Development" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Planned+Development" }, { + "term": "Core.Description", "value": "Ownership consisting of an individual lot or parcel, generally including the ownership of the land and any structures on the individual lot or parcel. Owners also receive use right in common areas that are generally owned by a HOA. Some common areas may be reserved for the use of some or all of the individual lot owners. Generally, the CC\u0026Rs will detail the method of management, maintenance, use and control of the common areas and may provide for some control and maintenance of the individual lots." } ] @@ -32698,12 +37939,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stock Cooperative" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244399" }, { + "term": "Core.Description", "value": "Ownership of an interest in a corporation which is formed primarily for the purpose of holding title to improved real property, either in fee simple or for a term of years. All or substantially all of the shareholders receive a right of exclusive occupancy of a portion of the real property, which right is transferable only concurrently with the transfer of the share(s) of stock in the corporation." } ] @@ -32714,12 +37958,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Timeshare" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244400" }, { + "term": "Core.Description", "value": "Ownership in a time period or a point system granting possession rights to a unit or occupancy rights at a property. The property may be owned either by a number of individuals on a fractional basis, or may be an interest in a corporation each with the right of possession for a specified time interval. Time-sharing is commonly applied to resort and vacation properties." } ] @@ -32730,12 +37977,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "End Unit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/End+Unit" }, { + "term": "Core.Description", "value": "The dwelling being sold has one or more common walls with another property that is not part of the sale and is at the end of a row of units. Also known as an attached structure." } ] @@ -32746,12 +37996,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "No Common Walls" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/No+Common+Walls" }, { + "term": "Core.Description", "value": "The dwelling being sold has no attached structures that are not part of the sale. Also know as a detached structure." } ] @@ -32762,12 +38015,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "No One Above" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/No+One+Above" }, { + "term": "Core.Description", "value": "The property is attached to another dwelling that is not part of the sale, but there is no unit above the one being sold." } ] @@ -32778,12 +38034,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "No One Below" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/No+One+Below" }, { + "term": "Core.Description", "value": "The property is attached to another dwelling that is not part of the sale, but there is no unit below the one being sold." } ] @@ -32794,12 +38053,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "1 Common Wall" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/1+Common+Wall" }, { + "term": "Core.Description", "value": "The dwelling being sold has one common wall with another property that is not part of the sale. Also known as an attached structure." } ] @@ -32810,12 +38072,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "2+ Common Walls" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244057" }, { + "term": "Core.Description", "value": "The dwelling being sold has two or more common walls with another property that is not part of the sale. Also known as an attached structure." } ] @@ -32826,12 +38091,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Airport/Runway" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244536" }, { + "term": "Core.Description", "value": "The community has an airport or runway." } ] @@ -32842,12 +38110,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Clubhouse" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244537" }, { + "term": "Core.Description", "value": "The community has a clubhouse." } ] @@ -32858,12 +38129,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Curbs" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Curbs" }, { + "term": "Core.Description", "value": "The community streets have curbs." } ] @@ -32874,12 +38148,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fishing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fishing" }, { + "term": "Core.Description", "value": "The community has places to go fishing." } ] @@ -32890,12 +38167,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fitness Center" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244540" }, { + "term": "Core.Description", "value": "The community has a fitness center." } ] @@ -32906,12 +38186,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244541" }, { + "term": "Core.Description", "value": "The community is gated." } ] @@ -32922,12 +38205,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Golf" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Golf" }, { + "term": "Core.Description", "value": "The community has golfing." } ] @@ -32938,12 +38224,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lake" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244543" }, { + "term": "Core.Description", "value": "The community has a lake." } ] @@ -32954,12 +38243,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244544" }, { + "term": "Core.Description", "value": "The community includes no additional features." } ] @@ -32970,12 +38262,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244545" }, { + "term": "Core.Description", "value": "The community has features beyond those listed in this field." } ] @@ -32986,12 +38281,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Park" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244546" }, { + "term": "Core.Description", "value": "The community has a park." } ] @@ -33002,12 +38300,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Playground" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244547" }, { + "term": "Core.Description", "value": "The community has a playground." } ] @@ -33018,12 +38319,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244548" }, { + "term": "Core.Description", "value": "The community has a pool." } ] @@ -33034,12 +38338,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Racquetball" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244549" }, { + "term": "Core.Description", "value": "The community has racquetball facilities." } ] @@ -33050,12 +38357,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Restaurant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244550" }, { + "term": "Core.Description", "value": "The community has a restaurant." } ] @@ -33066,12 +38376,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sidewalks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sidewalks" }, { + "term": "Core.Description", "value": "The community streets have sidewalks." } ] @@ -33082,12 +38395,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stable(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244552" }, { + "term": "Core.Description", "value": "The community has horse stables." } ] @@ -33098,12 +38414,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Street Lights" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Street+Lights" }, { + "term": "Core.Description", "value": "The community streets have lighting." } ] @@ -33114,12 +38433,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Suburban" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Suburban" }, { + "term": "Core.Description", "value": "The community is a suburban setting." } ] @@ -33130,12 +38452,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tennis Court(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244555" }, { + "term": "Core.Description", "value": "The community has tennis court(s)." } ] @@ -33146,12 +38471,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Call Listing Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Call+Listing+Agent" }, { + "term": "Core.Description", "value": "Call the listing agent for information about concessions made/offered by the seller." } ] @@ -33162,12 +38490,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/No" }, { + "term": "Core.Description", "value": "There are no concessions included with this listing." } ] @@ -33178,12 +38509,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Yes" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Yes" }, { + "term": "Core.Description", "value": "There are concessions that are part of the listing/sale." } ] @@ -33194,12 +38528,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Adobe" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Adobe" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with adobe." } ] @@ -33210,12 +38547,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Aluminum Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Aluminum+Siding" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with aluminum siding." } ] @@ -33226,12 +38566,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Asbestos" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Asbestos" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with asbestos." } ] @@ -33242,12 +38585,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Asphalt" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Asphalt" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with asphalt." } ] @@ -33258,12 +38604,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Attic/Crawl Hatchway(s) Insulated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244076" }, { + "term": "Core.Description", "value": "When not insulated, a home’s attic hatch or crawlspace hatch creates one of the biggest gaps in the building envelope, increasing heat loss in winter and heat gain in summer, and making indoor living areas uncomfortable. Insulation standards are clearly defined: \u003ca href\u003d\"http://www.ornl.gov/sci/roofs+walls/insulation/fact\"\u003ehttp://www.ornl.gov/sci/roofs+walls/insulation/fact\u003c/a\u003e" } ] @@ -33274,12 +38623,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Batts Insulation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Batts+Insulation" }, { + "term": "Core.Description", "value": "Rolls and batts, or blankets, are flexible products made from mineral fibers such as fiberglass and rock wool. Can also be made of cotton and wool. They are available in widths suited to standard spacing of wall studs and attic or floor joists." } ] @@ -33290,12 +38642,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Block" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Block" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with block." } ] @@ -33306,12 +38661,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Blown-In Insulation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Blown-In+Insulation" }, { + "term": "Core.Description", "value": "Blown-in or loose-fill insulation is usually made of fiberglass, rock wool, or cellulose in the form of loose fibers or fiber pellets installed using special pneumatic equipment. The blown-in material conforms readily to odd-sized building cavities and attics with wires, ducts, and pipes, making it well suited for places where it is difficult to effectively install other types of insulation." } ] @@ -33322,12 +38680,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Board \u0026 Batten Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244080" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with board \u0026 batten siding." } ] @@ -33338,12 +38699,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Brick" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Brick" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with brick." } ] @@ -33354,12 +38718,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Brick Veneer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Brick+Veneer" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with brick veneer." } ] @@ -33370,12 +38737,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cedar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cedar" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with cedar." } ] @@ -33386,12 +38756,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cement Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cement+Siding" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with cement siding." } ] @@ -33402,12 +38775,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Clapboard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Clapboard" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with clapboard." } ] @@ -33418,12 +38794,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concrete" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Concrete" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with concrete." } ] @@ -33434,12 +38813,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ducts Professionally Air-Sealed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ducts+Professionally+Air-Sealed" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with ducts professionally air-sealed." } ] @@ -33450,12 +38832,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exterior Duct-Work is Insulated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Exterior+Duct-Work+is+Insulated" }, { + "term": "Core.Description", "value": "DOE estimates that heating and cooling ducts located in unconditioned spaces such as attics and garages can underperform by 60–75 percent. Exterior ducts that are properly insulated can save energy and reduce overall equipment sizing. Insulation standards are clearly defined: \u003ca name\u003d\"m_-4439061441316115113__MailEndCompose\"\u003e\u003c/a\u003e\u003ca href\u003d\"https://www.energy.gov/energysaver/insulation\"\u003ehttps://www.energy.gov/energysaver/insulation\u003c/a\u003e" } ] @@ -33466,12 +38851,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fiber Cement" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fiber+Cement" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with fiber cement." } ] @@ -33482,12 +38870,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fiberglass Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fiberglass+Siding" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with fiberglass siding." } ] @@ -33498,12 +38889,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Foam Insulation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Foam+Insulation" }, { + "term": "Core.Description", "value": "Spray foam or foam-in-place insulation can be sprayed into walls, on attic surfaces, or under floors to insulate and reduce air leakage. There are two types of foam-in-place insulation: closed-cell and open-cell. Both are typically made with polyurethane. Closed-cell foam has a greater insulation value and provides stronger resistance against moisture and air leakage. Open-cell foam is lighter and less expensive but should not be used below ground level where it could absorb water." } ] @@ -33514,12 +38908,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Frame" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Frame" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with frame." } ] @@ -33530,12 +38927,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Glass" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Glass" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with glass." } ] @@ -33546,12 +38946,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "HardiPlank Type" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HardiPlank+Type" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with HardiPlank type." } ] @@ -33562,12 +38965,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ICAT Recessed Lighting" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ICAT+Recessed+Lighting" }, { + "term": "Core.Description", "value": "ICAT recessed light fixtures are rated both to safely come in contact with insulation and are better airsealed. ICAT is an acronym for Insulation Contact/AirTight. They can be installed safely with insulation and air sealing. These lights are different from IC (Insulation Contact) fixtures, which are not very airtight. They can also be identified by the wording “Washington State Approved.” Documentation on the installation is recommended because ICAT rating often requires multiple components be used as specified by the manufacturer. Substitutions of components can negate the rating. See: \u003ca href\u003d\"http://energy.gov/energysaver/articles/tips-lighting\"\u003ehttp://energy.gov/energysaver/articles/tips-lighting\u003c/a\u003e and \u003ca href\u003d\"http://energy.gov/energysaver/articles/tips-insulation\"\u003ehttp://energy.gov/energysaver/articles/tips-insulation\u003c/a\u003e" } ] @@ -33578,12 +38984,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ICFs (Insulated Concrete Forms)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244096" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with insulated concrete forms." } ] @@ -33594,12 +39003,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lap Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lap+Siding" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with lap siding." } ] @@ -33610,12 +39022,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Log" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Log" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with log." } ] @@ -33626,12 +39041,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Log Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Log+Siding" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with log siding." } ] @@ -33642,12 +39060,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Low VOC Insulation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Low+VOC+Insulation" }, { + "term": "Core.Description", "value": "Volatile organic compounds (VOCs) are emitted as gases from certain solids or liquids. Different types of insulation can be certified for having low VOC content by third-party verifiers such as GreenGuard." } ] @@ -33658,12 +39079,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Masonite" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Masonite" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with Masonite." } ] @@ -33674,12 +39098,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Metal Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Metal+Siding" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with metal siding." } ] @@ -33690,12 +39117,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Natural Building" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Natural+Building" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with natural building." } ] @@ -33706,12 +39136,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244104" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with other." } ] @@ -33722,12 +39155,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Plaster" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Plaster" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with plaster." } ] @@ -33738,12 +39174,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Radiant Barrier" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Radiant+Barrier" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with radiant barrier." } ] @@ -33754,12 +39193,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rammed Earth" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Rammed+Earth" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with rammed earth." } ] @@ -33770,12 +39212,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Recycled/Bio-Based Insulation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244108" }, { + "term": "Core.Description", "value": "Insulation can be made from natural or recycled materials ranging from paper to soy to denim, using sustainable materials to improve energy efficiency." } ] @@ -33786,12 +39231,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Redwood Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Redwood+Siding" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with redwood siding." } ] @@ -33802,12 +39250,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244110" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with see remarks." } ] @@ -33818,12 +39269,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Shake Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Shake+Siding" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with shake siding." } ] @@ -33834,12 +39288,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Shingle Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Shingle+Siding" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with shingle siding." } ] @@ -33850,12 +39307,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Slump Block" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Slump+Block" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with slump block." } ] @@ -33866,12 +39326,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Spray Foam Insulation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Spray+Foam+Insulation" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with spray foam insulation." } ] @@ -33882,12 +39345,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Steel Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Steel+Siding" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with steel siding." } ] @@ -33898,12 +39364,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Stone" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with stone." } ] @@ -33914,12 +39383,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stone Veneer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Stone+Veneer" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with stone veneer." } ] @@ -33930,12 +39402,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Straw" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Straw" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with straw." } ] @@ -33946,12 +39421,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stucco" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Stucco" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with stucco." } ] @@ -33962,12 +39440,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Synthetic Stucco" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Synthetic+Stucco" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with synthetic stucco." } ] @@ -33978,12 +39459,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unknown" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Unknown" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with unknown." } ] @@ -33994,12 +39478,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vertical Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Vertical+Siding" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with vertical siding." } ] @@ -34010,12 +39497,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vinyl Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Vinyl+Siding" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with vinyl siding." } ] @@ -34026,12 +39516,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wood Siding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wood+Siding" }, { + "term": "Core.Description", "value": "The structure was made wholly or partly with wood siding." } ] @@ -34042,12 +39535,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Attic Fan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Attic+Fan" }, { + "term": "Core.Description", "value": "The property has an attic fan." } ] @@ -34058,12 +39554,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ceiling Fan(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244511" }, { + "term": "Core.Description", "value": "The property has one or more ceiling fans." } ] @@ -34074,12 +39573,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Central Air" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Central+Air" }, { + "term": "Core.Description", "value": "The property has central air conditioning." } ] @@ -34090,12 +39592,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dual" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dual" }, { + "term": "Core.Description", "value": "The cooling system has two units." } ] @@ -34106,12 +39611,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ductless" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ductless" }, { + "term": "Core.Description", "value": "The cooling system does not ducted nor a wall/window type unit. A mini-split is a common type of ductless system where an outdoor condenser is connected to an indoor fan unit that feeds the room in which it\u0027s located, rather than being ducted throughout the structure." } ] @@ -34122,12 +39630,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244515" }, { + "term": "Core.Description", "value": "The cooling system is powered by electricity." } ] @@ -34138,12 +39649,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR Qualified Equipment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+Equipment" }, { + "term": "Core.Description", "value": "The cooling system is ENERGY STAR Qualified." } ] @@ -34154,12 +39668,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Evaporative Cooling" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Evaporative+Cooling" }, { + "term": "Core.Description", "value": "The cooling system works by way of water evaporation rather than a compressor and coolant. Evaporative cooling systems are often referred to as swamp coolers." } ] @@ -34170,12 +39687,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exhaust Fan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244518" }, { + "term": "Core.Description", "value": "The structure has an exhaust fan." } ] @@ -34186,12 +39706,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244519" }, { + "term": "Core.Description", "value": "The cooling system is powered by gas." } ] @@ -34202,12 +39725,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Geothermal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Geothermal" }, { + "term": "Core.Description", "value": "The cooling system runs on a geothermal source." } ] @@ -34218,12 +39744,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Heat Pump" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Heat+Pump" }, { + "term": "Core.Description", "value": "A system that exchanges heat between a warm and cool space. The heat exchange is done between the dwelling and another air space, like outdoors; or a water source; or below ground (geothermal)." } ] @@ -34234,12 +39763,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Humidity Control" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Humidity+Control" }, { + "term": "Core.Description", "value": "The cooling system includes humidity control." } ] @@ -34250,12 +39782,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Multi Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Multi+Units" }, { + "term": "Core.Description", "value": "The cooing system includes more than one unit." } ] @@ -34266,12 +39801,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244524" }, { + "term": "Core.Description", "value": "The property includes no cooling system." } ] @@ -34282,12 +39820,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244525" }, { + "term": "Core.Description", "value": "The cooling system is different, or has features, that are not included in this list." } ] @@ -34298,12 +39839,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Roof Turbine(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244526" }, { + "term": "Core.Description", "value": "The cooling utilizes a roof turbine." } ] @@ -34314,12 +39858,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Separate Meters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Separate+Meters" }, { + "term": "Core.Description", "value": "The cooling system has separate meters for its multiple units/zones." } ] @@ -34330,12 +39877,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Varies by Unit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244528" }, { + "term": "Core.Description", "value": "The cooling equipment varies by unit." } ] @@ -34346,12 +39896,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wall Unit(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244530" }, { + "term": "Core.Description", "value": "The cooling system is stand alone and mounted in an opening in an outer wall." } ] @@ -34362,12 +39915,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wall/Window Unit(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244529" }, { + "term": "Core.Description", "value": "The cooling system is mounted in an opening in the wall or in a window." } ] @@ -34378,12 +39934,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Whole House Fan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Whole+House+Fan" }, { + "term": "Core.Description", "value": "The property has a whole house fan." } ] @@ -34394,12 +39953,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Window Unit(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244532" }, { + "term": "Core.Description", "value": "The cooling system is window mounted." } ] @@ -34410,12 +39972,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Zoned" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Zoned" }, { + "term": "Core.Description", "value": "The cooling system has more than one zone." } ] @@ -34426,12 +39991,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AD" }, { + "term": "Core.Description", "value": "Andorra is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34442,12 +40010,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AE" }, { + "term": "Core.Description", "value": "United Arab Emirates is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34458,12 +40029,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AF" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AF" }, { + "term": "Core.Description", "value": "Afghanistan is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34474,12 +40048,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AG" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AG" }, { + "term": "Core.Description", "value": "Antigua Barbuda is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34490,12 +40067,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AI" }, { + "term": "Core.Description", "value": "Anguilla is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34506,12 +40086,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AL" }, { + "term": "Core.Description", "value": "Albania is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34522,12 +40105,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AM" }, { + "term": "Core.Description", "value": "Armenia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34538,12 +40124,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AN" }, { + "term": "Core.Description", "value": "Netherlands Antilles is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34554,12 +40143,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AO" }, { + "term": "Core.Description", "value": "Angola is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34570,12 +40162,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AQ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AQ" }, { + "term": "Core.Description", "value": "Antarctica is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34586,12 +40181,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AR" }, { + "term": "Core.Description", "value": "Argentina is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34602,12 +40200,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AS" }, { + "term": "Core.Description", "value": "American Samoa is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34618,12 +40219,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AT" }, { + "term": "Core.Description", "value": "Austria is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34634,12 +40238,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AU" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AU" }, { + "term": "Core.Description", "value": "Australia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34650,12 +40257,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AW" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AW" }, { + "term": "Core.Description", "value": "Aruba is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34666,12 +40276,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AX" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AX" }, { + "term": "Core.Description", "value": "Land Islands is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34682,12 +40295,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AZ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AZ" }, { + "term": "Core.Description", "value": "Azerbaijan is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34698,12 +40314,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BA" }, { + "term": "Core.Description", "value": "Bosnia Herzegovina is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34714,12 +40333,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BB" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BB" }, { + "term": "Core.Description", "value": "Barbados is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34730,12 +40352,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BD" }, { + "term": "Core.Description", "value": "Bangladesh is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34746,12 +40371,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BE" }, { + "term": "Core.Description", "value": "Belgium is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34762,12 +40390,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BF" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BF" }, { + "term": "Core.Description", "value": "Burkina Faso is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34778,12 +40409,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BG" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BG" }, { + "term": "Core.Description", "value": "Bulgaria is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34794,12 +40428,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BH" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BH" }, { + "term": "Core.Description", "value": "Bahrain is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34810,12 +40447,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BI" }, { + "term": "Core.Description", "value": "Burundi is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34826,12 +40466,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BJ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BJ" }, { + "term": "Core.Description", "value": "Benin is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34842,12 +40485,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BL" }, { + "term": "Core.Description", "value": "Saint Barthelemy is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34858,12 +40504,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BM" }, { + "term": "Core.Description", "value": "Bermuda is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34874,12 +40523,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BN" }, { + "term": "Core.Description", "value": "Brunei Darussalam is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34890,12 +40542,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BO" }, { + "term": "Core.Description", "value": "Bolivia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34906,12 +40561,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BR" }, { + "term": "Core.Description", "value": "Brazil is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34922,12 +40580,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BS" }, { + "term": "Core.Description", "value": "Bahamas is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34938,12 +40599,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BT" }, { + "term": "Core.Description", "value": "Bhutan is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34954,12 +40618,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BV" }, { + "term": "Core.Description", "value": "Bouvet Island is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34970,12 +40637,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BW" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BW" }, { + "term": "Core.Description", "value": "Botswana is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -34986,12 +40656,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BY" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BY" }, { + "term": "Core.Description", "value": "Belarus is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35002,12 +40675,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BZ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BZ" }, { + "term": "Core.Description", "value": "Belize is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35018,12 +40694,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CA" }, { + "term": "Core.Description", "value": "Canada is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35034,12 +40713,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CC" }, { + "term": "Core.Description", "value": "Cocos (Keeling) Islands is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35050,12 +40732,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CD" }, { + "term": "Core.Description", "value": "Congo Democratic Republic is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35066,12 +40751,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CF" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CF" }, { + "term": "Core.Description", "value": "Central African Republic is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35082,12 +40770,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CG" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CG" }, { + "term": "Core.Description", "value": "Congo is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35098,12 +40789,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CH" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CH" }, { + "term": "Core.Description", "value": "Switzerland is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35114,12 +40808,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CI" }, { + "term": "Core.Description", "value": "Cote d\u0027Ivoire is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35130,12 +40827,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CK" }, { + "term": "Core.Description", "value": "Cook Islands is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35146,12 +40846,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CL" }, { + "term": "Core.Description", "value": "Chile is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35162,12 +40865,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CM" }, { + "term": "Core.Description", "value": "Cameroon is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35178,12 +40884,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CN" }, { + "term": "Core.Description", "value": "China is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35194,12 +40903,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CO" }, { + "term": "Core.Description", "value": "Colombia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35210,12 +40922,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CR" }, { + "term": "Core.Description", "value": "Costa Rica is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35226,12 +40941,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CU" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CU" }, { + "term": "Core.Description", "value": "Cuba is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35242,12 +40960,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CV" }, { + "term": "Core.Description", "value": "Cabo Verde is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35258,12 +40979,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CX" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CX" }, { + "term": "Core.Description", "value": "Christmas Island is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35274,12 +40998,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CY" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CY" }, { + "term": "Core.Description", "value": "Cyprus is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35290,12 +41017,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CZ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CZ" }, { + "term": "Core.Description", "value": "Czech Republic is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35306,12 +41036,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "DE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DE" }, { + "term": "Core.Description", "value": "Germany is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35322,12 +41055,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "DJ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DJ" }, { + "term": "Core.Description", "value": "Djibouti is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35338,12 +41074,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "DK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DK" }, { + "term": "Core.Description", "value": "Denmark is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35354,12 +41093,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "DM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DM" }, { + "term": "Core.Description", "value": "Dominica is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35370,12 +41112,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "DO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DO" }, { + "term": "Core.Description", "value": "Dominican Republic is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35386,12 +41131,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "DZ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DZ" }, { + "term": "Core.Description", "value": "Algeria is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35402,12 +41150,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "EC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EC" }, { + "term": "Core.Description", "value": "Ecuador is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35418,12 +41169,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "EE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EE" }, { + "term": "Core.Description", "value": "Estonia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35434,12 +41188,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "EG" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EG" }, { + "term": "Core.Description", "value": "Egypt is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35450,12 +41207,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "EH" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EH" }, { + "term": "Core.Description", "value": "Western Sahara is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35466,12 +41226,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ER" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ER" }, { + "term": "Core.Description", "value": "Eritrea is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35482,12 +41245,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ES" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ES" }, { + "term": "Core.Description", "value": "Spain is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35498,12 +41264,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ET" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ET" }, { + "term": "Core.Description", "value": "Ethiopia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35514,12 +41283,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FI" }, { + "term": "Core.Description", "value": "Finland is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35530,12 +41302,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FJ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FJ" }, { + "term": "Core.Description", "value": "Fiji is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35546,12 +41321,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FK" }, { + "term": "Core.Description", "value": "Falkland Islands is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35562,12 +41340,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FM" }, { + "term": "Core.Description", "value": "Micronesia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35578,12 +41359,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FO" }, { + "term": "Core.Description", "value": "Faroe Islands is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35594,12 +41378,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FR" }, { + "term": "Core.Description", "value": "France is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35610,12 +41397,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GA" }, { + "term": "Core.Description", "value": "Gabon is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35626,12 +41416,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GB" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GB" }, { + "term": "Core.Description", "value": "United Kingdom is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35642,12 +41435,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GD" }, { + "term": "Core.Description", "value": "Grenada is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35658,12 +41454,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GE" }, { + "term": "Core.Description", "value": "Georgia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35674,12 +41473,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GF" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GF" }, { + "term": "Core.Description", "value": "French Guiana is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35690,12 +41492,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GG" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GG" }, { + "term": "Core.Description", "value": "Guernsey is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35706,12 +41511,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GH" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GH" }, { + "term": "Core.Description", "value": "Ghana is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35722,12 +41530,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GI" }, { + "term": "Core.Description", "value": "Gibraltar is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35738,12 +41549,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GL" }, { + "term": "Core.Description", "value": "Greenland is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35754,12 +41568,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GM" }, { + "term": "Core.Description", "value": "Gambia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35770,12 +41587,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GN" }, { + "term": "Core.Description", "value": "Guinea is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35786,12 +41606,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GP" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GP" }, { + "term": "Core.Description", "value": "Guadeloupe is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35802,12 +41625,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GQ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GQ" }, { + "term": "Core.Description", "value": "Equatorial Guinea is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35818,12 +41644,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GR" }, { + "term": "Core.Description", "value": "Greece is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35834,12 +41663,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GS" }, { + "term": "Core.Description", "value": "South Georgia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35850,12 +41682,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GT" }, { + "term": "Core.Description", "value": "Guatemala is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35866,12 +41701,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GU" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GU" }, { + "term": "Core.Description", "value": "Guam is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35882,12 +41720,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GW" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GW" }, { + "term": "Core.Description", "value": "Guinea-Bissau is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35898,12 +41739,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GY" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GY" }, { + "term": "Core.Description", "value": "Guyana is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35914,12 +41758,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "HK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HK" }, { + "term": "Core.Description", "value": "Hong Kong is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35930,12 +41777,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "HM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HM" }, { + "term": "Core.Description", "value": "Heard And McDonald Islands is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35946,12 +41796,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "HN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HN" }, { + "term": "Core.Description", "value": "Honduras is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35962,12 +41815,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "HR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HR" }, { + "term": "Core.Description", "value": "Croatia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35978,12 +41834,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "HT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HT" }, { + "term": "Core.Description", "value": "Haiti is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -35994,12 +41853,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "HU" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HU" }, { + "term": "Core.Description", "value": "Hungary is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36010,12 +41872,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ID" }, { + "term": "Core.Description", "value": "Indonesia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36026,12 +41891,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IE" }, { + "term": "Core.Description", "value": "Ireland is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36042,12 +41910,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IL" }, { + "term": "Core.Description", "value": "Israel is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36058,12 +41929,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IM" }, { + "term": "Core.Description", "value": "Isle Of Man is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36074,12 +41948,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IN" }, { + "term": "Core.Description", "value": "India is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36090,12 +41967,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IO" }, { + "term": "Core.Description", "value": "British Indian Ocean Territory is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36106,12 +41986,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IQ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IQ" }, { + "term": "Core.Description", "value": "Iraq is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36122,12 +42005,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IR" }, { + "term": "Core.Description", "value": "Iran is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36138,12 +42024,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IS" }, { + "term": "Core.Description", "value": "Iceland is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36154,12 +42043,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IT" }, { + "term": "Core.Description", "value": "Italy is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36170,12 +42062,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "JE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/JE" }, { + "term": "Core.Description", "value": "Jersey is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36186,12 +42081,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "JM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/JM" }, { + "term": "Core.Description", "value": "Jamaica is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36202,12 +42100,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "JO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/JO" }, { + "term": "Core.Description", "value": "Jordan is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36218,12 +42119,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "JP" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/JP" }, { + "term": "Core.Description", "value": "Japan is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36234,12 +42138,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "KE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/KE" }, { + "term": "Core.Description", "value": "Kenya is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36250,12 +42157,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "KG" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/KG" }, { + "term": "Core.Description", "value": "Kyrgyzstan is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36266,12 +42176,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "KH" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/KH" }, { + "term": "Core.Description", "value": "Cambodia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36282,12 +42195,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "KI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/KI" }, { + "term": "Core.Description", "value": "Kiribati is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36298,12 +42214,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "KM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/KM" }, { + "term": "Core.Description", "value": "Comoros is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36314,12 +42233,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "KN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/KN" }, { + "term": "Core.Description", "value": "Saint Kitts And Nevis is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36330,12 +42252,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "KP" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/KP" }, { + "term": "Core.Description", "value": "North Korea, officially named the Democratic People\u0027s Republic of Korea, is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36346,12 +42271,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "KR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/KR" }, { + "term": "Core.Description", "value": "South Korea, officially named the Republic of Korea, is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36362,12 +42290,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "KW" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/KW" }, { + "term": "Core.Description", "value": "Kuwait is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36378,12 +42309,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "KY" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/KY" }, { + "term": "Core.Description", "value": "Cayman Islands is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36394,12 +42328,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "KZ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/KZ" }, { + "term": "Core.Description", "value": "Kazakhstan is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36410,12 +42347,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LA" }, { + "term": "Core.Description", "value": "Lao is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36426,12 +42366,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LB" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LB" }, { + "term": "Core.Description", "value": "Lebanon is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36442,12 +42385,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LC" }, { + "term": "Core.Description", "value": "Saint Lucia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36458,12 +42404,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LI" }, { + "term": "Core.Description", "value": "Liechtenstein is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36474,12 +42423,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LK" }, { + "term": "Core.Description", "value": "Sri Lanka is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36490,12 +42442,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LR" }, { + "term": "Core.Description", "value": "Liberia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36506,12 +42461,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LS" }, { + "term": "Core.Description", "value": "Lesotho is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36522,12 +42480,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LT" }, { + "term": "Core.Description", "value": "Lithuania is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36538,12 +42499,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LU" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LU" }, { + "term": "Core.Description", "value": "Luxembourg is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36554,12 +42518,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LV" }, { + "term": "Core.Description", "value": "Latvia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36570,12 +42537,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LY" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LY" }, { + "term": "Core.Description", "value": "Libyan Arab Jamahiriya is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36586,12 +42556,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MA" }, { + "term": "Core.Description", "value": "Morocco is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36602,12 +42575,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MC" }, { + "term": "Core.Description", "value": "Monaco is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36618,12 +42594,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MD" }, { + "term": "Core.Description", "value": "Moldova is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36634,12 +42613,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ME" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ME" }, { + "term": "Core.Description", "value": "Montenegro is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36650,12 +42632,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MF" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MF" }, { + "term": "Core.Description", "value": "Saint Martin is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36666,12 +42651,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MG" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MG" }, { + "term": "Core.Description", "value": "Madagascar is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36682,12 +42670,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MH" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MH" }, { + "term": "Core.Description", "value": "Marshall Islands is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36698,12 +42689,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MK" }, { + "term": "Core.Description", "value": "Macedonia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36714,12 +42708,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ML" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ML" }, { + "term": "Core.Description", "value": "Mali is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36730,12 +42727,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MM" }, { + "term": "Core.Description", "value": "Myanmar is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36746,12 +42746,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MN" }, { + "term": "Core.Description", "value": "Mongolia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36762,12 +42765,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MO" }, { + "term": "Core.Description", "value": "Macao is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36778,12 +42784,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MP" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MP" }, { + "term": "Core.Description", "value": "Northern Mariana Islands is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36794,12 +42803,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MQ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MQ" }, { + "term": "Core.Description", "value": "Martinique is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36810,12 +42822,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MR" }, { + "term": "Core.Description", "value": "Mauritania is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36826,12 +42841,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MS" }, { + "term": "Core.Description", "value": "Montserrat is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36842,12 +42860,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MT" }, { + "term": "Core.Description", "value": "Malta is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36858,12 +42879,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MU" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MU" }, { + "term": "Core.Description", "value": "Mauritius is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36874,12 +42898,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MV" }, { + "term": "Core.Description", "value": "Maldives is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36890,12 +42917,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MW" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MW" }, { + "term": "Core.Description", "value": "Malawi is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36906,12 +42936,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MX" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MX" }, { + "term": "Core.Description", "value": "Mexico is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36922,12 +42955,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MY" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MY" }, { + "term": "Core.Description", "value": "Malaysia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36938,12 +42974,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MZ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MZ" }, { + "term": "Core.Description", "value": "Mozambique is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36954,12 +42993,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NA" }, { + "term": "Core.Description", "value": "Namibia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36970,12 +43012,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NC" }, { + "term": "Core.Description", "value": "New Caledonia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -36986,12 +43031,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NE" }, { + "term": "Core.Description", "value": "Niger is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37002,12 +43050,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NF" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NF" }, { + "term": "Core.Description", "value": "Norfolk Island is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37018,12 +43069,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NG" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NG" }, { + "term": "Core.Description", "value": "Nigeria is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37034,12 +43088,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NI" }, { + "term": "Core.Description", "value": "Nicaragua is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37050,12 +43107,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NL" }, { + "term": "Core.Description", "value": "Netherlands is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37066,12 +43126,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NP" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NP" }, { + "term": "Core.Description", "value": "Nepal is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37082,12 +43145,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NR" }, { + "term": "Core.Description", "value": "Nauru is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37098,12 +43164,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NU" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NU" }, { + "term": "Core.Description", "value": "Niue is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37114,12 +43183,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NZ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NZ" }, { + "term": "Core.Description", "value": "New Zealand is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37130,12 +43202,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "OM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OM" }, { + "term": "Core.Description", "value": "Oman is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37146,12 +43221,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "OT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OT" }, { + "term": "Core.Description", "value": "Other is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37162,12 +43240,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PA" }, { + "term": "Core.Description", "value": "Panama is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37178,12 +43259,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PE" }, { + "term": "Core.Description", "value": "Peru is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37194,12 +43278,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PF" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PF" }, { + "term": "Core.Description", "value": "French Polynesia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37210,12 +43297,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PG" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PG" }, { + "term": "Core.Description", "value": "Papua New Guinea is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37226,12 +43316,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PH" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PH" }, { + "term": "Core.Description", "value": "Philippines is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37242,12 +43335,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PK" }, { + "term": "Core.Description", "value": "Pakistan is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37258,12 +43354,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PL" }, { + "term": "Core.Description", "value": "Poland is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37274,12 +43373,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PM" }, { + "term": "Core.Description", "value": "Saint Pierre And Miquelon is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37290,12 +43392,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PN" }, { + "term": "Core.Description", "value": "Pitcairn is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37306,12 +43411,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PR" }, { + "term": "Core.Description", "value": "Puerto Rico is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37322,12 +43430,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PS" }, { + "term": "Core.Description", "value": "Palestinian Territory is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37338,12 +43449,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PT" }, { + "term": "Core.Description", "value": "Portugal is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37354,12 +43468,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PW" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PW" }, { + "term": "Core.Description", "value": "Palau is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37370,12 +43487,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PY" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PY" }, { + "term": "Core.Description", "value": "Paraguay is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37386,12 +43506,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "QA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/QA" }, { + "term": "Core.Description", "value": "Qatar is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37402,12 +43525,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RE" }, { + "term": "Core.Description", "value": "Reunion is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37418,12 +43544,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RO" }, { + "term": "Core.Description", "value": "Romania is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37434,12 +43563,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RS" }, { + "term": "Core.Description", "value": "Serbia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37450,12 +43582,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RU" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RU" }, { + "term": "Core.Description", "value": "Russian Federation is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37466,12 +43601,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RW" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RW" }, { + "term": "Core.Description", "value": "Rwanda is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37482,12 +43620,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SA" }, { + "term": "Core.Description", "value": "Saudi Arabia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37498,12 +43639,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SB" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SB" }, { + "term": "Core.Description", "value": "Solomon Islands is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37514,12 +43658,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SC" }, { + "term": "Core.Description", "value": "Seychelles is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37530,12 +43677,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SD" }, { + "term": "Core.Description", "value": "Sudan is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37546,12 +43696,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SE" }, { + "term": "Core.Description", "value": "Sweden is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37562,12 +43715,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SG" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SG" }, { + "term": "Core.Description", "value": "Singapore is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37578,12 +43734,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SH" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SH" }, { + "term": "Core.Description", "value": "Saint Helena is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37594,12 +43753,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SI" }, { + "term": "Core.Description", "value": "Slovenia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37610,12 +43772,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SJ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SJ" }, { + "term": "Core.Description", "value": "Svalbard - Jan Mayen is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37626,12 +43791,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SK" }, { + "term": "Core.Description", "value": "Slovakia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37642,12 +43810,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SL" }, { + "term": "Core.Description", "value": "Sierra Leone is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37658,12 +43829,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SM" }, { + "term": "Core.Description", "value": "San Marino is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37674,12 +43848,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SN" }, { + "term": "Core.Description", "value": "Senegal is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37690,12 +43867,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SO" }, { + "term": "Core.Description", "value": "Somalia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37706,12 +43886,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SR" }, { + "term": "Core.Description", "value": "Suriname is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37722,12 +43905,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ST" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ST" }, { + "term": "Core.Description", "value": "Sao Tome And Principe is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37738,12 +43924,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SV" }, { + "term": "Core.Description", "value": "El Salvador is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37754,12 +43943,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SY" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SY" }, { + "term": "Core.Description", "value": "Syrian Arab Republic is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37770,12 +43962,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SZ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SZ" }, { + "term": "Core.Description", "value": "Swaziland is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37786,12 +43981,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TC" }, { + "term": "Core.Description", "value": "Turks - Caicos Islands is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37802,12 +44000,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TD" }, { + "term": "Core.Description", "value": "Chad is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37818,12 +44019,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TF" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TF" }, { + "term": "Core.Description", "value": "French Southern Territories is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37834,12 +44038,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TG" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TG" }, { + "term": "Core.Description", "value": "Togo is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37850,12 +44057,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TH" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TH" }, { + "term": "Core.Description", "value": "Thailand is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37866,12 +44076,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TJ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TJ" }, { + "term": "Core.Description", "value": "Tajikistan is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37882,12 +44095,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TK" }, { + "term": "Core.Description", "value": "Tokelau is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37898,12 +44114,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TL" }, { + "term": "Core.Description", "value": "Timor-Leste is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37914,12 +44133,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TM" }, { + "term": "Core.Description", "value": "Turkmenistan is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37930,12 +44152,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TN" }, { + "term": "Core.Description", "value": "Tunisia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37946,12 +44171,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TO" }, { + "term": "Core.Description", "value": "Tonga is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37962,12 +44190,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TR" }, { + "term": "Core.Description", "value": "Turkey is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37978,12 +44209,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TT" }, { + "term": "Core.Description", "value": "Trinidad - Tobago is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -37994,12 +44228,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TV" }, { + "term": "Core.Description", "value": "Tuvalu is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38010,12 +44247,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TW" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TW" }, { + "term": "Core.Description", "value": "Taiwan is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38026,12 +44266,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TZ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TZ" }, { + "term": "Core.Description", "value": "Tanzania is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38042,12 +44285,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "UA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UA" }, { + "term": "Core.Description", "value": "Ukraine is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38058,12 +44304,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "UG" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UG" }, { + "term": "Core.Description", "value": "Uganda is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38074,12 +44323,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "UM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UM" }, { + "term": "Core.Description", "value": "United States Minor Islands is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38090,12 +44342,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "US" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/US" }, { + "term": "Core.Description", "value": "United States is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38106,12 +44361,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "UY" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UY" }, { + "term": "Core.Description", "value": "Uruguay is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38122,12 +44380,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "UZ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UZ" }, { + "term": "Core.Description", "value": "Uzbekistan is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38138,12 +44399,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244365" }, { + "term": "Core.Description", "value": "Holy See (Vatican City) is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38154,12 +44418,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VC" }, { + "term": "Core.Description", "value": "Saint Vincent - Grenadines is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38170,12 +44437,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VE" }, { + "term": "Core.Description", "value": "Venezuela is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38186,12 +44456,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VG" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VG" }, { + "term": "Core.Description", "value": "Virgin Islands British is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38202,12 +44475,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VI" }, { + "term": "Core.Description", "value": "Virgin Islands U.S. is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38218,12 +44494,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VN" }, { + "term": "Core.Description", "value": "Viet Nam is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38234,12 +44513,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VU" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VU" }, { + "term": "Core.Description", "value": "Vanuatu is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38250,12 +44532,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "WF" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WF" }, { + "term": "Core.Description", "value": "Wallis And Futuna is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38266,12 +44551,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "WS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WS" }, { + "term": "Core.Description", "value": "Samoa is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38282,12 +44570,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "YE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/YE" }, { + "term": "Core.Description", "value": "Yemen is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38298,12 +44589,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "YT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/YT" }, { + "term": "Core.Description", "value": "Mayotte is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38314,12 +44608,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ZA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ZA" }, { + "term": "Core.Description", "value": "South Africa is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38330,12 +44627,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ZM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ZM" }, { + "term": "Core.Description", "value": "Zambia is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38346,12 +44646,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ZW" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ZW" }, { + "term": "Core.Description", "value": "Zimbabwe is the country in which the individual, entity or property is located. The two letter code is based on ISO standard 3166." } ] @@ -38367,12 +44670,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assumable" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Assumable" }, { + "term": "Core.Description", "value": "The financing currently in place may be assumed." } ] @@ -38383,12 +44689,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contract" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244381" }, { + "term": "Core.Description", "value": "The purchase of a property involves an agreement to perform services, provide product, share of income, or some other agreement as the method of payment for the property." } ] @@ -38399,12 +44708,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Conventional" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244382" }, { + "term": "Core.Description", "value": "The buyer is using conventional financing to purchase the home." } ] @@ -38415,12 +44727,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FHA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244383" }, { + "term": "Core.Description", "value": "A loan from an approved provider that follows the guidelines of, and is insured by, the Federal Housing Administration." } ] @@ -38431,12 +44746,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FHA 203(b)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244384" }, { + "term": "Core.Description", "value": "The basic home mortgage loan from an approved provider that follows the guidelines of, and is insured by, the Federal Housing Administration." } ] @@ -38447,12 +44765,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FHA 203(k)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244385" }, { + "term": "Core.Description", "value": "A loan, for the rehabilitation and repair of single family residence, from an approved provider that follows the guidelines of, and is insured by, the Federal Housing Administration." } ] @@ -38463,12 +44784,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Leased Renewables" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Leased+Renewables" }, { + "term": "Core.Description", "value": "Definition: Renewable system (i.e., solar or wind) belonging to a third-party is installed on a customer’s property at little or no cost to the property owner. Property owner has entered an agreement to pay for the lease of the equipment. Structure: Fee model is based on equipment to generate power, not power itself. Transfer: If requirements are met it may be possible to transfer lease from home seller to buyer with the approval of the system owner. If being transferred, see Fannie Mae guidelines for more info: since lease is for equipment it must be included in the buyers DTI calculation. If a buyer cannot or will not adopt a lease, then the seller is required to pay the remaining contract amount in full and the system would be removed.Real or Personal Property: Renewable system is typically considered personal property. All tax credits as well as maintenance responsibilities, etc. belong to the third-party owner. Some leases require the homeowner to pay the personal property tax. Terms: Lease should provide items homeowner is responsible for paying. In a solar lease model, a customer will sign a contract with an installer/developer and pay for the solar energy equipment over a period of years or decades. Solar leases can be structured so customers pay no up-front costs, some up-front costs (partially prepaid) or can be fully prepaid (the leasing company is then able to depreciate the equipment over time and offers a lower fee for pre-paid leases). The homeowner may have the option to purchase the system during or at the end of the lease term (most leases are for 20-year terms) at its fair market value or terms set in the original lease contract." } ] @@ -38479,12 +44803,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/None" }, { + "term": "Core.Description", "value": "The is no current financing on the property." } ] @@ -38495,12 +44822,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244388" }, { + "term": "Core.Description", "value": "The current owner is using another form of financing that is not included in the options provided in this list." } ] @@ -38511,12 +44841,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Power Purchase Agreement" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Power+Purchase+Agreement" }, { + "term": "Core.Description", "value": "Definition: Renewable system belonging to a third-party is installed on a customer’s property at little or no up-front cost to the property owner. Property owner is in an agreement to buy all the power generated at a fixed rate whether it is actually used or not. This is typically lower than the local utility rate. Structure: Fee model is based on power, not equipment to generate it. Transfer: A PPA may be transferred to a homebuyer with approval from the system owner. If a buyer will not adopt a PPA, then the seller is required to pay the remaining contract amount in full and the system would be removed. If being transferred, see Fannie Mae guidelines for more info: portion of the purchase towards equipment must be included in the buyers DTI calculation. Real or Personal Property: Renewable system is typically considered personal property. All tax credits as well as maintenance responsibilities, etc. belong to the third-party owner. Terms: The customer agrees to purchase all energy produced by the system. At the end of the PPA contract term (usually between 10-25 years), property owners can extend the contract and even buy the solar energy system from the developer based on terms in the contract.Additional info on SEIA.org." } ] @@ -38527,12 +44860,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244390" }, { + "term": "Core.Description", "value": "Financing is provided by a private party." } ] @@ -38543,12 +44879,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Property-Assessed Clean Energy" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Property-Assessed+Clean+Energy" }, { + "term": "Core.Description", "value": "Definition: Property-assessed clean energy (PACE) is a financing tool for property owners to fund energy or water efficiency or renewable energy installations. Structure: PACE is a secured loan that attaches to the property as a voluntary assessment on the property taxes. To be eligible for a PACE loan, the building must be located in a local jurisdiction where the City or County has passed a resolution to participate in a PACE program. PACE financing is often a public-private partnership between a private finance company and a public agency.Transfer? The loan may be transferred to the new owner upon sale of the property with the approval of the system owner. Real or Personal Property? If seller owns and not a third-party, then renewable system is typically considered real property and tax credits and maintenance requirements, etc. belong to the property owner. Terms: Loan terms can vary between 5 and 30 years. Some programs also allow PACE to finance solar leases and power purchase agreements (PPAs). Due to the complexities of PACE financing, NAR and states like California have provided statements which are worth further consideration. NAR - http://www.realtor.org/articles/administration-issues-pace-guidance; CAR - http://www.car.org/newsstand/newsreleases/2015releases/fhapacelien" } ] @@ -38559,12 +44898,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trust Deed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244392" }, { + "term": "Core.Description", "value": "Financing where title of the property is placed with a trustee who secures payment of the loan for a beneficiary." } ] @@ -38575,12 +44917,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "USDA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244393" }, { + "term": "Core.Description", "value": "A loan from an approved provider that follows the guidelines of, and is insured by, the US Department of Agriculture." } ] @@ -38591,12 +44936,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244394" }, { + "term": "Core.Description", "value": "A loan from an approved provider that follows the guidelines of, and is insured by, the US Department of Veteran\u0027s Affairs." } ] @@ -38607,12 +44955,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agricultural" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244464" }, { + "term": "Core.Description", "value": "The land is currently used for agriculture." } ] @@ -38623,12 +44974,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Automotive" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Automotive" }, { + "term": "Core.Description", "value": "The land is currently used for automotive maintenance or repair." } ] @@ -38639,12 +44993,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cattle" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cattle" }, { + "term": "Core.Description", "value": "The land is currently used for cattle." } ] @@ -38655,12 +45012,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Commercial" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244467" }, { + "term": "Core.Description", "value": "The land is currently used for commercial purposes." } ] @@ -38671,12 +45031,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dairy" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dairy" }, { + "term": "Core.Description", "value": "The land is currently used as a dairy farm." } ] @@ -38687,12 +45050,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Farm" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244469" }, { + "term": "Core.Description", "value": "The land is currently used as a farm." } ] @@ -38703,12 +45069,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fishery" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fishery" }, { + "term": "Core.Description", "value": "The land is currently used as a fishery." } ] @@ -38719,12 +45088,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Grazing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Grazing" }, { + "term": "Core.Description", "value": "The land is currently used for live stock grazing." } ] @@ -38735,12 +45107,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Highway/Tourist Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244472" }, { + "term": "Core.Description", "value": "The land is currently used for a highway/tourist service." } ] @@ -38751,12 +45126,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Horses" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Horses" }, { + "term": "Core.Description", "value": "The land is currently used for horses." } ] @@ -38767,12 +45145,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hunting" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hunting" }, { + "term": "Core.Description", "value": "The land is currently used for hunting." } ] @@ -38783,12 +45164,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Industrial" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244475" }, { + "term": "Core.Description", "value": "The land is currently used for industrial purposes." } ] @@ -38799,12 +45183,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Investment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Investment" }, { + "term": "Core.Description", "value": "The land is currently used as an investment." } ] @@ -38815,12 +45202,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Livestock" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Livestock" }, { + "term": "Core.Description", "value": "The land is currently used for livestock." } ] @@ -38831,12 +45221,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Manufactured Home" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244478" }, { + "term": "Core.Description", "value": "The land is currently used for manufactured home." } ] @@ -38847,12 +45240,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Medical/Dental" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244479" }, { + "term": "Core.Description", "value": "The land is currently used for medical/dental business." } ] @@ -38863,12 +45259,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mini-Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Mini-Storage" }, { + "term": "Core.Description", "value": "The land is currently used for mini-storage business." } ] @@ -38879,12 +45278,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mixed Use" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244481" }, { + "term": "Core.Description", "value": "The land is currently used for mixed uses." } ] @@ -38895,12 +45297,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Multi-Family" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244482" }, { + "term": "Core.Description", "value": "The land is currently used for multi-family dwelling." } ] @@ -38911,12 +45316,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Nursery" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244483" }, { + "term": "Core.Description", "value": "The land is currently used as a nursery." } ] @@ -38927,12 +45335,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244484" }, { + "term": "Core.Description", "value": "The land is currently used as office space." } ] @@ -38943,12 +45354,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Orchard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Orchard" }, { + "term": "Core.Description", "value": "The land is currently used for an orchard." } ] @@ -38959,12 +45373,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244486" }, { + "term": "Core.Description", "value": "The land is currently used for some use other than those in this list." } ] @@ -38975,12 +45392,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pasture" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pasture" }, { + "term": "Core.Description", "value": "The land is currently used as a pasture." } ] @@ -38991,12 +45411,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Place of Worship" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Place+of+Worship" }, { + "term": "Core.Description", "value": "The land is currently used for a place or worship." } ] @@ -39007,12 +45430,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Plantable" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Plantable" }, { + "term": "Core.Description", "value": "The land is currently used as a plantabe field." } ] @@ -39023,12 +45449,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Poultry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Poultry" }, { + "term": "Core.Description", "value": "The land is currently used as a poultry farm." } ] @@ -39039,12 +45468,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ranch" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244491" }, { + "term": "Core.Description", "value": "The land is currently used as a ranch." } ] @@ -39055,12 +45487,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Recreational" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Recreational" }, { + "term": "Core.Description", "value": "The land is currently used for recreational purposes." } ] @@ -39071,12 +45506,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244493" }, { + "term": "Core.Description", "value": "The land is currently used for residential purposes." } ] @@ -39087,12 +45525,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Retail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244494" }, { + "term": "Core.Description", "value": "The land is currently used for retail purposes." } ] @@ -39103,12 +45544,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Row Crops" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Row+Crops" }, { + "term": "Core.Description", "value": "The land is currently used for row crops." } ] @@ -39119,12 +45563,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244496" }, { + "term": "Core.Description", "value": "See the Public or Private remarks for details on the current use." } ] @@ -39135,12 +45582,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Single Family" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244497" }, { + "term": "Core.Description", "value": "The land is currently used for single family residence." } ] @@ -39151,12 +45601,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Subdivision" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Subdivision" }, { + "term": "Core.Description", "value": "The land is currently used for property subdivisions." } ] @@ -39167,12 +45620,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Timber" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Timber" }, { + "term": "Core.Description", "value": "The land is currently used for timber." } ] @@ -39183,12 +45639,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tree Farm" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tree+Farm" }, { + "term": "Core.Description", "value": "The land is currently used as a tree farm." } ] @@ -39199,12 +45658,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unimproved" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244501" }, { + "term": "Core.Description", "value": "The land is currently unimproved." } ] @@ -39215,12 +45677,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vacant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244502" }, { + "term": "Core.Description", "value": "The land is currently vacant." } ] @@ -39231,12 +45696,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vineyard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Vineyard" }, { + "term": "Core.Description", "value": "The land is currently used as a vineyard." } ] @@ -39247,12 +45715,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Warehouse" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244504" }, { + "term": "Core.Description", "value": "The land is currently used for warehousing." } ] @@ -39263,12 +45734,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Completed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Completed" }, { + "term": "Core.Description", "value": "The development of the land is complete." } ] @@ -39279,12 +45753,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Finished Lot(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244568" }, { + "term": "Core.Description", "value": "The development of the land is finished." } ] @@ -39295,12 +45772,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244569" }, { + "term": "Core.Description", "value": "The development status of the land is something other than those options in this list." } ] @@ -39311,12 +45791,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Proposed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Proposed" }, { + "term": "Core.Description", "value": "The development of the land is in the proposal phase." } ] @@ -39327,12 +45810,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Raw Land" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Raw+Land" }, { + "term": "Core.Description", "value": "The land is raw and undeveloped." } ] @@ -39343,12 +45829,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rough Grade" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Rough+Grade" }, { + "term": "Core.Description", "value": "The development of the last is in the rough grade phase." } ] @@ -39359,12 +45848,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244573" }, { + "term": "Core.Description", "value": "See the Public or Private remarks for details on the development status of the land." } ] @@ -39375,12 +45867,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Site Plan Approved" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Site+Plan+Approved" }, { + "term": "Core.Description", "value": "The site plan has been approved for the development." } ] @@ -39391,12 +45886,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Site Plan Filed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Site+Plan+Filed" }, { + "term": "Core.Description", "value": "The site plan has been filed for the development." } ] @@ -39407,12 +45905,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Under Construction" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244576" }, { + "term": "Core.Description", "value": "There is construction in progress at the development." } ] @@ -39423,12 +45924,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "East" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/East" }, { + "term": "Core.Description", "value": "The front of the structure faces east." } ] @@ -39439,12 +45943,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "North" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/North" }, { + "term": "Core.Description", "value": "The front of the structure faces north." } ] @@ -39455,12 +45962,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Northeast" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Northeast" }, { + "term": "Core.Description", "value": "The front of the structure faces northeast." } ] @@ -39471,12 +45981,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Northwest" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Northwest" }, { + "term": "Core.Description", "value": "The front of the structure faces northwest." } ] @@ -39487,12 +46000,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "South" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/South" }, { + "term": "Core.Description", "value": "The front of the structure faces south." } ] @@ -39503,12 +46019,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Southeast" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Southeast" }, { + "term": "Core.Description", "value": "The front of the structure faces southeast." } ] @@ -39519,12 +46038,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Southwest" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Southwest" }, { + "term": "Core.Description", "value": "The front of the structure faces southwest." } ] @@ -39535,12 +46057,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "West" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/West" }, { + "term": "Core.Description", "value": "The front of the structure faces west." } ] @@ -39556,12 +46081,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Feet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Feet" }, { + "term": "Core.Description", "value": "The elevation of the property is measured in feet." } ] @@ -39572,12 +46100,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Meters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Meters" }, { + "term": "Core.Description", "value": "The elevation of the property is measured in meters." } ] @@ -39593,12 +46124,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR Qualified Doors" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+Doors" }, { + "term": "Core.Description", "value": "The property has ENERGY STAR qualified door(s)." } ] @@ -39609,12 +46143,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "French Doors" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/French+Doors" }, { + "term": "Core.Description", "value": "The property has doors with glass panes throughout the length of the door." } ] @@ -39625,12 +46162,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mirrored Closet Door(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244602" }, { + "term": "Core.Description", "value": "The property has one or more closet doors that have a mirrored surface." } ] @@ -39641,12 +46181,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sliding Doors" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sliding+Doors" }, { + "term": "Core.Description", "value": "The property has sliding doors." } ] @@ -39657,12 +46200,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Storm Door(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244604" }, { + "term": "Core.Description", "value": "The property has one or more storm doors." } ] @@ -39673,12 +46219,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "100 Amp Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/100+Amp+Service" }, { + "term": "Core.Description", "value": "The electrical features of the property include 100 amp service." } ] @@ -39689,12 +46238,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "150 Amp Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/150+Amp+Service" }, { + "term": "Core.Description", "value": "The electrical features of the property include 150 amp service." } ] @@ -39705,12 +46257,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "200+ Amp Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244609" }, { + "term": "Core.Description", "value": "The electrical features of the property include 200+ amp service." } ] @@ -39721,12 +46276,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Circuit Breakers" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Circuit+Breakers" }, { + "term": "Core.Description", "value": "The electrical features of the property include circuit breakers." } ] @@ -39737,12 +46295,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Energy Storage Device" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Energy+Storage+Device" }, { + "term": "Core.Description", "value": "Device(s) that capture energy at one time to be used at a later time. Most commonly these refer to single or groups of stand-alone batteries, such as could be used as back-up power, but it also might include flywheels or other devices to store power." } ] @@ -39753,12 +46314,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fuses" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fuses" }, { + "term": "Core.Description", "value": "The electrical features of the property include fuses." } ] @@ -39769,12 +46333,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Generator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Generator" }, { + "term": "Core.Description", "value": "The electrical features of the property include generator." } ] @@ -39785,12 +46352,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Net Meter" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Net+Meter" }, { + "term": "Core.Description", "value": "Net metering is an electric service that allows electricity generated on a consumer’s site (“on-site”) to offset that consumer’s use. This generation can include (generally small) renewable energy facilities (such as wind, solar power, fuel cells or hydro). Net meters might also be used with energy storage devices such as batteries (stand alone or for electric vehicles). Net meters can “spin backwards” such that at the end of the billing period, the consumer only pays for its use, less what it produced (i.e., the “net”)." } ] @@ -39801,12 +46371,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Photovoltaics Seller Owned" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Photovoltaics+Seller+Owned" }, { + "term": "Core.Description", "value": "The electrical features of the property include a solar photovoltaic system that is owned by the seller." } ] @@ -39817,12 +46390,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Photovoltaics Third-Party Owned" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Photovoltaics+Third-Party+Owned" }, { + "term": "Core.Description", "value": "The electrical features of the property include a solar photovoltaic system owned by a third party. This is typically a lease but may be some other arrangement where the property owner does not own the photovoltaic system." } ] @@ -39833,12 +46409,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pre-Wired for Renewables" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pre-Wired+for+Renewables" }, { + "term": "Core.Description", "value": "Indicates the electric infrastructure on the property has been extended to more easily incorporate an on-site electric generation facility in the future. This would often include, for example, installing conduit and wire from the generation facility to the electric panel, designating circuits on the panel for that generation, and/or leaving room near the panel for future components, such as an inverter." } ] @@ -39849,12 +46428,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ready for Renewables" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ready+for+Renewables" }, { + "term": "Core.Description", "value": "Indicates a comprehensive infrastructure is in place on the property to more easily incorporate an on-site electric generation facility in the future. Can be confirmed via supporting documentation such as a checklist provided by the DOE Zero Energy Ready Homes program. Solar-PV ready, for example, would often include extensive efficiency measures such as insulation and appliances, architectural drawings that design for a clear roof space, installing conduit from the attic to the electric panel, dedicated circuits on the electric panel, and leaving room near the panel for future components of a solar electric system, such as an inverter. Local requirements may vary. (source: DOE Zero Energy Ready Home http://energy.gov/sites/prod/files/2015/05/f22/PV-Ready%20Checklist.pdf )" } ] @@ -39865,12 +46447,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Underground" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Underground" }, { + "term": "Core.Description", "value": "The electrical features of the property include underground." } ] @@ -39881,12 +46466,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "220 Volts" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/220+Volts" }, { + "term": "Core.Description", "value": "The electrical features of the property include 220 volts." } ] @@ -39897,12 +46485,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "220 Volts For Spa" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/220+Volts+For+Spa" }, { + "term": "Core.Description", "value": "The electrical features of the property include 220 volts for spa." } ] @@ -39913,12 +46504,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "220 Volts in Garage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/220+Volts+in+Garage" }, { + "term": "Core.Description", "value": "The electrical features of the property include 220 volts in garage." } ] @@ -39929,12 +46523,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "220 Volts in Kitchen" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/220+Volts+in+Kitchen" }, { + "term": "Core.Description", "value": "The electrical features of the property include 220 volts in kitchen." } ] @@ -39945,12 +46542,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "220 Volts in Laundry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/220+Volts+in+Laundry" }, { + "term": "Core.Description", "value": "The electrical features of the property include 220 volts in laundry." } ] @@ -39961,12 +46561,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "220 Volts in Workshop" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/220+Volts+in+Workshop" }, { + "term": "Core.Description", "value": "The electrical features of the property include 220 volts in workshop." } ] @@ -39977,12 +46580,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "440 Volts" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/440+Volts" }, { + "term": "Core.Description", "value": "The electrical features of the property include 440 volts." } ] @@ -39993,12 +46599,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wind Turbine Seller Owned" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wind+Turbine+Seller+Owned" }, { + "term": "Core.Description", "value": "A wind turbine is provided on the property to generate electricity. Seller owned turbines are typically considered real property and can be transferred with the property." } ] @@ -40009,12 +46618,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wind Turbine Third-Party Owned" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wind+Turbine+Third-Party+Owned" }, { + "term": "Core.Description", "value": "A wind turbine is provided on the property to generate electricity. The homeowner enters a lease agreement with the owner of the wind turbine(s). Third-Party Owned turbines indicate a lease or a Power Purchase Agreement (PPA) exists. The lease/PPA can often be transferred but the financing company has to agree. See CurrentFinancing field for important further definition of these models." } ] @@ -40035,12 +46647,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Absolute Net" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Absolute+Net" }, { + "term": "Core.Description", "value": "Also known as a Bondable Lease, the tenant carries every risk in addition to the costs of a NNN Lease." } ] @@ -40051,12 +46666,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CPI Adjustment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CPI+Adjustment" }, { + "term": "Core.Description", "value": "An escalation clause/provision in a lease to adjust the amount paid by the tenant (lessee) where the adjustment will follow the Consumer Price Index (CPI)." } ] @@ -40067,12 +46685,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Escalation Clause" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Escalation+Clause" }, { + "term": "Core.Description", "value": "A clause or provision in a lease document that set a formula for how rent will increase over time." } ] @@ -40083,12 +46704,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gross" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gross" }, { + "term": "Core.Description", "value": "A lease agreement where the owner (lessor) pays all property changes normal to ownership. The opposite to net leases where the tenant (lessee) may pay taxes, insurance, maintenance and even for damages that were not caused by the tenant." } ] @@ -40099,12 +46723,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ground Lease" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ground+Lease" }, { + "term": "Core.Description", "value": "Typically a long term lease of land where the tenant (lessee) has the right to develop or make improvements." } ] @@ -40115,12 +46742,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Net" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Net" }, { + "term": "Core.Description", "value": "A lease agreement where the tenant pays the real estate taxes." } ] @@ -40131,12 +46761,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NN" }, { + "term": "Core.Description", "value": "A lease agreement where the tenant pays real estate taxes and building insurance." } ] @@ -40147,12 +46780,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NNN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NNN" }, { + "term": "Core.Description", "value": "A lease agreement where the tenant pays real estate taxes, building insurance and maintenance." } ] @@ -40163,12 +46799,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Oral" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Oral" }, { + "term": "Core.Description", "value": "The terms of the lease are agreed orally (not in writing) between the lessee and lessor. Legal restrictions around oral agreements vary from state to state." } ] @@ -40179,12 +46818,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Awning(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244680" }, { + "term": "Core.Description", "value": "The property has one or more awnings on it\u0027s exterior." } ] @@ -40195,12 +46837,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Balcony" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244681" }, { + "term": "Core.Description", "value": "The property has an exterior balcony." } ] @@ -40211,12 +46856,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Barbecue" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244682" }, { + "term": "Core.Description", "value": "The property has an outdoors barbeque." } ] @@ -40227,12 +46875,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Basketball Court" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244683" }, { + "term": "Core.Description", "value": "The property has a basketball court." } ] @@ -40243,12 +46894,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Boat Slip" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244684" }, { + "term": "Core.Description", "value": "The property includes a boat slip." } ] @@ -40259,12 +46913,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Built-in Barbecue" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Built-in+Barbecue" }, { + "term": "Core.Description", "value": "The property has a built-in outdoor barbeque." } ] @@ -40275,12 +46932,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Courtyard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244686" }, { + "term": "Core.Description", "value": "The property has a courtyard." } ] @@ -40291,12 +46951,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Covered Courtyard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Covered+Courtyard" }, { + "term": "Core.Description", "value": "The property has a covered courtyard." } ] @@ -40307,12 +46970,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dock" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244688" }, { + "term": "Core.Description", "value": "The property includes a dock." } ] @@ -40323,12 +46989,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dog Run" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dog+Run" }, { + "term": "Core.Description", "value": "The property has a dog run." } ] @@ -40339,12 +47008,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric Grill" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electric+Grill" }, { + "term": "Core.Description", "value": "The property has an outdoor electric grill." } ] @@ -40355,12 +47027,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fire Pit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fire+Pit" }, { + "term": "Core.Description", "value": "The property has an outdoor fire pit." } ] @@ -40371,12 +47046,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garden" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244692" }, { + "term": "Core.Description", "value": "The property has a garden." } ] @@ -40387,12 +47065,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas Grill" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gas+Grill" }, { + "term": "Core.Description", "value": "The property has an outdoor gas grill." } ] @@ -40403,12 +47084,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gray Water System" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244694" }, { + "term": "Core.Description", "value": "The property has a grey water system." } ] @@ -40419,12 +47103,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kennel" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kennel" }, { + "term": "Core.Description", "value": "The property has a kennel." } ] @@ -40435,12 +47122,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lighting" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244696" }, { + "term": "Core.Description", "value": "The property has exterior lighting." } ] @@ -40451,12 +47141,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Misting System" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Misting+System" }, { + "term": "Core.Description", "value": "The property has a misting system." } ] @@ -40467,12 +47160,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244698" }, { + "term": "Core.Description", "value": "The property has no exterior features." } ] @@ -40483,12 +47179,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244699" }, { + "term": "Core.Description", "value": "The property has exterior features other than those in this list." } ] @@ -40499,12 +47198,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Outdoor Grill" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Outdoor+Grill" }, { + "term": "Core.Description", "value": "The property has an outdoor grill." } ] @@ -40515,12 +47217,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Outdoor Kitchen" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244701" }, { + "term": "Core.Description", "value": "The property has an outdoor kitchen." } ] @@ -40531,12 +47236,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Outdoor Shower" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Outdoor+Shower" }, { + "term": "Core.Description", "value": "The property has an outdoor shower." } ] @@ -40547,12 +47255,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Permeable Paving" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Permeable+Paving" }, { + "term": "Core.Description", "value": "The property has preamble paving that allows fluids to run through the paving to the below ground or channeling." } ] @@ -40563,12 +47274,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Playground" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244704" }, { + "term": "Core.Description", "value": "The property has a playground." } ] @@ -40579,12 +47293,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private Entrance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Private+Entrance" }, { + "term": "Core.Description", "value": "The property has a private entrance." } ] @@ -40595,12 +47312,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private Yard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Private+Yard" }, { + "term": "Core.Description", "value": "The property has a private yard." } ] @@ -40611,12 +47331,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rain Barrel/Cistern(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244707" }, { + "term": "Core.Description", "value": "The property has a cistern for water collection." } ] @@ -40627,12 +47350,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rain Gutters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Rain+Gutters" }, { + "term": "Core.Description", "value": "The structure has ran gutters." } ] @@ -40643,12 +47369,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RV Hookup" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RV+Hookup" }, { + "term": "Core.Description", "value": "The property has hookups for recreational vehicles." } ] @@ -40659,12 +47388,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244710" }, { + "term": "Core.Description", "value": "The property has external storage." } ] @@ -40675,12 +47407,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tennis Court(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244711" }, { + "term": "Core.Description", "value": "The property has one or more tennis courts." } ] @@ -40691,12 +47426,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Uncovered Courtyard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Uncovered+Courtyard" }, { + "term": "Core.Description", "value": "The property has an uncovered courtyard." } ] @@ -40707,12 +47445,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Back Yard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Back+Yard" }, { + "term": "Core.Description", "value": "The back yard is fenced." } ] @@ -40723,12 +47464,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Barbed Wire" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Barbed+Wire" }, { + "term": "Core.Description", "value": "The fencing has barbed wire." } ] @@ -40739,12 +47483,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Block" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244752" }, { + "term": "Core.Description", "value": "The property has a block wall(s)." } ] @@ -40755,12 +47502,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Brick" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244753" }, { + "term": "Core.Description", "value": "The property has a brick wall(s)." } ] @@ -40771,12 +47521,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Chain Link" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Chain+Link" }, { + "term": "Core.Description", "value": "The property has chain link fencing." } ] @@ -40787,12 +47540,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cross Fenced" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cross+Fenced" }, { + "term": "Core.Description", "value": "The property is cross fenced." } ] @@ -40803,12 +47559,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electric" }, { + "term": "Core.Description", "value": "The property has electric fencing." } ] @@ -40819,12 +47578,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fenced" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fenced" }, { + "term": "Core.Description", "value": "The property is fenced." } ] @@ -40835,12 +47597,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Front Yard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Front+Yard" }, { + "term": "Core.Description", "value": "The front yard is fenced." } ] @@ -40851,12 +47616,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Full" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Full" }, { + "term": "Core.Description", "value": "The full property is fenced." } ] @@ -40867,12 +47635,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gate" }, { + "term": "Core.Description", "value": "The fencing has a gate(s)." } ] @@ -40883,12 +47654,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Invisible" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Invisible" }, { + "term": "Core.Description", "value": "The property has invisible fencing." } ] @@ -40899,12 +47673,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Masonry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Masonry" }, { + "term": "Core.Description", "value": "The property has masonry wall(s)." } ] @@ -40915,12 +47692,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244763" }, { + "term": "Core.Description", "value": "The property has no fencing." } ] @@ -40931,12 +47711,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244764" }, { + "term": "Core.Description", "value": "The property has a type of fencing that is not included in this list." } ] @@ -40947,12 +47730,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Partial" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Partial" }, { + "term": "Core.Description", "value": "The property is partially fenced." } ] @@ -40963,12 +47749,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Partial Cross" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Partial+Cross" }, { + "term": "Core.Description", "value": "The property has partial cross fencing." } ] @@ -40979,12 +47768,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Perimeter" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Perimeter" }, { + "term": "Core.Description", "value": "The property has a perimeter fence." } ] @@ -40995,12 +47787,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pipe" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pipe" }, { + "term": "Core.Description", "value": "The property has pipe fencing." } ] @@ -41011,12 +47806,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Privacy" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Privacy" }, { + "term": "Core.Description", "value": "The property has privacy fencing." } ] @@ -41027,12 +47825,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244770" }, { + "term": "Core.Description", "value": "The property has security fencing." } ] @@ -41043,12 +47844,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244771" }, { + "term": "Core.Description", "value": "See the Public or Private remarks for details on the fencing." } ] @@ -41059,12 +47863,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Slump Stone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Slump+Stone" }, { + "term": "Core.Description", "value": "The property has slump stone wall(s)." } ] @@ -41075,12 +47882,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Split Rail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Split+Rail" }, { + "term": "Core.Description", "value": "The property has split rail fencing." } ] @@ -41091,12 +47901,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244774" }, { + "term": "Core.Description", "value": "The property has stone wall(s)." } ] @@ -41107,12 +47920,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vinyl" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244775" }, { + "term": "Core.Description", "value": "The property has vinyl fencing." } ] @@ -41123,12 +47939,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wire" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wire" }, { + "term": "Core.Description", "value": "The property has wire fencing." } ] @@ -41139,12 +47958,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wood" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244777" }, { + "term": "Core.Description", "value": "The property has wooden fencing." } ] @@ -41155,12 +47977,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wrought Iron" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wrought+Iron" }, { + "term": "Core.Description", "value": "The property has wrought iron fencing." } ] @@ -41171,12 +47996,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accountant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Accountant" }, { + "term": "Core.Description", "value": "The financial data in the listing was provided by an accountant." } ] @@ -41187,12 +48015,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244728" }, { + "term": "Core.Description", "value": "the financial data in the listing was provided by the owner." } ] @@ -41203,12 +48034,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Property Manager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Property+Manager" }, { + "term": "Core.Description", "value": "the financial data in the listing was provided by the property manager." } ] @@ -41219,12 +48053,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Basement" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244790" }, { + "term": "Core.Description", "value": "There is a fireplace in the basement." } ] @@ -41235,12 +48072,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bath" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bath" }, { + "term": "Core.Description", "value": "The property includes a bathroom fireplace." } ] @@ -41251,12 +48091,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bedroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244792" }, { + "term": "Core.Description", "value": "The property has a bedroom fireplace." } ] @@ -41267,12 +48110,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Blower Fan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Blower+Fan" }, { + "term": "Core.Description", "value": "The fireplace has a blower fan." } ] @@ -41283,12 +48129,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Circulating" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Circulating" }, { + "term": "Core.Description", "value": "The fireplace has a circulation system." } ] @@ -41299,12 +48148,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Decorative" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Decorative" }, { + "term": "Core.Description", "value": "The property has a decorative fireplace." } ] @@ -41315,12 +48167,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Den" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244796" }, { + "term": "Core.Description", "value": "The property has a fireplace in the den." } ] @@ -41331,12 +48186,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dining Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244797" }, { + "term": "Core.Description", "value": "The property has a fireplace in the dining room." } ] @@ -41347,12 +48205,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Double Sided" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Double+Sided" }, { + "term": "Core.Description", "value": "The property has a double sided fireplace. Double sided fireplaces often have openings in adjacent rooms." } ] @@ -41363,12 +48224,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244799" }, { + "term": "Core.Description", "value": "The fireplace is electric." } ] @@ -41379,12 +48243,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "EPA Certified Wood Stove" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EPA+Certified+Wood+Stove" }, { + "term": "Core.Description", "value": "The property has an EPA certified wood stove." } ] @@ -41395,12 +48262,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "EPA Qualified Fireplace" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EPA+Qualified+Fireplace" }, { + "term": "Core.Description", "value": "The property has an EPA certified fireplace." } ] @@ -41411,12 +48281,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Factory Built" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Factory+Built" }, { + "term": "Core.Description", "value": "The fireplace is factory built and later installed into the property." } ] @@ -41427,12 +48300,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Family Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244803" }, { + "term": "Core.Description", "value": "There is a fireplace in the family room." } ] @@ -41443,12 +48319,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fire Pit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244804" }, { + "term": "Core.Description", "value": "The property has a fire pit." } ] @@ -41459,12 +48338,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Free Standing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Free+Standing" }, { + "term": "Core.Description", "value": "The fireplace is free standing, rather than built-in." } ] @@ -41475,12 +48357,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244806" }, { + "term": "Core.Description", "value": "The fireplace burns gas." } ] @@ -41491,12 +48376,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas Log" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gas+Log" }, { + "term": "Core.Description", "value": "The gas fireplace has a gas log." } ] @@ -41507,12 +48395,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas Starter" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gas+Starter" }, { + "term": "Core.Description", "value": "The fireplace has a gas started, but also burns wood or other fuels." } ] @@ -41523,12 +48414,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Glass Doors" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Glass+Doors" }, { + "term": "Core.Description", "value": "The fireplace has glass doors." } ] @@ -41539,12 +48433,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Great Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244810" }, { + "term": "Core.Description", "value": "There is a fireplace in the great room." } ] @@ -41555,12 +48452,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Heatilator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Heatilator" }, { + "term": "Core.Description", "value": "The fireplace has a built in ventilation system used to circulate heat." } ] @@ -41571,12 +48471,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Insert" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Insert" }, { + "term": "Core.Description", "value": "A fireplace insert is a device inserted into an existing masonry or prefabricated fireplace. Inserts are used for their aesthetic, insulating, circulating or other features." } ] @@ -41587,12 +48490,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kitchen" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244813" }, { + "term": "Core.Description", "value": "The property has a fireplace in the kitchen." } ] @@ -41603,12 +48509,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Library" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244814" }, { + "term": "Core.Description", "value": "The property has a fireplace in the library." } ] @@ -41619,12 +48528,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Living Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244815" }, { + "term": "Core.Description", "value": "The property has a fireplace in the living room." } ] @@ -41635,12 +48547,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Masonry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244816" }, { + "term": "Core.Description", "value": "The fireplace is made of masonry." } ] @@ -41651,12 +48566,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Master Bedroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244817" }, { + "term": "Core.Description", "value": "The property has a fireplace in the master bedroom." } ] @@ -41667,12 +48585,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Metal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244818" }, { + "term": "Core.Description", "value": "The fireplace is make of metal." } ] @@ -41683,12 +48604,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244819" }, { + "term": "Core.Description", "value": "The property has no fireplace." } ] @@ -41699,12 +48623,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244820" }, { + "term": "Core.Description", "value": "The fireplace has features that are not included in this list." } ] @@ -41715,12 +48642,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Outside" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Outside" }, { + "term": "Core.Description", "value": "The property has an outdoor fireplace." } ] @@ -41731,12 +48661,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pellet Stove" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pellet+Stove" }, { + "term": "Core.Description", "value": "The property has a stove that burns compressed wood or biomass pellets to generate heat." } ] @@ -41747,12 +48680,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Propane" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244823" }, { + "term": "Core.Description", "value": "The fireplace burns propane." } ] @@ -41763,12 +48699,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Raised Hearth" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Raised+Hearth" }, { + "term": "Core.Description", "value": "The fireplace has a raised hearth." } ] @@ -41779,12 +48718,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Recreation Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244825" }, { + "term": "Core.Description", "value": "The property has a fireplace in the recreation room." } ] @@ -41795,12 +48737,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sealed Combustion" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sealed+Combustion" }, { + "term": "Core.Description", "value": "The fireplace has sealed combustion chamber." } ] @@ -41811,12 +48756,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244827" }, { + "term": "Core.Description", "value": "See the remarks fields for additional information about the fireplace(s)." } ] @@ -41827,12 +48775,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Through" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/See+Through" }, { + "term": "Core.Description", "value": "The property has a see-through fireplace, usually positioned between two rooms." } ] @@ -41843,12 +48794,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244829" }, { + "term": "Core.Description", "value": "The property has a fireplace made with stone." } ] @@ -41859,12 +48813,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ventless" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ventless" }, { + "term": "Core.Description", "value": "The property has a ventless fireplace." } ] @@ -41875,12 +48832,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wood Burning" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wood+Burning" }, { + "term": "Core.Description", "value": "The fireplace is wood burning." } ] @@ -41891,12 +48851,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wood Burning Stove" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wood+Burning+Stove" }, { + "term": "Core.Description", "value": "The property includes a wood burning stove." } ] @@ -41907,12 +48870,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Zero Clearance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Zero+Clearance" }, { + "term": "Core.Description", "value": "The property has a zero clearance fireplace. Zero clearance fireplaces are built to be placed almost directly against combustible materials like wood, walls, or paneling." } ] @@ -41923,12 +48889,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Adobe" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244835" }, { + "term": "Core.Description", "value": "The property includes adobe flooring." } ] @@ -41939,12 +48908,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bamboo" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bamboo" }, { + "term": "Core.Description", "value": "The property includes bamboo flooring." } ] @@ -41955,12 +48927,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Brick" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244837" }, { + "term": "Core.Description", "value": "The property includes brick flooring." } ] @@ -41971,12 +48946,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Carpet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Carpet" }, { + "term": "Core.Description", "value": "The property includes carpet flooring." } ] @@ -41987,12 +48965,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ceramic Tile" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ceramic+Tile" }, { + "term": "Core.Description", "value": "The property includes ceramic tile flooring." } ] @@ -42003,12 +48984,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Clay" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Clay" }, { + "term": "Core.Description", "value": "The property includes clay flooring." } ] @@ -42019,12 +49003,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Combination" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244841" }, { + "term": "Core.Description", "value": "The property includes combination flooring." } ] @@ -42035,12 +49022,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concrete" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244842" }, { + "term": "Core.Description", "value": "The property includes concrete flooring." } ] @@ -42051,12 +49041,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cork" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cork" }, { + "term": "Core.Description", "value": "The property includes cork flooring." } ] @@ -42067,12 +49060,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CRI Green Label Plus Certified Carpet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CRI+Green+Label+Plus+Certified+Carpet" }, { + "term": "Core.Description", "value": "The property includes CRI Green Label Plus certified carpet flooring." } ] @@ -42083,12 +49079,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dirt" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244845" }, { + "term": "Core.Description", "value": "The property has dirt flooring." } ] @@ -42099,12 +49098,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FloorScore(r) Certified Flooring" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FloorScore%28r%29+Certified+Flooring" }, { + "term": "Core.Description", "value": "The property includes FloorScore(r) certified flooring ." } ] @@ -42115,12 +49117,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FSC or SFI Certified Source Hardwood" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FSC+or+SFI+Certified+Source+Hardwood" }, { + "term": "Core.Description", "value": "The property includes FSC or SFI certified source hardwood flooring." } ] @@ -42131,12 +49136,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Granite" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Granite" }, { + "term": "Core.Description", "value": "The property includes granite flooring." } ] @@ -42147,12 +49155,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hardwood" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hardwood" }, { + "term": "Core.Description", "value": "The property includes hardwood flooring." } ] @@ -42163,12 +49174,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Laminate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Laminate" }, { + "term": "Core.Description", "value": "The property includes laminate flooring." } ] @@ -42179,12 +49193,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Linoleum" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Linoleum" }, { + "term": "Core.Description", "value": "The property includes linoleum flooring." } ] @@ -42195,12 +49212,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Marble" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Marble" }, { + "term": "Core.Description", "value": "The property includes marble flooring." } ] @@ -42211,12 +49231,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244853" }, { + "term": "Core.Description", "value": "The property has no flooring." } ] @@ -42227,12 +49250,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244854" }, { + "term": "Core.Description", "value": "The property includes flooring that is not included in this list." } ] @@ -42243,12 +49269,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Painted/Stained" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244855" }, { + "term": "Core.Description", "value": "The property includes painted or stained flooring." } ] @@ -42259,12 +49288,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Parquet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Parquet" }, { + "term": "Core.Description", "value": "The property includes parquet flooring." } ] @@ -42275,12 +49307,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pavers" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pavers" }, { + "term": "Core.Description", "value": "The property includes flooring pavers." } ] @@ -42291,12 +49326,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Reclaimed Wood" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Reclaimed+Wood" }, { + "term": "Core.Description", "value": "The property includes reclaimed wood flooring." } ] @@ -42307,12 +49345,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244859" }, { + "term": "Core.Description", "value": "See the remarks field for additional information about the flooring included with the property." } ] @@ -42323,12 +49364,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Simulated Wood" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Simulated+Wood" }, { + "term": "Core.Description", "value": "The property includes simulated wood flooring." } ] @@ -42339,12 +49383,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Slate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244861" }, { + "term": "Core.Description", "value": "The property includes slate flooring." } ] @@ -42355,12 +49402,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Softwood" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Softwood" }, { + "term": "Core.Description", "value": "The property includes softwood flooring." } ] @@ -42371,12 +49421,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stamped" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Stamped" }, { + "term": "Core.Description", "value": "The property includes stamped flooring." } ] @@ -42387,12 +49440,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244864" }, { + "term": "Core.Description", "value": "The property includes stone flooring." } ] @@ -42403,12 +49459,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sustainable" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sustainable" }, { + "term": "Core.Description", "value": "The property includes sustainable flooring." } ] @@ -42419,12 +49478,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Terrazzo" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Terrazzo" }, { + "term": "Core.Description", "value": "The property includes terrazzo flooring." } ] @@ -42435,12 +49497,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tile" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244867" }, { + "term": "Core.Description", "value": "The property includes tile flooring." } ] @@ -42451,12 +49516,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Varies" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Varies" }, { + "term": "Core.Description", "value": "The property flooring type varies." } ] @@ -42467,12 +49535,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vinyl" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244869" }, { + "term": "Core.Description", "value": "The property includes vinyl flooring." } ] @@ -42483,12 +49554,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wood" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244870" }, { + "term": "Core.Description", "value": "The property includes wood flooring." } ] @@ -42499,12 +49573,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Block" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244731" }, { + "term": "Core.Description", "value": "The foundation of the property is made wholly or partially of block." } ] @@ -42515,12 +49592,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Brick/Mortar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244732" }, { + "term": "Core.Description", "value": "The foundation of the property is made wholly or partially of brick/mortar." } ] @@ -42531,12 +49611,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Combination" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Combination" }, { + "term": "Core.Description", "value": "The foundation of the property is made of a combination of materials." } ] @@ -42547,12 +49630,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concrete Perimeter" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Concrete+Perimeter" }, { + "term": "Core.Description", "value": "The foundation of the property has a concrete perimeter." } ] @@ -42563,12 +49649,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244735" }, { + "term": "Core.Description", "value": "There are no details about the foundation of the property." } ] @@ -42579,12 +49668,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244742" }, { + "term": "Core.Description", "value": "A foundation type not included in this list." } ] @@ -42595,12 +49687,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Permanent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Permanent" }, { + "term": "Core.Description", "value": "The foundation is permanent and not temporary or movable." } ] @@ -42611,12 +49706,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pillar/Post/Pier" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244737" }, { + "term": "Core.Description", "value": "The foundation of the property is made wholly or partially of pillar/post/pier." } ] @@ -42627,12 +49725,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Raised" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Raised" }, { + "term": "Core.Description", "value": "The foundation of the property is raised." } ] @@ -42643,12 +49744,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244739" }, { + "term": "Core.Description", "value": "See the listing\u0027s remarks for details about the foundation." } ] @@ -42659,12 +49763,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Slab" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Slab" }, { + "term": "Core.Description", "value": "The foundation of the property is made wholly or partially of a concrete slab." } ] @@ -42675,12 +49782,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244741" }, { + "term": "Core.Description", "value": "The foundation of the property is made wholly or partially of stone." } ] @@ -42691,12 +49801,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bay/Harbor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244780" }, { + "term": "Core.Description", "value": "The property fronts to a bay or harbor." } ] @@ -42707,12 +49820,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Golf Course" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244781" }, { + "term": "Core.Description", "value": "The property fronts to a golf course." } ] @@ -42723,12 +49839,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lagoon/Estuary" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244782" }, { + "term": "Core.Description", "value": "The property fronts to a lagoon or estuary." } ] @@ -42739,12 +49858,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lakefront" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lakefront" }, { + "term": "Core.Description", "value": "The property is on a lakefront." } ] @@ -42755,12 +49877,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Oceanfront" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Oceanfront" }, { + "term": "Core.Description", "value": "The property is on an oceanfront." } ] @@ -42771,12 +49896,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244785" }, { + "term": "Core.Description", "value": "The frontage of the property is something other than the options in this list." } ] @@ -42787,12 +49915,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "River" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/River" }, { + "term": "Core.Description", "value": "The property is on a riverfront." } ] @@ -42803,12 +49934,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244787" }, { + "term": "Core.Description", "value": "See the Public or Private Remarks for details on the frontage of the property." } ] @@ -42819,12 +49953,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Waterfront" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244788" }, { + "term": "Core.Description", "value": "The property is on a waterfront." } ] @@ -42835,12 +49972,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Furnished" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Furnished" }, { + "term": "Core.Description", "value": "The dwelling being leased is furnished." } ] @@ -42851,12 +49991,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Negotiable" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244748" }, { + "term": "Core.Description", "value": "The property may be furnished or left unfurnished at the lessor\u0027s request. Contact the listing agent/office to discuss options and cost differences." } ] @@ -42867,12 +50010,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Partially" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Partially" }, { + "term": "Core.Description", "value": "The dwelling being leased is partially furnished." } ] @@ -42883,12 +50029,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unfurnished" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Unfurnished" }, { + "term": "Core.Description", "value": "The dwelling being leased is not furnished." } ] @@ -42899,12 +50048,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Passive House" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Certified+Passive+House" }, { + "term": "Core.Description", "value": "Super-insulated new homes that have been built to meet certification requirements demonstrating minimal or no heating and cooling system." } ] @@ -42915,12 +50067,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR Certified Homes" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Certified+Homes" }, { + "term": "Core.Description", "value": "EPA ENERGY STAR Certified Homes is a set of optional construction practices and technologies (above minimum code requirements) that builders can follow to upgrade a new home\u0027s energy efficiency beyond minimum code requirements. Guidelines are outlined in the National Performance Path; or the National Prescriptive Path; This whole-house label differs from the ENERGY STAR products label. To achieve the ENERGY STAR Certified Homes label, a home\u0027s energy efficiency must be verified by a third-party organization." } ] @@ -42931,12 +50086,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "EnerPHit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/EnerPHit" }, { + "term": "Core.Description", "value": "Super-insulated existing homes that have been remodeled to meet certification requirements demonstrating minimal or no heating and cooling system." } ] @@ -42947,12 +50105,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "HERS Index Score" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HERS+Index+Score" }, { + "term": "Core.Description", "value": "The HERS Index is the nationally recognized scoring system for measuring a home\u0027s energy performance. To calculate a home\u0027s HERS Index Score, a certified RESNET home energy rater will do a home energy rating and compare the data against a reference home (a design-modeled home of the same size and shape as the actual home), so the HERS Index Score is always relative to the size, shape, and type of the house. The lower the number, the more energy efficient the home." } ] @@ -42963,12 +50124,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Energy Score" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Home+Energy+Score" }, { + "term": "Core.Description", "value": "The Home Energy Score, managed by the US DOE, is a national system that allows homes to receive an energy efficiency rating, similar to the MPG rating available for cars. The Home Energy Score uses a 10-point scale to reflect how much energy a home is expected to use under standard operating conditions. Homes that are expected to use the least amount of energy (and are considered the most energy efficient) score a 10, and homes that are expected to use the most amount of energy (and are considered the least energy efficient) score a 1. The Home Energy Score uses a standard calculation method and takes into account the home\u0027s structure and envelope (walls, windows, foundation) and its heating, cooling, and hot water systems. Only Qualified Assessors who pass a DOE exam are allowed to provide the Home Energy Score." } ] @@ -42979,12 +50143,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Energy Upgrade Certificate of Energy Efficiency Improvements" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Home+Energy+Upgrade+Certificate+of+Energy+Efficiency+Improvements" }, { + "term": "Core.Description", "value": "Buildings Performance Institute BPI- 2101 Standard Requirements for a Certificate of Completion for Whole-House Energy Efficiency Upgrades specifies a standard way of describing the improvements made to an existing home through a home energy upgrade (HEU). Certificates are provided by a local energy efficiency program sponsor." } ] @@ -42995,12 +50162,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Energy Upgrade Certificate of Energy Efficiency Performance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Home+Energy+Upgrade+Certificate+of+Energy+Efficiency+Performance" }, { + "term": "Core.Description", "value": "Buildings Performance Institute BPI- 2101 Standard Requirements for a Certificate of Completion for Whole-House Energy Efficiency Upgrades specifies a standard way of describing the improvements made to an existing home through a home energy upgrade (HEU) and provides one or more measures of a home\u0027s performance. Measures of performance may include a HERS rating, a Home Energy Score, an indication of projected or actual energy consumption, or other systems. Certificates are provided by a local energy efficiency program sponsor." } ] @@ -43011,12 +50181,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Performance with ENERGY STAR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Home+Performance+with+ENERGY+STAR" }, { + "term": "Core.Description", "value": "Home Performance with ENERGY STAR offers whole-house solutions to high energy bills and homes with comfort problems. The program is managed by a local sponsor that recruits home improvement contractors who are qualified to perform comprehensive home assessments and improvements. Local sponsors must follow specific guidelines to participate as outlined in the HPwES Sponsor Guide and Reference Manual." } ] @@ -43027,12 +50200,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Indoor airPLUS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Indoor+airPLUS" }, { + "term": "Core.Description", "value": "EPA Indoor airPLUS is a set of optional construction practices and technologies builders can follow to reduce indoor air pollutants and improve the indoor air quality in a new home beyond minimum code requirements. It is only available to homes that first meet ENERGY STAR Certified Homes certification." } ] @@ -43043,12 +50219,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LEED For Homes" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LEED+For+Homes" }, { + "term": "Core.Description", "value": "USGBC\u0027s residential rating system, LEED for Homes, was launched in 2008. The LEED rating systems are developed through an open, consensus-based process led by LEED committees. LEED is a voluntary program that provides independent, third-party verification that a home was designed and built using methods for achieving high performance in multiple areas of sustainability including energy, water, waste management, indoor air quality, and sustainable site development. There are multiple rating systems for all types of buildings including Existing Buildings and Homes for residential projects. Homes may achieve different levels of certification (platinum, gold, silver, certified) depending on the number of LEED prerequisites and credits that are met." } ] @@ -43059,12 +50238,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Living Building Challenge" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Living+Building+Challenge" }, { + "term": "Core.Description", "value": "Living Future Institute\u0027s Homes certified by a third-party that they produce as much or more energy than they use. Super-insulated homes that have met certification requirements demonstrating minimal or no heating and cooling system." } ] @@ -43075,12 +50257,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NGBS New Construction" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NGBS+New+Construction" }, { + "term": "Core.Description", "value": "Home Innovation Research Labs certifies homes to the ICC-700 National Green Building Standard(tm) (NGBS), which has undergone the full consensus process and received approval from the American National Standards Institute (ANSI). Home Innovation Research Labs provides project certification to the NGBS. NGBS applies to both single-family homes and multifamily buildings. Certification options also exist for new construction, remodel projects (both whole-home and functional areas such as a kitchen or bathroom) and land development/subdivision. Homes may qualify for a bronze, silver, gold, or emerald certification level depending on the number of green building practices met." } ] @@ -43091,12 +50276,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NGBS Small Projects Remodel" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NGBS+Small+Projects+Remodel" }, { + "term": "Core.Description", "value": "Home Innovation Research Labs provides project certification to the NGBS. NGBS applies to both single-family homes and multifamily buildings. Certification options also exist for new construction, remodel projects (both whole-home and functional areas such as a kitchen or bathroom), and land development/subdivision. For the Small Projects Remodel, the functional area (kitchen, bathroom, basement, addition) is either certified or not. Unlike other NGBS certifications, multiple certification levels (bronze, silver, gold, or emerald) do not exist for this certification option." } ] @@ -43107,12 +50295,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NGBS Whole-Home Remodel" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NGBS+Whole-Home+Remodel" }, { + "term": "Core.Description", "value": "Home Innovation Research Labs provides project certification to the NGBS. NGBS applies to both single-family homes and multifamily buildings. Certification options also exist for new construction, remodel projects (both whole-home and functional areas such as a kitchen or bathroom), and land development/subdivision. Homes may qualify for a bronze, silver, gold, or emerald certification level depending on the number of green building practices met." } ] @@ -43123,12 +50314,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PHIUS+" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244887" }, { + "term": "Core.Description", "value": "Super-insulated homes that have met certification requirements demonstrating minimal or no heating and cooling system." } ] @@ -43139,12 +50333,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "WaterSense" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WaterSense" }, { + "term": "Core.Description", "value": "EPA WaterSense is a set of optional construction practices and technologies (above minimum code requirements) that builders can follow to ensure a home uses less water while still providing the same level of comfort and convenience. WaterSense also applies to specific plumbing fixtures (see InteriorFeatures) and should not be confused with the whole-house label." } ] @@ -43155,12 +50352,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Zero Energy Ready Home" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Zero+Energy+Ready+Home" }, { + "term": "Core.Description", "value": "DOE Zero Energy Ready Home is a set of optional construction practices and technologies (above minimum code and ENERGY STAR Certified Home requirements) that builders can follow to ensure high-performance homes so energy efficient all or most annual energy consumption can be offset with renewable energy. Guidelines are outlined in the \"DOE Zero Energy Ready Home National Program Requirements.\"" } ] @@ -43171,12 +50371,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Appliances" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244891" }, { + "term": "Core.Description", "value": "For purposes of marketing, the property has appliances that have some green/efficient rating or quality." } ] @@ -43187,12 +50390,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Construction" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Construction" }, { + "term": "Core.Description", "value": "For purposes of marketing, the property has construction that has some green/efficient rating or quality." } ] @@ -43203,12 +50409,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Doors" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Doors" }, { + "term": "Core.Description", "value": "For purposes of marketing, the property has doors that have some green/efficient rating or quality." } ] @@ -43219,12 +50428,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exposure/Shade" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244894" }, { + "term": "Core.Description", "value": "For purposes of marketing, the property has exposure/shade that has some green/efficient rating or quality." } ] @@ -43235,12 +50447,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "HVAC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HVAC" }, { + "term": "Core.Description", "value": "For purposes of marketing, the property has a heating, ventilation and air conditioning system that has some green/efficient rating or quality." } ] @@ -43251,12 +50466,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Incentives" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Incentives" }, { + "term": "Core.Description", "value": "For purposes of marketing, the property has incentives that have some green/efficiency focus." } ] @@ -43267,12 +50485,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Insulation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Insulation" }, { + "term": "Core.Description", "value": "For purposes of marketing, the property has insulation that has some green/efficient rating or quality." } ] @@ -43283,12 +50504,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lighting" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lighting" }, { + "term": "Core.Description", "value": "For purposes of marketing, the property has lighting that has some green/efficient rating or quality." } ] @@ -43299,12 +50523,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Roof" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Roof" }, { + "term": "Core.Description", "value": "For purposes of marketing, the property has a roof that has some green/efficient rating or quality." } ] @@ -43315,12 +50542,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Thermostat" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Thermostat" }, { + "term": "Core.Description", "value": "For purposes of marketing, the property has thermostat(s) that have some green/efficient rating or quality." } ] @@ -43331,12 +50561,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Heater" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Water+Heater" }, { + "term": "Core.Description", "value": "For purposes of marketing, the property has a water heater that have some green/efficient rating or quality." } ] @@ -43347,12 +50580,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Windows" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Windows" }, { + "term": "Core.Description", "value": "For purposes of marketing, the property has windows that have some green/efficient rating or quality." } ] @@ -43363,12 +50599,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Solar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Solar" }, { + "term": "Core.Description", "value": "Renewable form of onsite power generation. Most common are solar photovoltaic (PV) devices which generate electricity directly from sunlight via an electronic process that occurs naturally in certain types of material, called semiconductors. Powers electrical devices or sends electricity to the grid. See: \u003ca href\u003d\"http://www.seia.org/policy/solar-technology/photovoltaic-solar-electric\"\u003ehttp://www.seia.org/policy/solar-technology/photovoltaic-solar-electric\u003c/a\u003e" } ] @@ -43379,12 +50618,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wind" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wind" }, { + "term": "Core.Description", "value": "Renewable form of onsite power generation. Wind turbines use wind to make electricity. Powers electrical devices or sends electricity to the grid. See: \u003ca href\u003d\"http://energy.gov/eere/wind/how-do-wind-turbines-work\"\u003ehttp://energy.gov/eere/wind/how-do-wind-turbines-work\u003c/a\u003e" } ] @@ -43395,12 +50637,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contaminant Control" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Contaminant+Control" }, { + "term": "Core.Description", "value": "Property has been carefully designed to prevent, monitor, and suppress pollution issues. Carefully selected low-emission materials have been used in the home. May include passive or active radon control, carbon monoxide monitoring, and high-efficiency sealed combustion for equipment such as furnaces and water heaters. May include elimination of materials that contain lead or asbestos. May include reduction of materials that contain volatile organic compounds (VOCs, including formaldehyde) and pesticides." } ] @@ -43411,12 +50656,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Integrated Pest Management" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Integrated+Pest+Management" }, { + "term": "Core.Description", "value": "Property is designed for systematic management of pests that uses prevention, exclusion, monitoring, and suppression." } ] @@ -43427,12 +50675,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Moisture Control" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Moisture+Control" }, { + "term": "Core.Description", "value": "Every foundation, roof, roofing component, exterior wall, door, skylight, and window is designed and maintained to be watertight and free of persistent dampness or moisture." } ] @@ -43443,12 +50694,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ventilation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ventilation" }, { + "term": "Core.Description", "value": "Furnaces, water heaters, woodstoves, and other devices that employ combustion-burning fuel are vented to the outside in a manner that meets manufacturer specifications to prevent back-drafting. Natural and/or mechanical ventilation delivers fresh air to every habitable room and bathroom to remove moisture laden air and other contaminants generated during cooking and bathing/showering. The air exhausted from a bathroom, toilet room, or kitchen does not vent into habitable space or an attic." } ] @@ -43464,12 +50718,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Conserving Methods" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Conserving+Methods" }, { + "term": "Core.Description", "value": "Construction is planned to require fewer materials while maintaining structural integrity. May include advanced wall framing as documented in several major green building programs. May also include indigenous construction methods such as straw bale, sod, clay, etc., based on local climate, materials, and practices." } ] @@ -43480,12 +50737,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Onsite Recycling Center" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Onsite+Recycling+Center" }, { + "term": "Core.Description", "value": "Property includes sufficient built-in storage space and/ or containers for temporary storage of recyclable materials and/or compost collection." } ] @@ -43496,12 +50756,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Recyclable Materials" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Recyclable+Materials" }, { + "term": "Core.Description", "value": "Structure includes multiple products that have a significant amount of postconsumer recycled content. Major green building programs tend to use 25 percent postconsumer recycled content as a threshold. Postindustrial recycled content tends to count toward overall content, but to a less scale. Some more common examples of recycled content materials include masonry, paving stones, or foundations with fly ash; aluminum gutters and downspouts; decking; drywall fibers, insulation, and house wrap; vinyl plastics; countertops; and cabinets, interior doors, or trim. More details are available on Home Innovation Research Labs “Browse Green Certified Products” tool or LEED Environmentally Preferred Products credit table." } ] @@ -43512,12 +50775,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Recycled Materials" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Recycled+Materials" }, { + "term": "Core.Description", "value": "Structure includes multiple products that have a significant amount of postconsumer recycled content. Major green building programs tend to use 25 percent postconsumer recycled content as a threshold. Postindustrial recycled content tends to count toward overall content, but to a less scale. Some more common examples of recycled content materials include masonry, paving stones, or foundations with fly ash; aluminum gutters and downspouts; decking; drywall fibers, insulation, and house wrap; vinyl plastics; countertops; and cabinets, interior doors, or trim. More details are available on Home Innovation Research Labs “Browse Green Certified Products” tool or LEED Environmentally Preferred Products credit table." } ] @@ -43528,12 +50794,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Regionally-Sourced Materials" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Regionally-Sourced+Materials" }, { + "term": "Core.Description", "value": "Refers to building materials that were manufactured, extracted, harvested, or recovered within 500 miles of the building. Several major green building programs define regionally sourced as within a 500-mile radius." } ] @@ -43544,12 +50813,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Renewable Materials" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Renewable+Materials" }, { + "term": "Core.Description", "value": "Structure includes materials that are naturally occurring, abundant, and/or fast-growing materials. Some products are certified to come from fast-growing or otherwise renewable sources such as flooring and wood products. Some materials may be bio-based, which means they have been processed from once-living materials such as paper, straw, soy, natural fibers, and crops." } ] @@ -43560,12 +50832,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Salvaged Materials" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Salvaged+Materials" }, { + "term": "Core.Description", "value": "Structure incorporates materials that were diverted from a landfill and/or sourced to give an otherwise unused item fresh use as an attached fixture. May include bricks, timbers, roofing, flooring, walls, cabinets, doors, etc." } ] @@ -43576,12 +50851,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Efficient Hot Water Distribution" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Efficient+Hot+Water+Distribution" }, { + "term": "Core.Description", "value": "Efficient hot water distribution systems are designed to generate hot water using fewer fuel resources, and to get hot water to low-flow faucets and fixtures more quickly. These systems often feature carefully designed plumbing lines that are less redundant and/or shorter. Rather than measuring time to hot water at a fixture in gallons, efficient distribution systems can be measured in cups. EPA WaterSense Guide for Hot Water Distribution as well as several green building programs have further details. This may also be known as Structured Plumbing." } ] @@ -43592,12 +50870,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gray Water System" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gray+Water+System" }, { + "term": "Core.Description", "value": "The property includes a grey water system." } ] @@ -43608,12 +50889,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Infrastructure" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Green+Infrastructure" }, { + "term": "Core.Description", "value": "Green Infrastructure is a set of strategies and specifically designed systems to manage stormwater runoff through a variety of small, cost-effective landscape features located on a property. Green Infrastructure employs infiltration (allowing water to slowly sink into the soil), evaporation/transpiration using native vegetation, and rainwater capture and reuse (storing runoff to water plants, flush toilets, etc.). May include green roof, rain gardens, rain barrels, permeable paving, etc. EPA Green Infrastructure webpage has more information" } ] @@ -43624,12 +50908,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Low-Flow Fixtures" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Low-Flow+Fixtures" }, { + "term": "Core.Description", "value": "Toilets, bathroom faucets, showerheads, irrigation controllers, and other products can be manufactured to use less water than minimum standards. Some products are qualified by third-party programs like the EPA WaterSense and are typically at least 20 percent more water-efficient than standard products. EPA WaterSense website has additional information" } ] @@ -43640,12 +50927,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Recycling" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Water+Recycling" }, { + "term": "Core.Description", "value": "The property includes a system to reuse stormwater via rain barrels or cisterns for landscaping, or to treat and reuse water from bathroom sinks, showers, and clothes washing drains for landscape irrigation and/or toilet flushing." } ] @@ -43656,12 +50946,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water-Smart Landscaping" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Water-Smart+Landscaping" }, { + "term": "Core.Description", "value": "Water-smart landscapes are designed to require less water and fertilizer treatments. These landscapes feature regionally appropriate plants that require low water and are native to the local climate. Plants are organized by hydrozones (watering needs). Any irrigation system is qualified for high water-efficiency. Turfgrass is minimized and grown to the tallest height recommended. Strategic maintenance includes mulching and soil aeration. Other details are documented in EPA’s Water-Smart Landscape Design Tips." } ] @@ -43672,12 +50965,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Active Solar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Active+Solar" }, { + "term": "Core.Description", "value": "Active solar heating systems use solar energy to heat a fluid -- either liquid or air -- and then transfer the solar heat directly to the interior space or to a storage system for later use." } ] @@ -43688,12 +50984,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Baseboard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Baseboard" }, { + "term": "Core.Description", "value": "Baseboard heating utilizes convection, as cold air drops from the window, it enters the baseboard heating unit where the air is warmed by heating elements, typically fins." } ] @@ -43704,12 +51003,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ceiling" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ceiling" }, { + "term": "Core.Description", "value": "A heating unit that is installed into, or upon the surface, of the ceiling." } ] @@ -43720,12 +51022,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Central" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Central" }, { + "term": "Core.Description", "value": "A system where heat is generated in one or more locations in the structure and distributed throughout the structure. The term \"Central\" is commonly understood as distribution done by ducting air. Piping a fluid to radiators is also a central type of heating, but this can be clarified with the options \"Radiator\" and \"Forced Air\"." } ] @@ -43736,12 +51041,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Coal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Coal" }, { + "term": "Core.Description", "value": "The heating system uses coal as its fuel to generate heat." } ] @@ -43752,12 +51060,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Coal Stove" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Coal+Stove" }, { + "term": "Core.Description", "value": "A coal burning stove that is used for heat." } ] @@ -43768,12 +51079,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ductless" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244958" }, { + "term": "Core.Description", "value": "The heating system does not have ducting like that found in central forced air systems." } ] @@ -43784,12 +51098,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244959" }, { + "term": "Core.Description", "value": "A heating system that utilizes electricity and heating elements, such as coils or fins, to generate heat." } ] @@ -43800,12 +51117,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR/ACCA RSI Qualified Installation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244960" }, { + "term": "Core.Description", "value": "The heating system installation was done by an ENERGY STAR or ACCA RSI qualified contractor." } ] @@ -43816,12 +51136,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR Qualified Equipment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244961" }, { + "term": "Core.Description", "value": "The heating system is ENERGY STAR Qualified. Specific performance information must be determined by review of the actual unit." } ] @@ -43832,12 +51155,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exhaust Fan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244962" }, { + "term": "Core.Description", "value": "The property has an exhaust fan." } ] @@ -43848,12 +51174,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fireplace Insert" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fireplace+Insert" }, { + "term": "Core.Description", "value": "The property has a fireplace insert for generating heat." } ] @@ -43864,12 +51193,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fireplace(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244963" }, { + "term": "Core.Description", "value": "The property has one or more fireplaces used to generate heat." } ] @@ -43880,12 +51212,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Floor Furnace" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Floor+Furnace" }, { + "term": "Core.Description", "value": "A radiant heating system that is mounted into the floor and distributes the heat via convection." } ] @@ -43896,12 +51231,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Forced Air" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Forced+Air" }, { + "term": "Core.Description", "value": "The property has a forced air system, typically via ducting throughout the structure." } ] @@ -43912,12 +51250,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Geothermal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244967" }, { + "term": "Core.Description", "value": "A geothermal heating system, also known as a ground source heat pump, transfers heat from below ground into the structure." } ] @@ -43928,12 +51269,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gravity" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gravity" }, { + "term": "Core.Description", "value": "A gravity heating system, also known as an octopus furnace, is typically a ducted system that doesn\u0027t use a fan, but rather is designed to allow the heat to rise naturally thought the ducts to the different areas of the structure." } ] @@ -43944,12 +51288,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Heat Pump" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244969" }, { + "term": "Core.Description", "value": "A system that exchanges heat between a warm and cool space. The heat exchange is done between the dwelling and another air space, like outdoors; or a water source; or below ground (geothermal)." } ] @@ -43960,12 +51307,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hot Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244970" }, { + "term": "Core.Description", "value": "The heating system uses a boiler and pipes to deliver hot water to radiators throughout the dwelling." } ] @@ -43976,12 +51326,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Humidity Control" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244971" }, { + "term": "Core.Description", "value": "The heating system has humidity control." } ] @@ -43992,12 +51345,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kerosene" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kerosene" }, { + "term": "Core.Description", "value": "The heating system uses kerosene as its fuel to generate heat." } ] @@ -44008,12 +51364,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Natural Gas" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Natural+Gas" }, { + "term": "Core.Description", "value": "The heating system uses natural gas as its fuel to generate heat." } ] @@ -44024,12 +51383,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244974" }, { + "term": "Core.Description", "value": "The property does not have a heating system." } ] @@ -44040,12 +51402,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Oil" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Oil" }, { + "term": "Core.Description", "value": "The heating system uses oil as its fuel to generate heat." } ] @@ -44056,12 +51421,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244976" }, { + "term": "Core.Description", "value": "The property has a heating system or features that are not included in this list." } ] @@ -44072,12 +51440,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Passive Solar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Passive+Solar" }, { + "term": "Core.Description", "value": "Passive solar is a building design where the walls, windows, floors, etc., are made to collect heat and warm the dwelling." } ] @@ -44088,12 +51459,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pellet Stove" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244978" }, { + "term": "Core.Description", "value": "The property has a stove that burns compressed wood or biomass pellets to generate heat." } ] @@ -44104,12 +51478,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Propane" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244979" }, { + "term": "Core.Description", "value": "The heating system uses propane as its fuel to generate heat." } ] @@ -44120,12 +51497,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Propane Stove" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Propane+Stove" }, { + "term": "Core.Description", "value": "The property has a stove that burns propane to generate heat." } ] @@ -44136,12 +51516,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Radiant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Radiant" }, { + "term": "Core.Description", "value": "The heating system uses radiators to release heat within the dwelling. The heat is typically delivered to the radiator(s) by water/steam or electricity." } ] @@ -44152,12 +51535,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Radiant Ceiling" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Radiant+Ceiling" }, { + "term": "Core.Description", "value": "The radiant heating element(s) are located in the ceiling." } ] @@ -44168,12 +51554,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Radiant Floor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Radiant+Floor" }, { + "term": "Core.Description", "value": "The radiant heating element(s) are located in the floor." } ] @@ -44184,12 +51573,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244984" }, { + "term": "Core.Description", "value": "See the remarks fields for additional information about the heating system included with the property." } ] @@ -44200,12 +51592,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Separate Meters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244985" }, { + "term": "Core.Description", "value": "The heating system has multiple units and/or is zoned with separate meters for each zone/unit." } ] @@ -44216,12 +51611,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Solar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244986" }, { + "term": "Core.Description", "value": "The property has a heating system or method that uses an unspecified type of solar heating." } ] @@ -44232,12 +51630,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Space Heater" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Space+Heater" }, { + "term": "Core.Description", "value": "The property comes with a stand-alone space heater." } ] @@ -44248,12 +51649,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Steam" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Steam" }, { + "term": "Core.Description", "value": "The heating system uses a boiler and pipes to deliver hot water to radiators throughout the dwelling." } ] @@ -44264,12 +51668,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Varies by Unit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244989" }, { + "term": "Core.Description", "value": "The type of heating or heating features vary from unit to unit." } ] @@ -44280,12 +51687,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wall Furnace" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wall+Furnace" }, { + "term": "Core.Description", "value": "Typically a ductless system that is built into a wall to deliver to the room in which it\u0027s installed." } ] @@ -44296,12 +51706,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wood" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244991" }, { + "term": "Core.Description", "value": "The heating system uses wood as its fuel to generate heat." } ] @@ -44312,12 +51725,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wood Stove" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wood+Stove" }, { + "term": "Core.Description", "value": "The property has a stove that burns wood to generate heat." } ] @@ -44328,12 +51744,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Zoned" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244993" }, { + "term": "Core.Description", "value": "The heating system is zoned allowing for indepenant control of two or more parts of the structure." } ] @@ -44354,12 +51773,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Arena" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244995" }, { + "term": "Core.Description", "value": "The property allows for horses and has an arena." } ] @@ -44370,12 +51792,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Barn" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244996" }, { + "term": "Core.Description", "value": "The property allows horses and has a barn." } ] @@ -44386,12 +51811,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Boarding Facilities" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Boarding+Facilities" }, { + "term": "Core.Description", "value": "The property had horse boarding facilities." } ] @@ -44402,12 +51830,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Corral(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244998" }, { + "term": "Core.Description", "value": "The property allows horses and has one or more corrals." } ] @@ -44418,12 +51849,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hay Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hay+Storage" }, { + "term": "Core.Description", "value": "The property allows horses and has hay storage." } ] @@ -44434,12 +51868,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245000" }, { + "term": "Core.Description", "value": "The property either does not allow horses or has no amenities for horses." } ] @@ -44450,12 +51887,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245001" }, { + "term": "Core.Description", "value": "The property has horse amenities other than those in this list." } ] @@ -44466,12 +51906,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Paddocks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Paddocks" }, { + "term": "Core.Description", "value": "The property allows horses and has an enclosed living are for your horse(s). A paddock is also known as a sacrifice area which got its name because the owner was sacrificing some of their land for the benefit of the horse." } ] @@ -44482,12 +51925,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Palpation Chute" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Palpation+Chute" }, { + "term": "Core.Description", "value": "A portion of the livestock chute where the animal is held for examination or other purposes." } ] @@ -44498,12 +51944,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pasture" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245004" }, { + "term": "Core.Description", "value": "The property includes or has access to a pasture for horses." } ] @@ -44514,12 +51963,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Riding Trail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Riding+Trail" }, { + "term": "Core.Description", "value": "The property includes or has access to a riding trail(s)." } ] @@ -44530,12 +51982,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Round Pen" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Round+Pen" }, { + "term": "Core.Description", "value": "The property includes or has access to a round enclosure used for horse training." } ] @@ -44546,12 +52001,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245007" }, { + "term": "Core.Description", "value": "See the remarks fields for additional information about horse amenities." } ] @@ -44562,12 +52020,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Shaving Bin" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Shaving+Bin" }, { + "term": "Core.Description", "value": "The property includes or has access to a storage container for wood shavings that are use as ground cover for horses." } ] @@ -44578,12 +52039,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stable(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245009" }, { + "term": "Core.Description", "value": "The property includes or has access to horse stable(s)." } ] @@ -44594,12 +52058,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tack Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tack+Room" }, { + "term": "Core.Description", "value": "The property includes or has access to a room to store equipment such as saddles, stirrups, bridles, halters, reins, bits, harnesses, martingales, breastplates, etc." } ] @@ -44610,12 +52077,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trailer Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Trailer+Storage" }, { + "term": "Core.Description", "value": "The property includes or has access to a place to store a horse trailer." } ] @@ -44626,12 +52096,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wash Rack" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wash+Rack" }, { + "term": "Core.Description", "value": "The property includes or has access to a rack used to confine/restrain a horse for purposes of washing the horse." } ] @@ -44642,12 +52115,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Evenings Only" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Evenings+Only" }, { + "term": "Core.Description", "value": "The business being sold is open in the evenings only." } ] @@ -44658,12 +52134,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open 24 Hours" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Open+24+Hours" }, { + "term": "Core.Description", "value": "The business being sold is open 24 hours per day." } ] @@ -44674,12 +52153,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open 7 Days" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Open+7+Days" }, { + "term": "Core.Description", "value": "The business being sold is open 7 days per week." } ] @@ -44690,12 +52172,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open 8 Hours/Day" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244945" }, { + "term": "Core.Description", "value": "The business being sold is open 8 hours per day." } ] @@ -44706,12 +52191,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open -8 Hours/Day" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244946" }, { + "term": "Core.Description", "value": "The business being sold is open less than 8 hours per day." } ] @@ -44722,12 +52210,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open Monday-Friday" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Open+Monday-Friday" }, { + "term": "Core.Description", "value": "The business being sold is open Monday through Friday." } ] @@ -44738,12 +52229,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open 8+ Hours/Day" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244947" }, { + "term": "Core.Description", "value": "The business being sold is open more than 8 hours/day." } ] @@ -44754,12 +52248,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open Saturday" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Open+Saturday" }, { + "term": "Core.Description", "value": "The business being sold is open on Saturdays." } ] @@ -44770,12 +52267,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open Sunday" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Open+Sunday" }, { + "term": "Core.Description", "value": "The business being sold is open on Sundays." } ] @@ -44786,12 +52286,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Laundry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245093" }, { + "term": "Core.Description", "value": "The income amount includes income from laundry facilities." } ] @@ -44802,12 +52305,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Parking" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245094" }, { + "term": "Core.Description", "value": "The income amount includes income from parking." } ] @@ -44818,12 +52324,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Recreation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245095" }, { + "term": "Core.Description", "value": "The income amount includes income from charging for recreation facilities." } ] @@ -44834,12 +52343,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rent Only" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Rent+Only" }, { + "term": "Core.Description", "value": "The income amount includes income from only the rent charged to the tenants." } ] @@ -44850,12 +52362,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RV Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RV+Storage" }, { + "term": "Core.Description", "value": "The income amount includes income from charging for RV storage." } ] @@ -44866,12 +52381,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245098" }, { + "term": "Core.Description", "value": "The income amount includes income from charging for general storage." } ] @@ -44882,12 +52400,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245100" }, { + "term": "Core.Description", "value": "A built-in or movable fixture for the storage, preparation, serving and/or consumption of drinks." } ] @@ -44898,12 +52419,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Beamed Ceilings" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Beamed+Ceilings" }, { + "term": "Core.Description", "value": "A property where the room, or rooms, have exposed beams across the ceiling." } ] @@ -44914,12 +52438,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bidet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bidet" }, { + "term": "Core.Description", "value": "A type of sink designed to wash the undercarriage of the human body." } ] @@ -44930,12 +52457,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bookcases" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bookcases" }, { + "term": "Core.Description", "value": "Shelfs for books or other objects which may or may not be built into the property." } ] @@ -44946,12 +52476,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Breakfast Bar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Breakfast+Bar" }, { + "term": "Core.Description", "value": "A surface designed for eating, which is typically smaller than dining table and attached to the other kitchen surfaces." } ] @@ -44962,12 +52495,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Built-in Features" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Built-in+Features" }, { + "term": "Core.Description", "value": "Some features are physically attached to the structure." } ] @@ -44978,12 +52514,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cathedral Ceiling(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245106" }, { + "term": "Core.Description", "value": "A type of vaulted ceiling that is typically higher than normal ceilings and has a slant or curve to reach it\u0027s upper most point, which tends to be equal distance from the two shorter walls in the room." } ] @@ -44994,12 +52533,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cedar Closet(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245107" }, { + "term": "Core.Description", "value": "A closet that is partially or fully lined with cedar wood." } ] @@ -45010,12 +52552,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ceiling Fan(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245108" }, { + "term": "Core.Description", "value": "The room(s) have fans that are mounted from the ceiling." } ] @@ -45026,12 +52571,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Central Vacuum" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Central+Vacuum" }, { + "term": "Core.Description", "value": "A built-in vacuum that typically consists of a power/collection unit that is typically install in a garage or closet, tubing from the power unit to rooms thought the house, and wall mounted receptacles for the connection of a movable vacuum hose." } ] @@ -45042,12 +52590,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Chandelier" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Chandelier" }, { + "term": "Core.Description", "value": "A decorative lighting fixture that typically branches out with several lights (or candles) with other decorative components such as glass, crystal or other reflective or light enhancing materials." } ] @@ -45058,12 +52609,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Coffered Ceiling(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245111" }, { + "term": "Core.Description", "value": "A ceiling with multiple decorative indentations, trays or sunken panels." } ] @@ -45074,12 +52628,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Crown Molding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Crown+Molding" }, { + "term": "Core.Description", "value": "A decorative trim covering the seam between the ceiling and walls." } ] @@ -45090,12 +52647,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Double Vanity" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Double+Vanity" }, { + "term": "Core.Description", "value": "Bathroom cabinetry with two built-in sinks." } ] @@ -45106,12 +52666,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dry Bar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dry+Bar" }, { + "term": "Core.Description", "value": "A built-in or movable fixture for the storage, preparation, serving and consumption of drinks that does not have a water supply or sink." } ] @@ -45122,12 +52685,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dumbwaiter" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dumbwaiter" }, { + "term": "Core.Description", "value": "A small elevator, typically for carrying food between floors in a structure." } ] @@ -45138,12 +52704,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Eat-in Kitchen" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Eat-in+Kitchen" }, { + "term": "Core.Description", "value": "A kitchen that has been designed to accommodate dining." } ] @@ -45154,12 +52723,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Elevator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Elevator" }, { + "term": "Core.Description", "value": "A platform or compartment housed within a shaft for raising or lowering people or objects." } ] @@ -45170,12 +52742,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Entrance Foyer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Entrance+Foyer" }, { + "term": "Core.Description", "value": "A room or hall at the entrance leading to other parts of the structure." } ] @@ -45186,12 +52761,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Granite Counters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Granite+Counters" }, { + "term": "Core.Description", "value": "The counters are made of a type of granite stone." } ] @@ -45202,12 +52780,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "High Ceilings" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/High+Ceilings" }, { + "term": "Core.Description", "value": "The ceiling height is greater than what might be considered a normal celling height." } ] @@ -45218,12 +52799,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "High Speed Internet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/High+Speed+Internet" }, { + "term": "Core.Description", "value": "The property has access to high speed internet service, but may or may not be wired and/or connected to that service." } ] @@ -45234,12 +52818,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "His and Hers Closets" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/His+and+Hers+Closets" }, { + "term": "Core.Description", "value": "The room(s) have two separate closets." } ] @@ -45250,12 +52837,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "In-Law Floorplan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/In-Law+Floorplan" }, { + "term": "Core.Description", "value": "The structure has an area within that has the characteristics of an independent apartment. Typically with a living area, kitchen, bedroom and bathroom, and in-law floor plan is not necessarily an Accessory Dwelling Unit (ADU)." } ] @@ -45266,12 +52856,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kitchen Island" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kitchen+Island" }, { + "term": "Core.Description", "value": "A separate counter surface in a kitchen that is not attached to other surfaces or to a wall. A kitchen island may or may not include a sink, stove or other fixtures." } ] @@ -45282,12 +52875,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Laminate Counters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Laminate+Counters" }, { + "term": "Core.Description", "value": "The counters are covered with a laminate." } ] @@ -45298,12 +52894,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Low Flow Plumbing Fixtures" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Low+Flow+Plumbing+Fixtures" }, { + "term": "Core.Description", "value": "Some or all of the fixtures are designed to save water." } ] @@ -45314,12 +52913,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Master Downstairs" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Master+Downstairs" }, { + "term": "Core.Description", "value": "There is a master bedroom on the main level of the structure." } ] @@ -45330,12 +52932,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Natural Woodwork" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Natural+Woodwork" }, { + "term": "Core.Description", "value": "The property or room has features made from real wood." } ] @@ -45346,12 +52951,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open Floorplan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Open+Floorplan" }, { + "term": "Core.Description", "value": "A generic design term for a floor plan that makes use of large open spaces and avoids the use of small enclosed spaces." } ] @@ -45362,12 +52970,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245130" }, { + "term": "Core.Description", "value": "The room or interior has features other than those included in this list." } ] @@ -45378,12 +52989,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pantry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245131" }, { + "term": "Core.Description", "value": "A small room or closet where food, dishes and utensils are stored." } ] @@ -45394,12 +53008,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Recessed Lighting" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Recessed+Lighting" }, { + "term": "Core.Description", "value": "A light fixture installed into a hallow opening in the celling." } ] @@ -45410,12 +53027,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sauna" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245133" }, { + "term": "Core.Description", "value": "A small room or separate structure designed to produce heat, wet with steam, or dry, to induce perspiration." } ] @@ -45426,12 +53046,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245134" }, { + "term": "Core.Description", "value": "See the remarks fields for additional information about the room or interior." } ] @@ -45442,12 +53065,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Smart Home" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Smart+Home" }, { + "term": "Core.Description", "value": "Smart Home features are a generic term for electronic automation of features such as lighting, heating/cooling, security and other amenities. The features are typically linked though an app or software via one or more third party services. The features are also known for their convenience and energy efficiency." } ] @@ -45458,12 +53084,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Smart Thermostat" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Smart+Thermostat" }, { + "term": "Core.Description", "value": "A heating/cooling control unit that has convenience and energy saving aspects. A smart thermostat may also integrate with a larger smart home system and typically operates through a third party service." } ] @@ -45474,12 +53103,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Soaking Tub" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Soaking+Tub" }, { + "term": "Core.Description", "value": "A bath tub that is typically deeper and may be shorter than traditional tubs." } ] @@ -45490,12 +53122,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Solar Tube(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245138" }, { + "term": "Core.Description", "value": "A reflective tube that extends from a light gathering surface on the roof of the structure down into a room where the outside light is distributed." } ] @@ -45506,12 +53141,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sound System" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sound+System" }, { + "term": "Core.Description", "value": "The includes a sound system. This typically includes in-wall wiring and recessed/built-in speakers and a built in location for the amplifier and other audio equipment." } ] @@ -45522,12 +53160,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stone Counters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Stone+Counters" }, { + "term": "Core.Description", "value": "The property or room has counters that are made of some type of stone." } ] @@ -45538,12 +53179,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245141" }, { + "term": "Core.Description", "value": "The property or room has storage space." } ] @@ -45554,12 +53198,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tile Counters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tile+Counters" }, { + "term": "Core.Description", "value": "The property or room has counters that are made of some type of tile." } ] @@ -45570,12 +53217,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Track Lighting" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Track+Lighting" }, { + "term": "Core.Description", "value": "A type of lighting where the light fixtures are mounted on a track allowing for adjustment of the position of the lights." } ] @@ -45586,12 +53236,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tray Ceiling(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245144" }, { + "term": "Core.Description", "value": "A ceiling with a inverted tray or recessed area, often rectangular, that adds depth and interest." } ] @@ -45602,12 +53255,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vaulted Ceiling(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245145" }, { + "term": "Core.Description", "value": "From the Italian word Volta, is typically a high celling with no attic between the ceiling and the roof. When a vaulted celling has two angles that meet in the center of the room, you may use Cathedral Ceiling(s)." } ] @@ -45618,12 +53274,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Walk-In Closet(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245146" }, { + "term": "Core.Description", "value": "A closet that is a small room with an entryway." } ] @@ -45634,12 +53293,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "WaterSense Fixture(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245147" }, { + "term": "Core.Description", "value": "Water fixtures that are backed by independent, third–party certification and meet EPA’s specifications for water efficiency and performance." } ] @@ -45650,12 +53312,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wet Bar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wet+Bar" }, { + "term": "Core.Description", "value": "Commonly a built-in fixture for the storage, preparation, serving and/or consumption of drinks that has a faucet and sink." } ] @@ -45666,12 +53331,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wired for Data" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wired+for+Data" }, { + "term": "Core.Description", "value": "The property has been wired for data, typically Category 5 or 6 wiring for the support of ethernet data communications." } ] @@ -45682,12 +53350,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wired for Sound" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wired+for+Sound" }, { + "term": "Core.Description", "value": "The property has been wired for a built-in sound system. This typically includes in-wall wiring and recessed/built-in speakers and a location for audio equipment. The wiring is in place, but equipment may not be included." } ] @@ -45703,12 +53374,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Employee License Required" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Employee+License+Required" }, { + "term": "Core.Description", "value": "Special licensing is required for employees." } ] @@ -45719,12 +53393,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Non-Union" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Non-Union" }, { + "term": "Core.Description", "value": "A labor union(s) are not currently established with the given business." } ] @@ -45735,12 +53412,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Union" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Union" }, { + "term": "Core.Description", "value": "A labor union(s) are established with the given business." } ] @@ -45751,12 +53431,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Common Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245476" }, { + "term": "Core.Description", "value": "Laundry facilities are in a common area." } ] @@ -45767,12 +53450,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric Dryer Hookup" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electric+Dryer+Hookup" }, { + "term": "Core.Description", "value": "The property has electric cloths dryer connections." } ] @@ -45783,12 +53469,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas Dryer Hookup" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gas+Dryer+Hookup" }, { + "term": "Core.Description", "value": "The property has gas cloths dryer connections." } ] @@ -45799,12 +53488,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "In Basement" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/In+Basement" }, { + "term": "Core.Description", "value": "Laundry is located in the basement." } ] @@ -45815,12 +53507,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "In Bathroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/In+Bathroom" }, { + "term": "Core.Description", "value": "Laundry is located in the bathroom." } ] @@ -45831,12 +53526,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "In Carport" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/In+Carport" }, { + "term": "Core.Description", "value": "Laundry is located in the carport." } ] @@ -45847,12 +53545,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "In Garage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/In+Garage" }, { + "term": "Core.Description", "value": "Laundry is located in the garage." } ] @@ -45863,12 +53564,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "In Hall" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/In+Hall" }, { + "term": "Core.Description", "value": "Laundry is located in the hall." } ] @@ -45879,12 +53583,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "In Kitchen" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/In+Kitchen" }, { + "term": "Core.Description", "value": "Laundry is located in the kitchen." } ] @@ -45895,12 +53602,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Inside" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Inside" }, { + "term": "Core.Description", "value": "Laundry is located indoors." } ] @@ -45911,12 +53621,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "In Unit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/In+Unit" }, { + "term": "Core.Description", "value": "Laundry is located within the unit." } ] @@ -45927,12 +53640,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Laundry Chute" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Laundry+Chute" }, { + "term": "Core.Description", "value": "The property has a laundry chute." } ] @@ -45943,12 +53659,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Laundry Closet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Laundry+Closet" }, { + "term": "Core.Description", "value": "The property has a laundry closet." } ] @@ -45959,12 +53678,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Laundry Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Laundry+Room" }, { + "term": "Core.Description", "value": "The property has a laundry room." } ] @@ -45975,12 +53697,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lower Level" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lower+Level" }, { + "term": "Core.Description", "value": "Laundry is on the lower level." } ] @@ -45991,12 +53716,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Main Level" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Main+Level" }, { + "term": "Core.Description", "value": "Laundry is on the main level." } ] @@ -46007,12 +53735,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Multiple Locations" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Multiple+Locations" }, { + "term": "Core.Description", "value": "Laundry is in multiple locations." } ] @@ -46023,12 +53754,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245493" }, { + "term": "Core.Description", "value": "There are no laundry features." } ] @@ -46039,12 +53773,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245494" }, { + "term": "Core.Description", "value": "There are laundry features other than those in this list." } ] @@ -46055,12 +53792,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Outside" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245495" }, { + "term": "Core.Description", "value": "Laundry is located outside." } ] @@ -46071,12 +53811,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245496" }, { + "term": "Core.Description", "value": "See remarks for additional information about laundry." } ] @@ -46087,12 +53830,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sink" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sink" }, { + "term": "Core.Description", "value": "The laundry area has a sink." } ] @@ -46103,12 +53849,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Upper Level" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Upper+Level" }, { + "term": "Core.Description", "value": "Laundry is on the upper level." } ] @@ -46119,12 +53868,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Washer Hookup" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Washer+Hookup" }, { + "term": "Core.Description", "value": "The property has a hookups for a cloths washer." } ] @@ -46135,12 +53887,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Call Listing Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245344" }, { + "term": "Core.Description", "value": "For details on about additional selling office compensation for lease renewals, contact the listing agent." } ] @@ -46151,12 +53906,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Call Listing Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Call+Listing+Office" }, { + "term": "Core.Description", "value": "For details on about additional selling office compensation for lease renewals, contact the listing office." } ] @@ -46167,12 +53925,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Commission Paid On Tenant Purchase" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Commission+Paid+On+Tenant+Purchase" }, { + "term": "Core.Description", "value": "Additional commission is paid in the event the tenant purchase the property." } ] @@ -46183,12 +53944,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "No Renewal Commission" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/No+Renewal+Commission" }, { + "term": "Core.Description", "value": "There is no additional commission if the tenant renews or extends the lease." } ] @@ -46199,12 +53963,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Renewal Commission Paid" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Renewal+Commission+Paid" }, { + "term": "Core.Description", "value": "There is additional commission paid if the tenant renews the lease." } ] @@ -46215,12 +53982,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Month To Month" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Month+To+Month" }, { + "term": "Core.Description", "value": "The length of the lease is month to month." } ] @@ -46231,12 +54001,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Negotiable" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Negotiable" }, { + "term": "Core.Description", "value": "The length of the lease is negotiable." } ] @@ -46247,12 +54020,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245355" }, { + "term": "Core.Description", "value": "There is no stated term to the lease." } ] @@ -46263,12 +54039,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245356" }, { + "term": "Core.Description", "value": "The term of the lease is something other than is available in this list." } ] @@ -46279,12 +54058,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Renewal Option" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Renewal+Option" }, { + "term": "Core.Description", "value": "The lease has a renewal option." } ] @@ -46295,12 +54077,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Short Term Lease" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Short+Term+Lease" }, { + "term": "Core.Description", "value": "The lease is short term." } ] @@ -46311,12 +54096,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "6 Months" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/6+Months" }, { + "term": "Core.Description", "value": "The length of the lease is 6 months." } ] @@ -46327,12 +54115,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "12 Months" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/12+Months" }, { + "term": "Core.Description", "value": "The length of the lease is 12 months." } ] @@ -46343,12 +54134,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "24 Months" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/24+Months" }, { + "term": "Core.Description", "value": "The length of the lease is 24 months." } ] @@ -46359,12 +54153,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Weekly" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245359" }, { + "term": "Core.Description", "value": "The length of the lease is weekly." } ] @@ -46375,12 +54172,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Multi/Split" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245361" }, { + "term": "Core.Description", "value": "A split-level home (also called a tri-level home) is a style of house in which the floor levels are staggered, so that the \"main\" level of the house (e.g. the level that usually contains the front entry), is partway between the upper and lower floors." } ] @@ -46391,12 +54191,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "One" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/One" }, { + "term": "Core.Description", "value": "The property being sold has one level. A discreet horizontal plane of interior living space (excluding basements)." } ] @@ -46407,12 +54210,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "One and One Half" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/One+and+One+Half" }, { + "term": "Core.Description", "value": "A 1.5 story house is where the height of any of the walls on the second floor are less than the height of the walls on the first floor. First floor walls that extend up to the second floor level are not included in the height comparison. Depending on your State, Provence or other local regulations there may be a specific height difference required. For example some areas required that the second floor walls be less than 70% the height of the first floor walls in order to be called a 1.5 story structure. Other areas are 50% and it is clear that this may vary substantially from region to region. Another common trait is angled ceilings that compensate for the short walls making all but the edges of the room high enough for normal use." } ] @@ -46423,12 +54229,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Three Or More" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Three+Or+More" }, { + "term": "Core.Description", "value": "The property being sold has three or more levels. A discreet horizontal plane of interior living space (excluding basements)." } ] @@ -46439,12 +54248,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Two" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Two" }, { + "term": "Core.Description", "value": "The property being sold has two levels. A discreet horizontal plane of interior living space (excluding basements)." } ] @@ -46455,12 +54267,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accredited Buyer\u0027s Representative / ABR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245436" }, { + "term": "Core.Description", "value": "The Accredited Buyer’s Representative (ABR®) designation is designed for real estate buyer agents who focus on working directly with buyer-clients. http://www.rebac.net/abr" } ] @@ -46471,12 +54286,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accredited Land Consultant / ALC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245437" }, { + "term": "Core.Description", "value": "Accredited Land Consultants (ALCs) are the most trusted, knowledgeable, experienced, and highest-producing experts in all segments of land. Conferred by the REALTORS® Land Institute, the designation requires successful completion of a rigorous LANDU education program, a specific, high-volume and experience level, and adherence to an honorable Code of Conduct. https://www.nar.realtor/designations-and-certifications/alc" } ] @@ -46487,12 +54305,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "At Home With Diversity / AHWD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245438" }, { + "term": "Core.Description", "value": "Learn to work effectively with – and within – today’s diverse real estate market. The At Home With Diversity certification teaches you how to conduct your business with sensitivity to all client profiles and build a business plan to successfully serve them. https://www.nar.realtor/designations-and-certifications/ahwd" } ] @@ -46503,12 +54324,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Commercial Investment Member / CCIM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245439" }, { + "term": "Core.Description", "value": "The Certified Commercial Investment Member (CCIM) designation is commercial real estate’s global standard for professional achievement, earned through an extensive curriculum of 200 classroom hours and professional experiential requirements. https://www.nar.realtor/designations-and-certifications/ccim" } ] @@ -46519,12 +54343,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Distressed Property Expert / CDPE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245440" }, { + "term": "Core.Description", "value": "A Certified Distressed Property Expert® (CDPE) has a thorough understanding of complex issues in today’s turbulent real estate industry and knowledge of foreclosure avoidance options available to homeowners. CDPEs can provide solutions, specifically short sales, for homeowners facing market hardships. http://www.cdpe.com/" } ] @@ -46535,12 +54362,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified International Property Specialist / CIPS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245441" }, { + "term": "Core.Description", "value": "The CIPS designation is for REALTORS® from the United States and abroad, as well as association staff and volunteer leaders who wish to develop or grow their international real estate business. It will provide you with the knowledge, research, network, and tools to globalize your business. https://www.nar.realtor/designations-and-certifications/cips-designation" } ] @@ -46551,12 +54381,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Property Manager / CPM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245442" }, { + "term": "Core.Description", "value": "Certified Property Managers® (CPM®) are recognized as experts in real estate management, and they are at the top of the profession. 70% of those who hold the CPM® designation hold the highest management positions in their offices (owner/partner/officer/director). https://www.nar.realtor/designations-and-certifications/cpm" } ] @@ -46567,12 +54400,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Real Estate Brokerage Manager / CRB" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245443" }, { + "term": "Core.Description", "value": "The Certified Real Estate Brokerage Manager (CRB) Designation raises professional standards, strengthens individual and office performance, and indicates expertise in brokerage management. This designation represents the highest level of professional achievement in real estate brokerage management. You do not need a broker\u0027s license to earn the CRB Designation. https://www.nar.realtor/designations-and-certifications/crb" } ] @@ -46583,12 +54419,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Real Estate Team Specialist / C-RETS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245444" }, { + "term": "Core.Description", "value": "The Certified Real Estate Team Specialist certification is designed to improve team development, individual leadership skills, and financial performance. The courses provide the tools, strategies, and knowledge that are required of today’s real estate professionals who are either considering or currently operating in a team environment. It is for team leaders, team members, those looking to start a team, and those who simply want to sharpen their management skills. https://www.nar.realtor/designations-and-certifications/c-rets" } ] @@ -46599,12 +54438,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Residential Specialist / CRS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245445" }, { + "term": "Core.Description", "value": "Certified Residential Specialist (CRS) is the highest credential awarded to residential sales agents, managers and brokers. https://www.nar.realtor/designations-and-certifications/crs" } ] @@ -46615,12 +54457,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Counselor of Real Estate / CRE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245446" }, { + "term": "Core.Description", "value": "The Counselors of Real Estate® is an international group of recognized professionals who provide seasoned, expert, objective advice on real property and land-related matters. Only 1,100 practitioners throughout the world carry the CRE® designation. Membership is by invitation only. https://www.nar.realtor/designations-and-certifications/cre" } ] @@ -46631,12 +54476,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "e-PRO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245447" }, { + "term": "Core.Description", "value": "NAR\u0027s e-PRO® certification teaches you to use cutting-edge technologies and digital initiatives to link up with today\u0027s savvy real estate consumer. https://www.nar.realtor/designations-and-certifications/e-pro" } ] @@ -46647,12 +54495,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "General Accredited Appraiser / GAA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245448" }, { + "term": "Core.Description", "value": "For general appraisers, this designation is awarded to those whose education and experience exceed state appraisal certification requirements and is supported by the National Association of REALTORS®. https://www.nar.realtor/designations-and-certifications/gaa" } ] @@ -46663,12 +54514,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Graduate, REALTOR Institute / GRI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245449" }, { + "term": "Core.Description", "value": "REALTORS® with the GRI designation have in-depth training in legal and regulatory issues, technology, professional standards, and the sales process. Earning the designation is a way to stand out to prospective buyers and sellers as a professional with expertise in these areas. https://www.nar.realtor/designations-and-certifications/gri" } ] @@ -46679,12 +54533,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Military Relocation Professional / MRP" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245450" }, { + "term": "Core.Description", "value": "NAR\u0027s Military Relocation Professional certification focuses on educating real estate professionals about working with current and former military service members to find housing solutions that best suit their needs and take full advantage of military benefits and support. https://www.nar.realtor/designations-and-certifications/mrp" } ] @@ -46695,12 +54552,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NAR\u0027s Green Designation / GREEN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245451" }, { + "term": "Core.Description", "value": "Through NAR\u0027s Green Designation, the Green Resource Council provides ongoing education, resources and tools to help real estate practitioners find, understand, and market properties with green features. https://www.nar.realtor/designations-and-certifications/green" } ] @@ -46711,12 +54571,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Performance Management Network / PMN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245452" }, { + "term": "Core.Description", "value": "This designation is unique to the REALTOR® family designations, emphasizing that in order to enhance your business, you must enhance yourself. It focuses on negotiating strategies and tactics, networking and referrals, business planning and systems, personal performance management and leadership development. https://www.nar.realtor/designations-and-certifications/pmn" } ] @@ -46727,12 +54590,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pricing Strategy Advisor / PSA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245453" }, { + "term": "Core.Description", "value": "Enhance your skills in pricing properties, creating CMAs, working with appraisers, and guiding clients through the anxieties and misperceptions they often have about home values with NAR’s PSA (Pricing Strategy Advisor) certification. https://www.nar.realtor/designations-and-certifications/psa" } ] @@ -46743,12 +54609,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Real Estate Negotiation Expert / RENE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245454" }, { + "term": "Core.Description", "value": "This certification is for real estate professionals who want to sharpen their negotiation skills. The RENE certification program gives REALTORS® the tips and tools they need to be skillful advocates for their clients. https://www.nar.realtor/designations-and-certifications/rene" } ] @@ -46759,12 +54628,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "REALTOR Association Certified Executive / RCE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245455" }, { + "term": "Core.Description", "value": "RCE is the only professional designation designed specifically for REALTOR® association executives. RCE designees exemplify goal-oriented AEs with drive, experience and commitment to professional growth. https://www.nar.realtor/designations-and-certifications/rce" } ] @@ -46775,12 +54647,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential Accredited Appraiser / RAA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245456" }, { + "term": "Core.Description", "value": "For residential appraisers, this designation is awarded to those whose education and experience exceed state appraisal certification requirements and is supported by the National Association of REALTORS®. https://www.nar.realtor/designations-and-certifications/raa" } ] @@ -46791,12 +54666,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resort \u0026 Second-Home Property Specialist / RSPS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245457" }, { + "term": "Core.Description", "value": "This certification is designed for REALTORS® who facilitate the buying, selling, or management of properties for investment, development, retirement, or second homes in a resort, recreational and/or vacation destination are involved in this market niche. https://www.nar.realtor/designations-and-certifications/rsps" } ] @@ -46807,12 +54685,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seller Representative Specialist / SRS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245458" }, { + "term": "Core.Description", "value": "The Seller Representative Specialist (SRS) designation is the premier credential in seller representation. It is designed to elevate professional standards and enhance personal performance. The designation is awarded to real estate practitioners by the Real Estate Business Institute (REBI) who meet specific educational and practical experience criteria. https://www.nar.realtor/designations-and-certifications/seller-representative-specialist-srs" } ] @@ -46823,12 +54704,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seniors Real Estate Specialist / SRES" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245459" }, { + "term": "Core.Description", "value": "The SRES® Designation program educates REALTORS® on how to profitably and ethically serve the real estate needs of the fastest growing market in real estate, clients age 50+. By earning the SRES® designation, you gain access to valuable member benefits, useful resources, and networking opportunities across the U.S. and Canada to help you in your business. https://www.nar.realtor/designations-and-certifications/sres" } ] @@ -46839,12 +54723,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Short Sales \u0026 Foreclosure Resource / SFR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245460" }, { + "term": "Core.Description", "value": "The SFR® certification teaches real estate professionals to work with distressed sellers and the finance, tax, and legal professionals who can help them, qualify sellers for short sales, develop a short sale package, negotiate with lenders, safeguard your commission, limit risk, and protect buyers. https://www.nar.realtor/designations-and-certifications/sfr" } ] @@ -46855,12 +54742,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Society of Industrial and Office REALTORS / SIOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245461" }, { + "term": "Core.Description", "value": "The SIOR designation is held by only the most knowledgeable, experienced, and successful commercial real estate brokerage specialists. To earn it, designees must meet standards of experience, production, education, ethics, and provide recommendations. https://www.nar.realtor/designations-and-certifications/sior" } ] @@ -46871,12 +54761,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Transnational Referral Certification / TRC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245462" }, { + "term": "Core.Description", "value": "Real estate professionals who have taken the Transnational Referral Certified (TRC) training, have completed special training on making and receiving client referrals from professionals in other countries. https://worldproperties.com/about-us/international-referrals-and-trc/" } ] @@ -46887,12 +54780,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exclusive Agency" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Exclusive+Agency" }, { + "term": "Core.Description", "value": "A contract giving one Brokerage Firm, for a specified time, the right to sell/lease the property and also allowing the owner, acting alone, to sell/lease the property without paying commission." } ] @@ -46903,12 +54799,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exclusive Right To Lease" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Exclusive+Right+To+Lease" }, { + "term": "Core.Description", "value": "A contract giving the Broker the right to collect commission if the property is leased by anyone, including the owning, during the term of the agreement." } ] @@ -46919,12 +54818,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exclusive Right To Sell" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Exclusive+Right+To+Sell" }, { + "term": "Core.Description", "value": "A contract giving the Broker the right to collect commission if the property is sold by anyone, including the owning, during the term of the agreement." } ] @@ -46935,12 +54837,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exclusive Right With Exception" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Exclusive+Right+With+Exception" }, { + "term": "Core.Description", "value": "A contract giving the Broker the right to collect commission if the property is sold by anyone, including the owner, during the term of the agreement unless some specified exceptions to the agreement occur." } ] @@ -46951,12 +54856,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Net" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245374" }, { + "term": "Core.Description", "value": "A listing in which the broker\u0027s commission is the excess of the sale price over an agreed-upon (net0 price to the seller; illegal in some states because it can create a conflict of interest for the broker." } ] @@ -46967,12 +54875,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Open" }, { + "term": "Core.Description", "value": "Often used for commercial property, a listing given to any number of Brokers without liability to compensate any except the one who first secures a buyer who is ready, willing and able to meet the terms of the listing and secures the seller\u0027s acceptance. The seller may, acting alone, sell the property without paying commission." } ] @@ -46983,12 +54894,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Probate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Probate" }, { + "term": "Core.Description", "value": "An Exclusive Right To Sell listing agreement that also resides under authority of the local probate code." } ] @@ -46999,12 +54913,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Entry Only" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Entry+Only" }, { + "term": "Core.Description", "value": "The only service provided by the brokerage is the input of the listing into the MLS system." } ] @@ -47015,12 +54932,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Full Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Full+Service" }, { + "term": "Core.Description", "value": "A full set of services offered by a brokerage." } ] @@ -47031,12 +54951,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Limited Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Limited+Service" }, { + "term": "Core.Description", "value": "A limited set of services offered by a brokerage" } ] @@ -47047,12 +54970,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "All Inclusive Trust Deed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/All+Inclusive+Trust+Deed" }, { + "term": "Core.Description", "value": "The property is under an all inclusive trust deed." } ] @@ -47063,12 +54989,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assumable" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245384" }, { + "term": "Core.Description", "value": "The seller is interested in assumable financing." } ] @@ -47079,12 +55008,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cash" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245385" }, { + "term": "Core.Description", "value": "The seller would like a cash sale." } ] @@ -47095,12 +55027,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contract" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245386" }, { + "term": "Core.Description", "value": "The seller may be interested in an agreement to perform services, provide product, share of income, or some other agreement as the method of payment for the property." } ] @@ -47111,12 +55046,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Conventional" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245387" }, { + "term": "Core.Description", "value": "The seller may accept a buyer using conventional financing to purchase the home." } ] @@ -47127,12 +55065,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "1031 Exchange" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/1031+Exchange" }, { + "term": "Core.Description", "value": "The seller is may be interested in a 1031 exchange as part of the sale." } ] @@ -47143,12 +55084,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Existing Bonds" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Existing+Bonds" }, { + "term": "Core.Description", "value": "The property for sale has existing bonds." } ] @@ -47159,12 +55103,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FHA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245389" }, { + "term": "Core.Description", "value": "The seller may accept a buyer with a loan from an approved provider that follows the guidelines of, and is insured by, the Federal Housing Administration." } ] @@ -47175,12 +55122,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Land Use Fee" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Land+Use+Fee" }, { + "term": "Core.Description", "value": "The listed property has a land use fee." } ] @@ -47191,12 +55141,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lease Back" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lease+Back" }, { + "term": "Core.Description", "value": "The seller may be interested in the simultaneous sale of a property with a lease back to the seller, who then becomes the tenant." } ] @@ -47207,12 +55160,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lease Option" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lease+Option" }, { + "term": "Core.Description", "value": "The seller may be interested in selling as a lease option to the buyer." } ] @@ -47223,12 +55179,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lease Purchase" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lease+Purchase" }, { + "term": "Core.Description", "value": "The seller may be interested in selling as a lease purchase." } ] @@ -47239,12 +55198,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lien Release" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lien+Release" }, { + "term": "Core.Description", "value": "The property for sale may require a lien release." } ] @@ -47255,12 +55217,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner May Carry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Owner+May+Carry" }, { + "term": "Core.Description", "value": "The seller may be interested in carrying the mortgage note." } ] @@ -47271,12 +55236,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner Pay Points" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Owner+Pay+Points" }, { + "term": "Core.Description", "value": "The seller may carry points." } ] @@ -47287,12 +55255,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner Will Carry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Owner+Will+Carry" }, { + "term": "Core.Description", "value": "The seller will carry points." } ] @@ -47303,12 +55274,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private Financing Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Private+Financing+Available" }, { + "term": "Core.Description", "value": "Financing is provided by a private party." } ] @@ -47319,12 +55293,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Relocation Property" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Relocation+Property" }, { + "term": "Core.Description", "value": "The property for sale is a relocation property." } ] @@ -47335,12 +55312,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seller Equity Share" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Seller+Equity+Share" }, { + "term": "Core.Description", "value": "The seller may be interested in investing in an equity share." } ] @@ -47351,12 +55331,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Special Funding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Special+Funding" }, { + "term": "Core.Description", "value": "The seller may be interested in a special funding arrangement." } ] @@ -47367,12 +55350,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Submit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Submit" }, { + "term": "Core.Description", "value": "Contact the listing agent for the listing terms." } ] @@ -47383,12 +55369,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trade" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Trade" }, { + "term": "Core.Description", "value": "The seller may be interested in a trade arrangement." } ] @@ -47399,12 +55388,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trust Conveyance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Trust+Conveyance" }, { + "term": "Core.Description", "value": "A trust conveyance (to another trustee) may be involved in the sale of the property." } ] @@ -47415,12 +55407,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trust Deed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245405" }, { + "term": "Core.Description", "value": "The seller may accept financing where title of the property is placed with a trustee who secures payment of the loan for a beneficiary." } ] @@ -47431,12 +55426,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "USDA Loan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/USDA+Loan" }, { + "term": "Core.Description", "value": "The seller may accept a loan from an approved provider that follows the guidelines of, and is insured by, the US Department of Agriculture." } ] @@ -47447,12 +55445,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VA Loan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VA+Loan" }, { + "term": "Core.Description", "value": "The seller may accept a loan from an approved provider that follows the guidelines of, and is insured by, the US Department of Veteran\u0027s Affairs." } ] @@ -47463,12 +55464,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Call Listing Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245409" }, { + "term": "Core.Description", "value": "Call the listing office for information about accessing the property." } ] @@ -47479,12 +55483,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Call Seller Direct" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Call+Seller+Direct" }, { + "term": "Core.Description", "value": "Call the seller directly to arrange for access to the property." } ] @@ -47495,12 +55502,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Combo" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Combo" }, { + "term": "Core.Description", "value": "The lockbox on the property is opened via combination. See remarks or contact the agent/office for the combination." } ] @@ -47511,12 +55521,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245412" }, { + "term": "Core.Description", "value": "There is no lockbox on the property." } ] @@ -47527,12 +55540,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245416" }, { + "term": "Core.Description", "value": "A lock box type not included in this list." } ] @@ -47543,12 +55559,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245413" }, { + "term": "Core.Description", "value": "See remarks for details about the lockbox and accessing the property." } ] @@ -47559,12 +55578,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SentriLock" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SentriLock" }, { + "term": "Core.Description", "value": "The lockbox is from SentriLock and requires a SentriLock key or access code." } ] @@ -47575,12 +55597,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Supra" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Supra" }, { + "term": "Core.Description", "value": "The lockbox is from Supra and requires a Supra key." } ] @@ -47591,12 +55616,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Appraiser" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245464" }, { + "term": "Core.Description", "value": "The lot dimensions were provided by an appraiser." } ] @@ -47607,12 +55635,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assessor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245465" }, { + "term": "Core.Description", "value": "The lot dimensions were provided by the assessor." } ] @@ -47623,12 +55654,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Builder" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245466" }, { + "term": "Core.Description", "value": "The lot dimensions were provided by the builder." } ] @@ -47639,12 +55673,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Estimated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245467" }, { + "term": "Core.Description", "value": "The lot dimensions were estimated." } ] @@ -47655,12 +55692,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GIS Calculated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GIS+Calculated" }, { + "term": "Core.Description", "value": "The lot dimensions were GIS calculated." } ] @@ -47671,12 +55711,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Measured" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Measured" }, { + "term": "Core.Description", "value": "The lot dimensions were measured." } ] @@ -47687,12 +55730,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245470" }, { + "term": "Core.Description", "value": "The lot dimensions were provided by a source other than those in this list." } ] @@ -47703,12 +55749,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245471" }, { + "term": "Core.Description", "value": "The lot dimensions were provided by the owner." } ] @@ -47719,12 +55768,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public Records" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245472" }, { + "term": "Core.Description", "value": "The lot dimensions were taken from public records." } ] @@ -47735,12 +55787,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245473" }, { + "term": "Core.Description", "value": "See the Public or Private Remarks for details on the source of the lot dimensions." } ] @@ -47751,12 +55806,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Survey" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Survey" }, { + "term": "Core.Description", "value": "The lot dimensions were provided by a land survey." } ] @@ -47767,12 +55825,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agricultural" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245501" }, { + "term": "Core.Description", "value": "The lot has agricultural features." } ] @@ -47783,12 +55844,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Back Yard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245502" }, { + "term": "Core.Description", "value": "The lot has a back yard." } ] @@ -47799,12 +55863,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bluff" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bluff" }, { + "term": "Core.Description", "value": "The lot is on or near a bluff." } ] @@ -47815,12 +55882,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "City Lot" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/City+Lot" }, { + "term": "Core.Description", "value": "The lot is in a city/urban setting." } ] @@ -47831,12 +55901,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cleared" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245505" }, { + "term": "Core.Description", "value": "The lot has been cleared." } ] @@ -47847,12 +55920,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Close to Clubhouse" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Close+to+Clubhouse" }, { + "term": "Core.Description", "value": "The lot is located close to the community clubhouse." } ] @@ -47863,12 +55939,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Corner Lot" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Corner+Lot" }, { + "term": "Core.Description", "value": "The lot is located on the corner of an intersection." } ] @@ -47879,12 +55958,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Corners Marked" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Corners+Marked" }, { + "term": "Core.Description", "value": "The corners of the lot have been marked." } ] @@ -47895,12 +55977,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cul-De-Sac" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cul-De-Sac" }, { + "term": "Core.Description", "value": "The lot is located on street that is closed on one end in a circular shape. Cul-de-sac translated literally from French is \"the bottom of the bag\", which helps explain the circular shape." } ] @@ -47911,12 +55996,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Desert Back" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Desert+Back" }, { + "term": "Core.Description", "value": "The back of the lot faces desert." } ] @@ -47927,12 +56015,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Desert Front" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Desert+Front" }, { + "term": "Core.Description", "value": "The front of the lot faces desert." } ] @@ -47943,12 +56034,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Farm" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245512" }, { + "term": "Core.Description", "value": "The lot is, or has characteristics of a farm." } ] @@ -47959,12 +56053,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Few Trees" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Few+Trees" }, { + "term": "Core.Description", "value": "The lot has a few trees." } ] @@ -47975,12 +56072,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Flag Lot" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Flag+Lot" }, { + "term": "Core.Description", "value": "Named for the shape, a flag lot has a long driveway leading to the property, together may have the appearance of a pole and flag. The driveway in a flag lot typically runs between two other properties." } ] @@ -47991,12 +56091,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Front Yard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245515" }, { + "term": "Core.Description", "value": "The lot has a front yard." } ] @@ -48007,12 +56110,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garden" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245516" }, { + "term": "Core.Description", "value": "The lot has a garden." } ] @@ -48023,12 +56129,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gentle Sloping" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gentle+Sloping" }, { + "term": "Core.Description", "value": "The lot\u0027s slop is gentle." } ] @@ -48039,12 +56148,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Greenbelt" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Greenbelt" }, { + "term": "Core.Description", "value": "the lot is adjacent to a greenbelt." } ] @@ -48055,12 +56167,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Interior Lot" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Interior+Lot" }, { + "term": "Core.Description", "value": "Also referred to as an inside lot, an interior lot faces street on only one side." } ] @@ -48071,12 +56186,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Irregular Lot" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Irregular+Lot" }, { + "term": "Core.Description", "value": "The lot is not a rectangle." } ] @@ -48087,12 +56205,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Landscaped" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Landscaped" }, { + "term": "Core.Description", "value": "The lot has been fully or partially landscaped." } ] @@ -48103,12 +56224,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Level" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Level" }, { + "term": "Core.Description", "value": "The lot is level/flat." } ] @@ -48119,12 +56243,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Many Trees" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Many+Trees" }, { + "term": "Core.Description", "value": "The lot has many trees." } ] @@ -48135,12 +56262,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Meadow" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Meadow" }, { + "term": "Core.Description", "value": "The lot has a meadow." } ] @@ -48151,12 +56281,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Native Plants" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Native+Plants" }, { + "term": "Core.Description", "value": "The lot\u0027s landscaping includes native plants." } ] @@ -48167,12 +56300,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Near Golf Course" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Near+Golf+Course" }, { + "term": "Core.Description", "value": "The lot is near a golf course." } ] @@ -48183,12 +56319,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Near Public Transit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Near+Public+Transit" }, { + "term": "Core.Description", "value": "The lot is near public transportation." } ] @@ -48199,12 +56338,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "On Golf Course" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/On+Golf+Course" }, { + "term": "Core.Description", "value": "The lot is directly adjacent to a golf course." } ] @@ -48215,12 +56357,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open Lot" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Open+Lot" }, { + "term": "Core.Description", "value": "The lot is open." } ] @@ -48231,12 +56376,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Orchard(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245530" }, { + "term": "Core.Description", "value": "The lot includes one or more orchards." } ] @@ -48247,12 +56395,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245531" }, { + "term": "Core.Description", "value": "The lot has features other than those in this list." } ] @@ -48263,12 +56414,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pasture" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245532" }, { + "term": "Core.Description", "value": "The lot includes a pasture." } ] @@ -48279,12 +56433,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Paved" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245533" }, { + "term": "Core.Description", "value": "The lot is partially or fully paved." } ] @@ -48295,12 +56452,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pie Shaped Lot" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pie+Shaped+Lot" }, { + "term": "Core.Description", "value": "The lot is pie, or triangle shaped. Typically narrow at the front and wide at the back, the reverse, a wide front, could be referred to as pie shaped or reverse pie shaped." } ] @@ -48311,12 +56471,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245535" }, { + "term": "Core.Description", "value": "The lot is private or features that provide privacy form adjacent areas such as neighbors or roads." } ] @@ -48327,12 +56490,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rectangular Lot" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Rectangular+Lot" }, { + "term": "Core.Description", "value": "Also known as a regular shaped lot, the lot has is a rectangle or square." } ] @@ -48343,12 +56509,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rock Outcropping" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Rock+Outcropping" }, { + "term": "Core.Description", "value": "Rock features or barriers that transition a grading in the landscape." } ] @@ -48359,12 +56528,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rolling Slope" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Rolling+Slope" }, { + "term": "Core.Description", "value": "The slope of the property varies in a rolling or wavy fashion." } ] @@ -48375,12 +56547,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Secluded" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Secluded" }, { + "term": "Core.Description", "value": "The lot is secluded." } ] @@ -48391,12 +56566,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245540" }, { + "term": "Core.Description", "value": "See the remarks fields for additional information about the lot\u0027s features." } ] @@ -48407,12 +56585,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sloped" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sloped" }, { + "term": "Core.Description", "value": "The lot is sloped." } ] @@ -48423,12 +56604,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sloped Down" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sloped+Down" }, { + "term": "Core.Description", "value": "The lot is sloped down, typically from the perspective of looking at the property from the street." } ] @@ -48439,12 +56623,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sloped Up" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sloped+Up" }, { + "term": "Core.Description", "value": "The lot is sloped up, typically from the perspective of looking at the property from the street." } ] @@ -48455,12 +56642,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Split Possible" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Split+Possible" }, { + "term": "Core.Description", "value": "It may be possible that the lot could be split into two or more parcels." } ] @@ -48471,12 +56661,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sprinklers In Front" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sprinklers+In+Front" }, { + "term": "Core.Description", "value": "there are irrigation sprinklers on the front of the lot." } ] @@ -48487,12 +56680,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sprinklers In Rear" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sprinklers+In+Rear" }, { + "term": "Core.Description", "value": "there are irrigation sprinklers to the rear of the lot." } ] @@ -48503,12 +56699,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Steep Slope" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Steep+Slope" }, { + "term": "Core.Description", "value": "The lot is sloped steeply." } ] @@ -48519,12 +56718,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Subdivided" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Subdivided" }, { + "term": "Core.Description", "value": "The lot has been subdivided into two or more parcels." } ] @@ -48535,12 +56737,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Views" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Views" }, { + "term": "Core.Description", "value": "There are views from the lot." } ] @@ -48551,12 +56756,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Waterfall" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Waterfall" }, { + "term": "Core.Description", "value": "The lot has a waterfall." } ] @@ -48567,12 +56775,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Waterfront" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245551" }, { + "term": "Core.Description", "value": "The lot is located on a waterfront." } ] @@ -48583,12 +56794,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wetlands" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wetlands" }, { + "term": "Core.Description", "value": "The lot is located near or within wetlands." } ] @@ -48599,12 +56813,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wooded" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245553" }, { + "term": "Core.Description", "value": "The lot is wooded." } ] @@ -48615,12 +56832,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Zero Lot Line" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Zero+Lot+Line" }, { + "term": "Core.Description", "value": "The structure comes up to, or very near the property line. Attached single family residences, row homes, garden homes, patio homes all may be zero lot line homes." } ] @@ -48631,12 +56851,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Appraiser" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245418" }, { + "term": "Core.Description", "value": "An appraiser provided the measurement of the lot size." } ] @@ -48647,12 +56870,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assessor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245419" }, { + "term": "Core.Description", "value": "The assessor provided the measurement of the lot size." } ] @@ -48663,12 +56889,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Builder" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245420" }, { + "term": "Core.Description", "value": "The builder provided the measurement of the lot size." } ] @@ -48679,12 +56908,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Estimated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245421" }, { + "term": "Core.Description", "value": "The measurement of the lot size is an estimate." } ] @@ -48695,12 +56927,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245422" }, { + "term": "Core.Description", "value": "The measurement of the lot size was provided by another party not listed." } ] @@ -48711,12 +56946,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245423" }, { + "term": "Core.Description", "value": "The owner provided the measurement of the lot size." } ] @@ -48727,12 +56965,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Plans" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245424" }, { + "term": "Core.Description", "value": "The measurement of the lot size was taken from building plans." } ] @@ -48743,12 +56984,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public Records" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245425" }, { + "term": "Core.Description", "value": "The measurement of the lot size was received from public records." } ] @@ -48759,12 +57003,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245426" }, { + "term": "Core.Description", "value": "See remarks for information about the source of the lot size measurement." } ] @@ -48775,12 +57022,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Acres" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Acres" }, { + "term": "Core.Description", "value": "The value reported in the Lot Size Area field is in acres." } ] @@ -48791,12 +57041,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Square Feet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245429" }, { + "term": "Core.Description", "value": "The value reported in the Lot Size Area field is in square feet." } ] @@ -48807,12 +57060,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Square Meters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245430" }, { + "term": "Core.Description", "value": "The value reported in the Lot Size Area field is in square meters." } ] @@ -48833,12 +57089,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Active" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Active" }, { + "term": "Core.Description", "value": "The change to the listing was a change of status to Active provided the measurement of the area." } ] @@ -48849,12 +57108,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Active Under Contract" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Active+Under+Contract" }, { + "term": "Core.Description", "value": "The change to the listing was a change of status to Active Under Contract provided the measurement of the area." } ] @@ -48865,12 +57127,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Back On Market" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Back+On+Market" }, { + "term": "Core.Description", "value": "The change to the listing was a change of status to Back On Market provided the measurement of the area." } ] @@ -48881,12 +57146,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Canceled" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Canceled" }, { + "term": "Core.Description", "value": "The change to the listing was a change of status to Canceled provided the measurement of the area." } ] @@ -48897,12 +57165,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Closed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Closed" }, { + "term": "Core.Description", "value": "The change to the listing was a change of status to Closed provided the measurement of the area." } ] @@ -48913,12 +57184,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Deleted" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Deleted" }, { + "term": "Core.Description", "value": "The change to the listing was a change of status to Deleted provided the measurement of the area." } ] @@ -48929,12 +57203,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Expired" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Expired" }, { + "term": "Core.Description", "value": "The change to the listing was a change of status to Expired provided the measurement of the area." } ] @@ -48945,12 +57222,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hold" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hold" }, { + "term": "Core.Description", "value": "The change to the listing was a change of status to Hold provided the measurement of the area." } ] @@ -48961,12 +57241,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "New Listing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/New+Listing" }, { + "term": "Core.Description", "value": "The listing is new and hasn\u0027t had any status or price changes since its original input." } ] @@ -48977,12 +57260,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pending" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pending" }, { + "term": "Core.Description", "value": "The change to the listing was a change of status to Pending provided the measurement of the area." } ] @@ -48993,12 +57279,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Price Change" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Price+Change" }, { + "term": "Core.Description", "value": "The change to the listing was a change to the ListPrice." } ] @@ -49009,12 +57298,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Withdrawn" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Withdrawn" }, { + "term": "Core.Description", "value": "The change to the listing was a change of status to Withdrawn provided the measurement of the area." } ] @@ -49040,12 +57332,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245646" }, { + "term": "Core.Description", "value": "The occupant is the owner." } ] @@ -49056,12 +57351,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tenant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tenant" }, { + "term": "Core.Description", "value": "The occupant is a tenant." } ] @@ -49072,12 +57370,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vacant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Vacant" }, { + "term": "Core.Description", "value": "The property is vacant." } ] @@ -49088,12 +57389,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accounting" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245673" }, { + "term": "Core.Description", "value": "The operating expense amount includes accounting costs." } ] @@ -49104,12 +57408,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Advertising" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245674" }, { + "term": "Core.Description", "value": "The operating expense amount includes advertising costs." } ] @@ -49120,12 +57427,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245675" }, { + "term": "Core.Description", "value": "The operating expense amount includes association costs." } ] @@ -49136,12 +57446,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cable TV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245676" }, { + "term": "Core.Description", "value": "The operating expense amount includes cable TV costs." } ] @@ -49152,12 +57465,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Capital Improvements" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Capital+Improvements" }, { + "term": "Core.Description", "value": "The operating expense amount includes capital improvements costs." } ] @@ -49168,12 +57484,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Depreciation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Depreciation" }, { + "term": "Core.Description", "value": "The operating expense amount includes depreciation costs." } ] @@ -49184,12 +57503,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Equipment Rental" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Equipment+Rental" }, { + "term": "Core.Description", "value": "The operating expense amount includes equipment rental costs." } ] @@ -49200,12 +57522,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fuel" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fuel" }, { + "term": "Core.Description", "value": "The operating expense amount includes fuel costs." } ] @@ -49216,12 +57541,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Furniture Replacement" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Furniture+Replacement" }, { + "term": "Core.Description", "value": "The operating expense amount includes furniture replacement costs." } ] @@ -49232,12 +57560,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gardener" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gardener" }, { + "term": "Core.Description", "value": "The operating expense amount includes gardener costs." } ] @@ -49248,12 +57579,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Insurance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245683" }, { + "term": "Core.Description", "value": "The operating expense amount includes insurance costs." } ] @@ -49264,12 +57598,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Legal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Legal" }, { + "term": "Core.Description", "value": "The operating expense amount includes legal costs." } ] @@ -49280,12 +57617,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Licenses" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Licenses" }, { + "term": "Core.Description", "value": "The operating expense amount includes licenses costs." } ] @@ -49296,12 +57636,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maintenance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Maintenance" }, { + "term": "Core.Description", "value": "The operating expense amount includes maintenance costs." } ] @@ -49312,12 +57655,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maintenance Grounds" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245687" }, { + "term": "Core.Description", "value": "The operating expense amount includes maintenance grounds costs." } ] @@ -49328,12 +57674,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maintenance Structure" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Maintenance+Structure" }, { + "term": "Core.Description", "value": "The operating expense amount includes maintenance structure costs." } ] @@ -49344,12 +57693,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Manager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Manager" }, { + "term": "Core.Description", "value": "The operating expense amount includes manager costs." } ] @@ -49360,12 +57712,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mortgage/Loans" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245690" }, { + "term": "Core.Description", "value": "The operating expense amount includes mortgage/loans costs." } ] @@ -49376,12 +57731,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "New Tax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/New+Tax" }, { + "term": "Core.Description", "value": "The operating expense amount includes new tax costs." } ] @@ -49392,12 +57750,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245692" }, { + "term": "Core.Description", "value": "The operating expense amount includes other costs." } ] @@ -49408,12 +57769,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Parking" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245693" }, { + "term": "Core.Description", "value": "The operating expense amount includes parking costs." } ] @@ -49424,12 +57788,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pest Control" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245694" }, { + "term": "Core.Description", "value": "The operating expense amount includes pest control costs." } ] @@ -49440,12 +57807,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool/Spa" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245695" }, { + "term": "Core.Description", "value": "The operating expense amount includes pool/spa costs." } ] @@ -49456,12 +57826,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Professional Management" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Professional+Management" }, { + "term": "Core.Description", "value": "The operating expense amount includes professional management costs." } ] @@ -49472,12 +57845,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245697" }, { + "term": "Core.Description", "value": "The operating expense amount includes security costs." } ] @@ -49488,12 +57864,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Snow Removal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245698" }, { + "term": "Core.Description", "value": "The operating expense amount includes snow removal costs." } ] @@ -49504,12 +57883,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Staff" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Staff" }, { + "term": "Core.Description", "value": "The operating expense amount includes staff costs." } ] @@ -49520,12 +57902,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Supplies" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Supplies" }, { + "term": "Core.Description", "value": "The operating expense amount includes supplies costs." } ] @@ -49536,12 +57921,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trash" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245701" }, { + "term": "Core.Description", "value": "The operating expense amount includes trash costs." } ] @@ -49552,12 +57940,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Utilities" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245702" }, { + "term": "Core.Description", "value": "The operating expense amount includes utilities costs." } ] @@ -49568,12 +57959,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vacancy Allowance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Vacancy+Allowance" }, { + "term": "Core.Description", "value": "The operating expense amount includes vacancy allowance costs." } ] @@ -49584,12 +57978,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water/Sewer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245704" }, { + "term": "Core.Description", "value": "The operating expense amount includes water/sewer costs." } ] @@ -49600,12 +57997,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Workmans Compensation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Workmans+Compensation" }, { + "term": "Core.Description", "value": "The operating expense amount includes workman\u0027s compensation costs." } ] @@ -49616,12 +58016,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Air Purifier" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Air+Purifier" }, { + "term": "Core.Description", "value": "The property includes an air purifier." } ] @@ -49632,12 +58035,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Call Listing Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245816" }, { + "term": "Core.Description", "value": "Call the listing agent for more information about other equipment included with the property." } ] @@ -49648,12 +58054,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Compressor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Compressor" }, { + "term": "Core.Description", "value": "The property includes a compressor." } ] @@ -49664,12 +58073,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "DC Well Pump" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DC+Well+Pump" }, { + "term": "Core.Description", "value": "The property includes a DC well pump." } ] @@ -49680,12 +58092,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dehumidifier" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dehumidifier" }, { + "term": "Core.Description", "value": "The property includes a dehumidifier." } ] @@ -49696,12 +58111,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Farm Equipment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Farm+Equipment" }, { + "term": "Core.Description", "value": "The property includes farm equipment." } ] @@ -49712,12 +58130,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fuel Tank(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245821" }, { + "term": "Core.Description", "value": "The property includes a fuel tank(s)." } ] @@ -49728,12 +58149,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Generator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245822" }, { + "term": "Core.Description", "value": "The property includes a generator." } ] @@ -49744,12 +58168,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home Theater" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Home+Theater" }, { + "term": "Core.Description", "value": "The property includes a home theater." } ] @@ -49760,12 +58187,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Intercom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Intercom" }, { + "term": "Core.Description", "value": "The property includes an intercom." } ] @@ -49776,12 +58206,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Irrigation Equipment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Irrigation+Equipment" }, { + "term": "Core.Description", "value": "The property includes irrigation equipment." } ] @@ -49792,12 +58225,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "List Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/List+Available" }, { + "term": "Core.Description", "value": "A list of other equipment included with the property is available upon request." } ] @@ -49808,12 +58244,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Livestock Equipment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Livestock+Equipment" }, { + "term": "Core.Description", "value": "The property includes livestock equipment." } ] @@ -49824,12 +58263,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Negotiable" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245828" }, { + "term": "Core.Description", "value": "The other equipment included with the property is negotiable." } ] @@ -49840,12 +58282,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245829" }, { + "term": "Core.Description", "value": "There is no other equipment included with the property." } ] @@ -49856,12 +58301,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Orchard Equipment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Orchard+Equipment" }, { + "term": "Core.Description", "value": "The property includes orchard equipment." } ] @@ -49872,12 +58320,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245831" }, { + "term": "Core.Description", "value": "The property includes equipment other than what\u0027s included in this list." } ] @@ -49888,12 +58339,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rotary Antenna" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Rotary+Antenna" }, { + "term": "Core.Description", "value": "The property includes a rotary antenna." } ] @@ -49904,12 +58358,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Satellite Dish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Satellite+Dish" }, { + "term": "Core.Description", "value": "The property includes a satellite dish." } ] @@ -49920,12 +58377,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TV Antenna" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TV+Antenna" }, { + "term": "Core.Description", "value": "The property includes a TV antenna." } ] @@ -49936,12 +58396,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Varies by Unit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245835" }, { + "term": "Core.Description", "value": "The equipment included with the property varies from unit to unit." } ] @@ -49952,12 +58415,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Airplane Hangar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Airplane+Hangar" }, { + "term": "Core.Description", "value": "The property includes an airplane hangar." } ] @@ -49968,12 +58434,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Arena" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Arena" }, { + "term": "Core.Description", "value": "The property includes an arena." } ] @@ -49984,12 +58453,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Barn(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245763" }, { + "term": "Core.Description", "value": "The property includes a barn(s)." } ] @@ -50000,12 +58472,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Boat House" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Boat+House" }, { + "term": "Core.Description", "value": "The property includes a boat house." } ] @@ -50016,12 +58491,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cabana" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cabana" }, { + "term": "Core.Description", "value": "The property includes a cabana." } ] @@ -50032,12 +58510,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cave(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245766" }, { + "term": "Core.Description", "value": "The property includes a cave(s)." } ] @@ -50048,12 +58529,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Corral(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245767" }, { + "term": "Core.Description", "value": "The property includes a corral(s)." } ] @@ -50064,12 +58548,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Covered Arena" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Covered+Arena" }, { + "term": "Core.Description", "value": "The property includes a covered arena." } ] @@ -50080,12 +58567,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garage(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245769" }, { + "term": "Core.Description", "value": "The property includes a garage(s)." } ] @@ -50096,12 +58586,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gazebo" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gazebo" }, { + "term": "Core.Description", "value": "The property includes a gazebo." } ] @@ -50112,12 +58605,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Grain Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Grain+Storage" }, { + "term": "Core.Description", "value": "The property includes grain storage." } ] @@ -50128,12 +58624,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Greenhouse" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Greenhouse" }, { + "term": "Core.Description", "value": "The property includes a greenhouse." } ] @@ -50144,12 +58643,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Guest House" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Guest+House" }, { + "term": "Core.Description", "value": "The property includes a guest house." } ] @@ -50160,12 +58662,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kennel/Dog Run" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245774" }, { + "term": "Core.Description", "value": "The property includes a kennel or dog run." } ] @@ -50176,12 +58681,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mobile Home" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245775" }, { + "term": "Core.Description", "value": "The property includes a mobile home." } ] @@ -50192,12 +58700,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245776" }, { + "term": "Core.Description", "value": "The property has no other structures." } ] @@ -50208,12 +58719,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245777" }, { + "term": "Core.Description", "value": "The property includes a structure other than those included in this list." } ] @@ -50224,12 +58738,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Outbuilding" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Outbuilding" }, { + "term": "Core.Description", "value": "The property includes an outbuilding." } ] @@ -50240,12 +58757,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Outdoor Kitchen" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Outdoor+Kitchen" }, { + "term": "Core.Description", "value": "The property includes an outdoor kitchen." } ] @@ -50256,12 +58776,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Packing Shed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Packing+Shed" }, { + "term": "Core.Description", "value": "The property includes a packing shed." } ] @@ -50272,12 +58795,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pergola" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pergola" }, { + "term": "Core.Description", "value": "The property includes a pergola." } ] @@ -50288,12 +58814,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool House" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pool+House" }, { + "term": "Core.Description", "value": "The property includes a pool house." } ] @@ -50304,12 +58833,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Poultry Coop" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Poultry+Coop" }, { + "term": "Core.Description", "value": "The property includes a poultry coop." } ] @@ -50320,12 +58852,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residence" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Residence" }, { + "term": "Core.Description", "value": "The property includes a residence structure." } ] @@ -50336,12 +58871,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RV/Boat Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245785" }, { + "term": "Core.Description", "value": "The property includes RV or boat storage." } ] @@ -50352,12 +58890,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Second Garage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Second+Garage" }, { + "term": "Core.Description", "value": "The property includes a second garage." } ] @@ -50368,12 +58909,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Second Residence" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Second+Residence" }, { + "term": "Core.Description", "value": "The property includes a second residence." } ] @@ -50384,12 +58928,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245788" }, { + "term": "Core.Description", "value": "See the Public or Private Remarks for information about other structures on the property." } ] @@ -50400,12 +58947,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Shed(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245789" }, { + "term": "Core.Description", "value": "The property includes a shed(s)." } ] @@ -50416,12 +58966,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stable(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245790" }, { + "term": "Core.Description", "value": "The property includes stable(s)." } ] @@ -50432,12 +58985,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245791" }, { + "term": "Core.Description", "value": "The property includes storage." } ] @@ -50448,12 +59004,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tennis Court(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245792" }, { + "term": "Core.Description", "value": "The property includes a tennis court(s)." } ] @@ -50464,12 +59023,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Workshop" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245793" }, { + "term": "Core.Description", "value": "The property includes a workshop." } ] @@ -50480,12 +59042,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "All Utilities" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/All+Utilities" }, { + "term": "Core.Description", "value": "The owner/lessor pays for all utilities." } ] @@ -50496,12 +59061,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Fees" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Association+Fees" }, { + "term": "Core.Description", "value": "The owner/lessor pays for association fees." } ] @@ -50512,12 +59080,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cable TV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245709" }, { + "term": "Core.Description", "value": "The owner/lessor pays for cable television." } ] @@ -50528,12 +59099,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Common Area Maintenance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Common+Area+Maintenance" }, { + "term": "Core.Description", "value": "The owner/lessor pays for common area maintenance." } ] @@ -50544,12 +59118,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electricity" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245711" }, { + "term": "Core.Description", "value": "The owner/lessor pays for electricity." } ] @@ -50560,12 +59137,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exterior Maintenance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Exterior+Maintenance" }, { + "term": "Core.Description", "value": "The owner/lessor pays for exterior maintenance." } ] @@ -50576,12 +59156,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245713" }, { + "term": "Core.Description", "value": "The owner/lessor pays for gas." } ] @@ -50592,12 +59175,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Grounds Care" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Grounds+Care" }, { + "term": "Core.Description", "value": "The owner/lessor pays for grounds care." } ] @@ -50608,12 +59194,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hot Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hot+Water" }, { + "term": "Core.Description", "value": "The owner/lessor pays for hot water." } ] @@ -50624,12 +59213,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "HVAC Maintenance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HVAC+Maintenance" }, { + "term": "Core.Description", "value": "The owner/lessor pays for HVAC maintenance." } ] @@ -50640,12 +59232,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Insurance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245717" }, { + "term": "Core.Description", "value": "The owner/lessor pays for insurance." } ] @@ -50656,12 +59251,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Janitorial Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Janitorial+Service" }, { + "term": "Core.Description", "value": "The owner/lessor pays for janitorial service ." } ] @@ -50672,12 +59270,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Management" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Management" }, { + "term": "Core.Description", "value": "The owner/lessor pays for management." } ] @@ -50688,12 +59289,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245720" }, { + "term": "Core.Description", "value": "The owner/lessor pays for no utilities, services, etc." } ] @@ -50704,12 +59308,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245721" }, { + "term": "Core.Description", "value": "The owner/lessor pays for items that are not included in this list." } ] @@ -50720,12 +59327,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Tax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Other+Tax" }, { + "term": "Core.Description", "value": "The owner/lessor pays for other taxes." } ] @@ -50736,12 +59346,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Parking Fee" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Parking+Fee" }, { + "term": "Core.Description", "value": "The owner/lessor pays for parking fees." } ] @@ -50752,12 +59365,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pest Control" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245724" }, { + "term": "Core.Description", "value": "The owner/lessor pays for pest control." } ] @@ -50768,12 +59384,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool Maintenance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pool+Maintenance" }, { + "term": "Core.Description", "value": "The owner/lessor pays for pool maintenance." } ] @@ -50784,12 +59403,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Repairs" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Repairs" }, { + "term": "Core.Description", "value": "The owner/lessor pays for repairs." } ] @@ -50800,12 +59422,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Roof Maintenance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Roof+Maintenance" }, { + "term": "Core.Description", "value": "The owner/lessor pays for roof maintenance." } ] @@ -50816,12 +59441,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245728" }, { + "term": "Core.Description", "value": "The owner/lessor pays for security." } ] @@ -50832,12 +59460,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245729" }, { + "term": "Core.Description", "value": "See the listing\u0027s remarks for details on what the owner/lessor pays for." } ] @@ -50848,12 +59479,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sewer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245730" }, { + "term": "Core.Description", "value": "The owner/lessor pays for sewer." } ] @@ -50864,12 +59498,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Snow Removal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245731" }, { + "term": "Core.Description", "value": "The owner/lessor pays for snow removal." } ] @@ -50880,12 +59517,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Taxes" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Taxes" }, { + "term": "Core.Description", "value": "The owner/lessor pays for taxes." } ] @@ -50896,12 +59536,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Telephone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Telephone" }, { + "term": "Core.Description", "value": "The owner/lessor pays for telephone." } ] @@ -50912,12 +59555,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trash Collection" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Trash+Collection" }, { + "term": "Core.Description", "value": "The owner/lessor pays for trash collection." } ] @@ -50928,12 +59574,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245735" }, { + "term": "Core.Description", "value": "The owner/lessor pays for water." } ] @@ -50944,12 +59593,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Corporation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Corporation" }, { + "term": "Core.Description", "value": "The ownership type of the business being sold is a corporation." } ] @@ -50960,12 +59612,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LLC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LLC" }, { + "term": "Core.Description", "value": "The ownership type of the business being sold is a limited liability corporation." } ] @@ -50976,12 +59631,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Partnership" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Partnership" }, { + "term": "Core.Description", "value": "The ownership type of the business being sold is a partnership." } ] @@ -50992,12 +59650,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sole Proprietor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sole+Proprietor" }, { + "term": "Core.Description", "value": "The ownership type of the business being sold is a sole proprietor." } ] @@ -51008,12 +59669,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Additional Parking" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Additional+Parking" }, { + "term": "Core.Description", "value": "The property has additional parking." } ] @@ -51024,12 +59688,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Aggregate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Aggregate" }, { + "term": "Core.Description", "value": "While aggregate is a type of concrete, it is different in application, maintenance and durability. Aggregate, aka exposed aggregate concrete, is a mixture poured much in the same way as concrete, but which later has its top surface removed in order to expose the aggregate underneath." } ] @@ -51040,12 +59707,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Alley Access" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Alley+Access" }, { + "term": "Core.Description", "value": "The property has alley access." } ] @@ -51056,12 +59726,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Asphalt" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245967" }, { + "term": "Core.Description", "value": "The property has asphalt parking." } ] @@ -51072,12 +59745,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assigned" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Assigned" }, { + "term": "Core.Description", "value": "The property has assigned parking spaces." } ] @@ -51088,12 +59764,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Attached" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Attached" }, { + "term": "Core.Description", "value": "The property has attached parking." } ] @@ -51104,12 +59783,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Attached Carport" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Attached+Carport" }, { + "term": "Core.Description", "value": "The property has an attached carport." } ] @@ -51120,12 +59802,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Basement" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246035" }, { + "term": "Core.Description", "value": "A basement garage is partially or mostly below grade, with its entrance level with the basement floor." } ] @@ -51136,12 +59821,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Boat" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Boat" }, { + "term": "Core.Description", "value": "The property has a space to park/store a boat." } ] @@ -51152,12 +59840,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Carport" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Carport" }, { + "term": "Core.Description", "value": "The property has a carport." } ] @@ -51168,12 +59859,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Circular Driveway" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Circular+Driveway" }, { + "term": "Core.Description", "value": "The property has a circular driveway." } ] @@ -51184,12 +59878,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Common" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Common" }, { + "term": "Core.Description", "value": "The property has common/shared parking." } ] @@ -51200,12 +59897,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Community Structure" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Community+Structure" }, { + "term": "Core.Description", "value": "The property has a community parking structure." } ] @@ -51216,12 +59916,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concrete" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245976" }, { + "term": "Core.Description", "value": "The property has concrete paved parking." } ] @@ -51232,12 +59935,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Converted Garage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Converted+Garage" }, { + "term": "Core.Description", "value": "The property has a converted garage." } ] @@ -51248,12 +59954,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Covered" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Covered" }, { + "term": "Core.Description", "value": "The property has covered parking." } ] @@ -51264,12 +59973,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Deck" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245979" }, { + "term": "Core.Description", "value": "The property has deck for parking." } ] @@ -51280,12 +59992,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Deeded" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Deeded" }, { + "term": "Core.Description", "value": "The property has deeded parking." } ] @@ -51296,12 +60011,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Detached" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Detached" }, { + "term": "Core.Description", "value": "The property has detached parking." } ] @@ -51312,12 +60030,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Detached Carport" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Detached+Carport" }, { + "term": "Core.Description", "value": "The property has a detached carport." } ] @@ -51328,12 +60049,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Direct Access" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Direct+Access" }, { + "term": "Core.Description", "value": "The parking has direct access to the property or structure." } ] @@ -51344,12 +60068,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Drive Through" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Drive+Through" }, { + "term": "Core.Description", "value": "The property has drive through parking." } ] @@ -51360,12 +60087,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Driveway" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Driveway" }, { + "term": "Core.Description", "value": "The property has a driveway." } ] @@ -51376,12 +60106,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric Gate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electric+Gate" }, { + "term": "Core.Description", "value": "The property has an electric gate." } ] @@ -51392,12 +60125,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric Vehicle Charging Station(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245987" }, { + "term": "Core.Description", "value": "The property has one or more electric vehicle charging station." } ] @@ -51408,12 +60144,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Enclosed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Enclosed" }, { + "term": "Core.Description", "value": "The property has enclosed parking." } ] @@ -51424,12 +60163,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245989" }, { + "term": "Core.Description", "value": "The property has a garage." } ] @@ -51440,12 +60182,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garage Door Opener" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Garage+Door+Opener" }, { + "term": "Core.Description", "value": "The garage has an automatic garage door opener." } ] @@ -51456,12 +60201,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garage Faces Front" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Garage+Faces+Front" }, { + "term": "Core.Description", "value": "The property has garage that faces the front of the property." } ] @@ -51472,12 +60220,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garage Faces Rear" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Garage+Faces+Rear" }, { + "term": "Core.Description", "value": "The property has garage that faces the rear of the property." } ] @@ -51488,12 +60239,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garage Faces Side" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Garage+Faces+Side" }, { + "term": "Core.Description", "value": "The property has garage that faces the side of the property." } ] @@ -51504,12 +60258,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245994" }, { + "term": "Core.Description", "value": "The property has gated parking." } ] @@ -51520,12 +60277,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Golf Cart Garage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Golf+Cart+Garage" }, { + "term": "Core.Description", "value": "The property has a golf cart garage." } ] @@ -51536,12 +60296,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gravel" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245996" }, { + "term": "Core.Description", "value": "The property has parking on gravel." } ] @@ -51552,12 +60315,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Guest" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Guest" }, { + "term": "Core.Description", "value": "The property has guest parking." } ] @@ -51568,12 +60334,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Heated Garage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Heated+Garage" }, { + "term": "Core.Description", "value": "The property has a heated garage." } ] @@ -51584,12 +60353,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Inside Entrance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Inside+Entrance" }, { + "term": "Core.Description", "value": "The property has parking with an inside entrance." } ] @@ -51600,12 +60372,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kitchen Level" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kitchen+Level" }, { + "term": "Core.Description", "value": "The property has parking at the kitchen level." } ] @@ -51616,12 +60391,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Leased" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Leased" }, { + "term": "Core.Description", "value": "The property has leased parking." } ] @@ -51632,12 +60410,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lighted" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lighted" }, { + "term": "Core.Description", "value": "The property has lighted parking." } ] @@ -51648,12 +60429,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "No Garage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/No+Garage" }, { + "term": "Core.Description", "value": "The property has no garage." } ] @@ -51664,12 +60448,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246004" }, { + "term": "Core.Description", "value": "The property does not include parking or no parking is available." } ] @@ -51680,12 +60467,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Off Site" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Off+Site" }, { + "term": "Core.Description", "value": "The property has off site parking." } ] @@ -51696,12 +60486,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Off Street" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Off+Street" }, { + "term": "Core.Description", "value": "The property has off street parking." } ] @@ -51712,12 +60505,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "On Site" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/On+Site" }, { + "term": "Core.Description", "value": "The property has on site parking." } ] @@ -51728,12 +60524,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "On Street" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/On+Street" }, { + "term": "Core.Description", "value": "The property has on street parking only." } ] @@ -51744,12 +60543,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246009" }, { + "term": "Core.Description", "value": "The property has open or unassigned parking." } ] @@ -51760,12 +60562,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246010" }, { + "term": "Core.Description", "value": "The property has parking features other than those included in this list." } ] @@ -51776,12 +60581,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Outside" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246011" }, { + "term": "Core.Description", "value": "The property has outside parking which is not enclosed." } ] @@ -51792,12 +60600,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Oversized" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Oversized" }, { + "term": "Core.Description", "value": "The property has parking for oversized vehicles." } ] @@ -51808,12 +60619,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Parking Lot" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Parking+Lot" }, { + "term": "Core.Description", "value": "The property has access to a parking lot." } ] @@ -51824,12 +60638,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Parking Pad" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Parking+Pad" }, { + "term": "Core.Description", "value": "The property has a parking pad." } ] @@ -51840,12 +60657,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Paved" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246015" }, { + "term": "Core.Description", "value": "The property has paved parking." } ] @@ -51856,12 +60676,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Paver Block" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Paver+Block" }, { + "term": "Core.Description", "value": "The property has parking on paver blocks." } ] @@ -51872,12 +60695,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Permit Required" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Permit+Required" }, { + "term": "Core.Description", "value": "Parking at the property or on the street requires a permit." } ] @@ -51888,12 +60714,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246018" }, { + "term": "Core.Description", "value": "The property has private parking." } ] @@ -51904,12 +60733,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RV Access/Parking" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246019" }, { + "term": "Core.Description", "value": "The property has access/parking for recreational vehicles." } ] @@ -51920,12 +60752,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RV Carport" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RV+Carport" }, { + "term": "Core.Description", "value": "The property has a carport for recreational vehicles." } ] @@ -51936,12 +60771,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RV Garage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RV+Garage" }, { + "term": "Core.Description", "value": "The property has a garage for recreational vehicles." } ] @@ -51952,12 +60790,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RV Gated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RV+Gated" }, { + "term": "Core.Description", "value": "The property has gated parking for recreational vehicles." } ] @@ -51968,12 +60809,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Secured" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Secured" }, { + "term": "Core.Description", "value": "The property has secure parking." } ] @@ -51984,12 +60828,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246024" }, { + "term": "Core.Description", "value": "See remarks for additional information about parking." } ] @@ -52000,12 +60847,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Shared Driveway" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Shared+Driveway" }, { + "term": "Core.Description", "value": "The property has a shared driveway." } ] @@ -52016,12 +60866,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Side By Side" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Side+By+Side" }, { + "term": "Core.Description", "value": "The property has side by side parking spaces." } ] @@ -52032,12 +60885,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246027" }, { + "term": "Core.Description", "value": "The property has storage in the parking area." } ] @@ -52048,12 +60904,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tandem" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tandem" }, { + "term": "Core.Description", "value": "The property has tandem parking." } ] @@ -52064,12 +60923,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unassigned" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Unassigned" }, { + "term": "Core.Description", "value": "The property has unassigned or open parking." } ] @@ -52080,12 +60942,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Underground" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246030" }, { + "term": "Core.Description", "value": "The property has underground parking." } ] @@ -52096,12 +60961,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unpaved" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Unpaved" }, { + "term": "Core.Description", "value": "The property has parking on an unpaved surface." } ] @@ -52112,12 +60980,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Valet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Valet" }, { + "term": "Core.Description", "value": "The property has valet parking available." } ] @@ -52128,12 +60999,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Varies by Unit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246033" }, { + "term": "Core.Description", "value": "The parking varies from unit to unit." } ] @@ -52144,12 +61018,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Workshop in Garage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Workshop+in+Garage" }, { + "term": "Core.Description", "value": "The property has workshop in the garage." } ] @@ -52160,12 +61037,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Awning(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246038" }, { + "term": "Core.Description", "value": "The property has awning(s)." } ] @@ -52176,12 +61056,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Covered" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246039" }, { + "term": "Core.Description", "value": "The property has a covered patio or porch." } ] @@ -52192,12 +61075,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Deck" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246040" }, { + "term": "Core.Description", "value": "The property has a deck." } ] @@ -52208,12 +61094,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Enclosed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246041" }, { + "term": "Core.Description", "value": "The property has an enclosed patio or porch." } ] @@ -52224,12 +61113,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Front Porch" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Front+Porch" }, { + "term": "Core.Description", "value": "The property has a front porch." } ] @@ -52240,12 +61132,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Glass Enclosed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Glass+Enclosed" }, { + "term": "Core.Description", "value": "The property has a glass enclosed patio or porch." } ] @@ -52256,12 +61151,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246044" }, { + "term": "Core.Description", "value": "The property has no patio or porch." } ] @@ -52272,12 +61170,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246045" }, { + "term": "Core.Description", "value": "The property has a patio or porch feature other than what\u0027s included in this list." } ] @@ -52288,12 +61189,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Patio" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246046" }, { + "term": "Core.Description", "value": "The property has a patio." } ] @@ -52304,12 +61208,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Porch" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Porch" }, { + "term": "Core.Description", "value": "The property has a porch." } ] @@ -52320,12 +61227,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rear Porch" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Rear+Porch" }, { + "term": "Core.Description", "value": "The property has a rear porch." } ] @@ -52336,12 +61246,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Screened" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Screened" }, { + "term": "Core.Description", "value": "The property has screened patio or porch." } ] @@ -52352,12 +61265,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246050" }, { + "term": "Core.Description", "value": "See the remarks fields for more information on the patio or porch features of the property." } ] @@ -52368,12 +61284,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Side Porch" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Side+Porch" }, { + "term": "Core.Description", "value": "The property has a side porch." } ] @@ -52384,12 +61303,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Terrace" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Terrace" }, { + "term": "Core.Description", "value": "The property has a terrace." } ] @@ -52400,12 +61322,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wrap Around" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wrap+Around" }, { + "term": "Core.Description", "value": "The property has wrap around patio or porch." } ] @@ -52416,12 +61341,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Breed Restrictions" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Breed+Restrictions" }, { + "term": "Core.Description", "value": "There are breed restrictions on allowed pets." } ] @@ -52432,12 +61360,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Call" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Call" }, { + "term": "Core.Description", "value": "Call to inquire about pet restrictions." } ] @@ -52448,12 +61379,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cats OK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cats+OK" }, { + "term": "Core.Description", "value": "Cats are allowed." } ] @@ -52464,12 +61398,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dogs OK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dogs+OK" }, { + "term": "Core.Description", "value": "Dogs are allowed." } ] @@ -52480,12 +61417,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "No" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245842" }, { + "term": "Core.Description", "value": "No pets are allowed." } ] @@ -52496,12 +61436,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Number Limit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Number+Limit" }, { + "term": "Core.Description", "value": "There is a limit on the number of pets allowed." } ] @@ -52512,12 +61455,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Size Limit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Size+Limit" }, { + "term": "Core.Description", "value": "There are size restrictions on allowed pets." } ] @@ -52528,12 +61474,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Yes" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245845" }, { + "term": "Core.Description", "value": "All pets are allowed." } ] @@ -52544,12 +61493,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Above Ground" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Above+Ground" }, { + "term": "Core.Description", "value": "The pool is above ground." } ] @@ -52560,12 +61512,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246056" }, { + "term": "Core.Description", "value": "The pool is an association pool." } ] @@ -52576,12 +61531,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Black Bottom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Black+Bottom" }, { + "term": "Core.Description", "value": "The pool has a black bottom." } ] @@ -52592,12 +61550,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cabana" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246058" }, { + "term": "Core.Description", "value": "The pool has a cabana." } ] @@ -52608,12 +61569,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Community" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246059" }, { + "term": "Core.Description", "value": "The pool is a community/shared pool." } ] @@ -52624,12 +61588,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Diving Board" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Diving+Board" }, { + "term": "Core.Description", "value": "The pool has a diving board." } ] @@ -52640,12 +61607,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electric Heat" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electric+Heat" }, { + "term": "Core.Description", "value": "The pool is heated by electricity." } ] @@ -52656,12 +61626,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR Qualified pool pump" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+pool+pump" }, { + "term": "Core.Description", "value": "The pool has an ENERGY STAR Qualified pool pump." } ] @@ -52672,12 +61645,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fenced" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246063" }, { + "term": "Core.Description", "value": "The pool is fenced." } ] @@ -52688,12 +61664,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fiberglass" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246064" }, { + "term": "Core.Description", "value": "The pool is made of or lined with fiberglass." } ] @@ -52704,12 +61683,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Filtered" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Filtered" }, { + "term": "Core.Description", "value": "The pool has a filtration system." } ] @@ -52720,12 +61702,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas Heat" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gas+Heat" }, { + "term": "Core.Description", "value": "The pool is heated by gas." } ] @@ -52736,12 +61721,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gunite" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gunite" }, { + "term": "Core.Description", "value": "The pool has a gunite surface." } ] @@ -52752,12 +61740,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Heated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Heated" }, { + "term": "Core.Description", "value": "The pool is heated." } ] @@ -52768,12 +61759,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Indoor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Indoor" }, { + "term": "Core.Description", "value": "The pool is indoors or within a structure." } ] @@ -52784,12 +61778,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Infinity" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Infinity" }, { + "term": "Core.Description", "value": "Also named a negative edge, zero edge or infinity edge, an infinity pool has one or more edges where water flows over the edge creating a visual effect of water with no boundary." } ] @@ -52800,12 +61797,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "In Ground" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/In+Ground" }, { + "term": "Core.Description", "value": "The pool is built into the ground." } ] @@ -52816,12 +61816,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lap" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lap" }, { + "term": "Core.Description", "value": "The pool is specifically designed for swimming laps." } ] @@ -52832,12 +61835,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Liner" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Liner" }, { + "term": "Core.Description", "value": "The pool has a liner." } ] @@ -52848,12 +61854,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246074" }, { + "term": "Core.Description", "value": "There is no pool included with the property." } ] @@ -52864,12 +61873,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246075" }, { + "term": "Core.Description", "value": "There are pool features other than those included in this list." } ] @@ -52880,12 +61892,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Outdoor Pool" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Outdoor+Pool" }, { + "term": "Core.Description", "value": "The pool is outdoors." } ] @@ -52896,12 +61911,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool Cover" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pool+Cover" }, { + "term": "Core.Description", "value": "The pool has a cover." } ] @@ -52912,12 +61930,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool/Spa Combo" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246077" }, { + "term": "Core.Description", "value": "The pool includes a spa." } ] @@ -52928,12 +61949,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool Sweep" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pool+Sweep" }, { + "term": "Core.Description", "value": "The pool has an automatic sweep or cleaner." } ] @@ -52944,12 +61968,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246080" }, { + "term": "Core.Description", "value": "The pool is privately owned and/or secluded." } ] @@ -52960,12 +61987,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Salt Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Salt+Water" }, { + "term": "Core.Description", "value": "The pool has a salt water system." } ] @@ -52976,12 +62006,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Screen Enclosure" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Screen+Enclosure" }, { + "term": "Core.Description", "value": "The pool has a screened enclosure." } ] @@ -52992,12 +62025,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246084" }, { + "term": "Core.Description", "value": "See the remarks fields for more information about the pool." } ] @@ -53008,12 +62044,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Solar Cover" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Solar+Cover" }, { + "term": "Core.Description", "value": "The pool has a solar cover." } ] @@ -53024,12 +62063,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Solar Heat" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Solar+Heat" }, { + "term": "Core.Description", "value": "The pool has some form of solar heating." } ] @@ -53040,12 +62082,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sport" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sport" }, { + "term": "Core.Description", "value": "The pool has two shallow ends on opposite sides of the pool with a deeper center." } ] @@ -53056,12 +62101,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tile" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246088" }, { + "term": "Core.Description", "value": "The pool is tiled." } ] @@ -53072,12 +62120,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vinyl" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246089" }, { + "term": "Core.Description", "value": "The pool has a vinyl surface." } ] @@ -53088,12 +62139,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Waterfall" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246090" }, { + "term": "Core.Description", "value": "The pool has a waterfall." } ] @@ -53104,12 +62158,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Close Of Escrow" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Close+Of+Escrow" }, { + "term": "Core.Description", "value": "Possession is passed to the buyer at the close of escrow." } ] @@ -53120,12 +62177,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Close Plus 1 Day" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Close+Plus+1+Day" }, { + "term": "Core.Description", "value": "Possession is passed to the buyer one day after the close of escrow." } ] @@ -53136,12 +62196,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Close Plus 2 Days" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Close+Plus+2+Days" }, { + "term": "Core.Description", "value": "Possession is passed to the buyer two days after the close of escrow." } ] @@ -53152,12 +62215,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Close Plus 30 Days" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Close+Plus+30+Days" }, { + "term": "Core.Description", "value": "Possession is passed to the buyer 30 days after the close of escrow." } ] @@ -53168,12 +62234,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Close Plus 3 Days" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Close+Plus+3+Days" }, { + "term": "Core.Description", "value": "Possession is passed to the buyer 3 days after the close of escrow." } ] @@ -53184,12 +62253,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Close Plus 3 to 5 Days" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Close+Plus+3+to+5+Days" }, { + "term": "Core.Description", "value": "Possession is passed to the buyer 3 to 5 days after the close of escrow." } ] @@ -53200,12 +62272,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Negotiable" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245853" }, { + "term": "Core.Description", "value": "Timing of the passing of possession to the buyer is negotiable." } ] @@ -53216,12 +62291,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245858" }, { + "term": "Core.Description", "value": "A type of possession not included in this list." } ] @@ -53232,12 +62310,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rental Agreement" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Rental+Agreement" }, { + "term": "Core.Description", "value": "Possession is stipulated in the rental agreement." } ] @@ -53248,12 +62329,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245855" }, { + "term": "Core.Description", "value": "See the listing/agent remarks for more information on possession." } ] @@ -53264,12 +62348,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seller Rent Back" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Seller+Rent+Back" }, { + "term": "Core.Description", "value": "Possession is determined by the details of the seller rent back agreement, which is in most cases the seller will remain resident." } ] @@ -53280,12 +62367,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Subject To Tenant Rights" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Subject+To+Tenant+Rights" }, { + "term": "Core.Description", "value": "The terms of the transfer of possession are subject to the rights of the current tenant." } ] @@ -53296,12 +62386,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agricultural" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245919" }, { + "term": "Core.Description", "value": "The land could be used for agriculture." } ] @@ -53312,12 +62405,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cattle" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245920" }, { + "term": "Core.Description", "value": "The land could be used for cattle." } ] @@ -53328,12 +62424,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Commercial" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245921" }, { + "term": "Core.Description", "value": "The land could be used for commercial purposes." } ] @@ -53344,12 +62443,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dairy" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245922" }, { + "term": "Core.Description", "value": "The land could be used for a dairy farm." } ] @@ -53360,12 +62462,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Development" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Development" }, { + "term": "Core.Description", "value": "The land could be used for new development." } ] @@ -53376,12 +62481,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Farm" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245924" }, { + "term": "Core.Description", "value": "The land could be used for a farm." } ] @@ -53392,12 +62500,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fishery" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245925" }, { + "term": "Core.Description", "value": "The land could be used for a fishery." } ] @@ -53408,12 +62519,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Grazing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245926" }, { + "term": "Core.Description", "value": "The land could be used for livestock grazing." } ] @@ -53424,12 +62538,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Highway/Tourist Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245927" }, { + "term": "Core.Description", "value": "The land could be used for a highway/tourist service." } ] @@ -53440,12 +62557,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Horses" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245928" }, { + "term": "Core.Description", "value": "The land could be used for horses." } ] @@ -53456,12 +62576,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hunting" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245929" }, { + "term": "Core.Description", "value": "The land could be used for hunting." } ] @@ -53472,12 +62595,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Industrial" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245930" }, { + "term": "Core.Description", "value": "The land could be used for industrial purposes." } ] @@ -53488,12 +62614,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Investment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245931" }, { + "term": "Core.Description", "value": "The land could be used as an investment land." } ] @@ -53504,12 +62633,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Livestock" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245932" }, { + "term": "Core.Description", "value": "The land could be used for livestock." } ] @@ -53520,12 +62652,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Manufactured Home" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245933" }, { + "term": "Core.Description", "value": "The land could be used for manufactured home(s)." } ] @@ -53536,12 +62671,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mini-Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245934" }, { + "term": "Core.Description", "value": "The land could be used for mini-storage." } ] @@ -53552,12 +62690,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Multi-Family" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245935" }, { + "term": "Core.Description", "value": "The land could be used for multi-family home(s)." } ] @@ -53568,12 +62709,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Orchard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245936" }, { + "term": "Core.Description", "value": "The land could be used for an orchard." } ] @@ -53584,12 +62728,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245937" }, { + "term": "Core.Description", "value": "The land could be used for a purpose other than those in this list." } ] @@ -53600,12 +62747,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pasture" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245938" }, { + "term": "Core.Description", "value": "The land could be used as a pasture." } ] @@ -53616,12 +62766,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Place of Worship" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245939" }, { + "term": "Core.Description", "value": "The land could be used for place of worship." } ] @@ -53632,12 +62785,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Poultry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245940" }, { + "term": "Core.Description", "value": "The land could be used for poultry." } ] @@ -53648,12 +62804,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ranch" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245941" }, { + "term": "Core.Description", "value": "The land could be used as a ranch." } ] @@ -53664,12 +62823,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Recreational" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245942" }, { + "term": "Core.Description", "value": "The land could be used for recreational purposes." } ] @@ -53680,12 +62842,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245943" }, { + "term": "Core.Description", "value": "The land could be used for residential purposes." } ] @@ -53696,12 +62861,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Retail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245944" }, { + "term": "Core.Description", "value": "The land could be used for retail business." } ] @@ -53712,12 +62880,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245945" }, { + "term": "Core.Description", "value": "See the Public or Private remarks for details on possible uses for the land." } ] @@ -53728,12 +62899,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Single Family" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245946" }, { + "term": "Core.Description", "value": "The land could be used for single family residence(s)." } ] @@ -53744,12 +62918,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Subdevelopment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Subdevelopment" }, { + "term": "Core.Description", "value": "The land could be used for subdevelopment(s)." } ] @@ -53760,12 +62937,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Timber" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245948" }, { + "term": "Core.Description", "value": "The land could be used for timber." } ] @@ -53776,12 +62956,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unimproved" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245949" }, { + "term": "Core.Description", "value": "The land could be kept undeveloped." } ] @@ -53792,12 +62975,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vacant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245950" }, { + "term": "Core.Description", "value": "The land could be kept vacant." } ] @@ -53808,12 +62994,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Warehouse" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245951" }, { + "term": "Core.Description", "value": "The land could be used for warehousing." } ] @@ -53829,12 +63018,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Photovoltaics" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Photovoltaics" }, { + "term": "Core.Description", "value": "Solar photovoltaic (PV) devices which generate electricity directly from sunlight via an electronic process that occurs naturally in certain types of material, called semiconductors. Powers electrical devices or sends electricity to the grid. See: \u003ca href\u003d\"http://www.seia.org/policy/solar-technology/photovoltaic-solar-electric\"\u003ehttp://www.seia.org/policy/solar-technology/photovoltaic-solar-electric\u003c/a\u003e" } ] @@ -53845,12 +63037,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wind" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245865" }, { + "term": "Core.Description", "value": "Renewable form of onsite power generation. Wind turbines use wind to make electricity. Powers electrical devices or sends electricity to the grid. http://energy.gov/eere/wind/how-do-wind-turbines-work" } ] @@ -53861,12 +63056,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fixer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fixer" }, { + "term": "Core.Description", "value": "The property is a \"fixer\" or property in need of moderate or extensive repair." } ] @@ -53877,12 +63075,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "New Construction" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/New+Construction" }, { + "term": "Core.Description", "value": "The property is newly built." } ] @@ -53893,12 +63094,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Under Construction" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Under+Construction" }, { + "term": "Core.Description", "value": "The property is still under construction and building has not been completed." } ] @@ -53909,12 +63113,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Updated/Remodeled" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245870" }, { + "term": "Core.Description", "value": "The property has been remolded or updated is some fashion." } ] @@ -53925,12 +63132,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agriculture" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245890" }, { + "term": "Core.Description", "value": "The property is for farming and agricultural activities." } ] @@ -53941,12 +63151,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Apartment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Apartment" }, { + "term": "Core.Description", "value": "A unit within a wholly owned structure of 5 or more units. This may not be used for Residential or Residential Income. For Residential use Condo. For Income used Residential Income." } ] @@ -53957,12 +63170,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Boat Slip" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Boat+Slip" }, { + "term": "Core.Description", "value": "A place where you can tie up a boat or house boat." } ] @@ -53973,12 +63189,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Business" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245891" }, { + "term": "Core.Description", "value": "The property is designed for any type of business." } ] @@ -53989,12 +63208,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cabin" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cabin" }, { + "term": "Core.Description", "value": "A single family residence that may have limited utilities." } ] @@ -54005,12 +63227,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Condominium" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Condominium" }, { + "term": "Core.Description", "value": "A unit within a structure where ownership is on a unit by unit basis." } ] @@ -54021,12 +63246,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Deeded Parking" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Deeded+Parking" }, { + "term": "Core.Description", "value": "A parking space (or spaces) that are owned and separate from a residence." } ] @@ -54037,12 +63265,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Duplex" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Duplex" }, { + "term": "Core.Description", "value": "A multi family structure with two independent units with a shared wall or ceiling/floor." } ] @@ -54053,12 +63284,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Farm" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245878" }, { + "term": "Core.Description", "value": "A place where agricultural and similar activities take place, especially the growing of crops." } ] @@ -54069,12 +63303,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hotel/Motel" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hotel-Motel" }, { + "term": "Core.Description", "value": "The property is designed for hotel or motel use." } ] @@ -54085,12 +63322,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Industrial" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245893" }, { + "term": "Core.Description", "value": "The property is designed for industrial use." } ] @@ -54101,12 +63341,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Manufactured Home" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Manufactured+Home" }, { + "term": "Core.Description", "value": "A factory built house that is transported to the lot." } ] @@ -54117,12 +63360,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Manufactured On Land" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Manufactured+On+Land" }, { + "term": "Core.Description", "value": "A factory built house that is transported to the lot and sold with the land. The property may or may not have a 433a certification." } ] @@ -54133,12 +63379,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mixed Use" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Mixed+Use" }, { + "term": "Core.Description", "value": "The property is designed be used in more than one way. i.e. Office and Retail." } ] @@ -54149,12 +63398,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mobile Home" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Mobile+Home" }, { + "term": "Core.Description", "value": "A factory built house that is transported to the lot, retains axles and was built prior to June 15, 1976." } ] @@ -54165,12 +63417,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Multi Family" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Multi+Family" }, { + "term": "Core.Description", "value": "A structure or complex with 5 or more units that are individual dwellings." } ] @@ -54181,12 +63436,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245896" }, { + "term": "Core.Description", "value": "The property is designed to be used as office space." } ] @@ -54197,12 +63455,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Own Your Own" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Own+Your+Own" }, { + "term": "Core.Description", "value": "A unit within a structure where ownership is based on a partial deed and rights to occupy a unit." } ] @@ -54213,12 +63474,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Quadruplex" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Quadruplex" }, { + "term": "Core.Description", "value": "A multi family structure with four independent units with shared walls or ceilings/floors." } ] @@ -54229,12 +63493,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ranch" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ranch" }, { + "term": "Core.Description", "value": "A place where agricultural and similar activities take place, especially the raising of livestock." } ] @@ -54245,12 +63512,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Retail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245897" }, { + "term": "Core.Description", "value": "The property designed to be used as retail space." } ] @@ -54261,12 +63531,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Single Family Residence" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Single+Family+Residence" }, { + "term": "Core.Description", "value": "A single family residence on real property." } ] @@ -54277,12 +63550,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stock Cooperative" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Stock+Cooperative" }, { + "term": "Core.Description", "value": "A unit within a structure where ownership is based on a share of stock and rights to occupy a unit." } ] @@ -54293,12 +63569,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Timeshare" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Timeshare" }, { + "term": "Core.Description", "value": "A form of property ownership under with a property is held by a number of people, each with the right of possession for a specified time interval." } ] @@ -54309,12 +63588,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Townhouse" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Townhouse" }, { + "term": "Core.Description", "value": "A dwelling unit, generally having two or more floors and attached to other similar units via party walls." } ] @@ -54325,12 +63607,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Triplex" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Triplex" }, { + "term": "Core.Description", "value": "A multi family structure with three independent units with shared walls or ceilings/floors." } ] @@ -54341,12 +63626,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unimproved Land" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Unimproved+Land" }, { + "term": "Core.Description", "value": "Commercial land that has not been built upon or improved." } ] @@ -54357,12 +63645,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Warehouse" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245899" }, { + "term": "Core.Description", "value": "The property is designed to be used for warehousing." } ] @@ -54373,12 +63664,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Business Opportunity" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245901" }, { + "term": "Core.Description", "value": "The property type of the listing is Business Opportunity. The property type can be references as a class or a field within a single class structure." } ] @@ -54389,12 +63683,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Commercial Lease" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245902" }, { + "term": "Core.Description", "value": "The property type of the listing is Commercial Lease. The property type can be references as a class or a field within a single class structure." } ] @@ -54405,12 +63702,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Commercial Sale" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245903" }, { + "term": "Core.Description", "value": "The property type of the listing is Commercial Sale. The property type can be references as a class or a field within a single class structure." } ] @@ -54421,12 +63721,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Farm" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245904" }, { + "term": "Core.Description", "value": "The property type of the listing is Farm. The property type can be references as a class or a field within a single class structure." } ] @@ -54437,12 +63740,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Land" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245905" }, { + "term": "Core.Description", "value": "The property type of the listing is Land. The property type can be references as a class or a field within a single class structure." } ] @@ -54453,12 +63759,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Manufactured In Park" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245906" }, { + "term": "Core.Description", "value": "The property type of the listing is Manufactured in Park. The property type can be references as a class or a field within a single class structure." } ] @@ -54469,12 +63778,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245907" }, { + "term": "Core.Description", "value": "The property type of the listing is Residential. The property type can be references as a class or a field within a single class structure." } ] @@ -54485,12 +63797,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential Income" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245908" }, { + "term": "Core.Description", "value": "The property type of the listing is Residential Income. The property type can be references as a class or a field within a single class structure." } ] @@ -54501,12 +63816,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential Lease" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245909" }, { + "term": "Core.Description", "value": "The property type of the listing is Residential Lease. The property type can be references as a class or a field within a single class structure." } ] @@ -54517,12 +63835,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "All Utilities" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246093" }, { + "term": "Core.Description", "value": "Rent for the dwelling includes all utilities." } ] @@ -54533,12 +63854,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cable TV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246094" }, { + "term": "Core.Description", "value": "Rent for the dwelling includes cable TV." } ] @@ -54549,12 +63873,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electricity" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246095" }, { + "term": "Core.Description", "value": "Rent for the dwelling includes electricity." } ] @@ -54565,12 +63892,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gardener" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246096" }, { + "term": "Core.Description", "value": "Rent for the dwelling includes gardener." } ] @@ -54581,12 +63911,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246097" }, { + "term": "Core.Description", "value": "Rent for the dwelling includes gas." } ] @@ -54597,12 +63930,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Internet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Internet" }, { + "term": "Core.Description", "value": "Rent for the dwelling includes internet." } ] @@ -54613,12 +63949,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Management" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246099" }, { + "term": "Core.Description", "value": "Rent for the dwelling includes management." } ] @@ -54629,12 +63968,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246100" }, { + "term": "Core.Description", "value": "Rent for the dwelling does not include other potential costs such as utilities, management, services, etc." } ] @@ -54645,12 +63987,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246105" }, { + "term": "Core.Description", "value": "An item of what rent includes not in this list." } ] @@ -54661,12 +64006,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246101" }, { + "term": "Core.Description", "value": "See the listing\u0027s remarks for details about things included in the rent." } ] @@ -54677,12 +64025,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sewer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246102" }, { + "term": "Core.Description", "value": "Rent for the dwelling includes sewer." } ] @@ -54693,12 +64044,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trash Collection" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246103" }, { + "term": "Core.Description", "value": "Rent for the dwelling includes trash collection." } ] @@ -54709,12 +64063,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246104" }, { + "term": "Core.Description", "value": "Rent for the dwelling includes water." } ] @@ -54725,12 +64082,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Alley" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Alley" }, { + "term": "Core.Description", "value": "The property fronts to an alley." } ] @@ -54741,12 +64101,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "City Street" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/City+Street" }, { + "term": "Core.Description", "value": "The property fronts to a city street." } ] @@ -54757,12 +64120,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "County Road" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/County+Road" }, { + "term": "Core.Description", "value": "The property fronts to a county road." } ] @@ -54773,12 +64139,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Easement" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Easement" }, { + "term": "Core.Description", "value": "The property fronts to an easement." } ] @@ -54789,12 +64158,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Freeway" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Freeway" }, { + "term": "Core.Description", "value": "The property fronts to a freeway." } ] @@ -54805,12 +64177,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Highway" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Highway" }, { + "term": "Core.Description", "value": "The property fronts to a highway." } ] @@ -54821,12 +64196,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Interstate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Interstate" }, { + "term": "Core.Description", "value": "The property fronts to an interstate." } ] @@ -54837,12 +64215,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246205" }, { + "term": "Core.Description", "value": "The property does not have any road frontage." } ] @@ -54853,12 +64234,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246206" }, { + "term": "Core.Description", "value": "The property fronts to a road other than those in this list." } ] @@ -54869,12 +64253,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private Road" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Private+Road" }, { + "term": "Core.Description", "value": "The property fronts to a private road." } ] @@ -54885,12 +64272,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246208" }, { + "term": "Core.Description", "value": "See Public or Private Remarks for details on the road frontage." } ] @@ -54901,12 +64291,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "State Road" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/State+Road" }, { + "term": "Core.Description", "value": "The property fronts to a state road." } ] @@ -54917,12 +64310,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unimproved" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246210" }, { + "term": "Core.Description", "value": "The property\u0027s road frontage is unimproved." } ] @@ -54933,12 +64329,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private Maintained Road" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Private+Maintained+Road" }, { + "term": "Core.Description", "value": "The property\u0027s road is privately maintained." } ] @@ -54949,12 +64348,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public Maintained Road" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Public+Maintained+Road" }, { + "term": "Core.Description", "value": "The property\u0027s road is publicly maintained." } ] @@ -54965,12 +64367,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Road Maintenance Agreement" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Road+Maintenance+Agreement" }, { + "term": "Core.Description", "value": "The property has a road maintenance agreement." } ] @@ -54981,12 +64386,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Alley Paved" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Alley+Paved" }, { + "term": "Core.Description", "value": "The property\u0027s road is a paved alley." } ] @@ -54997,12 +64405,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Asphalt" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246217" }, { + "term": "Core.Description", "value": "The property\u0027s road is asphalt." } ] @@ -55013,12 +64424,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Chip And Seal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Chip+And+Seal" }, { + "term": "Core.Description", "value": "The property\u0027s road is chip and seal." } ] @@ -55029,12 +64443,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concrete" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246219" }, { + "term": "Core.Description", "value": "The property\u0027s road is concrete." } ] @@ -55045,12 +64462,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dirt" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dirt" }, { + "term": "Core.Description", "value": "The property\u0027s road is dirt." } ] @@ -55061,12 +64481,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gravel" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gravel" }, { + "term": "Core.Description", "value": "The property\u0027s road is gravel." } ] @@ -55077,12 +64500,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246222" }, { + "term": "Core.Description", "value": "The property has no road." } ] @@ -55093,12 +64519,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246223" }, { + "term": "Core.Description", "value": "The surface type of the property\u0027s road is something other than those in this list." } ] @@ -55109,12 +64538,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Paved" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Paved" }, { + "term": "Core.Description", "value": "The property\u0027s road is paved." } ] @@ -55125,12 +64557,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246225" }, { + "term": "Core.Description", "value": "See the Public or Private Remarks for details on the road surface type." } ] @@ -55141,12 +64576,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unimproved" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246226" }, { + "term": "Core.Description", "value": "The property\u0027s road is unimproved." } ] @@ -55157,12 +64595,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Aluminum" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Aluminum" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of aluminum." } ] @@ -55173,12 +64614,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Asbestos Shingle" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Asbestos+Shingle" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of asbestos shingles." } ] @@ -55189,12 +64633,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Asphalt" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246114" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of asphalt." } ] @@ -55205,12 +64652,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bahama" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bahama" }, { + "term": "Core.Description", "value": "The roof is a Bahama roof." } ] @@ -55221,12 +64671,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Barrel" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Barrel" }, { + "term": "Core.Description", "value": "The roof is a Barrel roof." } ] @@ -55237,12 +64690,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bituthene" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bituthene" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of Bituthene." } ] @@ -55253,12 +64709,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Built-Up" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Built-Up" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of built-up." } ] @@ -55269,12 +64728,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Composition" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Composition" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of composition." } ] @@ -55285,12 +64747,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concrete" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246120" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of concrete." } ] @@ -55301,12 +64766,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Copper" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Copper" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of copper." } ] @@ -55317,12 +64785,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Elastomeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Elastomeric" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of elastomeric." } ] @@ -55333,12 +64804,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fiberglass" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fiberglass" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of fiberglass." } ] @@ -55349,12 +64823,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Flat" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Flat" }, { + "term": "Core.Description", "value": "The roof is wholly/partially flat." } ] @@ -55365,12 +64842,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Flat Tile" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Flat+Tile" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of flat tile." } ] @@ -55381,12 +64861,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Foam" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Foam" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of foam." } ] @@ -55397,12 +64880,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Green Roof" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Green+Roof" }, { + "term": "Core.Description", "value": "The roof is wholly/partially a green roof." } ] @@ -55413,12 +64899,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mansard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Mansard" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of mansard." } ] @@ -55429,12 +64918,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Membrane" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Membrane" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of membrane." } ] @@ -55445,12 +64937,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Metal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Metal" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of metal." } ] @@ -55461,12 +64956,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mixed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246131" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of mixed materials." } ] @@ -55477,12 +64975,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246132" }, { + "term": "Core.Description", "value": "The roof materials are unstated, unknown or there are none." } ] @@ -55493,12 +64994,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246133" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of materials other than those in this list." } ] @@ -55509,12 +65013,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rolled/Hot Mop" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246134" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of rolled/hot mop." } ] @@ -55525,12 +65032,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rubber" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Rubber" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of rubber." } ] @@ -55541,12 +65051,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246136" }, { + "term": "Core.Description", "value": "See the listing\u0027s remarks for details on the roof." } ] @@ -55557,12 +65070,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Shake" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Shake" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of shake." } ] @@ -55573,12 +65089,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Shingle" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Shingle" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of shingle." } ] @@ -55589,12 +65108,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Slate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Slate" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of slate." } ] @@ -55605,12 +65127,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Spanish Tile" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Spanish+Tile" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of Spanish tile." } ] @@ -55621,12 +65146,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246141" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of stone." } ] @@ -55637,12 +65165,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Synthetic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Synthetic" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of synthetic materials." } ] @@ -55653,12 +65184,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tar/Gravel" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246143" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of tar/gravel." } ] @@ -55669,12 +65203,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tile" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tile" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of tile." } ] @@ -55685,12 +65222,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wood" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wood" }, { + "term": "Core.Description", "value": "The roof is made wholly/partially of wood." } ] @@ -55701,12 +65241,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Basement" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246147" }, { + "term": "Core.Description", "value": "A floor of a building below ground level." } ] @@ -55717,12 +65260,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bathroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246179" }, { + "term": "Core.Description", "value": "The first bathroom, when a Master Bathroom is not designated." } ] @@ -55733,12 +65279,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bathroom 1" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bathroom+1" }, { + "term": "Core.Description", "value": "The first bathroom, when a Master Bathroom is not designated." } ] @@ -55749,12 +65298,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bathroom 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bathroom+2" }, { + "term": "Core.Description", "value": "The second bathroom." } ] @@ -55765,12 +65317,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bathroom 3" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bathroom+3" }, { + "term": "Core.Description", "value": "The third bathroom." } ] @@ -55781,12 +65336,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bathroom 4" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bathroom+4" }, { + "term": "Core.Description", "value": "The fourth bathroom." } ] @@ -55797,12 +65355,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bathroom 5" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bathroom+5" }, { + "term": "Core.Description", "value": "The fifth bathroom." } ] @@ -55813,12 +65374,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bedroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246178" }, { + "term": "Core.Description", "value": "The type of room is a bedroom." } ] @@ -55829,12 +65393,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bedroom 1" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bedroom+1" }, { + "term": "Core.Description", "value": "The first bedroom, when a Master Bedroom is not designated." } ] @@ -55845,12 +65412,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bedroom 2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bedroom+2" }, { + "term": "Core.Description", "value": "The second bedroom." } ] @@ -55861,12 +65431,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bedroom 3" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bedroom+3" }, { + "term": "Core.Description", "value": "The third bedroom." } ] @@ -55877,12 +65450,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bedroom 4" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bedroom+4" }, { + "term": "Core.Description", "value": "The fourth bedroom." } ] @@ -55893,12 +65469,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bedroom 5" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bedroom+5" }, { + "term": "Core.Description", "value": "The fifth bedroom." } ] @@ -55909,12 +65488,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bonus Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246158" }, { + "term": "Core.Description", "value": "A room that can be used for multiple purposes." } ] @@ -55925,12 +65507,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Den" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246159" }, { + "term": "Core.Description", "value": "Used for a variety of purposes, a den is typically a secluded comfortable room use as a study or entertainment room." } ] @@ -55941,12 +65526,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dining Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246160" }, { + "term": "Core.Description", "value": "A room, in a home, where meals are eaten." } ] @@ -55957,12 +65545,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exercise Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246161" }, { + "term": "Core.Description", "value": "A room that is specifically geared to contain exercise equipment." } ] @@ -55973,12 +65564,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Family Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246162" }, { + "term": "Core.Description", "value": "A comfortable room in a dwelling, for frequent leisure use." } ] @@ -55989,12 +65583,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Game Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246163" }, { + "term": "Core.Description", "value": "A room that, typically a bonus room, that is specifically equipped for game play. This may include billiards, Ping-Pong, video games, board games or other recreational activities." } ] @@ -56005,12 +65602,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Great Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246164" }, { + "term": "Core.Description", "value": "The term great room denotes a room space within an abode which combines the specific functions of several of the more traditional room spaces (e.g. the family room, the living room, the study, etc.) into a singular unified space. Great rooms are typically at or near the center of the house, feature raised ceilings, and have been common in American homes since the early 1990s." } ] @@ -56021,12 +65621,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gym" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246165" }, { + "term": "Core.Description", "value": "A room that, in addition to exercise equipment, has other characteristics of a gymnasium." } ] @@ -56037,12 +65640,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kitchen" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246166" }, { + "term": "Core.Description", "value": "The room used for the preparation and storage of food. Cookery." } ] @@ -56053,12 +65659,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Laundry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246167" }, { + "term": "Core.Description", "value": "A utility room specifically equipment and used for laundry equipment (washer and dryer)." } ] @@ -56069,12 +65678,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Library" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246168" }, { + "term": "Core.Description", "value": "A room that is specifically geared to house books and other media typically found in a library." } ] @@ -56085,12 +65697,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Living Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246169" }, { + "term": "Core.Description", "value": "A room in a private house used for general social and leisure activities." } ] @@ -56101,12 +65716,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Loft" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246170" }, { + "term": "Core.Description", "value": "A loft can be an upper story or attic in a building, directly under the roof. Alternatively, a loft apartment refers to large adaptable open space, often converted for residential use (a converted loft) from some other use, often light industrial. Adding to the confusion, some converted lofts include upper open loft areas." } ] @@ -56117,12 +65735,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Master Bathroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246171" }, { + "term": "Core.Description", "value": "Typically the largest of the bathrooms and attached to the master bedroom." } ] @@ -56133,12 +65754,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Master Bedroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246172" }, { + "term": "Core.Description", "value": "Typically the largest of the bedrooms with an attached bathroom." } ] @@ -56149,12 +65773,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Media Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246173" }, { + "term": "Core.Description", "value": "A room that is specifically geared for the watching of movies, TV or other forms of multimedia." } ] @@ -56165,12 +65792,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246174" }, { + "term": "Core.Description", "value": "A room used for business." } ] @@ -56181,12 +65811,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sauna" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246175" }, { + "term": "Core.Description", "value": "A small room or house designed as a place to experience dry or wet heat sessions, or an establishment with one or more of these and auxiliary facilities." } ] @@ -56197,12 +65830,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Utility Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Utility+Room" }, { + "term": "Core.Description", "value": "A room that usually contains laundry, HVAC, water heating or some other utilitarian equipment. In some areas this is simply the laundry room. In other areas it may be used for many other purposes, all having some utility." } ] @@ -56213,12 +65849,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Workshop" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246177" }, { + "term": "Core.Description", "value": "A room containing tools or equipment used for the manufacturing or repair of goods." } ] @@ -56229,12 +65868,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Building Security" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Building+Security" }, { + "term": "Core.Description", "value": "The property has building security." } ] @@ -56245,12 +65887,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Carbon Monoxide Detector(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246457" }, { + "term": "Core.Description", "value": "The property has carbon monoxide detector(s)." } ] @@ -56261,12 +65906,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Closed Circuit Camera(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246458" }, { + "term": "Core.Description", "value": "The property has closed circuit camera(s)." } ] @@ -56277,12 +65925,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fire Alarm" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fire+Alarm" }, { + "term": "Core.Description", "value": "The property has fire alarm(s)." } ] @@ -56293,12 +65944,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fire Escape" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fire+Escape" }, { + "term": "Core.Description", "value": "The property has a fire escape." } ] @@ -56309,12 +65963,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fire Sprinkler System" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fire+Sprinkler+System" }, { + "term": "Core.Description", "value": "The property has a fire sprinkler system." } ] @@ -56325,12 +65982,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Firewall(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246462" }, { + "term": "Core.Description", "value": "The property has firewall(s)." } ] @@ -56341,12 +66001,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gated Community" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gated+Community" }, { + "term": "Core.Description", "value": "The property is in a gated community." } ] @@ -56357,12 +66020,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gated with Guard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gated+with+Guard" }, { + "term": "Core.Description", "value": "The property is in a gated community/area with guard service." } ] @@ -56373,12 +66039,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Key Card Entry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Key+Card+Entry" }, { + "term": "Core.Description", "value": "The property or community has key card entry." } ] @@ -56389,12 +66058,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246466" }, { + "term": "Core.Description", "value": "The property has security features other than those in this list." } ] @@ -56405,12 +66077,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Panic Alarm" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Panic+Alarm" }, { + "term": "Core.Description", "value": "The property has a panic alarm." } ] @@ -56421,12 +66096,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Prewired" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Prewired" }, { + "term": "Core.Description", "value": "The property is prewired for a security system." } ] @@ -56437,12 +66115,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Secured Garage/Parking" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246469" }, { + "term": "Core.Description", "value": "The property has a secured garage or parking area." } ] @@ -56453,12 +66134,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security Fence" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Security+Fence" }, { + "term": "Core.Description", "value": "The property has a security fence." } ] @@ -56469,12 +66153,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security Gate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Security+Gate" }, { + "term": "Core.Description", "value": "The property has a security gate." } ] @@ -56485,12 +66172,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security Guard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Security+Guard" }, { + "term": "Core.Description", "value": "The property or community has a security guard." } ] @@ -56501,12 +66191,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security Lights" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Security+Lights" }, { + "term": "Core.Description", "value": "The property has security lights." } ] @@ -56517,12 +66210,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Security+Service" }, { + "term": "Core.Description", "value": "The property has a security service." } ] @@ -56533,12 +66229,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security System" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Security+System" }, { + "term": "Core.Description", "value": "The property has a security system." } ] @@ -56549,12 +66248,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security System Leased" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Security+System+Leased" }, { + "term": "Core.Description", "value": "The property has a leased security system." } ] @@ -56565,12 +66267,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security System Owned" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Security+System+Owned" }, { + "term": "Core.Description", "value": "The property has an owned security system." } ] @@ -56581,12 +66286,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246478" }, { + "term": "Core.Description", "value": "See the remarks fields for more information about the security features of the property." } ] @@ -56597,12 +66305,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Smoke Detector(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246479" }, { + "term": "Core.Description", "value": "The property has smoke detector(s)." } ] @@ -56613,12 +66324,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "24 Hour Security" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/24+Hour+Security" }, { + "term": "Core.Description", "value": "The property has 24 hour security." } ] @@ -56629,12 +66343,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Varies By Unit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246480" }, { + "term": "Core.Description", "value": "The security features vary from unit to unit." } ] @@ -56645,12 +66362,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Window Bars" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Window+Bars" }, { + "term": "Core.Description", "value": "The property has window bars." } ] @@ -56661,12 +66381,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Window Bars with Quick Release" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Window+Bars+with+Quick+Release" }, { + "term": "Core.Description", "value": "The property has window bars with a quick release mechanism." } ] @@ -56677,12 +66400,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Aerobic Septic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Aerobic+Septic" }, { + "term": "Core.Description", "value": "The property has an aerobic septic." } ] @@ -56693,12 +66419,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cesspool" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cesspool" }, { + "term": "Core.Description", "value": "The property has a cesspool." } ] @@ -56709,12 +66438,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Engineered Septic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Engineered+Septic" }, { + "term": "Core.Description", "value": "The property has an engineered septic." } ] @@ -56725,12 +66457,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Holding Tank" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Holding+Tank" }, { + "term": "Core.Description", "value": "The property has a holding tank." } ] @@ -56741,12 +66476,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mound Septic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Mound+Septic" }, { + "term": "Core.Description", "value": "The property has a mound septic." } ] @@ -56757,12 +66495,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246259" }, { + "term": "Core.Description", "value": "The property has no sewer, septic or cesspool." } ] @@ -56773,12 +66514,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246260" }, { + "term": "Core.Description", "value": "The property has a system other than sewer, sceptic or cesspool in this list." } ] @@ -56789,12 +66533,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Perc Test On File" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Perc+Test+On+File" }, { + "term": "Core.Description", "value": "The property has a perc test on file." } ] @@ -56805,12 +66552,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Perc Test Required" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Perc+Test+Required" }, { + "term": "Core.Description", "value": "The property requires a perc test." } ] @@ -56821,12 +66571,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private Sewer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Private+Sewer" }, { + "term": "Core.Description", "value": "The property has a private sewer." } ] @@ -56837,12 +66590,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public Sewer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Public+Sewer" }, { + "term": "Core.Description", "value": "The property has a public sewer." } ] @@ -56853,12 +66609,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Septic Needed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Septic+Needed" }, { + "term": "Core.Description", "value": "The property needs a septic system." } ] @@ -56869,12 +66628,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Septic Tank" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Septic+Tank" }, { + "term": "Core.Description", "value": "The property has a septic tank." } ] @@ -56885,12 +66647,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Shared Septic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Shared+Septic" }, { + "term": "Core.Description", "value": "The property has a shared septic." } ] @@ -56901,12 +66666,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unknown" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246268" }, { + "term": "Core.Description", "value": "The property\u0027s sewer/septic is unknown." } ] @@ -56917,12 +66685,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246270" }, { + "term": "Core.Description", "value": "The showing contact is a licensed agent." } ] @@ -56933,12 +66704,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Occupant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Occupant" }, { + "term": "Core.Description", "value": "The showing contact is the occupant." } ] @@ -56949,12 +66723,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246272" }, { + "term": "Core.Description", "value": "The showing contact is the owner." } ] @@ -56965,12 +66742,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Property Manager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246273" }, { + "term": "Core.Description", "value": "The showing contact is the property manager." } ] @@ -56986,12 +66766,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Appointment Only" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Appointment+Only" }, { + "term": "Core.Description", "value": "Showing of the property is by appointment only." } ] @@ -57002,12 +66785,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Call Listing Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246486" }, { + "term": "Core.Description", "value": "Call the listing agent to arrange a showing of the property." } ] @@ -57018,12 +66804,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Call Listing Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246487" }, { + "term": "Core.Description", "value": "Call the listing office to arrange a showing of the property." } ] @@ -57034,12 +66823,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Call Manager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Call+Manager" }, { + "term": "Core.Description", "value": "Call the property manage to arrange a showing of the property." } ] @@ -57050,12 +66842,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Call Owner" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Call+Owner" }, { + "term": "Core.Description", "value": "Call the property owner to arrange a showing of the property." } ] @@ -57066,12 +66861,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Call Tenant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Call+Tenant" }, { + "term": "Core.Description", "value": "Call the tenant/occupant directly to arrange a showing of the property." } ] @@ -57082,12 +66880,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Combination Lock Box" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Combination+Lock+Box" }, { + "term": "Core.Description", "value": "The property has a combination lock box for showing access." } ] @@ -57098,12 +66899,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Day Sleeper" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Day+Sleeper" }, { + "term": "Core.Description", "value": "The property has a tenant/occupant who sleeps during the day." } ] @@ -57114,12 +66918,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Do Not Show" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Do+Not+Show" }, { + "term": "Core.Description", "value": "Do not show this property." } ] @@ -57130,12 +66937,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Email Listing Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Email+Listing+Agent" }, { + "term": "Core.Description", "value": "Email the listing agent for more information about showing the property." } ] @@ -57146,12 +66956,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Key In Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Key+In+Office" }, { + "term": "Core.Description", "value": "The key to access the property for showing must be retrieved from the listing or manager\u0027s office." } ] @@ -57162,12 +66975,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lockbox" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lockbox" }, { + "term": "Core.Description", "value": "The property has an electronic lockbox for showing access." } ] @@ -57178,12 +66994,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "No Lockbox" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/No+Lockbox" }, { + "term": "Core.Description", "value": "There is no lockbox on the property." } ] @@ -57194,12 +67013,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "No Sign" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/No+Sign" }, { + "term": "Core.Description", "value": "The property has no for sale sign." } ] @@ -57210,12 +67032,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Occupied" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Occupied" }, { + "term": "Core.Description", "value": "The property is currently occupied." } ] @@ -57226,12 +67051,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pet(s) on Premises" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pet%28s%29+on+Premises" }, { + "term": "Core.Description", "value": "There are currently pets at the property." } ] @@ -57242,12 +67070,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Restricted Hours" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Restricted+Hours" }, { + "term": "Core.Description", "value": "The times when the property may be shown are restricted." } ] @@ -57258,12 +67089,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security System" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246502" }, { + "term": "Core.Description", "value": "The property has a security system that is a consideration when showing." } ] @@ -57274,12 +67108,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246503" }, { + "term": "Core.Description", "value": "See the remarks fields for more information about showing the property." } ] @@ -57290,12 +67127,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showing Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Showing+Service" }, { + "term": "Core.Description", "value": "A service used by a listing broker to provide showing services of listed properties." } ] @@ -57306,12 +67146,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Text Listing Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Text+Listing+Agent" }, { + "term": "Core.Description", "value": "Text message the listing agent to arrange a showing of the property." } ] @@ -57322,12 +67165,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "To Be Built" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/To+Be+Built" }, { + "term": "Core.Description", "value": "The property has yet to be built." } ] @@ -57338,12 +67184,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "24 Hour Notice" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/24+Hour+Notice" }, { + "term": "Core.Description", "value": "A 24 hour notice is required to show the property." } ] @@ -57354,12 +67203,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Under Construction" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246506" }, { + "term": "Core.Description", "value": "The property is under construction." } ] @@ -57370,12 +67222,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Aluminum" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246275" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of aluminum." } ] @@ -57386,12 +67241,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Block" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246276" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of block." } ] @@ -57402,12 +67260,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Brick" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246277" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of brick." } ] @@ -57418,12 +67279,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Combination" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246278" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of a combination of materials." } ] @@ -57434,12 +67298,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concrete" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246279" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of concrete." } ] @@ -57450,12 +67317,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fiberglass" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246280" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of fiberglass." } ] @@ -57466,12 +67336,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Frame" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246281" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt that is framed." } ] @@ -57482,12 +67355,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Glass" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246282" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of glass." } ] @@ -57498,12 +67374,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Masonite" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246283" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of Masonite." } ] @@ -57514,12 +67393,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Metal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246284" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of metal." } ] @@ -57530,12 +67412,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246285" }, { + "term": "Core.Description", "value": "The mobile/manufactured home does not have a skirt." } ] @@ -57546,12 +67431,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246286" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of materials other than those in this list." } ] @@ -57562,12 +67450,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Steel" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Steel" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of steel." } ] @@ -57578,12 +67469,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246288" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of stone." } ] @@ -57594,12 +67488,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stucco" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246289" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of stucco." } ] @@ -57610,12 +67507,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Synthetic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246290" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of synthetic materials." } ] @@ -57626,12 +67526,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unknown" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246291" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of unknown materials." } ] @@ -57642,12 +67545,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vinyl" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Vinyl" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of vinyl." } ] @@ -57658,12 +67564,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wood" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246293" }, { + "term": "Core.Description", "value": "The mobile/manufactured home has a skirt made of wood." } ] @@ -57674,12 +67583,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Above Ground" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246509" }, { + "term": "Core.Description", "value": "The spa is not built into the ground." } ] @@ -57690,12 +67602,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bath" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246510" }, { + "term": "Core.Description", "value": "The bath has a built in spa/jets." } ] @@ -57706,12 +67621,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Community" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246511" }, { + "term": "Core.Description", "value": "The property has access to a community spa." } ] @@ -57722,12 +67640,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fiberglass" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246512" }, { + "term": "Core.Description", "value": "The spa is lined or made of fiberglass." } ] @@ -57738,12 +67659,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gunite" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246513" }, { + "term": "Core.Description", "value": "The spa is lined with gunite." } ] @@ -57754,12 +67678,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Heated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246514" }, { + "term": "Core.Description", "value": "The spa is heated." } ] @@ -57770,12 +67697,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "In Ground" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246515" }, { + "term": "Core.Description", "value": "The spa is built into the ground." } ] @@ -57786,12 +67716,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246516" }, { + "term": "Core.Description", "value": "The property has no spa." } ] @@ -57802,12 +67735,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246517" }, { + "term": "Core.Description", "value": "The spa is privately owned or is secluded." } ] @@ -57818,12 +67754,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246518" }, { + "term": "Core.Description", "value": "See the remarks fields for more information about the spa." } ] @@ -57834,12 +67773,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Beer/Wine" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246295" }, { + "term": "Core.Description", "value": "The business being sold uses/requires a Beer/Wine license." } ] @@ -57850,12 +67792,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Class H" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Class+H" }, { + "term": "Core.Description", "value": "The business being sold uses/requires a Class H license." } ] @@ -57866,12 +67811,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Entertainment" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Entertainment" }, { + "term": "Core.Description", "value": "The business being sold uses/requires an Entertainment license." } ] @@ -57882,12 +67830,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Franchise" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246298" }, { + "term": "Core.Description", "value": "The business being sold uses/requires a Franchise license." } ] @@ -57898,12 +67849,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gambling" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gambling" }, { + "term": "Core.Description", "value": "The business being sold uses/requires a Gambling license." } ] @@ -57914,12 +67868,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Liquor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Liquor" }, { + "term": "Core.Description", "value": "The business being sold uses/requires a Liquor license." } ] @@ -57930,12 +67887,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Liquor 5 Years Or Less" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Liquor+5+Years+Or+Less" }, { + "term": "Core.Description", "value": "The business being sold uses/requires a Liquor 5 years or less license." } ] @@ -57946,12 +67906,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Liquor 5 Years Or More" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Liquor+5+Years+Or+More" }, { + "term": "Core.Description", "value": "The business being sold uses/requires a Liquor 5 years or more license." } ] @@ -57962,12 +67925,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Liquor-Off Sale" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Liquor-Off+Sale" }, { + "term": "Core.Description", "value": "The business being sold uses/requires a Liquor-Off Sale license." } ] @@ -57978,12 +67944,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Liquor-On Sale" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Liquor-On+Sale" }, { + "term": "Core.Description", "value": "The business being sold uses/requires a Liquor-On Sale license." } ] @@ -57994,12 +67963,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246305" }, { + "term": "Core.Description", "value": "The business being sold uses/requires/has no license." } ] @@ -58010,12 +67982,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246306" }, { + "term": "Core.Description", "value": "The business being sold uses/requires an other license." } ] @@ -58026,12 +68001,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Professional" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Professional" }, { + "term": "Core.Description", "value": "The business being sold uses/requires a Professional license." } ] @@ -58042,12 +68020,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Auction" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Auction" }, { + "term": "Core.Description", "value": "The listing is an auction." } ] @@ -58058,12 +68039,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bankruptcy Property" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bankruptcy+Property" }, { + "term": "Core.Description", "value": "The listed property is currently involved in a bankruptcy." } ] @@ -58074,12 +68058,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "HUD Owned" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HUD+Owned" }, { + "term": "Core.Description", "value": "The listed property is owned, and being sold, by the US Department of Housing and Urban Development." } ] @@ -58090,12 +68077,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "In Foreclosure" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/In+Foreclosure" }, { + "term": "Core.Description", "value": "The listed property is currently in the process of foreclosure." } ] @@ -58106,12 +68096,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Notice Of Default" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Notice+Of+Default" }, { + "term": "Core.Description", "value": "There is a notice of default on the listed property." } ] @@ -58122,12 +68115,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Probate Listing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Probate+Listing" }, { + "term": "Core.Description", "value": "The listed property is a probate sale." } ] @@ -58138,12 +68134,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Real Estate Owned" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Real+Estate+Owned" }, { + "term": "Core.Description", "value": "The listed property is currently bank/lender owned." } ] @@ -58154,12 +68153,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Short Sale" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Short+Sale" }, { + "term": "Core.Description", "value": "The listing is a short sale (short pay) and may require bank approval." } ] @@ -58170,12 +68172,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Standard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Standard" }, { + "term": "Core.Description", "value": "The listing has none of the other conditions in the Special Listing Conditions field." } ] @@ -58186,12 +68191,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Third Party Approval" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Third+Party+Approval" }, { + "term": "Core.Description", "value": "A court or other third party approval is required for the sale to finalize." } ] @@ -58202,12 +68210,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Active" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246320" }, { + "term": "Core.Description", "value": "The listing is on market and an offer has not been accepted." } ] @@ -58218,12 +68229,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Active Under Contract" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246321" }, { + "term": "Core.Description", "value": "An offer has been accepted but the listing is still on market." } ] @@ -58234,12 +68248,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Canceled" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246322" }, { + "term": "Core.Description", "value": "The listing contract has been terminated." } ] @@ -58250,12 +68267,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Closed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246323" }, { + "term": "Core.Description", "value": "The purchase agreement has been fulfilled or the lease agreement has been executed." } ] @@ -58266,12 +68286,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Coming Soon" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Coming+Soon" }, { + "term": "Core.Description", "value": "This is a listing that has not yet been on market but will be on market soon. A listing contract has been executed. Some systems may use Hold or Withdrawn for similar purposes. When all three are in use, Hold expresses a listing that may have been on market but is off market temporarily and is expected to return to market. Withdrawn may have been on market but when used in conjunction with Hold, is not expected to return to market. Coming Soon is different from Hold and Withdrawn as the property, under the current listing contract only, has not been previously on market." } ] @@ -58282,12 +68305,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Delete" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Delete" }, { + "term": "Core.Description", "value": "The listing contract was never valid or other reason for the contract to be nullified." } ] @@ -58298,12 +68324,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Expired" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246326" }, { + "term": "Core.Description", "value": "The listing contract has expired." } ] @@ -58314,12 +68343,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hold" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246327" }, { + "term": "Core.Description", "value": "A contract exists between the seller and the listing member. The listing may be completely off market, not allowing any showings and/or not taking any further offers. For systems that don\u0027t use Hold, Withdrawn is a similar status that may be in use. When both Hold and Withdrawn are in use, Withdrawn may be used to indicate a greater certainty that the listing will not come back on market." } ] @@ -58330,12 +68362,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Incomplete" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Incomplete" }, { + "term": "Core.Description", "value": "The listing has not yet be completely entered and is not yet published in the MLS." } ] @@ -58346,12 +68381,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pending" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246329" }, { + "term": "Core.Description", "value": "An offer has been accepted and the listing is no longer on market." } ] @@ -58362,12 +68400,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Withdrawn" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246330" }, { + "term": "Core.Description", "value": "The listing has been withdrawn from the market, but a contract still exists between the seller and the listing member. For those systems that use both Hold and Withdrawn, Withdrawn may represent an intention not to bring the listing back on the market. When Hold is not used by the system, Withdrawn does not represent any intention of returning to market or not." } ] @@ -58378,12 +68419,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AB" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AB" }, { + "term": "Core.Description", "value": "The Canadian province in which the listing is located is Alberta." } ] @@ -58394,12 +68438,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/AK" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Alaska." } ] @@ -58410,12 +68457,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246334" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Alabama." } ] @@ -58426,12 +68476,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246335" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Arkansas." } ] @@ -58442,12 +68495,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "AZ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246336" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Arizona." } ] @@ -58458,12 +68514,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "BC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/BC" }, { + "term": "Core.Description", "value": "The Canadian province in which the listing is located is British Columbia." } ] @@ -58474,12 +68533,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246338" }, { + "term": "Core.Description", "value": "The state in which the listing is located is California." } ] @@ -58490,12 +68552,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246339" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Colorado." } ] @@ -58506,12 +68571,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "CT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/CT" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Connecticut." } ] @@ -58522,12 +68590,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "DC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DC" }, { + "term": "Core.Description", "value": "The federal district in which the listing is located is District of Columbia." } ] @@ -58538,12 +68609,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "DE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246342" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Delaware." } ] @@ -58554,12 +68628,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "FL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/FL" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Florida." } ] @@ -58570,12 +68647,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246344" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Georgia." } ] @@ -58586,12 +68666,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "HI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/HI" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Hawaii." } ] @@ -58602,12 +68685,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IA" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Iowa." } ] @@ -58618,12 +68704,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246347" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Idaho." } ] @@ -58634,12 +68723,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IL" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246348" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Illinois." } ] @@ -58650,12 +68742,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246349" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Indiana." } ] @@ -58666,12 +68761,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "KS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/KS" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Kansas." } ] @@ -58682,12 +68780,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "KY" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246351" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Kentucky." } ] @@ -58698,12 +68799,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246352" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Louisiana." } ] @@ -58714,12 +68818,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246353" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Massachusetts." } ] @@ -58730,12 +68837,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MB" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MB" }, { + "term": "Core.Description", "value": "The Canadian province in which the listing is located is Manitoba." } ] @@ -58746,12 +68856,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246355" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Maryland." } ] @@ -58762,12 +68875,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ME" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246356" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Maine." } ] @@ -58778,12 +68894,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MI" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Michigan." } ] @@ -58794,12 +68913,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246358" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Minnesota." } ] @@ -58810,12 +68932,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246359" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Missouri." } ] @@ -58826,12 +68951,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246360" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Mississippi." } ] @@ -58842,12 +68970,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246361" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Montana." } ] @@ -58858,12 +68989,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NB" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NB" }, { + "term": "Core.Description", "value": "The Canadian province in which the listing is located is New Brunswick." } ] @@ -58874,12 +69008,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246363" }, { + "term": "Core.Description", "value": "The state in which the listing is located is North Carolina." } ] @@ -58890,12 +69027,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ND" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ND" }, { + "term": "Core.Description", "value": "The state in which the listing is located is North Dakota." } ] @@ -58906,12 +69046,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246365" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Nebraska." } ] @@ -58922,12 +69065,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NF" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246366" }, { + "term": "Core.Description", "value": "The Canadian province in which the listing is located is Newfoundland and Labrador." } ] @@ -58938,12 +69084,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NH" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NH" }, { + "term": "Core.Description", "value": "The state in which the listing is located is New Hampshire." } ] @@ -58954,12 +69103,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NJ" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NJ" }, { + "term": "Core.Description", "value": "The state in which the listing is located is New Jersey." } ] @@ -58970,12 +69122,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NM" }, { + "term": "Core.Description", "value": "The state in which the listing is located is New Mexico." } ] @@ -58986,12 +69141,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NS" }, { + "term": "Core.Description", "value": "The Canadian province in which the listing is located is Nova Scotia." } ] @@ -59002,12 +69160,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NT" }, { + "term": "Core.Description", "value": "The Canadian territory in which the listing is located is Northwest Territories." } ] @@ -59018,12 +69179,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NU" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246372" }, { + "term": "Core.Description", "value": "The Canadian territory in which the listing is located is Nunavut." } ] @@ -59034,12 +69198,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NV" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Nevada." } ] @@ -59050,12 +69217,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NY" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NY" }, { + "term": "Core.Description", "value": "The state in which the listing is located is New York." } ] @@ -59066,12 +69236,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "OH" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OH" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Ohio." } ] @@ -59082,12 +69255,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "OK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OK" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Oklahoma." } ] @@ -59098,12 +69274,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ON" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ON" }, { + "term": "Core.Description", "value": "The Canadian province in which the listing is located is Ontario." } ] @@ -59114,12 +69293,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "OR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/OR" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Oregon." } ] @@ -59130,12 +69312,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246379" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Pennsylvania." } ] @@ -59146,12 +69331,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246380" }, { + "term": "Core.Description", "value": "The Canadian province in which the listing is located is Prince Edward Island." } ] @@ -59162,12 +69350,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "QC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/QC" }, { + "term": "Core.Description", "value": "The Canadian province in which the listing is located is Quebec." } ] @@ -59178,12 +69369,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RI" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Rhode Island." } ] @@ -59194,12 +69388,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246383" }, { + "term": "Core.Description", "value": "The state in which the listing is located is South Carolina." } ] @@ -59210,12 +69407,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246384" }, { + "term": "Core.Description", "value": "The state in which the listing is located is South Dakota." } ] @@ -59226,12 +69426,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SK" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246385" }, { + "term": "Core.Description", "value": "The Canadian province in which the listing is located is Saskatchewan." } ] @@ -59242,12 +69445,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246386" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Tennessee." } ] @@ -59258,12 +69464,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "TX" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/TX" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Texas." } ] @@ -59274,12 +69483,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "UT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/UT" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Utah." } ] @@ -59290,12 +69502,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246389" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Virginia." } ] @@ -59306,12 +69521,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246390" }, { + "term": "Core.Description", "value": "The territory in which the listing is located is Virgin Islands." } ] @@ -59322,12 +69540,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VT" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Vermont." } ] @@ -59338,12 +69559,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "WA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WA" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Washington." } ] @@ -59354,12 +69578,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "WI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WI" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Wisconsin." } ] @@ -59370,12 +69597,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "WV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WV" }, { + "term": "Core.Description", "value": "The state in which the listing is located is West Virginia." } ] @@ -59386,12 +69616,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "WY" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/WY" }, { + "term": "Core.Description", "value": "The state in which the listing is located is Wyoming." } ] @@ -59402,12 +69635,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "YT" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246396" }, { + "term": "Core.Description", "value": "The Canadian territory in which the listing is located is Yukon." } ] @@ -59418,12 +69654,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "E" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/E" }, { + "term": "Core.Description", "value": "The street suffix or prefix direction is East." } ] @@ -59434,12 +69673,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "N" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/N" }, { + "term": "Core.Description", "value": "The street suffix or prefix direction is North." } ] @@ -59450,12 +69692,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246400" }, { + "term": "Core.Description", "value": "The street suffix or prefix direction is North East." } ] @@ -59466,12 +69711,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NW" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/NW" }, { + "term": "Core.Description", "value": "The street suffix or prefix direction is North West." } ] @@ -59482,12 +69730,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "S" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/S" }, { + "term": "Core.Description", "value": "The street suffix or prefix direction is South." } ] @@ -59498,12 +69749,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246403" }, { + "term": "Core.Description", "value": "The street suffix or prefix direction is South East." } ] @@ -59514,12 +69768,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SW" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SW" }, { + "term": "Core.Description", "value": "The street suffix or prefix direction is South West." } ] @@ -59530,12 +69787,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "W" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/W" }, { + "term": "Core.Description", "value": "The street suffix or prefix direction is West." } ] @@ -59551,12 +69811,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cabin" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246437" }, { + "term": "Core.Description", "value": "A single family residence that may have limited utilities and rooms." } ] @@ -59567,12 +69830,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dock" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246438" }, { + "term": "Core.Description", "value": "A floating or pillar supported structure over water used to park water craft." } ] @@ -59583,12 +69849,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Duplex" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246439" }, { + "term": "Core.Description", "value": "A multi family structure with two independent units sharing a common roof." } ] @@ -59599,12 +69868,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Flex" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Flex" }, { + "term": "Core.Description", "value": "A commercial property that is designed to be used in different ways. e.g. Office, Retail or Warehouse." } ] @@ -59615,12 +69887,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hotel/Motel" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246441" }, { + "term": "Core.Description", "value": "A commercial structure designed to be a hotel or motel." } ] @@ -59631,12 +69906,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "House" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/House" }, { + "term": "Core.Description", "value": "A single family residence on real property either attached or detached from another structure. A house may be modular (aka prefabricated), but not a manufactured home with serial/license number." } ] @@ -59647,12 +69925,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Industrial" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246443" }, { + "term": "Core.Description", "value": "A commercial structure designed for industrial use." } ] @@ -59663,12 +69944,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Manufactured House" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Manufactured+House" }, { + "term": "Core.Description", "value": "A factory built house that is transported to the lot. A manufactured home will have a serial/license number, where prefabricated (modular) homes are classified with stick built as \"House\" in this list." } ] @@ -59679,12 +69963,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mixed Use" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246445" }, { + "term": "Core.Description", "value": "The property is designed be used in more than one way. This is typically a combination of residential and commercial space. e.g. a dwelling over a retail space." } ] @@ -59695,12 +69982,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Multi Family" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246446" }, { + "term": "Core.Description", "value": "A structure or complex with 5 or more units that are individual dwellings." } ] @@ -59711,12 +70001,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246447" }, { + "term": "Core.Description", "value": "The property has no structure." } ] @@ -59727,12 +70020,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246448" }, { + "term": "Core.Description", "value": "A commercial structure designed to be used as office space." } ] @@ -59743,12 +70039,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Quadruplex" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246449" }, { + "term": "Core.Description", "value": "A multi family structure with four independent units sharing a common roof." } ] @@ -59759,12 +70058,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Retail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246450" }, { + "term": "Core.Description", "value": "A commercial structure designed to be used for retail space." } ] @@ -59775,12 +70077,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Townhouse" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246451" }, { + "term": "Core.Description", "value": "A dwelling unit, generally having two or more floors and attached to other similar units via party walls." } ] @@ -59791,12 +70096,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Triplex" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246452" }, { + "term": "Core.Description", "value": "A multi family structure with three independent units sharing a common roof." } ] @@ -59807,12 +70115,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Warehouse" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246453" }, { + "term": "Core.Description", "value": "A commercial structure designed for warehousing." } ] @@ -59823,12 +70134,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Homes.com" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Homes.com" }, { + "term": "Core.Description", "value": "The Broker, or Member if permitted by the Broker, is allowing their listings to be sent to Homes.com." } ] @@ -59839,12 +70153,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ListHub" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ListHub" }, { + "term": "Core.Description", "value": "The Broker, or Member if permitted by the Broker, is allowing their listings to be sent to ListHub.com." } ] @@ -59855,12 +70172,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Realtor.com" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Realtor.com" }, { + "term": "Core.Description", "value": "The Broker, or Member if permitted by the Broker, is allowing their listings to be sent to Realtor.com." } ] @@ -59871,12 +70191,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Zillow/Trulia" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246431" }, { + "term": "Core.Description", "value": "The Broker, or Member if permitted by the Broker, is allowing their listings to be sent to Zillow and Trulia." } ] @@ -59887,12 +70210,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Personal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Personal" }, { + "term": "Core.Description", "value": "The tax is based on personal property." } ] @@ -59903,12 +70229,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Personal And Real" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Personal+And+Real" }, { + "term": "Core.Description", "value": "The tax is based on both personal and real property." } ] @@ -59919,12 +70248,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Real" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Real" }, { + "term": "Core.Description", "value": "The tax is based on real property." } ] @@ -59935,12 +70267,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "All Utilities" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246524" }, { + "term": "Core.Description", "value": "The tenant pays for all utilities." } ] @@ -59951,12 +70286,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Fees" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246525" }, { + "term": "Core.Description", "value": "The tenant pays for association fees." } ] @@ -59967,12 +70305,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cable TV" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246526" }, { + "term": "Core.Description", "value": "The tenant pays for cable TV." } ] @@ -59983,12 +70324,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Common Area Maintenance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246527" }, { + "term": "Core.Description", "value": "The tenant pays for common area maintenance." } ] @@ -59999,12 +70343,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electricity" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246528" }, { + "term": "Core.Description", "value": "The tenant pays for electricity." } ] @@ -60015,12 +70362,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exterior Maintenance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246529" }, { + "term": "Core.Description", "value": "The tenant pays for exterior maintenance." } ] @@ -60031,12 +70381,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gas" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246530" }, { + "term": "Core.Description", "value": "The tenant pays for gas." } ] @@ -60047,12 +70400,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Grounds Care" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246531" }, { + "term": "Core.Description", "value": "The tenant pays for grounds care." } ] @@ -60063,12 +70419,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hot Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246532" }, { + "term": "Core.Description", "value": "The tenant pays for hot water." } ] @@ -60079,12 +70438,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "HVAC Maintenance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246533" }, { + "term": "Core.Description", "value": "The tenant pays for HVAC maintenance." } ] @@ -60095,12 +70457,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Insurance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246534" }, { + "term": "Core.Description", "value": "The tenant pays for insurance." } ] @@ -60111,12 +70476,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Janitorial Service" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246535" }, { + "term": "Core.Description", "value": "The tenant pays for janitorial service." } ] @@ -60127,12 +70495,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Management" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246536" }, { + "term": "Core.Description", "value": "The tenant pays for management." } ] @@ -60143,12 +70514,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246537" }, { + "term": "Core.Description", "value": "The tenant pays for no other utilities, services, etc." } ] @@ -60159,12 +70533,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246538" }, { + "term": "Core.Description", "value": "The tenant pays for items other than those in this list." } ] @@ -60175,12 +70552,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other Tax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246539" }, { + "term": "Core.Description", "value": "The tenant pays for other taxes." } ] @@ -60191,12 +70571,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Parking Fee" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246540" }, { + "term": "Core.Description", "value": "The tenant pays for parking fees." } ] @@ -60207,12 +70590,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pest Control" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246541" }, { + "term": "Core.Description", "value": "The tenant pays for pest control." } ] @@ -60223,12 +70609,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool Maintenance" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246542" }, { + "term": "Core.Description", "value": "The tenant pays for pool maintenance." } ] @@ -60239,12 +70628,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Repairs" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246543" }, { + "term": "Core.Description", "value": "The tenant pays for repairs." } ] @@ -60255,12 +70647,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Roof" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246544" }, { + "term": "Core.Description", "value": "The tenant pays for roof maintenance." } ] @@ -60271,12 +70666,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Security" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246545" }, { + "term": "Core.Description", "value": "The tenant pays for security." } ] @@ -60287,12 +70685,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246546" }, { + "term": "Core.Description", "value": "See the listing\u0027s remarks for details on what they tenant pays for." } ] @@ -60303,12 +70704,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sewer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246547" }, { + "term": "Core.Description", "value": "The tenant pays for sewer." } ] @@ -60319,12 +70723,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Snow Removal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246548" }, { + "term": "Core.Description", "value": "The tenant pays for snow removal." } ] @@ -60335,12 +70742,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Taxes" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246549" }, { + "term": "Core.Description", "value": "The tenant pays for taxes." } ] @@ -60351,12 +70761,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Telephone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246550" }, { + "term": "Core.Description", "value": "The tenant pays for telephone." } ] @@ -60367,12 +70780,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trash Collection" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246551" }, { + "term": "Core.Description", "value": "The tenant pays for trash collection." } ] @@ -60383,12 +70799,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246552" }, { + "term": "Core.Description", "value": "The tenant pays for water." } ] @@ -60399,12 +70818,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Apartments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Apartments" }, { + "term": "Core.Description", "value": "The type of unit is apartments." } ] @@ -60415,12 +70837,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Efficiency" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Efficiency" }, { + "term": "Core.Description", "value": "The type of unit is an efficiency." } ] @@ -60431,12 +70856,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "4 Bedroom Or More" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/4+Bedroom+Or+More" }, { + "term": "Core.Description", "value": "The type of unit is a 4 or more bedroom." } ] @@ -60447,12 +70875,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Loft" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246608" }, { + "term": "Core.Description", "value": "The type of unit is a loft." } ] @@ -60463,12 +70894,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Manager\u0027s Unit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Manager%27s+Unit" }, { + "term": "Core.Description", "value": "The type of unit is a manager\u0027s unit." } ] @@ -60479,12 +70913,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "1 Bedroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/1+Bedroom" }, { + "term": "Core.Description", "value": "The type of unit is a 1 bedroom." } ] @@ -60495,12 +70932,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Penthouse" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Penthouse" }, { + "term": "Core.Description", "value": "The type of unit is a penthouse." } ] @@ -60511,12 +70951,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Studio" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246611" }, { + "term": "Core.Description", "value": "The type of unit is a studio." } ] @@ -60527,12 +70970,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "3 Bedroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/3+Bedroom" }, { + "term": "Core.Description", "value": "The type of unit is a 3 bedroom." } ] @@ -60543,12 +70989,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "2 Bedroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/2+Bedroom" }, { + "term": "Core.Description", "value": "The type of unit is a 2 bedroom." } ] @@ -60559,12 +71008,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "All Units" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/All+Units" }, { + "term": "Core.Description", "value": "All of the units in the listed income property are furnished." } ] @@ -60575,12 +71027,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246595" }, { + "term": "Core.Description", "value": "None of the units in the listed income property are furnished." } ] @@ -60591,12 +71046,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Varies By Unit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Varies+By+Unit" }, { + "term": "Core.Description", "value": "Some of the units in the listing income property are furnished." } ] @@ -60607,12 +71065,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cable Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cable+Available" }, { + "term": "Core.Description", "value": "The property has cable available but is not connected." } ] @@ -60623,12 +71084,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cable Connected" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cable+Connected" }, { + "term": "Core.Description", "value": "Cable service is physically connected, but not necessarily paid." } ] @@ -60639,12 +71103,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cable Not Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cable+Not+Available" }, { + "term": "Core.Description", "value": "Cable is not available in the area of the property." } ] @@ -60655,12 +71122,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electricity Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electricity+Available" }, { + "term": "Core.Description", "value": "Electricity is available from the public utility but not connected." } ] @@ -60671,12 +71141,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electricity Connected" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electricity+Connected" }, { + "term": "Core.Description", "value": "Electricity from the public utility is available and connected, but not necessarily paid." } ] @@ -60687,12 +71160,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Electricity Not Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Electricity+Not+Available" }, { + "term": "Core.Description", "value": "Electricity from the public utility is not available. An independent source of electricity is the only option." } ] @@ -60703,12 +71179,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Natural Gas Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Natural+Gas+Available" }, { + "term": "Core.Description", "value": "Natural gas is available from the public utility but not connected." } ] @@ -60719,12 +71198,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Natural Gas Connected" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Natural+Gas+Connected" }, { + "term": "Core.Description", "value": "Natural gas from the public utility is available and connected, but not necessarily paid." } ] @@ -60735,12 +71217,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Natural Gas Not Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Natural+Gas+Not+Available" }, { + "term": "Core.Description", "value": "Natural gas from the public utility is not available. An independent source of gas is the only option. i.e. propane." } ] @@ -60751,12 +71236,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246579" }, { + "term": "Core.Description", "value": "There are no public utilities currently available or connected." } ] @@ -60767,12 +71255,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246580" }, { + "term": "Core.Description", "value": "There are utilities other than those listed." } ] @@ -60783,12 +71274,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Phone Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Phone+Available" }, { + "term": "Core.Description", "value": "The property has telephone service available but is not connected." } ] @@ -60799,12 +71293,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Phone Connected" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Phone+Connected" }, { + "term": "Core.Description", "value": "Telephone service is physically connected, but not necessarily paid." } ] @@ -60815,12 +71312,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Phone Not Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Phone+Not+Available" }, { + "term": "Core.Description", "value": "Telephone service is not available in the area of the property." } ] @@ -60831,12 +71331,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Propane" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Propane" }, { + "term": "Core.Description", "value": "The property has a propane system." } ] @@ -60847,12 +71350,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246585" }, { + "term": "Core.Description", "value": "See remarks for details about the public or other utilities available/installed at the property." } ] @@ -60863,12 +71369,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sewer Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sewer+Available" }, { + "term": "Core.Description", "value": "Sewer service is available from the public utility but not connected." } ] @@ -60879,12 +71388,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sewer Connected" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sewer+Connected" }, { + "term": "Core.Description", "value": "Sewer service from the public utility is available and connected, but not necessarily paid." } ] @@ -60895,12 +71407,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sewer Not Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sewer+Not+Available" }, { + "term": "Core.Description", "value": "Sewer service from the public utility is not available. An independent alternative to sewer is the only option. i.e. septic." } ] @@ -60911,12 +71426,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Underground Utilities" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Underground+Utilities" }, { + "term": "Core.Description", "value": "All or some of the utilities are run underground." } ] @@ -60927,12 +71445,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Water+Available" }, { + "term": "Core.Description", "value": "Water service is available from the public utility but not connected." } ] @@ -60943,12 +71464,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Connected" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Water+Connected" }, { + "term": "Core.Description", "value": "Water service from the public utility is available and connected, but not necessarily paid." } ] @@ -60959,12 +71483,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water Not Available" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Water+Not+Available" }, { + "term": "Core.Description", "value": "Water service from the public utility is not available. An independent source for water is the only option. i.e. well." } ] @@ -60975,12 +71502,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Brush" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Brush" }, { + "term": "Core.Description", "value": "The lot has brush." } ] @@ -60991,12 +71521,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cleared" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cleared" }, { + "term": "Core.Description", "value": "The lot has been cleared." } ] @@ -61007,12 +71540,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Crop(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246678" }, { + "term": "Core.Description", "value": "There are crops on the lot." } ] @@ -61023,12 +71559,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Grassed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Grassed" }, { + "term": "Core.Description", "value": "The lot is grassed." } ] @@ -61039,12 +71578,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Heavily Wooded" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Heavily+Wooded" }, { + "term": "Core.Description", "value": "The lot is heavily wooded." } ] @@ -61055,12 +71597,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Natural State" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Natural+State" }, { + "term": "Core.Description", "value": "The lot is in its natural state." } ] @@ -61071,12 +71616,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246682" }, { + "term": "Core.Description", "value": "There are other types of vegetation on the lot than those in this list." } ] @@ -61087,12 +71635,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Partially Wooded" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Partially+Wooded" }, { + "term": "Core.Description", "value": "The lot is partially wooded." } ] @@ -61103,12 +71654,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246684" }, { + "term": "Core.Description", "value": "See the Public or Private Remarks for details about the vegetation found on the lot." } ] @@ -61119,12 +71673,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wooded" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wooded" }, { + "term": "Core.Description", "value": "The lot is wooded." } ] @@ -61135,12 +71692,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bay" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bay" }, { + "term": "Core.Description", "value": "The property has a bay view." } ] @@ -61151,12 +71711,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Beach" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Beach" }, { + "term": "Core.Description", "value": "The property has a beach view." } ] @@ -61167,12 +71730,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bridge(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246689" }, { + "term": "Core.Description", "value": "The property has a bridge(s) view." } ] @@ -61183,12 +71749,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Canal" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Canal" }, { + "term": "Core.Description", "value": "The property has a canal view." } ] @@ -61199,12 +71768,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Canyon" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Canyon" }, { + "term": "Core.Description", "value": "The property has a canyon view." } ] @@ -61215,12 +71787,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "City" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246692" }, { + "term": "Core.Description", "value": "The property has a city view." } ] @@ -61231,12 +71806,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "City Lights" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/City+Lights" }, { + "term": "Core.Description", "value": "The property has a view of the city lights." } ] @@ -61247,12 +71825,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Creek/Stream" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246694" }, { + "term": "Core.Description", "value": "The property has a creek/stream view." } ] @@ -61263,12 +71844,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Desert" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Desert" }, { + "term": "Core.Description", "value": "The property has a desert view." } ] @@ -61279,12 +71863,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Downtown" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Downtown" }, { + "term": "Core.Description", "value": "The property has a downtown view." } ] @@ -61295,12 +71882,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Forest" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Forest" }, { + "term": "Core.Description", "value": "The property has a forest view." } ] @@ -61311,12 +71901,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garden" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246698" }, { + "term": "Core.Description", "value": "The property has a garden view." } ] @@ -61327,12 +71920,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Golf Course" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246699" }, { + "term": "Core.Description", "value": "The property has a view of the golf course." } ] @@ -61343,12 +71939,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hills" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hills" }, { + "term": "Core.Description", "value": "The property has a view of the hills." } ] @@ -61359,12 +71958,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lake" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246701" }, { + "term": "Core.Description", "value": "The property has a lake view." } ] @@ -61375,12 +71977,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Marina" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246702" }, { + "term": "Core.Description", "value": "The property has a marina view." } ] @@ -61391,12 +71996,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Meadow" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246703" }, { + "term": "Core.Description", "value": "The property has a view of the meadow." } ] @@ -61407,12 +72015,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mountain(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246704" }, { + "term": "Core.Description", "value": "The property has a mountain view." } ] @@ -61423,12 +72034,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Neighborhood" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Neighborhood" }, { + "term": "Core.Description", "value": "The property has a view of the neighborhood." } ] @@ -61439,12 +72053,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246706" }, { + "term": "Core.Description", "value": "The property has no view." } ] @@ -61455,12 +72072,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ocean" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ocean" }, { + "term": "Core.Description", "value": "The property has an ocean view." } ] @@ -61471,12 +72091,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Orchard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246708" }, { + "term": "Core.Description", "value": "The property has a view of the orchard(s)." } ] @@ -61487,12 +72110,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246709" }, { + "term": "Core.Description", "value": "The property has a view other than those in this list." } ] @@ -61503,12 +72129,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Panoramic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Panoramic" }, { + "term": "Core.Description", "value": "The property has a panoramic view." } ] @@ -61519,12 +72148,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Park/Greenbelt" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246711" }, { + "term": "Core.Description", "value": "The property has a park/greenbelt view." } ] @@ -61535,12 +72167,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pasture" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246712" }, { + "term": "Core.Description", "value": "The property has a view of the pasture." } ] @@ -61551,12 +72186,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pond" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246713" }, { + "term": "Core.Description", "value": "The property has a view of a pond." } ] @@ -61567,12 +72205,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246714" }, { + "term": "Core.Description", "value": "The property has a view of the pool." } ] @@ -61583,12 +72224,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ridge" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ridge" }, { + "term": "Core.Description", "value": "The property has a view of the ridge." } ] @@ -61599,12 +72243,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "River" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246716" }, { + "term": "Core.Description", "value": "The property has a river view." } ] @@ -61615,12 +72262,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Rural" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Rural" }, { + "term": "Core.Description", "value": "The property has a rural view." } ] @@ -61631,12 +72281,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246718" }, { + "term": "Core.Description", "value": "See the remarks fields for more information about the view from the property." } ] @@ -61647,12 +72300,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Skyline" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Skyline" }, { + "term": "Core.Description", "value": "The property has a view of the skyline." } ] @@ -61663,12 +72319,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Territorial" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Territorial" }, { + "term": "Core.Description", "value": "The property has a view of the surrounding area." } ] @@ -61679,12 +72338,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Trees/Woods" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246721" }, { + "term": "Core.Description", "value": "The property has a view of the trees or woods." } ] @@ -61695,12 +72357,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Valley" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Valley" }, { + "term": "Core.Description", "value": "The property has a view of the valley." } ] @@ -61711,12 +72376,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vineyard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246723" }, { + "term": "Core.Description", "value": "The property has a view of the vineyard(s)." } ] @@ -61727,12 +72395,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246724" }, { + "term": "Core.Description", "value": "The property has a water view." } ] @@ -61743,12 +72414,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cistern" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cistern" }, { + "term": "Core.Description", "value": "The property\u0027s source of water has/includes a cistern." } ] @@ -61759,12 +72433,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246615" }, { + "term": "Core.Description", "value": "The property has no current source of water." } ] @@ -61775,12 +72452,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246616" }, { + "term": "Core.Description", "value": "The property has a source of water other than those listed." } ] @@ -61791,12 +72471,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246617" }, { + "term": "Core.Description", "value": "The property\u0027s source of water is private." } ] @@ -61807,12 +72490,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246618" }, { + "term": "Core.Description", "value": "The property\u0027s source of water is public." } ] @@ -61823,12 +72509,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246619" }, { + "term": "Core.Description", "value": "See the listing\u0027s remarks for details on the property\u0027s water source." } ] @@ -61839,12 +72528,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Shared Well" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Shared+Well" }, { + "term": "Core.Description", "value": "The property\u0027s source of water has/includes a shared well." } ] @@ -61855,12 +72547,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Spring" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Spring" }, { + "term": "Core.Description", "value": "The property\u0027s source of water has/includes a spring." } ] @@ -61871,12 +72566,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Well" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Well" }, { + "term": "Core.Description", "value": "The property\u0027s source of water has/includes a well." } ] @@ -61887,12 +72585,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Beach Access" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246624" }, { + "term": "Core.Description", "value": "The property has access to the beach." } ] @@ -61903,12 +72604,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Beach Front" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Beach+Front" }, { + "term": "Core.Description", "value": "The property is on the beach front." } ] @@ -61919,12 +72623,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Canal Access" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Canal+Access" }, { + "term": "Core.Description", "value": "The property has access to the canal(s)." } ] @@ -61935,12 +72642,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Canal Front" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Canal+Front" }, { + "term": "Core.Description", "value": "The property is located on the canal." } ] @@ -61951,12 +72661,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Creek" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Creek" }, { + "term": "Core.Description", "value": "The property is either on or near a creek." } ] @@ -61967,12 +72680,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lagoon" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lagoon" }, { + "term": "Core.Description", "value": "The property is either on or near a lagoon." } ] @@ -61983,12 +72699,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lake" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246630" }, { + "term": "Core.Description", "value": "The property is either on or near a lake." } ] @@ -61999,12 +72718,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lake Front" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lake+Front" }, { + "term": "Core.Description", "value": "The property is on the lake front." } ] @@ -62015,12 +72737,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lake Privileges" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lake+Privileges" }, { + "term": "Core.Description", "value": "The property includes rights to access the lake." } ] @@ -62031,12 +72756,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Navigable Water" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Navigable+Water" }, { + "term": "Core.Description", "value": "The water wide, slow and deep enough for water vessels." } ] @@ -62047,12 +72775,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ocean Access" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ocean+Access" }, { + "term": "Core.Description", "value": "The property has access to the ocean." } ] @@ -62063,12 +72794,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ocean Front" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ocean+Front" }, { + "term": "Core.Description", "value": "The property is on the ocean front." } ] @@ -62079,12 +72813,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pond" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246636" }, { + "term": "Core.Description", "value": "The property is on or near a pond." } ] @@ -62095,12 +72832,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "River Access" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/River+Access" }, { + "term": "Core.Description", "value": "The property has access to the river." } ] @@ -62111,12 +72851,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "River Front" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/River+Front" }, { + "term": "Core.Description", "value": "The property is located on the river front." } ] @@ -62127,12 +72870,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seawall" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Seawall" }, { + "term": "Core.Description", "value": "The property is protected by a sea wall or barrier." } ] @@ -62143,12 +72889,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stream" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Stream" }, { + "term": "Core.Description", "value": "The property is on our near a stream." } ] @@ -62159,12 +72908,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Waterfront" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246641" }, { + "term": "Core.Description", "value": "The property is located on the waterfront." } ] @@ -62175,12 +72927,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Aluminum Frames" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Aluminum+Frames" }, { + "term": "Core.Description", "value": "The windows have aluminum frames." } ] @@ -62191,12 +72946,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bay Window(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246644" }, { + "term": "Core.Description", "value": "The property has one or more bay windows." } ] @@ -62207,12 +72965,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Blinds" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Blinds" }, { + "term": "Core.Description", "value": "The property has window blinds." } ] @@ -62223,12 +72984,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Display Window(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246646" }, { + "term": "Core.Description", "value": "The property has one or more windows that would normally be used to display goods or products." } ] @@ -62239,12 +73003,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Double Pane Windows" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Double+Pane+Windows" }, { + "term": "Core.Description", "value": "The property has windows with two panes of glass." } ] @@ -62255,12 +73022,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Drapes" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Drapes" }, { + "term": "Core.Description", "value": "The property has drapes." } ] @@ -62271,12 +73041,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ENERGY STAR Qualified Windows" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+Windows" }, { + "term": "Core.Description", "value": "The property has ENERGY STAR Qualified windows." } ] @@ -62287,12 +73060,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garden Window(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246650" }, { + "term": "Core.Description", "value": "The property has one or more garden windows." } ] @@ -62303,12 +73079,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Insulated Windows" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Insulated+Windows" }, { + "term": "Core.Description", "value": "The property has insulated windows." } ] @@ -62319,12 +73098,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Low Emissivity Windows" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Low+Emissivity+Windows" }, { + "term": "Core.Description", "value": "The property has low emissivity windows." } ] @@ -62335,12 +73117,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Plantation Shutters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Plantation+Shutters" }, { + "term": "Core.Description", "value": "The property has plantation shutters." } ] @@ -62351,12 +73136,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Screens" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Screens" }, { + "term": "Core.Description", "value": "The property has screens." } ] @@ -62367,12 +73155,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Shutters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Shutters" }, { + "term": "Core.Description", "value": "The property has shutters." } ] @@ -62383,12 +73174,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Skylight(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246656" }, { + "term": "Core.Description", "value": "The property has skylight(s)." } ] @@ -62399,12 +73193,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Solar Screens" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Solar+Screens" }, { + "term": "Core.Description", "value": "The property has solar screens." } ] @@ -62415,12 +73212,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Storm Window(s)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246658" }, { + "term": "Core.Description", "value": "The property has storm window(s)." } ] @@ -62431,12 +73231,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tinted Windows" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tinted+Windows" }, { + "term": "Core.Description", "value": "The property has tinted windows." } ] @@ -62447,12 +73250,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Triple Pane Windows" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Triple+Pane+Windows" }, { + "term": "Core.Description", "value": "The property has triple pane windows." } ] @@ -62463,12 +73269,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Window Coverings" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Window+Coverings" }, { + "term": "Core.Description", "value": "The property has window coverings." } ] @@ -62479,12 +73288,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Window Treatments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Window+Treatments" }, { + "term": "Core.Description", "value": "The property has window treatments." } ] @@ -62495,12 +73307,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wood Frames" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wood+Frames" }, { + "term": "Core.Description", "value": "The property has wood framed windows." } ] @@ -62511,12 +73326,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Appraiser" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246666" }, { + "term": "Core.Description", "value": "An appraiser provided the year built." } ] @@ -62527,12 +73345,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assessor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246667" }, { + "term": "Core.Description", "value": "The assessor provided the year built." } ] @@ -62543,12 +73364,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Builder" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246668" }, { + "term": "Core.Description", "value": "The builder provided the year built." } ] @@ -62559,12 +73383,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Estimated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246669" }, { + "term": "Core.Description", "value": "The year built is an estimate." } ] @@ -62575,12 +73402,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246670" }, { + "term": "Core.Description", "value": "The year built was provided by another party not listed." } ] @@ -62591,12 +73421,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246671" }, { + "term": "Core.Description", "value": "The owner provided the year built." } ] @@ -62607,12 +73440,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public Records" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246672" }, { + "term": "Core.Description", "value": "The year built was received from public records." } ] @@ -62623,12 +73459,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246673" }, { + "term": "Core.Description", "value": "See remarks for information about the source of the lot size measurement." } ] @@ -62639,12 +73478,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accredited Buyer\u0027s Representative / ABR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245602" }, { + "term": "Core.Description", "value": "The Accredited Buyer’s Representative (ABR®) designation is designed for real estate buyer agents who focus on working directly with buyer-clients. http://www.rebac.net/abr" } ] @@ -62655,12 +73497,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Accredited Land Consultant / ALC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245603" }, { + "term": "Core.Description", "value": "Accredited Land Consultants (ALCs) are the most trusted, knowledgeable, experienced, and highest-producing experts in all segments of land. Conferred by the REALTORS® Land Institute, the designation requires successful completion of a rigorous LANDU education program, a specific, high-volume and experience level, and adherence to an honorable Code of Conduct. https://www.nar.realtor/designations-and-certifications/alc" } ] @@ -62671,12 +73516,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "At Home With Diversity / AHWD" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245604" }, { + "term": "Core.Description", "value": "Learn to work effectively with – and within – today’s diverse real estate market. The At Home With Diversity certification teaches you how to conduct your business with sensitivity to all client profiles and build a business plan to successfully serve them. https://www.nar.realtor/designations-and-certifications/ahwd" } ] @@ -62687,12 +73535,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Commercial Investment Member / CCIM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245605" }, { + "term": "Core.Description", "value": "The Certified Commercial Investment Member (CCIM) designation is commercial real estate’s global standard for professional achievement, earned through an extensive curriculum of 200 classroom hours and professional experiential requirements. https://www.nar.realtor/designations-and-certifications/ccim" } ] @@ -62703,12 +73554,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Distressed Property Expert / CDPE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245606" }, { + "term": "Core.Description", "value": "A Certified Distressed Property Expert® (CDPE) has a thorough understanding of complex issues in today’s turbulent real estate industry and knowledge of foreclosure avoidance options available to homeowners. CDPEs can provide solutions, specifically short sales, for homeowners facing market hardships. http://www.cdpe.com/" } ] @@ -62719,12 +73573,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified International Property Specialist / CIPS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245607" }, { + "term": "Core.Description", "value": "The CIPS designation is for REALTORS® from the United States and abroad, as well as association staff and volunteer leaders who wish to develop or grow their international real estate business. It will provide you with the knowledge, research, network, and tools to globalize your business. https://www.nar.realtor/designations-and-certifications/cips-designation" } ] @@ -62735,12 +73592,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Property Manager / CPM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245608" }, { + "term": "Core.Description", "value": "Certified Property Managers® (CPM®) are recognized as experts in real estate management, and they are at the top of the profession. 70% of those who hold the CPM® designation hold the highest management positions in their offices (owner/partner/officer/director). https://www.nar.realtor/designations-and-certifications/cpm" } ] @@ -62751,12 +73611,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Real Estate Brokerage Manager / CRB" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245609" }, { + "term": "Core.Description", "value": "The Certified Real Estate Brokerage Manager (CRB) Designation raises professional standards, strengthens individual and office performance, and indicates expertise in brokerage management. This designation represents the highest level of professional achievement in real estate brokerage management. You do not need a broker\u0027s license to earn the CRB Designation. https://www.nar.realtor/designations-and-certifications/crb" } ] @@ -62767,12 +73630,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Real Estate Team Specialist / C-RETS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245610" }, { + "term": "Core.Description", "value": "The Certified Real Estate Team Specialist certification is designed to improve team development, individual leadership skills, and financial performance. The courses provide the tools, strategies, and knowledge that are required of today’s real estate professionals who are either considering or currently operating in a team environment. It is for team leaders, team members, those looking to start a team, and those who simply want to sharpen their management skills. https://www.nar.realtor/designations-and-certifications/c-rets" } ] @@ -62783,12 +73649,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Certified Residential Specialist / CRS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245611" }, { + "term": "Core.Description", "value": "Certified Residential Specialist (CRS) is the highest credential awarded to residential sales agents, managers and brokers. https://www.nar.realtor/designations-and-certifications/crs" } ] @@ -62799,12 +73668,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Counselor of Real Estate / CRE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245612" }, { + "term": "Core.Description", "value": "The Counselors of Real Estate® is an international group of recognized professionals who provide seasoned, expert, objective advice on real property and land-related matters. Only 1,100 practitioners throughout the world carry the CRE® designation. Membership is by invitation only. https://www.nar.realtor/designations-and-certifications/cre" } ] @@ -62815,12 +73687,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "e-PRO" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245613" }, { + "term": "Core.Description", "value": "NAR\u0027s e-PRO® certification teaches you to use cutting-edge technologies and digital initiatives to link up with today\u0027s savvy real estate consumer. https://www.nar.realtor/designations-and-certifications/e-pro" } ] @@ -62831,12 +73706,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "General Accredited Appraiser / GAA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245614" }, { + "term": "Core.Description", "value": "For general appraisers, this designation is awarded to those whose education and experience exceed state appraisal certification requirements and is supported by the National Association of REALTORS®. https://www.nar.realtor/designations-and-certifications/gaa" } ] @@ -62847,12 +73725,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Graduate, REALTOR Institute / GRI" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245615" }, { + "term": "Core.Description", "value": "REALTORS® with the GRI designation have in-depth training in legal and regulatory issues, technology, professional standards, and the sales process. Earning the designation is a way to stand out to prospective buyers and sellers as a professional with expertise in these areas. https://www.nar.realtor/designations-and-certifications/gri" } ] @@ -62863,12 +73744,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Military Relocation Professional / MRP" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245616" }, { + "term": "Core.Description", "value": "NAR\u0027s Military Relocation Professional certification focuses on educating real estate professionals about working with current and former military service members to find housing solutions that best suit their needs and take full advantage of military benefits and support. https://www.nar.realtor/designations-and-certifications/mrp" } ] @@ -62879,12 +73763,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "NAR\u0027s Green Designation / GREEN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245617" }, { + "term": "Core.Description", "value": "Through NAR\u0027s Green Designation, the Green Resource Council provides ongoing education, resources and tools to help real estate practitioners find, understand, and market properties with green features. https://www.nar.realtor/designations-and-certifications/green" } ] @@ -62895,12 +73782,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Performance Management Network / PMN" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245618" }, { + "term": "Core.Description", "value": "This designation is unique to the REALTOR® family designations, emphasizing that in order to enhance your business, you must enhance yourself. It focuses on negotiating strategies and tactics, networking and referrals, business planning and systems, personal performance management and leadership development. https://www.nar.realtor/designations-and-certifications/pmn" } ] @@ -62911,12 +73801,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pricing Strategy Advisor / PSA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245619" }, { + "term": "Core.Description", "value": "Enhance your skills in pricing properties, creating CMAs, working with appraisers, and guiding clients through the anxieties and misperceptions they often have about home values with NAR’s PSA (Pricing Strategy Advisor) certification. https://www.nar.realtor/designations-and-certifications/psa" } ] @@ -62927,12 +73820,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Real Estate Negotiation Expert / RENE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245620" }, { + "term": "Core.Description", "value": "This certification is for real estate professionals who want to sharpen their negotiation skills. The RENE certification program gives REALTORS® the tips and tools they need to be skillful advocates for their clients. https://www.nar.realtor/designations-and-certifications/rene" } ] @@ -62943,12 +73839,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "REALTOR Association Certified Executive / RCE" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245621" }, { + "term": "Core.Description", "value": "RCE is the only professional designation designed specifically for REALTOR® association executives. RCE designees exemplify goal-oriented AEs with drive, experience and commitment to professional growth. https://www.nar.realtor/designations-and-certifications/rce" } ] @@ -62959,12 +73858,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential Accredited Appraiser / RAA" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245622" }, { + "term": "Core.Description", "value": "For residential appraisers, this designation is awarded to those whose education and experience exceed state appraisal certification requirements and is supported by the National Association of REALTORS®. https://www.nar.realtor/designations-and-certifications/raa" } ] @@ -62975,12 +73877,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Resort \u0026 Second-Home Property Specialist / RSPS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245623" }, { + "term": "Core.Description", "value": "This certification is designed for REALTORS® who facilitate the buying, selling, or management of properties for investment, development, retirement, or second homes in a resort, recreational and/or vacation destination are involved in this market niche. https://www.nar.realtor/designations-and-certifications/rsps" } ] @@ -62991,12 +73896,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seller Representative Specialist / SRS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245624" }, { + "term": "Core.Description", "value": "The Seller Representative Specialist (SRS) designation is the premier credential in seller representation. It is designed to elevate professional standards and enhance personal performance. The designation is awarded to real estate practitioners by the Real Estate Business Institute (REBI) who meet specific educational and practical experience criteria. https://www.nar.realtor/designations-and-certifications/seller-representative-specialist-srs" } ] @@ -63007,12 +73915,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seniors Real Estate Specialist / SRES" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245625" }, { + "term": "Core.Description", "value": "The SRES® Designation program educates REALTORS® on how to profitably and ethically serve the real estate needs of the fastest growing market in real estate, clients age 50+. By earning the SRES® designation, you gain access to valuable member benefits, useful resources, and networking opportunities across the U.S. and Canada to help you in your business. https://www.nar.realtor/designations-and-certifications/sres" } ] @@ -63023,12 +73934,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Short Sales \u0026 Foreclosure Resource / SFR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245626" }, { + "term": "Core.Description", "value": "The SFR® certification teaches real estate professionals to work with distressed sellers and the finance, tax, and legal professionals who can help them, qualify sellers for short sales, develop a short sale package, negotiate with lenders, safeguard your commission, limit risk, and protect buyers. https://www.nar.realtor/designations-and-certifications/sfr" } ] @@ -63039,12 +73953,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Society of Industrial and Office REALTORS / SIOR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245627" }, { + "term": "Core.Description", "value": "The SIOR designation is held by only the most knowledgeable, experienced, and successful commercial real estate brokerage specialists. To earn it, designees must meet standards of experience, production, education, ethics, and provide recommendations. https://www.nar.realtor/designations-and-certifications/sior" } ] @@ -63055,12 +73972,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Transnational Referral Certification / TRC" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245628" }, { + "term": "Core.Description", "value": "Real estate professionals who have taken the Transnational Referral Certified (TRC) training, have completed special training on making and receiving client referrals from professionals in other countries. https://worldproperties.com/about-us/international-referrals-and-trc/" } ] @@ -63071,12 +73991,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Abkhazian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Abkhazian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Abkhazian." } ] @@ -63087,12 +74010,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Afar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Afar" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Afar." } ] @@ -63103,12 +74029,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Afrikaans" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Afrikaans" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Afrikaans." } ] @@ -63119,12 +74048,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Albanian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Albanian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Albanian." } ] @@ -63135,12 +74067,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "American Sign Language" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/American+Sign+Language" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is American Sign Language." } ] @@ -63151,12 +74086,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Amharic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Amharic" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Amharic." } ] @@ -63167,12 +74105,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Arabic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Arabic" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Arabic." } ] @@ -63183,12 +74124,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Aramaic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Aramaic" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Aramaic." } ] @@ -63199,12 +74143,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Armenian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Armenian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Armenian." } ] @@ -63215,12 +74162,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assamese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Assamese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Assamese." } ] @@ -63231,12 +74181,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assyrian Neo-Aramaic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Assyrian+Neo-Aramaic" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Assyrian Neo-Aramaic." } ] @@ -63247,12 +74200,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Avestan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Avestan" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Avestan." } ] @@ -63263,12 +74219,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Aymara" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Aymara" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Aymara." } ] @@ -63279,12 +74238,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Azerbaijani" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Azerbaijani" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Azerbaijani." } ] @@ -63295,12 +74257,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bambara" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bambara" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Bambara." } ] @@ -63311,12 +74276,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bashkir" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bashkir" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Bashkir." } ] @@ -63327,12 +74295,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Basque" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Basque" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Basque." } ] @@ -63343,12 +74314,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bengali" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bengali" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Bengali." } ] @@ -63359,12 +74333,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bihari" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bihari" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Bihari." } ] @@ -63375,12 +74352,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bikol" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bikol" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Bikol." } ] @@ -63391,12 +74371,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bislama" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bislama" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Bislama." } ] @@ -63407,12 +74390,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bosnian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bosnian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Bosnian." } ] @@ -63423,12 +74409,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Brazilian Portuguese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Brazilian+Portuguese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Brazilian Portuguese." } ] @@ -63439,12 +74428,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bulgarian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bulgarian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Bulgarian." } ] @@ -63455,12 +74447,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Burmese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Burmese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Burmese." } ] @@ -63471,12 +74466,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Byelorussian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Byelorussian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Byelorussian." } ] @@ -63487,12 +74485,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cambodian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cambodian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Cambodian." } ] @@ -63503,12 +74504,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cantonese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cantonese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Cantonese." } ] @@ -63519,12 +74523,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cape Verdean Creole" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cape+Verdean+Creole" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Cape Verdean Creole." } ] @@ -63535,12 +74542,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Catalan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Catalan" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Catalan." } ] @@ -63551,12 +74561,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cebuano" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cebuano" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Cebuano." } ] @@ -63567,12 +74580,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Chamorro" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Chamorro" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Chamorro." } ] @@ -63583,12 +74599,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Chechen" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Chechen" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Chechen." } ] @@ -63599,12 +74618,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Chinese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Chinese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Chinese." } ] @@ -63615,12 +74637,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Chuukese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Chuukese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Chuukese." } ] @@ -63631,12 +74656,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Chuvash" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Chuvash" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Chuvash." } ] @@ -63647,12 +74675,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cornish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cornish" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Cornish." } ] @@ -63663,12 +74694,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Corsican" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Corsican" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Corsican." } ] @@ -63679,12 +74713,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Croatian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Croatian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Croatian." } ] @@ -63695,12 +74732,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Czech" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Czech" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Czech." } ] @@ -63711,12 +74751,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Danish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Danish" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Danish." } ] @@ -63727,12 +74770,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dari (Afghan Persian)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245194" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Dari (Afghan Persian)." } ] @@ -63743,12 +74789,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dioula" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dioula" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Dioula." } ] @@ -63759,12 +74808,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dutch" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dutch" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Dutch." } ] @@ -63775,12 +74827,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dzongkha" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dzongkha" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Dzongkha." } ] @@ -63791,12 +74846,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "English" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/English" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is English." } ] @@ -63807,12 +74865,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Esperanto" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Esperanto" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Esperanto." } ] @@ -63823,12 +74884,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Estonian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Estonian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Estonian." } ] @@ -63839,12 +74903,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Faroese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Faroese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Faroese." } ] @@ -63855,12 +74922,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Farsi" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Farsi" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Farsi." } ] @@ -63871,12 +74941,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fiji" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fiji" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Fiji." } ] @@ -63887,12 +74960,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Finnish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Finnish" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Finnish." } ] @@ -63903,12 +74979,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Flemish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Flemish" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Flemish." } ] @@ -63919,12 +74998,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "French" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/French" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is French." } ] @@ -63935,12 +75017,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Frisian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Frisian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Frisian." } ] @@ -63951,12 +75036,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Galician" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Galician" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Galician." } ] @@ -63967,12 +75055,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Georgian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Georgian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Georgian." } ] @@ -63983,12 +75074,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "German" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/German" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is German." } ] @@ -63999,12 +75093,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Greek" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Greek" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Greek." } ] @@ -64015,12 +75112,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Greenlandic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Greenlandic" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Greenlandic." } ] @@ -64031,12 +75131,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Guarani" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Guarani" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Guarani." } ] @@ -64047,12 +75150,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gujarati" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gujarati" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Gujarati." } ] @@ -64063,12 +75169,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Haitian Creole" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Haitian+Creole" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Haitian Creole." } ] @@ -64079,12 +75188,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hausa" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hausa" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Hausa." } ] @@ -64095,12 +75207,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hebrew" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hebrew" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Hebrew." } ] @@ -64111,12 +75226,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Herero" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Herero" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Herero." } ] @@ -64127,12 +75245,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hiligaynon" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hiligaynon" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Hiligaynon." } ] @@ -64143,12 +75264,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hindi" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hindi" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Hindi." } ] @@ -64159,12 +75283,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hiri Motu" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hiri+Motu" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Hiri Motu." } ] @@ -64175,12 +75302,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hmong" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hmong" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Hmong." } ] @@ -64191,12 +75321,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hungarian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hungarian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Hungarian." } ] @@ -64207,12 +75340,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Iban" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Iban" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Iban." } ] @@ -64223,12 +75359,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Icelandic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Icelandic" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Icelandic." } ] @@ -64239,12 +75378,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Igbo" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Igbo" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Igbo." } ] @@ -64255,12 +75397,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ilocano" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ilocano" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Ilocano." } ] @@ -64271,12 +75416,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Indonesian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Indonesian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Indonesian." } ] @@ -64287,12 +75435,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Interlingua" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Interlingua" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Interlingua." } ] @@ -64303,12 +75454,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Inuktitut" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Inuktitut" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Inuktitut." } ] @@ -64319,12 +75473,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Inupiak" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Inupiak" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Inupiak." } ] @@ -64335,12 +75492,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Irish (Gaelic)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245232" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Irish (Gaelic)." } ] @@ -64351,12 +75511,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Italian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Italian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Italian." } ] @@ -64367,12 +75530,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Japanese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Japanese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Japanese." } ] @@ -64383,12 +75549,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Javanese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Javanese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Javanese." } ] @@ -64399,12 +75568,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kannada" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kannada" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Kannada." } ] @@ -64415,12 +75587,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kashmiri" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kashmiri" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Kashmiri." } ] @@ -64431,12 +75606,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kazakh" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kazakh" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Kazakh." } ] @@ -64447,12 +75625,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "K\u0027iche\u0027" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245239" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is K\u0027iche\u0027." } ] @@ -64463,12 +75644,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kichwa" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kichwa" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Kichwa." } ] @@ -64479,12 +75663,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kikuyu" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kikuyu" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Kikuyu." } ] @@ -64495,12 +75682,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kinyarwanda" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kinyarwanda" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Kinyarwanda." } ] @@ -64511,12 +75701,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kirghiz" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kirghiz" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Kirghiz." } ] @@ -64527,12 +75720,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kirundi" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kirundi" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Kirundi." } ] @@ -64543,12 +75739,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Komi" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Komi" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Komi." } ] @@ -64559,12 +75758,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Korean" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Korean" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Korean." } ] @@ -64575,12 +75777,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kpelle" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kpelle" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Kpelle." } ] @@ -64591,12 +75796,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kru" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kru" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Kru." } ] @@ -64607,12 +75815,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kurdish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kurdish" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Kurdish." } ] @@ -64623,12 +75834,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lao" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lao" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Lao." } ] @@ -64639,12 +75853,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Latin" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Latin" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Latin." } ] @@ -64655,12 +75872,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Latvian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Latvian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Latvian." } ] @@ -64671,12 +75891,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lingala" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lingala" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Lingala." } ] @@ -64687,12 +75910,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lithuanian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lithuanian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Lithuanian." } ] @@ -64703,12 +75929,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Luxemburgish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Luxemburgish" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Luxemburgish." } ] @@ -64719,12 +75948,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Macedonian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Macedonian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Macedonian." } ] @@ -64735,12 +75967,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Malagasy" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Malagasy" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Malagasy." } ] @@ -64751,12 +75986,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Malay" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Malay" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Malay." } ] @@ -64767,12 +76005,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Malayalam" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Malayalam" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Malayalam." } ] @@ -64783,12 +76024,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maltese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Maltese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Maltese." } ] @@ -64799,12 +76043,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mandarin" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Mandarin" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Mandarin." } ] @@ -64815,12 +76062,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maninka" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Maninka" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Maninka." } ] @@ -64831,12 +76081,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Manx Gaelic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Manx+Gaelic" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Manx Gaelic." } ] @@ -64847,12 +76100,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maori" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Maori" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Maori." } ] @@ -64863,12 +76119,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Marathi" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Marathi" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Marathi." } ] @@ -64879,12 +76138,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Marshallese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Marshallese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Marshallese." } ] @@ -64895,12 +76157,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Moldovan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Moldovan" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Moldovan." } ] @@ -64911,12 +76176,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mongolian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Mongolian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Mongolian." } ] @@ -64927,12 +76195,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Nauru" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Nauru" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Nauru." } ] @@ -64943,12 +76214,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Navajo" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Navajo" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Navajo." } ] @@ -64959,12 +76233,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ndebele" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ndebele" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Ndebele." } ] @@ -64975,12 +76252,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ndonga" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ndonga" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Ndonga." } ] @@ -64991,12 +76271,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Nepali" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Nepali" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Nepali." } ] @@ -65007,12 +76290,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Norwegian (Nynorsk)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245275" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Norwegian (Nynorsk)." } ] @@ -65023,12 +76309,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Norwegian (Nynorsk)" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245275" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Norwegian (Nynorsk)." } ] @@ -65039,12 +76328,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Nyanja" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Nyanja" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Nyanja." } ] @@ -65055,12 +76347,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Occitan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Occitan" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Occitan." } ] @@ -65071,12 +76366,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Oriya" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Oriya" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Oriya." } ] @@ -65087,12 +76385,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Oromo" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Oromo" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Oromo." } ] @@ -65103,12 +76404,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ossetian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ossetian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Ossetian." } ] @@ -65119,12 +76423,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pali" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pali" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Pali." } ] @@ -65135,12 +76442,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pangasinan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pangasinan" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Pangasinan." } ] @@ -65151,12 +76461,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Papiamento" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Papiamento" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Papiamento." } ] @@ -65167,12 +76480,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pashto" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pashto" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Pashto." } ] @@ -65183,12 +76499,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Polish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Polish" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Polish." } ] @@ -65199,12 +76518,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Portuguese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Portuguese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Portuguese." } ] @@ -65215,12 +76537,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Punjabi" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Punjabi" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Punjabi." } ] @@ -65231,12 +76556,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Quechua" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Quechua" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Quechua." } ] @@ -65247,12 +76575,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Romanian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Romanian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Romanian." } ] @@ -65263,12 +76594,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Romany" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Romany" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Romany." } ] @@ -65279,12 +76613,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Russian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Russian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Russian." } ] @@ -65295,12 +76632,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sami" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sami" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Sami." } ] @@ -65311,12 +76651,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Samoan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Samoan" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Samoan." } ] @@ -65327,12 +76670,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sangho" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sangho" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Sangho." } ] @@ -65343,12 +76689,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sanskrit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sanskrit" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Sanskrit." } ] @@ -65359,12 +76708,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sardinian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sardinian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Sardinian." } ] @@ -65375,12 +76727,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Scots Gaelic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Scots+Gaelic" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Scots Gaelic." } ] @@ -65391,12 +76746,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Serbian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Serbian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Serbian." } ] @@ -65407,12 +76765,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Serbo-Croatian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Serbo-Croatian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Serbo-Croatian." } ] @@ -65423,12 +76784,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sesotho" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sesotho" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Sesotho." } ] @@ -65439,12 +76803,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Setswana" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Setswana" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Setswana." } ] @@ -65455,12 +76822,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Shan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Shan" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Shan." } ] @@ -65471,12 +76841,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Shona" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Shona" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Shona." } ] @@ -65487,12 +76860,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sindhi" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sindhi" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Sindhi." } ] @@ -65503,12 +76879,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sinhalese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sinhalese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Sinhalese." } ] @@ -65519,12 +76898,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Siswati" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Siswati" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Siswati." } ] @@ -65535,12 +76917,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Slovak" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Slovak" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Slovak." } ] @@ -65551,12 +76936,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Slovenian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Slovenian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Slovenian." } ] @@ -65567,12 +76955,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Somali" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Somali" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Somali." } ] @@ -65583,12 +76974,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Southern Ndebele" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Southern+Ndebele" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Southern Ndebele." } ] @@ -65599,12 +76993,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Spanish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Spanish" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Spanish." } ] @@ -65615,12 +77012,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sundanese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sundanese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Sundanese." } ] @@ -65631,12 +77031,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Swahili" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Swahili" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Swahili." } ] @@ -65647,12 +77050,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Swedish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Swedish" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Swedish." } ] @@ -65663,12 +77069,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Syriac" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Syriac" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Syriac." } ] @@ -65679,12 +77088,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tagalog" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tagalog" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Tagalog." } ] @@ -65695,12 +77107,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tahitian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tahitian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Tahitian." } ] @@ -65711,12 +77126,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tajik" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tajik" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Tajik." } ] @@ -65727,12 +77145,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tamil" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tamil" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Tamil." } ] @@ -65743,12 +77164,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tatar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tatar" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Tatar." } ] @@ -65759,12 +77183,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Telugu" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Telugu" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Telugu." } ] @@ -65775,12 +77202,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Thai" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Thai" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Thai." } ] @@ -65791,12 +77221,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tibetan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tibetan" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Tibetan." } ] @@ -65807,12 +77240,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tigrinya" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tigrinya" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Tigrinya." } ] @@ -65823,12 +77259,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tongan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tongan" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Tongan." } ] @@ -65839,12 +77278,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tsonga" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tsonga" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Tsonga." } ] @@ -65855,12 +77297,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Turkish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Turkish" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Turkish." } ] @@ -65871,12 +77316,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Turkmen" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Turkmen" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Turkmen." } ] @@ -65887,12 +77335,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Twi" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Twi" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Twi." } ] @@ -65903,12 +77354,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Uigur" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Uigur" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Uigur." } ] @@ -65919,12 +77373,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ukrainian" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ukrainian" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Ukrainian." } ] @@ -65935,12 +77392,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Urdu" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Urdu" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Urdu." } ] @@ -65951,12 +77411,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Uzbek" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Uzbek" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Uzbek." } ] @@ -65967,12 +77430,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Vietnamese" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Vietnamese" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Vietnamese." } ] @@ -65983,12 +77449,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Volapuk" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Volapuk" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Volapuk." } ] @@ -65999,12 +77468,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Welsh" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Welsh" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Welsh." } ] @@ -66015,12 +77487,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wolof" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wolof" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Wolof." } ] @@ -66031,12 +77506,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Xhosa" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Xhosa" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Xhosa." } ] @@ -66047,12 +77525,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Yiddish" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Yiddish" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Yiddish." } ] @@ -66063,12 +77544,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Yoruba" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Yoruba" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Yoruba." } ] @@ -66079,12 +77563,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Zhuang" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Zhuang" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Zhuang." } ] @@ -66095,12 +77582,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Zulu" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Zulu" }, { + "term": "Core.Description", "value": "The language spoken by the member/individual is Zulu." } ] @@ -66116,12 +77606,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Direct" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Direct" }, { + "term": "Core.Description", "value": "This is the member\u0027s direct number." } ] @@ -66132,12 +77625,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fax" }, { + "term": "Core.Description", "value": "This is the member\u0027s fax." } ] @@ -66148,12 +77644,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "First" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/First" }, { + "term": "Core.Description", "value": "This is the member\u0027s first preferred phone." } ] @@ -66164,12 +77663,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Home" }, { + "term": "Core.Description", "value": "This is the member\u0027s home phone." } ] @@ -66180,12 +77682,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mobile" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Mobile" }, { + "term": "Core.Description", "value": "This is the member\u0027s mobile phone." } ] @@ -66196,12 +77701,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modem" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Modem" }, { + "term": "Core.Description", "value": "This is the member\u0027s modem." } ] @@ -66212,12 +77720,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245636" }, { + "term": "Core.Description", "value": "This is the member\u0027s office phone." } ] @@ -66228,12 +77739,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pager" }, { + "term": "Core.Description", "value": "This is the member\u0027s pager." } ] @@ -66244,12 +77758,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Preferred" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Preferred" }, { + "term": "Core.Description", "value": "This is the member\u0027s preferred phone." } ] @@ -66260,12 +77777,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Second" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Second" }, { + "term": "Core.Description", "value": "This is the member\u0027s second preferred phone." } ] @@ -66276,12 +77796,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SMS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/SMS" }, { + "term": "Core.Description", "value": "This is the member\u0027s SMS/text number." } ] @@ -66292,12 +77815,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Third" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Third" }, { + "term": "Core.Description", "value": "This is the member\u0027s third preferred phone." } ] @@ -66308,12 +77834,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Toll Free" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Toll+Free" }, { + "term": "Core.Description", "value": "This is the member\u0027s toll free number." } ] @@ -66324,12 +77853,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Voicemail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Voicemail" }, { + "term": "Core.Description", "value": "This is the member\u0027s voicemail." } ] @@ -66340,12 +77872,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Active" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245584" }, { + "term": "Core.Description", "value": "The member\u0027s account is active." } ] @@ -66356,12 +77891,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Inactive" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Inactive" }, { + "term": "Core.Description", "value": "the member\u0027s account is not active." } ] @@ -66372,12 +77910,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assistant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Assistant" }, { + "term": "Core.Description", "value": "The member is an assistant. The status of the assistant being licensed is not known or possibly not required." } ] @@ -66388,12 +77929,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association Staff" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Association+Staff" }, { + "term": "Core.Description", "value": "The member is a member of the association\u0027s staff." } ] @@ -66404,12 +77948,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Designated REALTOR Appraiser" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Designated+REALTOR+Appraiser" }, { + "term": "Core.Description", "value": "The member is a designated appraiser and a member of NAR." } ] @@ -66420,12 +77967,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Designated REALTOR Participant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Designated+REALTOR+Participant" }, { + "term": "Core.Description", "value": "The member is a designated broker and a member of NAR." } ] @@ -66436,12 +77986,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Licensed Assistant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Licensed+Assistant" }, { + "term": "Core.Description", "value": "The member is an assistant. The status of the assistant being licensed is not known or possibly not required." } ] @@ -66452,12 +78005,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MLS Only Appraiser" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MLS+Only+Appraiser" }, { + "term": "Core.Description", "value": "The member is an appraiser and not a member of NAR, receiving MLS services only." } ] @@ -66468,12 +78024,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MLS Only Broker" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MLS+Only+Broker" }, { + "term": "Core.Description", "value": "The member is a broker and not a member of NAR, receiving MLS services only." } ] @@ -66484,12 +78043,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MLS Only Salesperson" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MLS+Only+Salesperson" }, { + "term": "Core.Description", "value": "The member is a sales person and not a member of NAR, receiving MLS services only." } ] @@ -66500,12 +78062,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MLS Staff" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MLS+Staff" }, { + "term": "Core.Description", "value": "The individual is a member of MLS staff." } ] @@ -66516,12 +78081,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Non Member/Vendor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245594" }, { + "term": "Core.Description", "value": "The individual is not a member or is a vendor." } ] @@ -66532,12 +78100,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Manager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Office+Manager" }, { + "term": "Core.Description", "value": "The member is a license office manager." } ] @@ -66548,12 +78119,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "REALTOR Appraiser" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/REALTOR+Appraiser" }, { + "term": "Core.Description", "value": "The member is an appraiser and a member of NAR." } ] @@ -66564,12 +78138,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "REALTOR Salesperson" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/REALTOR+Salesperson" }, { + "term": "Core.Description", "value": "The member is a sales person and a member of NAR." } ] @@ -66580,12 +78157,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unlicensed Assistant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Unlicensed+Assistant" }, { + "term": "Core.Description", "value": "The member is an unlicensed assistant." } ] @@ -66596,12 +78176,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Blog" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Blog" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to the member/office/contact\u0027s blog." } ] @@ -66612,12 +78195,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Digg" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Digg" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to Digg." } ] @@ -66628,12 +78214,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Facebook" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Facebook" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to Facebook." } ] @@ -66644,12 +78233,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Facebook Messenger" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Facebook+Messenger" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to Facebook Messenger." } ] @@ -66660,12 +78252,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GooglePlus" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/GooglePlus" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to GooglePlus." } ] @@ -66676,12 +78271,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "iMessage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/iMessage" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to iMessage." } ] @@ -66692,12 +78290,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Instagram" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Instagram" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to Instagram." } ] @@ -66708,12 +78309,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LinkedIn" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/LinkedIn" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to LinkedIn." } ] @@ -66724,12 +78328,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pinterest" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pinterest" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to Pinterest." } ] @@ -66740,12 +78347,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Reddit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Reddit" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to Reddit." } ] @@ -66756,12 +78366,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Slack" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Slack" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to Slack." } ] @@ -66772,12 +78385,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Snapchat" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Snapchat" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to Snapchat." } ] @@ -66788,12 +78404,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "StumbleUpon" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/StumbleUpon" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to StumbleUpon." } ] @@ -66804,12 +78423,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tumblr" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tumblr" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to Tumblr." } ] @@ -66820,12 +78442,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Twitter" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Twitter" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to Twitter." } ] @@ -66836,12 +78461,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Website" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Website" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to the member/office/contact\u0027s website." } ] @@ -66852,12 +78480,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "YouTube" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/YouTube" }, { + "term": "Core.Description", "value": "SocialMedia[Type]UrlOrId has a URL or ID that relates to YouTube." } ] @@ -66868,12 +78499,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Branch" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Branch" }, { + "term": "Core.Description", "value": "This office is a branch office." } ] @@ -66884,12 +78518,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Main" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Main" }, { + "term": "Core.Description", "value": "This office is the broker\u0027s main office." } ] @@ -66900,12 +78537,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stand Alone" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Stand+Alone" }, { + "term": "Core.Description", "value": "This office is a stand alone, or single office brokerage." } ] @@ -66916,12 +78556,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Active" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245650" }, { + "term": "Core.Description", "value": "The member office\u0027s account is active." } ] @@ -66932,12 +78575,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Inactive" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245651" }, { + "term": "Core.Description", "value": "The member office\u0027s account is not active." } ] @@ -66948,12 +78594,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Affiliate" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Affiliate" }, { + "term": "Core.Description", "value": "The record in the office roster is an affiliate office." } ] @@ -66964,12 +78613,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Appraiser" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245654" }, { + "term": "Core.Description", "value": "The record in the office roster is an appraiser office." } ] @@ -66980,12 +78632,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Association" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Association" }, { + "term": "Core.Description", "value": "The record in the office roster is an association office." } ] @@ -66996,12 +78651,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MLS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MLS" }, { + "term": "Core.Description", "value": "The record in the office roster is an MLS office." } ] @@ -67012,12 +78670,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MLS Only Branch" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MLS+Only+Branch" }, { + "term": "Core.Description", "value": "The record in the office roster is a broker branch office who receives only MLS service." } ] @@ -67028,12 +78689,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MLS Only Firm" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MLS+Only+Firm" }, { + "term": "Core.Description", "value": "The record in the office roster is a broker Firm office who receives only MLS service." } ] @@ -67044,12 +78708,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "MLS Only Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/MLS+Only+Office" }, { + "term": "Core.Description", "value": "The record in the office roster is a broker office who receives only MLS service." } ] @@ -67060,12 +78727,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Non Member/Vendor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245660" }, { + "term": "Core.Description", "value": "The record in the office roster is an non member/vendor office." } ] @@ -67076,12 +78746,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Realtor Branch Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Realtor+Branch+Office" }, { + "term": "Core.Description", "value": "The record in the office roster is an realtor branch office ." } ] @@ -67092,12 +78765,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Realtor Firm" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Realtor+Firm" }, { + "term": "Core.Description", "value": "The record in the office roster is an realtor firm office." } ] @@ -67108,12 +78784,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Realtor Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Realtor+Office" }, { + "term": "Core.Description", "value": "The record in the office roster is an realtor office." } ] @@ -67129,12 +78808,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Active" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244403" }, { + "term": "Core.Description", "value": "The contact is active." } ] @@ -67145,12 +78827,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Deleted" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244404" }, { + "term": "Core.Description", "value": "The contact has been deleted." } ] @@ -67161,12 +78846,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Inactive" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244405" }, { + "term": "Core.Description", "value": "The contact is no longer active." } ] @@ -67177,12 +78865,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "On Vacation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/On+Vacation" }, { + "term": "Core.Description", "value": "The contact is on vacation." } ] @@ -67193,12 +78884,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Business" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Business" }, { + "term": "Core.Description", "value": "The contact is a business relation." } ] @@ -67209,12 +78903,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Family" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Family" }, { + "term": "Core.Description", "value": "The contact is a family member." } ] @@ -67225,12 +78922,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Friend" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Friend" }, { + "term": "Core.Description", "value": "The contact is a personal friend." } ] @@ -67241,12 +78941,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lead" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lead" }, { + "term": "Core.Description", "value": "The lead is a contact that may be a potential buyer or seller to the member." } ] @@ -67257,12 +78960,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Prospect" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Prospect" }, { + "term": "Core.Description", "value": "The contact is a prospective client." } ] @@ -67273,12 +78979,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ready to Buy" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ready+to+Buy" }, { + "term": "Core.Description", "value": "The contact is a client who is ready to start a transaction." } ] @@ -67289,12 +78998,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Direct" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245746" }, { + "term": "Core.Description", "value": "This is the contact\u0027s direct number." } ] @@ -67305,12 +79017,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fax" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245747" }, { + "term": "Core.Description", "value": "This is the contact\u0027s fax." } ] @@ -67321,12 +79036,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "First" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245748" }, { + "term": "Core.Description", "value": "This is the contact\u0027s first preferred phone." } ] @@ -67337,12 +79055,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245749" }, { + "term": "Core.Description", "value": "This is the contact\u0027s home phone." } ] @@ -67353,12 +79074,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mobile" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245750" }, { + "term": "Core.Description", "value": "This is the contact\u0027s mobile phone." } ] @@ -67369,12 +79093,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Modem" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245751" }, { + "term": "Core.Description", "value": "This is the contact\u0027s modem." } ] @@ -67385,12 +79112,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245752" }, { + "term": "Core.Description", "value": "This is the contact\u0027s office phone." } ] @@ -67401,12 +79131,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245753" }, { + "term": "Core.Description", "value": "This is the contact\u0027s pager." } ] @@ -67417,12 +79150,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Preferred" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245754" }, { + "term": "Core.Description", "value": "This is the contact\u0027s preferred phone." } ] @@ -67433,12 +79169,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Second" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245755" }, { + "term": "Core.Description", "value": "This is the contact\u0027s second preferred phone." } ] @@ -67449,12 +79188,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SMS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245756" }, { + "term": "Core.Description", "value": "This is the contact\u0027s SMS/text number." } ] @@ -67465,12 +79207,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Third" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245757" }, { + "term": "Core.Description", "value": "This is the contact\u0027s third preferred phone." } ] @@ -67481,12 +79226,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Toll Free" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245758" }, { + "term": "Core.Description", "value": "This is the contact\u0027s toll free number." } ] @@ -67497,12 +79245,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Voicemail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245759" }, { + "term": "Core.Description", "value": "This is the contact\u0027s voicemail." } ] @@ -67513,12 +79264,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245953" }, { + "term": "Core.Description", "value": "The contact prefers the use of their home address." } ] @@ -67529,12 +79283,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245954" }, { + "term": "Core.Description", "value": "The contact prefers the use of their other address." } ] @@ -67545,12 +79302,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Work" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Work" }, { + "term": "Core.Description", "value": "The contact prefers the use of their work address." } ] @@ -67561,12 +79321,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Direct" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245957" }, { + "term": "Core.Description", "value": "The contact prefers the use of their direct phone." } ] @@ -67577,12 +79340,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Home" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245958" }, { + "term": "Core.Description", "value": "The contact prefers the use of their home phone." } ] @@ -67593,12 +79359,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mobile" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245959" }, { + "term": "Core.Description", "value": "The contact prefers the use of their mobile phone." } ] @@ -67609,12 +79378,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245960" }, { + "term": "Core.Description", "value": "The contact prefers the use of their office phone." } ] @@ -67625,12 +79397,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245961" }, { + "term": "Core.Description", "value": "The contact prefers the use of their other phone." } ] @@ -67641,12 +79416,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Toll Free" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245962" }, { + "term": "Core.Description", "value": "The contact prefers the use of their toll free phone." } ] @@ -67657,12 +79435,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Voicemail" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245963" }, { + "term": "Core.Description", "value": "The contact prefers the use of their voicemail phone." } ] @@ -67673,12 +79454,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Business Opportunity" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Business+Opportunity" }, { + "term": "Core.Description", "value": "The class, sometimes known as property type, is a business for sale." } ] @@ -67689,12 +79473,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Commercial Lease" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Commercial+Lease" }, { + "term": "Core.Description", "value": "The class, sometimes known as property type, is a commercial property for lease." } ] @@ -67705,12 +79492,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Commercial Sale" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Commercial+Sale" }, { + "term": "Core.Description", "value": "The class, sometimes known as property type, is a commercial property for sale." } ] @@ -67721,12 +79511,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contacts" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Contacts" }, { + "term": "Core.Description", "value": "The class is the collection of the member\u0027s contacts/clients." } ] @@ -67737,12 +79530,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Cross Property" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Cross+Property" }, { + "term": "Core.Description", "value": "The class, sometimes known as property type, is a collection of all listing property types." } ] @@ -67753,12 +79549,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Farm" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244043" }, { + "term": "Core.Description", "value": "The class, sometimes known as property type, is a farm." } ] @@ -67769,12 +79568,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "History Transactional" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/History+Transactional" }, { + "term": "Core.Description", "value": "The class is the transactional history of another class." } ] @@ -67785,12 +79587,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Land" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Land" }, { + "term": "Core.Description", "value": "The class, sometimes known as property type, is land for sale or lease." } ] @@ -67801,12 +79606,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Manufactured In Park" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Manufactured+In+Park" }, { + "term": "Core.Description", "value": "The class, sometimes known as property type, is a manufactured or mobile home in a mobile park." } ] @@ -67817,12 +79625,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Media" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Media" }, { + "term": "Core.Description", "value": "The class is one that contains records referencing media files." } ] @@ -67833,12 +79644,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Member" }, { + "term": "Core.Description", "value": "The class containing member records." } ] @@ -67849,12 +79663,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Office" }, { + "term": "Core.Description", "value": "The class containing office records." } ] @@ -67865,12 +79682,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open House" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Open+House" }, { + "term": "Core.Description", "value": "The class containing Open House records." } ] @@ -67881,12 +79701,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244051" }, { + "term": "Core.Description", "value": "The class, sometimes known as property type, is residential property for sale." } ] @@ -67897,12 +79720,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential Income" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Residential+Income" }, { + "term": "Core.Description", "value": "The class, sometimes known as property type, is income or multi-family property for sale." } ] @@ -67913,12 +79739,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Residential Lease" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Residential+Lease" }, { + "term": "Core.Description", "value": "The class, sometimes known as property type, is residential property for lease." } ] @@ -67929,12 +79758,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Saved Search" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Saved+Search" }, { + "term": "Core.Description", "value": "The class containing saved search data." } ] @@ -67945,12 +79777,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Aerial View" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Aerial+View" }, { + "term": "Core.Description", "value": "The image/photo is an areal view of the structure or property." } ] @@ -67961,12 +79796,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Atrium" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Atrium" }, { + "term": "Core.Description", "value": "The image/photo is of the atrium." } ] @@ -67977,12 +79815,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Attic" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Attic" }, { + "term": "Core.Description", "value": "The image/photo is of the attic." } ] @@ -67993,12 +79834,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Back of Structure" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Back+of+Structure" }, { + "term": "Core.Description", "value": "The image/photo is of the back of the structure." } ] @@ -68009,12 +79853,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Balcony" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Balcony" }, { + "term": "Core.Description", "value": "The image/photo is of a balcony." } ] @@ -68025,12 +79872,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bar" }, { + "term": "Core.Description", "value": "The image/photo is of the bar." } ] @@ -68041,12 +79891,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Barn" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Barn" }, { + "term": "Core.Description", "value": "The image/photo is of the barn." } ] @@ -68057,12 +79910,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Basement" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Basement" }, { + "term": "Core.Description", "value": "The image/photo is of the basement." } ] @@ -68073,12 +79929,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bathroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bathroom" }, { + "term": "Core.Description", "value": "The image/photo is of a bathroom." } ] @@ -68089,12 +79948,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bedroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bedroom" }, { + "term": "Core.Description", "value": "The image/photo is of a bedroom." } ] @@ -68105,12 +79967,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bonus Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bonus+Room" }, { + "term": "Core.Description", "value": "The image/photo is of the bonus room." } ] @@ -68121,12 +79986,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Breakfast Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Breakfast+Area" }, { + "term": "Core.Description", "value": "The image/photo is of the breakfast area." } ] @@ -68137,12 +80005,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Closet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Closet" }, { + "term": "Core.Description", "value": "The image/photo is of a closet." } ] @@ -68153,12 +80024,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Community" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Community" }, { + "term": "Core.Description", "value": "The image/photo is of the community." } ] @@ -68169,12 +80043,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Courtyard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Courtyard" }, { + "term": "Core.Description", "value": "The image/photo is of the courtyard." } ] @@ -68185,12 +80062,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Deck" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Deck" }, { + "term": "Core.Description", "value": "The image/photo is of the deck." } ] @@ -68201,12 +80081,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Den" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Den" }, { + "term": "Core.Description", "value": "The image/photo is of the den." } ] @@ -68217,12 +80100,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dining Area" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dining+Area" }, { + "term": "Core.Description", "value": "The image/photo is of the dining area." } ] @@ -68233,12 +80119,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dining Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dining+Room" }, { + "term": "Core.Description", "value": "The image/photo is of the dining room." } ] @@ -68249,12 +80138,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Dock" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Dock" }, { + "term": "Core.Description", "value": "The image/photo is of the dock." } ] @@ -68265,12 +80157,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Entry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Entry" }, { + "term": "Core.Description", "value": "The image/photo is of the entry." } ] @@ -68281,12 +80176,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exercise Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Exercise+Room" }, { + "term": "Core.Description", "value": "The image/photo is of the exercise room." } ] @@ -68297,12 +80195,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Family Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Family+Room" }, { + "term": "Core.Description", "value": "The image/photo is of the family room." } ] @@ -68313,12 +80214,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fence" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fence" }, { + "term": "Core.Description", "value": "The image/photo is of the fence." } ] @@ -68329,12 +80233,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Fireplace" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Fireplace" }, { + "term": "Core.Description", "value": "The image/photo is of a fireplace." } ] @@ -68345,12 +80252,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Floor Plan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Floor+Plan" }, { + "term": "Core.Description", "value": "The image/photo is of the floor plan." } ] @@ -68361,12 +80271,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Front of Structure" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Front+of+Structure" }, { + "term": "Core.Description", "value": "The image/photo is of the front of structure." } ] @@ -68377,12 +80290,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Game Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Game+Room" }, { + "term": "Core.Description", "value": "The image/photo is of the game room." } ] @@ -68393,12 +80309,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Garage" }, { + "term": "Core.Description", "value": "The image/photo is of the garage." } ] @@ -68409,12 +80328,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Garden" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Garden" }, { + "term": "Core.Description", "value": "The image/photo is of the garden." } ] @@ -68425,12 +80347,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Golf Course" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Golf+Course" }, { + "term": "Core.Description", "value": "The image/photo is of a golf course." } ] @@ -68441,12 +80366,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Great Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Great+Room" }, { + "term": "Core.Description", "value": "The image/photo is of the great room." } ] @@ -68457,12 +80385,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Guest Quarters" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Guest+Quarters" }, { + "term": "Core.Description", "value": "The image/photo is of the guest quarters." } ] @@ -68473,12 +80404,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Gym" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Gym" }, { + "term": "Core.Description", "value": "The image/photo is of the gym." } ] @@ -68489,12 +80423,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Hobby Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Hobby+Room" }, { + "term": "Core.Description", "value": "The image/photo is of the hobby room." } ] @@ -68505,12 +80442,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Inlaw" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Inlaw" }, { + "term": "Core.Description", "value": "The image/photo is of the inlaw / mother-in-law quarters/room." } ] @@ -68521,12 +80461,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Kitchen" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Kitchen" }, { + "term": "Core.Description", "value": "The image/photo is of the kitchen." } ] @@ -68537,12 +80480,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lake" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lake" }, { + "term": "Core.Description", "value": "The image/photo is of the lake." } ] @@ -68553,12 +80499,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Laundry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Laundry" }, { + "term": "Core.Description", "value": "The image/photo is of the laundry." } ] @@ -68569,12 +80518,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Library" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Library" }, { + "term": "Core.Description", "value": "The image/photo is of the library." } ] @@ -68585,12 +80537,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Living Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Living+Room" }, { + "term": "Core.Description", "value": "The image/photo is of the living room." } ] @@ -68601,12 +80556,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Loading Dock" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Loading+Dock" }, { + "term": "Core.Description", "value": "The image/photo is of the loading dock." } ] @@ -68617,12 +80575,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lobby" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lobby" }, { + "term": "Core.Description", "value": "The image/photo is of the lobby." } ] @@ -68633,12 +80594,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Loft" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Loft" }, { + "term": "Core.Description", "value": "The image/photo is of the loft." } ] @@ -68649,12 +80613,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lot" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lot" }, { + "term": "Core.Description", "value": "The image/photo is of the lot." } ] @@ -68665,12 +80632,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Master Bathroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Master+Bathroom" }, { + "term": "Core.Description", "value": "The image/photo is of the master bathroom." } ] @@ -68681,12 +80651,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Master Bedroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Master+Bedroom" }, { + "term": "Core.Description", "value": "The image/photo is of the master bedroom." } ] @@ -68697,12 +80670,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Media Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Media+Room" }, { + "term": "Core.Description", "value": "The image/photo is of the media room." } ] @@ -68713,12 +80689,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mud Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Mud+Room" }, { + "term": "Core.Description", "value": "The image/photo is of the mud room." } ] @@ -68729,12 +80708,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Nursery" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Nursery" }, { + "term": "Core.Description", "value": "The image/photo is of the nursery." } ] @@ -68745,12 +80727,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245065" }, { + "term": "Core.Description", "value": "The image/photo is of the office." } ] @@ -68761,12 +80746,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245066" }, { + "term": "Core.Description", "value": "The image/photo is of a room or aspect of the property other than those listed in the ImageOf enumerations." } ] @@ -68777,12 +80765,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Out Buildings" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Out+Buildings" }, { + "term": "Core.Description", "value": "The image/photo is of an out building(s)." } ] @@ -68793,12 +80784,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pantry" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pantry" }, { + "term": "Core.Description", "value": "The image/photo is of the pantry." } ] @@ -68809,12 +80803,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Parking" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245069" }, { + "term": "Core.Description", "value": "The image/photo is of the parking." } ] @@ -68825,12 +80822,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Patio" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Patio" }, { + "term": "Core.Description", "value": "The image/photo is of a patio." } ] @@ -68841,12 +80841,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pier" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pier" }, { + "term": "Core.Description", "value": "The image/photo is of a pier." } ] @@ -68857,12 +80860,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Plat Map" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Plat+Map" }, { + "term": "Core.Description", "value": "The image/photo is of the plat map." } ] @@ -68873,12 +80879,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pond" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pond" }, { + "term": "Core.Description", "value": "The image/photo is of the pond." } ] @@ -68889,12 +80898,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pool" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Pool" }, { + "term": "Core.Description", "value": "The image/photo is of the pool." } ] @@ -68905,12 +80917,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Reception" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Reception" }, { + "term": "Core.Description", "value": "The image/photo is of the reception." } ] @@ -68921,12 +80936,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Recreation Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Recreation+Room" }, { + "term": "Core.Description", "value": "The image/photo is of the recreation room." } ] @@ -68937,12 +80955,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sauna" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sauna" }, { + "term": "Core.Description", "value": "The image/photo is of the sauna." } ] @@ -68953,12 +80974,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Showroom" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Showroom" }, { + "term": "Core.Description", "value": "The image/photo is of the showroom." } ] @@ -68969,12 +80993,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Side of Structure" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Side+of+Structure" }, { + "term": "Core.Description", "value": "The image/photo is of the side of structure." } ] @@ -68985,12 +81012,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sitting Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sitting+Room" }, { + "term": "Core.Description", "value": "The image/photo is of the sitting room." } ] @@ -69001,12 +81031,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Spa" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Spa" }, { + "term": "Core.Description", "value": "The image/photo is of the spa." } ] @@ -69017,12 +81050,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Stable" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Stable" }, { + "term": "Core.Description", "value": "The image/photo is of the stable." } ] @@ -69033,12 +81069,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Storage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245083" }, { + "term": "Core.Description", "value": "The image/photo is of the storage." } ] @@ -69049,12 +81088,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Studio" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Studio" }, { + "term": "Core.Description", "value": "The image/photo is of the studio." } ] @@ -69065,12 +81107,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Study" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Study" }, { + "term": "Core.Description", "value": "The image/photo is of the study." } ] @@ -69081,12 +81126,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sun Room" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sun+Room" }, { + "term": "Core.Description", "value": "The image/photo is of the sun room." } ] @@ -69097,12 +81145,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "View" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/View" }, { + "term": "Core.Description", "value": "The image/photo is of the view." } ] @@ -69113,12 +81164,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Waterfront" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Waterfront" }, { + "term": "Core.Description", "value": "The image/photo is of the waterfront." } ] @@ -69129,12 +81183,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wine Cellar" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wine+Cellar" }, { + "term": "Core.Description", "value": "The image/photo is of the wine cellar." } ] @@ -69145,12 +81202,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Workshop" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Workshop" }, { + "term": "Core.Description", "value": "The image/photo is of the workshop." } ] @@ -69161,12 +81221,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Yard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Yard" }, { + "term": "Core.Description", "value": "The image/photo is of the yard." } ] @@ -69182,12 +81245,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agent Photo" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Agent+Photo" }, { + "term": "Core.Description", "value": "The media is an agent photo." } ] @@ -69198,12 +81264,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Branded Virtual Tour" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Branded+Virtual+Tour" }, { + "term": "Core.Description", "value": "The media is a branded virtual tour." } ] @@ -69214,12 +81283,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Document" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Document" }, { + "term": "Core.Description", "value": "The media is a document." } ] @@ -69230,12 +81302,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Floor Plan" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245560" }, { + "term": "Core.Description", "value": "The media is a floor plan." } ] @@ -69246,12 +81321,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Logo" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Office+Logo" }, { + "term": "Core.Description", "value": "The media is an office logo." } ] @@ -69262,12 +81340,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Photo" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Office+Photo" }, { + "term": "Core.Description", "value": "The media is an office photo." } ] @@ -69278,12 +81359,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Photo" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Photo" }, { + "term": "Core.Description", "value": "The media is a photo." } ] @@ -69294,12 +81378,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unbranded Virtual Tour" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Unbranded+Virtual+Tour" }, { + "term": "Core.Description", "value": "The media is an unbranded virtual tour." } ] @@ -69310,12 +81397,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Video" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245565" }, { + "term": "Core.Description", "value": "The media is a video." } ] @@ -69331,12 +81421,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "doc" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/doc" }, { + "term": "Core.Description", "value": "The media is a doc file type." } ] @@ -69347,12 +81440,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "docx" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/docx" }, { + "term": "Core.Description", "value": "The media is a docx file type." } ] @@ -69363,12 +81459,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "gif" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/gif" }, { + "term": "Core.Description", "value": "The media is a gif file type." } ] @@ -69379,12 +81478,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "jpeg" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/jpeg" }, { + "term": "Core.Description", "value": "The media is a jpeg file type." } ] @@ -69395,12 +81497,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "mov" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/mov" }, { + "term": "Core.Description", "value": "The media is a mov file type." } ] @@ -69411,12 +81516,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "mp4" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/mp4" }, { + "term": "Core.Description", "value": "The media is an mp4 file type." } ] @@ -69427,12 +81535,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "mpeg" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/mpeg" }, { + "term": "Core.Description", "value": "The media is an mpeg file type." } ] @@ -69443,12 +81554,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "pdf" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/pdf" }, { + "term": "Core.Description", "value": "The media is a pdf file type." } ] @@ -69459,12 +81573,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "png" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/png" }, { + "term": "Core.Description", "value": "The media is a png file type." } ] @@ -69475,12 +81592,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "quicktime" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/quicktime" }, { + "term": "Core.Description", "value": "The media is a QuickTime file type." } ] @@ -69491,12 +81611,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "rtf" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/rtf" }, { + "term": "Core.Description", "value": "The media is a rtf file type." } ] @@ -69507,12 +81630,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "tiff" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/tiff" }, { + "term": "Core.Description", "value": "The media is a tiff file type." } ] @@ -69523,12 +81649,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "txt" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/txt" }, { + "term": "Core.Description", "value": "The media is a txt file type." } ] @@ -69539,12 +81668,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "wmv" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/wmv" }, { + "term": "Core.Description", "value": "The media is a wmv file type." } ] @@ -69555,12 +81687,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "xls" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/xls" }, { + "term": "Core.Description", "value": "The media is a xls file type." } ] @@ -69571,12 +81706,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "xlsx" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/xlsx" }, { + "term": "Core.Description", "value": "The media is a xlsx file type." } ] @@ -69587,12 +81725,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agent Only" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Agent+Only" }, { + "term": "Core.Description", "value": "The image or document is for agent use only." } ] @@ -69603,12 +81744,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Firm Only" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Firm+Only" }, { + "term": "Core.Description", "value": "The image or document is for firm use only." } ] @@ -69619,12 +81763,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "IDX" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/IDX" }, { + "term": "Core.Description", "value": "The image or document is okay for IDX use." } ] @@ -69635,12 +81782,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office Only" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Office+Only" }, { + "term": "Core.Description", "value": "The image or document is for office use only." } ] @@ -69651,12 +81801,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Private" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245915" }, { + "term": "Core.Description", "value": "The image or document is private and should have limited distribution." } ] @@ -69667,12 +81820,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245916" }, { + "term": "Core.Description", "value": "The image or document may be viewed by the public." } ] @@ -69683,12 +81839,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "VOW" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/VOW" }, { + "term": "Core.Description", "value": "The image or document is okay for VOW use." } ] @@ -69699,12 +81858,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contacts" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246107" }, { + "term": "Core.Description", "value": "This record is related to another record in the Contacts resource." } ] @@ -69715,12 +81877,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Member" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246108" }, { + "term": "Core.Description", "value": "This record is related to another record in the Member resource." } ] @@ -69731,12 +81896,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246109" }, { + "term": "Core.Description", "value": "This record is related to another record in the Office resource." } ] @@ -69747,12 +81915,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Property" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Property" }, { + "term": "Core.Description", "value": "This record is related to another record in the Property resource." } ] @@ -69763,12 +81934,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Discard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Discard" }, { + "term": "Core.Description", "value": "The contact has flagged to discard the given listing. The contact is not interested in the given listing." } ] @@ -69779,12 +81953,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Favorite" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Favorite" }, { + "term": "Core.Description", "value": "The contact has flagged the given listing as a favorite. The contact is interested in the given listing." } ] @@ -69795,12 +81972,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Possibility" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Possibility" }, { + "term": "Core.Description", "value": "The contact has flagged the given listing as a possibility. The contact might be interested in the given listing." } ] @@ -69811,12 +81991,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243683" }, { + "term": "Core.Description", "value": "The event was generated by what the source defines as a real estate professional" } ] @@ -69827,12 +82010,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Bot" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Bot" }, { + "term": "Core.Description", "value": "The event was generated by a bot or some type of scripting tool" } ] @@ -69843,12 +82029,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Client" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Client" }, { + "term": "Core.Description", "value": "The event was generated by what the source defines as a registered client" } ] @@ -69859,12 +82048,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Consumer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Consumer" }, { + "term": "Core.Description", "value": "The event was generated by what the source defines as a consumer" } ] @@ -69875,12 +82067,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unknown" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29243687" }, { + "term": "Core.Description", "value": "The generating Actor type could not be identified" } ] @@ -69891,12 +82086,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Desktop" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Desktop" }, { + "term": "Core.Description", "value": "The Actor\u0027s device has been identified as a desktop device by the source" } ] @@ -69907,12 +82105,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Mobile" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244595" }, { + "term": "Core.Description", "value": "The Actor\u0027s device has been identified as a mobile device by the source" } ] @@ -69923,12 +82124,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tablet" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tablet" }, { + "term": "Core.Description", "value": "The Actor\u0027s device has been identified as a tablet device by the source" } ] @@ -69939,12 +82143,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unknown" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244597" }, { + "term": "Core.Description", "value": "The Actor\u0027s device could not be identified by the source" } ] @@ -69955,12 +82162,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wearable" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wearable" }, { + "term": "Core.Description", "value": "The Actor\u0027s device has been identified as a wearable device by the source" } ] @@ -69971,12 +82181,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244640" }, { + "term": "Core.Description", "value": "The EventType used a destination pertaining to the listing agent (i.e. the actor\u0027s submission of lead form went to the Listing Agent\u0027s contact information)" } ] @@ -69987,12 +82200,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Broker" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244641" }, { + "term": "Core.Description", "value": "The EventType used a destination pertaining to the listing broker (i.e. the \"Clicked on Phone Number\" EventType is using the Broker\u0027s contact information)" } ] @@ -70003,12 +82219,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Digg" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244642" }, { + "term": "Core.Description", "value": "The Object was shared on Digg" } ] @@ -70019,12 +82238,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Email" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244643" }, { + "term": "Core.Description", "value": "The Object was sent in an email" } ] @@ -70035,12 +82257,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Facebook" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244644" }, { + "term": "Core.Description", "value": "The Object was shared on Facebook" } ] @@ -70051,12 +82276,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Facebook Messenger" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244645" }, { + "term": "Core.Description", "value": "The Object was shared via Facebook Messenger" } ] @@ -70067,12 +82295,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "GooglePlus" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244646" }, { + "term": "Core.Description", "value": "The Object was shared to Google Plus" } ] @@ -70083,12 +82314,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "iMessage" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244647" }, { + "term": "Core.Description", "value": "The Object was shared via iMessage" } ] @@ -70099,12 +82333,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Instagram" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244648" }, { + "term": "Core.Description", "value": "The Object was shared on Instagram" } ] @@ -70115,12 +82352,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "LinkedIn" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244649" }, { + "term": "Core.Description", "value": "The Object was shared on LinkedIn" } ] @@ -70131,12 +82371,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Pinterest" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244650" }, { + "term": "Core.Description", "value": "The Object was pinned on Pinterest" } ] @@ -70147,12 +82390,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Reddit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244651" }, { + "term": "Core.Description", "value": "The Object was shared on Reddit" } ] @@ -70163,12 +82409,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Slack" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244652" }, { + "term": "Core.Description", "value": "The Object was shared via Slack" } ] @@ -70179,12 +82428,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SMS" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244653" }, { + "term": "Core.Description", "value": "The Object was sent in an SMS message" } ] @@ -70195,12 +82447,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Snapchat" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244654" }, { + "term": "Core.Description", "value": "The Object was shared on Snapchat" } ] @@ -70211,12 +82466,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "StumbleUpon" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244655" }, { + "term": "Core.Description", "value": "The Object was shared on StumbleUpon" } ] @@ -70227,12 +82485,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tumblr" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244656" }, { + "term": "Core.Description", "value": "The Object was shared on Tumblr" } ] @@ -70243,12 +82504,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Twitter" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244657" }, { + "term": "Core.Description", "value": "The Object was tweeted on Twitter" } ] @@ -70259,12 +82523,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "YouTube" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244658" }, { + "term": "Core.Description", "value": "The Object was shared on YouTube" } ] @@ -70275,12 +82542,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Clicked on Email Address" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Clicked+on+Email+Address" }, { + "term": "Core.Description", "value": "The Actor engaged in the act of emailing to the Object\u0027s email address (note: does not indicate an email was sent)" } ] @@ -70291,12 +82561,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Clicked on Phone Number" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Clicked+on+Phone+Number" }, { + "term": "Core.Description", "value": "The Actor clicked on a phone number link associated with the Object" } ] @@ -70307,12 +82580,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Click to Primary Hosted Site" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Click+to+Primary+Hosted+Site" }, { + "term": "Core.Description", "value": "The Actor was referred to the Object\u0027s primary hosted website" } ] @@ -70323,12 +82599,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Comments" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Comments" }, { + "term": "Core.Description", "value": "Comments were made on the Object" } ] @@ -70339,12 +82618,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Detailed View" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Detailed+View" }, { + "term": "Core.Description", "value": "The object was the main focal point in the Actor\u0027s view." } ] @@ -70355,12 +82637,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Discard" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244665" }, { + "term": "Core.Description", "value": "The Actor has reacted \"negatively\" to the object." } ] @@ -70371,12 +82656,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Driving Directions" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Driving+Directions" }, { + "term": "Core.Description", "value": "The Actor engaged in driving directions with the Object" } ] @@ -70387,12 +82675,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Exit Detailed View" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Exit+Detailed+View" }, { + "term": "Core.Description", "value": "The actor left the detailed view." } ] @@ -70403,12 +82694,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Favorited" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Favorited" }, { + "term": "Core.Description", "value": "The Actor has reacted \"positively\" to the object." } ] @@ -70419,12 +82713,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Maybe" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Maybe" }, { + "term": "Core.Description", "value": "The Actor has reacted \"possibly positive\" to the object." } ] @@ -70435,12 +82732,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Non-Detailed View" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Non-Detailed+View" }, { + "term": "Core.Description", "value": "The object appeared in the Actor\u0027s view but was not the main focal point.®" } ] @@ -70451,12 +82751,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Object Modified" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Object+Modified" }, { + "term": "Core.Description", "value": "The tracking Obect was modified in some way." } ] @@ -70467,12 +82770,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Photo Gallery" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Photo+Gallery" }, { + "term": "Core.Description", "value": "The Actor participated in a photo gallery display" } ] @@ -70483,12 +82789,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Printed" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Printed" }, { + "term": "Core.Description", "value": "The Actor printed the object" } ] @@ -70499,12 +82808,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Property Videos" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Property+Videos" }, { + "term": "Core.Description", "value": "The Actor has interacted with a property video with the Object" } ] @@ -70515,12 +82827,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Search" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Search" }, { + "term": "Core.Description", "value": "The tracking Object is data is part of a search and will contain more than one result. Normally, the search result data will be presented in the ObjectCollection field and include ALL the listings that were part of the search." } ] @@ -70531,12 +82846,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Share" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Share" }, { + "term": "Core.Description", "value": "The sharing of a listing to another media or entity (includes social media sites, IM\u0027s, email and SMS messages)" } ] @@ -70547,12 +82865,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Submission of Lead Form" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Submission+of+Lead+Form" }, { + "term": "Core.Description", "value": "The Actor has submitted a lead form" } ] @@ -70563,12 +82884,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Virtual Tour" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Virtual+Tour" }, { + "term": "Core.Description", "value": "The Actor viewed the Object\u0027s virtual tour" } ] @@ -70579,12 +82903,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ListingId" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245795" }, { + "term": "Core.Description", "value": "The ObjectID is the MLS listing number" } ] @@ -70595,12 +82922,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ListingKey" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245796" }, { + "term": "Core.Description", "value": "The Object is a key field from an MLS system." } ] @@ -70611,12 +82941,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ListingKeyNumeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245797" }, { + "term": "Core.Description", "value": "The Object is a numeric key field from an MLS system." } ] @@ -70627,12 +82960,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "OpenHouseId" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245798" }, { + "term": "Core.Description", "value": "The ObjectID is an Open House ID" } ] @@ -70643,12 +82979,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "OpenHouseKey" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245799" }, { + "term": "Core.Description", "value": "The ObjectID is the key of an Open House record." } ] @@ -70659,12 +82998,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "OpenHouseKeyNumeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245800" }, { + "term": "Core.Description", "value": "The ObjectID is the numeric only key of an Open House record." } ] @@ -70675,12 +83017,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ParcelNumber" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245801" }, { + "term": "Core.Description", "value": "When no listing exists or the tracking is property centric, the ObjectIdType of the property\u0027s Parcel Number is used." } ] @@ -70691,12 +83036,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "PUID" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/PUID" }, { + "term": "Core.Description", "value": "When no listing exists and the tracking property centric, the RESO PUID is being used." } ] @@ -70707,12 +83055,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SavedSearchKey" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245803" }, { + "term": "Core.Description", "value": "When the event is the execution of a saved search, the ObjectID will be the SavedSearchKey or SavedSearchKeyNumeric from the system that executed the search. Individual listings from the result set or being viewed would be separate events for each record." } ] @@ -70723,12 +83074,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "SavedSearchKeyNumeric" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245804" }, { + "term": "Core.Description", "value": "When the event is the execution of a saved search, the ObjectID will be the SavedSearchKey or SavedSearchKeyNumeric from the system that executed the search. Individual listings from the result set or being viewed would be separate events for each record." } ] @@ -70739,12 +83093,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unique" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Unique" }, { + "term": "Core.Description", "value": "The ObjectID is a unique ID supplied by the source and is not one of the other types…" } ] @@ -70755,12 +83112,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Document" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245812" }, { + "term": "Core.Description", "value": "The Object of the tracking event is a Document." } ] @@ -70771,12 +83131,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Listing" }, { + "term": "Core.Description", "value": "The object of the tracking event is a real estate listing" } ] @@ -70787,12 +83150,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Open House" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245808" }, { + "term": "Core.Description", "value": "The object of the tracking event is an Open House event" } ] @@ -70803,12 +83169,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Photo" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245811" }, { + "term": "Core.Description", "value": "The Object of the tracking event is a Photo." } ] @@ -70819,12 +83188,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Property" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245809" }, { + "term": "Core.Description", "value": "When no listing exists or the tracking is property centric, the ObjectType of Property is used." } ] @@ -70835,12 +83207,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Saved Search" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245810" }, { + "term": "Core.Description", "value": "When the event is the execution of a saved search, the Object will be a Saved Search from the system that executed the search. If tracked, individual listings from the result set or being viewed would be separate events for each record." } ] @@ -70851,12 +83226,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Virtual Tour" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245813" }, { + "term": "Core.Description", "value": "The Object of the tracking event is considered a Virtual Tour." } ] @@ -70877,12 +83255,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "DMQL2" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/DMQL2" }, { + "term": "Core.Description", "value": "The query is in the form of DMQL2." } ] @@ -70893,12 +83274,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "$filter" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/%24filter" }, { + "term": "Core.Description", "value": "The query is in the form of Odata\u0027s $filter." } ] @@ -70909,12 +83293,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Agent" }, { + "term": "Core.Description", "value": "A licensed real estate agent will be present at the open house event." } ] @@ -70925,12 +83312,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Seller" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Seller" }, { + "term": "Core.Description", "value": "A licensed real estate agent will not be present and the property owner will be present at the open house event." } ] @@ -70941,12 +83331,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Unattended" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Unattended" }, { + "term": "Core.Description", "value": "The open house event will not be attended. Access will normally be via lockbox or other pre-arranged means." } ] @@ -70957,12 +83350,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Active" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245665" }, { + "term": "Core.Description", "value": "The open house is active and continuing as scheduled." } ] @@ -70973,12 +83369,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Canceled" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245666" }, { + "term": "Core.Description", "value": "The open house has been canceled." } ] @@ -70989,12 +83388,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ended" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ended" }, { + "term": "Core.Description", "value": "The open house has ended and is past the scheduled open house date and time." } ] @@ -71005,12 +83407,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Broker" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Broker" }, { + "term": "Core.Description", "value": "The open house is only open to brokers, and at times agents." } ] @@ -71021,12 +83426,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Office" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245670" }, { + "term": "Core.Description", "value": "The open house is only open to the members of a particular office(s)." } ] @@ -71037,12 +83445,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Public" }, { + "term": "Core.Description", "value": "The open house is open to the general public." } ] @@ -71053,12 +83464,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Friday AM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Friday+AM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Friday morning." } ] @@ -71069,12 +83483,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Friday PM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Friday+PM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Friday evening." } ] @@ -71085,12 +83502,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Monday AM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Monday+AM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Monday morning." } ] @@ -71101,12 +83521,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Monday PM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Monday+PM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Monday evening." } ] @@ -71117,12 +83540,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "None" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244582" }, { + "term": "Core.Description", "value": "The prospect (auto email) has not been setup for any daily schedule." } ] @@ -71133,12 +83559,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Saturday AM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Saturday+AM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Saturday morning." } ] @@ -71149,12 +83578,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Saturday PM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Saturday+PM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Saturday evening." } ] @@ -71165,12 +83597,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sunday AM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sunday+AM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Sunday morning." } ] @@ -71181,12 +83616,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Sunday PM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Sunday+PM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Sunday evening." } ] @@ -71197,12 +83635,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Thursday AM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Thursday+AM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Thursday morning." } ] @@ -71213,12 +83654,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Thursday PM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Thursday+PM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Thursday evening." } ] @@ -71229,12 +83673,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tuesday AM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tuesday+AM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Tuesday morning." } ] @@ -71245,12 +83692,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Tuesday PM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Tuesday+PM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Tuesday evening." } ] @@ -71261,12 +83711,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wednesday AM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wednesday+AM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Wednesday morning." } ] @@ -71277,12 +83730,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Wednesday PM" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Wednesday+PM" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent every Wednesday evening." } ] @@ -71293,12 +83749,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agent Disabled" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Agent+Disabled" }, { + "term": "Core.Description", "value": "The agent has disabled this auto email." } ] @@ -71309,12 +83768,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Client Disabled" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Client+Disabled" }, { + "term": "Core.Description", "value": "The auto email has been disabled by the client/recipient." } ] @@ -71325,12 +83787,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Concierge Notification" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Concierge+Notification" }, { + "term": "Core.Description", "value": "The auto email is on hold pending concierge approval by the member. The auto email is temporarily disabled." } ] @@ -71341,12 +83806,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Final Ignored Warning" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Final+Ignored+Warning" }, { + "term": "Core.Description", "value": "The final warning that the auto email has not been viewed by the client/recipient and may be inactivated due to being ignored. The auto email is still active." } ] @@ -71357,12 +83825,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Ignored" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Ignored" }, { + "term": "Core.Description", "value": "The auto email was not viewed by the client/recipient in the time frame designated by the host system. The auto email is disabled." } ] @@ -71373,12 +83844,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Initial Ignored Warning" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Initial+Ignored+Warning" }, { + "term": "Core.Description", "value": "The first warning that the auto email has not been viewed by the client/recipient. The auto email is still active." } ] @@ -71389,12 +83863,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Invalid" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Invalid" }, { + "term": "Core.Description", "value": "The auto email is no longer valid per some conditions set by the host system. The auto email is disabled." } ] @@ -71405,12 +83882,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "No Listings Found" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/No+Listings+Found" }, { + "term": "Core.Description", "value": "The auto email has not found any listings matching the criteria and been disabled per the host system rules." } ] @@ -71421,12 +83901,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "No Listings Found Warning" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/No+Listings+Found+Warning" }, { + "term": "Core.Description", "value": "The auto email has not found any listings matching the criteria and may be disabled. The auto email is still active." } ] @@ -71437,12 +83920,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "No One To Send To" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/No+One+To+Send+To" }, { + "term": "Core.Description", "value": "There is no valid email address and the auto email has been inactivated." } ] @@ -71453,12 +83939,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Over Limit" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Over+Limit" }, { + "term": "Core.Description", "value": "The auto email has reached the limit of listing results as set by the host system. The auto email is disabled." } ] @@ -71469,12 +83958,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Re-Activated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Re-Activated" }, { + "term": "Core.Description", "value": "The auto email has was previously disabled and has been set back to active." } ] @@ -71485,12 +83977,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Revised" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Revised" }, { + "term": "Core.Description", "value": "The auto email has been revised and is active." } ] @@ -71501,12 +83996,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Search Failing" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Search+Failing" }, { + "term": "Core.Description", "value": "The auto email\u0027s search criteria is failing and should be reviewed by the host system. The auto email is disabled." } ] @@ -71517,12 +84015,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Welcome Email Ignored" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Welcome+Email+Ignored" }, { + "term": "Core.Description", "value": "The initial auto email has not been viewed by the client/recipient and the auto email has been deactivated." } ] @@ -71533,12 +84034,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Welcome Email Ignored Warning" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Welcome+Email+Ignored+Warning" }, { + "term": "Core.Description", "value": "The initial auto email has not been viewed by the client/recipient. The auto email is still active." } ] @@ -71549,12 +84053,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "ASAP" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/ASAP" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent as soon as possible through each day. Actual time is determined by listing additions/changes that match the given criteria and by the host system\u0027s delivery policy/schedule." } ] @@ -71565,12 +84072,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Daily" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246434" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent according to the Daily Schedule." } ] @@ -71581,12 +84091,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Monthly" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246435" }, { + "term": "Core.Description", "value": "The prospect (auto email) will be sent once per month." } ] @@ -71597,12 +84110,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Add" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Add" }, { + "term": "Core.Description", "value": "The resource record being referenced by the queue does not yet exist in the target and is an addition." } ] @@ -71613,12 +84129,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Change" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Change" }, { + "term": "Core.Description", "value": "The resource record being referenced by the queue exists in the target and is being modified." } ] @@ -71629,12 +84148,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Delete" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246733" }, { + "term": "Core.Description", "value": "The resource record being referenced by the queue exists in the target and is to be removed." } ] @@ -71645,12 +84167,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "JavaScript" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/JavaScript" }, { + "term": "Core.Description", "value": "Business rules expressed utilizing the JavaScript language. The underlying structure of the rules are not defined at this time and may vary from source to source." } ] @@ -71661,12 +84186,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "$filter" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246248" }, { + "term": "Core.Description", "value": "Business rules expressed utilizing the OData $filter syntax. The underlying structure of the rules are not defined at this time and may vary from source to source." } ] @@ -71677,12 +84205,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "REBR" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/REBR" }, { + "term": "Core.Description", "value": "Real Estate Business Rule (REBR) notation, based on RuleSpeak structured notation, uses a predictable syntax to allow humans to clearly and unambiguously specify real estate business rules. REBR is not machine consumable and design for human production and consumption." } ] @@ -71693,12 +84224,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "RetsValidation" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/RetsValidation" }, { + "term": "Core.Description", "value": "Business rules expressed using the well defined RETS 1.9 Validation Expressions. See section 11.4.7 of the RETS 1.9 Specification for additional details. https://www.reso.org/download/rets-1-9-specification/" } ] @@ -71714,12 +84248,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Active" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246521" }, { + "term": "Core.Description", "value": "The team is active." } ] @@ -71730,12 +84267,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Inactive" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246522" }, { + "term": "Core.Description", "value": "The team is not active." } ] @@ -71751,12 +84291,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Administration Assistant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Administration+Assistant" }, { + "term": "Core.Description", "value": "The member of a team who assists with administrative tasks." } ] @@ -71767,12 +84310,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Showing+Agent" }, { + "term": "Core.Description", "value": "The member of a team who handles showing events." } ] @@ -71783,12 +84329,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Buyer Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Showing+Agent" }, { + "term": "Core.Description", "value": "The member of a team who handles showing events." } ] @@ -71799,12 +84348,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Lead Manager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Lead+Manager" }, { + "term": "Core.Description", "value": "The member of the team who is the lead manager." } ] @@ -71815,12 +84367,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Listing Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Listing+Agent" }, { + "term": "Core.Description", "value": "The member of a team who lists properties." } ] @@ -71831,12 +84386,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Marketing Assistant" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Marketing+Assistant" }, { + "term": "Core.Description", "value": "The member of a team who assists with marketing." } ] @@ -71847,12 +84405,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Operations Manager" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Operations+Manager" }, { + "term": "Core.Description", "value": "The member of the team who manages operations." } ] @@ -71863,12 +84424,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Lead" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Team+Lead" }, { + "term": "Core.Description", "value": "The leading member of a team." } ] @@ -71879,12 +84443,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Team Member" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Team+Member+Lead" }, { + "term": "Core.Description", "value": "A member of the real estate team." } ] @@ -71895,12 +84462,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Transaction Coordinator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Transaction+Coordinator" }, { + "term": "Core.Description", "value": "The member of a team who handles transaction details." } ] @@ -71916,12 +84486,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Agent" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29246727" }, { + "term": "Core.Description", "value": "The agent has written the given note about the given listing." } ] @@ -71932,12 +84505,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contact" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Contact" }, { + "term": "Core.Description", "value": "The contact has written the given note about the given listing." } ] @@ -71948,12 +84524,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Administrator" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Administrator" }, { + "term": "Core.Description", "value": "An administrator such as a utility, governmental entity, etc. provided data such as photovoltaic characteristics, or a verified score, certification, label, etc." } ] @@ -71964,12 +84543,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Assessor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244921" }, { + "term": "Core.Description", "value": "The assessor provided data such as photovoltaic characteristics, or a verified score, certification, label, etc." } ] @@ -71980,12 +84562,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Builder" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244922" }, { + "term": "Core.Description", "value": "The builder provided data such as photovoltaic characteristics, or a verified score, certification, label, etc." } ] @@ -71996,12 +84581,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Contractor or Installer" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Contractor+or+Installer" }, { + "term": "Core.Description", "value": "The contractor or installer provided data such as photovoltaic characteristics, or a verified score, certification, label, etc." } ] @@ -72012,12 +84600,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Other" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244924" }, { + "term": "Core.Description", "value": "Data such as photovoltaic characteristics, or a verified score, certification, label, etc. was received from another party not listed." } ] @@ -72028,12 +84619,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Owner" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244925" }, { + "term": "Core.Description", "value": "The owner provided data such as photovoltaic characteristics, or a verified score, certification, label, etc." } ] @@ -72044,12 +84638,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Program Sponsor" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Program+Sponsor" }, { + "term": "Core.Description", "value": "The program sponsor provided data such as photovoltaic characteristics, or a verified score, certification, label, etc." } ] @@ -72060,12 +84657,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Program Verifier" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Program+Verifier" }, { + "term": "Core.Description", "value": "The program verifier hired as a third-party provided data such as photovoltaic characteristics, or a verified score, certification, label, etc." } ] @@ -72076,12 +84676,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Public Records" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244928" }, { + "term": "Core.Description", "value": "Data such as photovoltaic characteristics, or a verified score, certification, label, etc. was received from public record such as a building permit." } ] @@ -72092,12 +84695,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "See Remarks" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29244929" }, { + "term": "Core.Description", "value": "See remarks for information about the source of data such as photovoltaic characteristics, or a verified score, certification, label, etc." } ] @@ -72108,12 +84714,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Complete" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Complete" }, { + "term": "Core.Description", "value": "Indicates that verification process is complete. All requirements are complete and official verification documentation is on file or published; or more than 12 months of occupancy." } ] @@ -72124,12 +84733,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "In Process" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/In+Process" }, { + "term": "Core.Description", "value": "Indicates that verification process is underway, but not complete. Application, plans testing or specifications in process; or may be less than 12 months of occupancy." } ] @@ -72140,12 +84752,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Actual" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Actual" }, { + "term": "Core.Description", "value": "Annual production derived from 12 or more months of actual data. The most recent 12 months is preferred because systems can degrade, albeit slowly, over time and, more importantly, conditions (e.g., trees) can change. Therefore older data might over- or under-estimate current production amounts." } ] @@ -72156,12 +84771,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Estimated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/pages/viewpage.action?pageId\u003d29245861" }, { + "term": "Core.Description", "value": "Annual production as estimated at the time or before the system began operation." } ] @@ -72172,12 +84790,15 @@ "type": "Edm.Int32", "annotations": [ { + "term": "RESO.OData.Metadata.StandardName", "value": "Partially Estimated" }, { + "term": "RESO.DDWikiUrl", "value": "https://ddwiki.reso.org/display/DDW17/Partially+Estimated" }, { + "term": "Core.Description", "value": "Annual production derived from less than 12 months of actual data, and therefore extrapolated to estimate annual production." } ]