.").build());
return new Options()
.addOption(helpOption)
.addOption(hostNameOption)
.addOption(bearerTokenOption)
+ .addOption(clientIdOption)
+ .addOption(clientSecretOption)
.addOption(inputFileOption)
.addOption(outputFileOption)
- .addOption(pageLimit)
- .addOption(pageSize)
.addOption(entityName)
.addOption(useEdmEnabledClient)
.addOption(uriOption)
@@ -503,12 +466,13 @@ static Options getOptions() {
static class ACTIONS {
//actions
- static String RUN_RESOSCRIPT = "runRESOScript";
- static String GET_METADATA = "getMetadata";
- static String VALIDATE_METADATA = "validateMetadata";
- static String GET_ENTITIES = "getEntities";
- static String SAVE_RAW_GET_REQUEST = "saveRawGetRequest";
- static String CONVERT_EDMX_TO_OPEN_API = "convertEDMXtoOpenAPI";
+ public static final String GENERATE_DD_ACCEPTANCE_TESTS = "generateDDAcceptanceTests";
+ public static final String GENERATE_REFERENCE_EDMX = "generateReferenceEDMX";
+ public static final String RUN_RESOSCRIPT = "runRESOScript";
+ public static final String GET_METADATA = "getMetadata";
+ public static final String VALIDATE_METADATA = "validateMetadata";
+ public static final String SAVE_GET_REQUEST = "saveGetRequest";
+ public static final String GENERATE_METADATA_REPORT = "generateMetadataReport";
}
}
}
diff --git a/src/main/java/org/reso/commander/Commander.java b/src/main/java/org/reso/commander/Commander.java
index 8971da6b..373e4201 100644
--- a/src/main/java/org/reso/commander/Commander.java
+++ b/src/main/java/org/reso/commander/Commander.java
@@ -1,5 +1,6 @@
package org.reso.commander;
+import com.google.gson.GsonBuilder;
import org.apache.commons.io.FileUtils;
import org.apache.http.HttpHeaders;
import org.apache.http.HttpStatus;
@@ -12,7 +13,6 @@
import org.apache.olingo.client.api.communication.request.retrieve.ODataRawRequest;
import org.apache.olingo.client.api.communication.request.retrieve.XMLMetadataRequest;
import org.apache.olingo.client.api.communication.response.ODataRawResponse;
-import org.apache.olingo.client.api.communication.response.ODataRetrieveResponse;
import org.apache.olingo.client.api.domain.ClientEntitySet;
import org.apache.olingo.client.api.edm.xml.XMLMetadata;
import org.apache.olingo.client.api.serialization.ODataSerializerException;
@@ -23,24 +23,26 @@
import org.reso.auth.OAuth2HttpClientFactory;
import org.reso.auth.TokenHttpClientFactory;
import org.reso.commander.common.TestUtils;
+import org.reso.models.MetadataReport;
import org.xml.sax.*;
import javax.xml.XMLConstants;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
-import javax.xml.transform.Source;
-import javax.xml.transform.Transformer;
-import javax.xml.transform.TransformerFactory;
-import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;
import javax.xml.validation.SchemaFactory;
import java.io.*;
import java.net.URI;
import java.net.URL;
import java.nio.charset.StandardCharsets;
-import java.util.concurrent.atomic.AtomicReference;
-import java.util.function.Function;
-
+import java.nio.file.Files;
+import java.nio.file.Paths;
+import java.util.Objects;
+import java.util.Optional;
+import java.util.stream.Collectors;
+
+import static org.junit.Assert.assertNotNull;
+import static org.reso.certification.containers.WebAPITestContainer.EMPTY_STRING;
import static org.reso.commander.common.ErrorMsg.getDefaultErrorMessage;
/**
@@ -185,17 +187,21 @@ public static ContentType getContentType(String contentType) {
*/
private static URI buildSkipUri(String requestUri, Integer pageSize, Integer skip) {
try {
- URIBuilder uriBuilder = null;
+ URIBuilder uriBuilder;
URI preparedUri = prepareURI(requestUri);
if (requestUri != null && requestUri.length() > 0 && preparedUri != null) {
uriBuilder = new URIBuilder(preparedUri);
- if (skip != null && skip > 0) uriBuilder.setParameter(QueryOption.SKIP.toString(), skip.toString());
- uriBuilder.setParameter(QueryOption.TOP.toString(), pageSize == null || pageSize == 0 ? DEFAULT_PAGE_SIZE.toString() : pageSize.toString());
+ if (skip != null && skip > 0)
+ uriBuilder.setParameter("$" + QueryOption.SKIP.toString(), skip.toString());
+
+ uriBuilder.setParameter("$" + QueryOption.TOP.toString(),
+ pageSize == null || pageSize == 0 ? DEFAULT_PAGE_SIZE.toString() : pageSize.toString());
+ uriBuilder.setCharset(StandardCharsets.UTF_8);
URI uri = uriBuilder.build();
- LOG.debug("URI created: " + uri.toString());
+ LOG.info("URI created: " + uri.toString());
return uri;
}
@@ -205,54 +211,61 @@ private static URI buildSkipUri(String requestUri, Integer pageSize, Integer ski
return null;
}
+// /**
+// * Creates a URI with a skip parameter
+// *
+// * @param requestUri the URI to add the $skip parameter to
+// * @param pageSize the page size of the page to get
+// * @param skip the number of pages to skip
+// * @return a URI with the skip parameter added or null if a one could not be prepared.
+// */
+// private static String buildSkipUriString(String requestUri, Integer pageSize, Integer skip) {
+// try {
+// if (requestUri != null && requestUri.length() > 0) {
+// URI preparedUri = prepareURI(requestUri);
+// if (preparedUri != null) {
+// String preparedUriString = preparedUri.toString();
+//
+// preparedUriString += "?$top="
+// + (pageSize == null || pageSize == 0 ? DEFAULT_PAGE_SIZE.toString() : pageSize.toString());
+//
+// if (skip != null && skip > 0) preparedUriString += "&$skip=" + skip.toString();
+//
+// LOG.debug("URI created: " + preparedUriString);
+//
+// return preparedUriString;
+// }
+// }
+// } catch (Exception ex) {
+// LOG.error("ERROR: " + ex.toString());
+// }
+// return null;
+// }
+
/**
* Metadata Pretty Printer
*
* @param metadata any metadata in Edm format
*/
- public static String getMetadataReport(Edm metadata) {
- StringBuilder reportBuilder = new StringBuilder();
-
- reportBuilder.append("\n\n" + REPORT_DIVIDER);
- reportBuilder.append("\nMetadata Report");
- reportBuilder.append("\n" + REPORT_DIVIDER);
-
- //Note: other treatments may be added to this summary info
- metadata.getSchemas().forEach(schema -> {
- reportBuilder.append("\n\nNamespace: ").append(schema.getNamespace());
- reportBuilder.append("\n" + REPORT_DIVIDER_SMALL);
-
- schema.getTypeDefinitions().forEach(a ->
- reportBuilder.append("\nType Definition:").append(a.getName()));
-
- schema.getEntityTypes().forEach(a -> {
- reportBuilder.append("\nEntity Type: ").append(a.getName());
- a.getKeyPropertyRefs().forEach(ref ->
- reportBuilder.append("\n\tKey Field: ").append(ref.getName()));
- a.getPropertyNames().forEach(n -> reportBuilder.append("\n\tName: ").append(n));
- });
+ 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);
- schema.getEnumTypes().forEach(edmEnumType -> {
- reportBuilder.append("\nEnum Type: ")
- .append(edmEnumType.getName())
- .append(" (").append(schema.getNamespace()).append(", ")
- .append(edmEnumType.getUnderlyingType().getFullQualifiedName().getFullQualifiedNameAsString())
- .append(")");
-
- edmEnumType.getMemberNames().forEach(n -> reportBuilder.append("\n\tName: ").append(n));
- });
-
- schema.getComplexTypes().forEach(a ->
- reportBuilder.append("\nComplex Entity Type: ").append(a.getFullQualifiedName().getFullQualifiedNameAsString()));
-
- schema.getAnnotationGroups().forEach(a ->
- reportBuilder.append("\nAnnotation: ").append(a.getQualifier()).append(", Target Path: ").append(a.getTargetPath()));
+ 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));
+ } catch (Exception ex) {
+ LOG.error(getDefaultErrorMessage(ex));
+ }
- schema.getTerms().forEach(a ->
- reportBuilder.append("\nTerm: ").append(a.getFullQualifiedName().getFullQualifiedNameAsString()));
- });
+ return report.toString();
+ }
- return reportBuilder.toString();
+ public static String generateMetadataReport(Edm metadata) {
+ return generateMetadataReport(metadata, null);
}
/**
@@ -268,6 +281,17 @@ public static XMLMetadata deserializeXMLMetadata(String xmlMetadataString, OData
.toMetadata(new ByteArrayInputStream(xmlMetadataString.getBytes(StandardCharsets.UTF_8)));
}
+ /**
+ * Deserializes metadata from a given path
+ * @param pathToMetadata the path to the metadata
+ * @param client an instance of a Commander client
+ * @return the XMLMetadata for the given item
+ */
+ public static XMLMetadata deserializeXMLMetadataFromPath(String pathToMetadata, ODataClient client) {
+ //deserialize response into XML Metadata - will throw an exception if metadata are invalid
+ return Commander.deserializeXMLMetadata(Objects.requireNonNull(deserializeFileFromPath(pathToMetadata)).toString(), client);
+ }
+
/**
* Deserializes Edm from XML Metadata
*
@@ -282,6 +306,87 @@ public static Edm deserializeEdm(String xmlMetadataString, ODataClient client) {
return client.getReader().readMetadata(new ByteArrayInputStream(xmlMetadataString.getBytes(StandardCharsets.UTF_8)));
}
+ /**
+ * Deserializes Edm from XML Metadata
+ *
+ * @param pathToMetadataFile a string containing the path to the raw XML Metadata file
+ * @param client an instance of an OData Client
+ * @return the Edm contained within the xmlMetadataString
+ *
+ * TODO: rewrite the separate Edm request in the Web API server test code to only make one request and convert
+ * to Edm from the XML Metadata that was received.
+ */
+ public static Edm deserializeEdmFromPath(String pathToMetadataFile, ODataClient client) {
+ return client.getReader().readMetadata(deserializeFileFromPath(pathToMetadataFile));
+ }
+
+ public static InputStream deserializeFileFromPath(String pathToFile) {
+ try {
+ return Files.newInputStream(Paths.get(pathToFile));
+ } catch (IOException e) {
+ LOG.fatal(getDefaultErrorMessage("Could not open file: " + pathToFile));
+ }
+ return null;
+ }
+
+ public static String convertInputStreamToString(InputStream inputStream) {
+ return new BufferedReader(new InputStreamReader(inputStream, StandardCharsets.UTF_8))
+ .lines()
+ .collect(Collectors.joining("\n"));
+ }
+
+ /**
+ * Static version of the metadata validator that can work with a given client
+ *
+ * @param metadata the XML Metadata to validate
+ * @param client the OData client to use for validation
+ * @return true if the given XML metadata is valid, false otherwise
+ */
+ public static boolean validateMetadata(XMLMetadata metadata, ODataClient client) {
+ try {
+ // call the probably-useless metadata validator. can't hurt though
+ // SEE: https://github.com/apache/olingo-odata4/blob/master/lib/client-core/src/main/java/org/apache/olingo/client/core/serialization/ODataMetadataValidationImpl.java#L77-L116
+ client.metadataValidation().validateMetadata(metadata);
+
+ // also check whether metadata contains a valid service document in OData v4 format
+ return client.metadataValidation().isServiceDocument(metadata)
+ && client.metadataValidation().isV4Metadata(metadata);
+ } catch (NullPointerException nex) {
+ LOG.error(getDefaultErrorMessage("Metadata validation Failed! See error messages and commander.log for further information."));
+ } catch (Exception ex) {
+ LOG.error(getDefaultErrorMessage("Metadata validation Failed! General error occurred when validating metadata.\n" + ex.getMessage()));
+ if (ex.getCause() != null) {
+ LOG.error("Caused by: " + ex.getCause().getMessage());
+ }
+ }
+ return false;
+ }
+
+ /**
+ * Static version of the metadata validator that can work with a given client
+ *
+ * @param edm the Edm to validate
+ * @param client the OData client to use for validation
+ * @return true if the given XML metadata is valid, false otherwise
+ */
+ public static boolean validateMetadata(Edm edm, ODataClient client) {
+ try {
+ // call the probably-useless metadata validator. can't hurt though
+ // SEE: https://github.com/apache/olingo-odata4/blob/master/lib/client-core/src/main/java/org/apache/olingo/client/core/serialization/ODataMetadataValidationImpl.java#L77-L116
+ client.metadataValidation().validateMetadata(edm);
+ //if Edm metadata are invalid, the previous line will throw an exception and this line won't be reached.
+ return true;
+ } catch (NullPointerException nex) {
+ LOG.error(getDefaultErrorMessage("Metadata validation Failed! See error messages and commander.log for further information."));
+ } catch (Exception ex) {
+ LOG.error(getDefaultErrorMessage("Metadata validation Failed! General error occurred when validating metadata.\n" + ex.getMessage()));
+ if (ex.getCause() != null) {
+ LOG.error("Caused by: " + ex.getCause().getMessage());
+ }
+ }
+ return false;
+ }
+
/**
* OData client getter
*
@@ -386,58 +491,6 @@ public void saveMetadata(Edm metadata, String outputFileName) throws IOException
client.getSerializer(ContentType.APPLICATION_XML).write(writer, metadata);
}
- /**
- * Static version of the metadata validator that can work with a given client
- *
- * @param metadata the XML Metadata to validate
- * @param client the OData client to use for validation
- * @return true if the given XML metadata is valid, false otherwise
- */
- public static boolean validateMetadata(XMLMetadata metadata, ODataClient client) {
- try {
- // call the probably-useless metadata validator. can't hurt though
- // SEE: https://github.com/apache/olingo-odata4/blob/master/lib/client-core/src/main/java/org/apache/olingo/client/core/serialization/ODataMetadataValidationImpl.java#L77-L116
- client.metadataValidation().validateMetadata(metadata);
-
- // also check whether metadata contains a valid service document in OData v4 format
- return client.metadataValidation().isServiceDocument(metadata)
- && client.metadataValidation().isV4Metadata(metadata);
- } catch (NullPointerException nex) {
- LOG.error("ERROR: Validation Failed! Null pointer exception while trying to validate metadata.");
- } catch (Exception ex) {
- LOG.error("ERROR: Validation Failed! General error occurred when validating metadata.\n" + ex.getMessage());
- if (ex.getCause() != null) {
- LOG.error("Caused by: " + ex.getCause().getMessage());
- }
- }
- return false;
- }
-
- /**
- * Static version of the metadata validator that can work with a given client
- *
- * @param edm the Edm to validate
- * @param client the OData client to use for validation
- * @return true if the given XML metadata is valid, false otherwise
- */
- public static boolean validateMetadata(Edm edm, ODataClient client) {
- try {
- // call the probably-useless metadata validator. can't hurt though
- // SEE: https://github.com/apache/olingo-odata4/blob/master/lib/client-core/src/main/java/org/apache/olingo/client/core/serialization/ODataMetadataValidationImpl.java#L77-L116
- client.metadataValidation().validateMetadata(edm);
- //if Edm metadata are invalid, the previous line will throw an exception and this line won't be reached.
- return true;
- } catch (NullPointerException nex) {
- LOG.error("ERROR: Validation Failed! Null pointer exception while trying to validate metadata.");
- } catch (Exception ex) {
- LOG.error("ERROR: Validation Failed! General error occurred when validating metadata.\n" + ex.getMessage());
- if (ex.getCause() != null) {
- LOG.error("Caused by: " + ex.getCause().getMessage());
- }
- }
- return false;
- }
-
/**
* Validates given XMLMetadata
*
@@ -522,154 +575,126 @@ public boolean isOAuth2Client() {
return isOAuthClient;
}
- /**
- * Executes a get request on URI and saves raw response to outputFilePath.
- * Intended to be used mostly for testing.
- *
- * @param requestUri the URI to make the request against
- * @param outputFilePath the outputFilePath to write the response to
- */
- public Integer saveGetRequest(String requestUri, String outputFilePath) {
- final String ERROR_EXTENSION = ".ERROR";
- File outputFile = null;
- InputStream inputStream = null;
+ public Optional fetchJsonData(String requestUri) {
ODataRawResponse oDataRawResponse = null;
- Integer responseCode = null;
-
try {
if (requestUri != null && requestUri.length() > 0) {
LOG.debug("Request URI: " + requestUri);
- outputFile = new File(outputFilePath);
- oDataRawResponse = client.getRetrieveRequestFactory().getRawRequest(prepareURI(requestUri)).execute();
- responseCode = oDataRawResponse.getStatusCode();
- inputStream = oDataRawResponse.getRawResponse();
- FileUtils.copyInputStreamToFile(inputStream, outputFile);
+
+ ODataRawRequest request = getClient().getRetrieveRequestFactory().getRawRequest(prepareURI(requestUri));
+
+ oDataRawResponse = request.execute();
+ lastResponseCode = oDataRawResponse.getStatusCode();
+ LOG.info("JSON Data fetched from: " + requestUri + "\n\twith response code: " + getLastResponseCode());
+ return Optional.ofNullable(oDataRawResponse.getRawResponse());
} else {
LOG.info("Empty Request Uri... Skipping!");
}
} catch (ODataClientErrorException oex) {
- outputFile = new File(outputFilePath + ERROR_EXTENSION);
String errMsg = "Request URI: " + requestUri + "\n\nERROR:" + oex.toString();
- responseCode = oex.getStatusLine().getStatusCode();
+ lastResponseCode = oex.getStatusLine().getStatusCode();
try {
- FileUtils.writeByteArrayToFile(outputFile, errMsg.getBytes());
- } catch (IOException ioEx) {
- LOG.error("Could not write to error log file!");
+ return Optional.of(new ByteArrayInputStream(errMsg.getBytes()));
} finally {
LOG.error("Exception occurred in saveRawGetRequest. " + oex.getMessage());
}
- } catch (IOException ioEx) {
- LOG.error("Could not write to error log file!");
- System.exit(NOT_OK);
}
- return responseCode;
+ return Optional.empty();
}
/**
- * Executes a raw OData request in the current commander instance without trying to intepret the results
+ * Executes a get request on URI and saves raw response to outputFilePath.
+ * Intended to be used mostly for testing.
*
- * @param requestUri the URI to make the request to
- * @return a string containing the serialized response, or null
+ * @param requestUri the URI to make the request against
+ * @param outputFilePath the outputFilePath to write the response to
*/
- public String executeRawRequest(String requestUri) {
- String data = null;
- if (requestUri != null) {
+ public Integer saveGetRequest(String requestUri, String outputFilePath) {
+ final String ERROR_EXTENSION = ".ERROR";
+ try {
+ Optional response = fetchJsonData(requestUri);
+ if (response.isPresent()) {
+ FileUtils.copyInputStreamToFile(response.get(), new File(outputFilePath));
+ LOG.info("JSON Response saved to: " + outputFilePath);
+ }
+ } catch (Exception ex) {
+ File outputFile = new File(outputFilePath + ERROR_EXTENSION);
try {
- ODataRawRequest request = getClient().getRetrieveRequestFactory().getRawRequest(URI.create(requestUri));
- ODataRawResponse response = request.execute();
- data = TestUtils.convertInputStreamToString(response.getRawResponse());
- } catch (Exception ex) {
- LOG.error(ex);
+ FileUtils.copyInputStreamToFile(new ByteArrayInputStream(ex.toString().getBytes()), outputFile);
+ } catch (IOException ioException) {
+ ioException.printStackTrace();
}
+ ex.printStackTrace();
}
- return data;
+ return getLastResponseCode();
}
- /**
- * Gets a ClientEntitySet for the given uri string.
- *
- * @param requestUri the string version of the URI to retrieve data from.
- * @return a ClientEntitySet with data containing results from a GET request to requestUri
- */
- public ClientEntitySet getEntitySet(String requestUri) {
- AtomicReference result = new AtomicReference<>();
- Function pageHandler = clientEntitySet -> {
- result.set(clientEntitySet);
- return null;
- };
-
- //get one page from the pager and return the local result
- getPagedEntitySet(requestUri, DEFAULT_PAGE_LIMIT, DEFAULT_PAGE_SIZE, pageHandler);
- return result.get();
- }
+ private Integer lastResponseCode = null;
/**
- * Gets a paged entity set up to limit. Will do continuous paging depending on the limit passed.
- *
- * @param requestUri the string version of the URI to make requests from.
- * @param pageLimit the number of records to fetch.
- * @param pageSize the number of records to fetch for each page.
- * @param pageHandlerCallback a function that processes results as they come in.
- * @return a count of the total number of records processed
+ * Gets HTTP response code from most recent Commander request
+ * @return the HTTP response code of the last request, or null
*/
- public int getPagedEntitySet(String requestUri, Integer pageLimit, Integer pageSize, Function pageHandlerCallback) {
- final int NO_LIMIT_SENTINEL = -1;
-
- ODataRetrieveResponse entitySetResponse = null;
- ClientEntitySet clientEntitySet = null;
- int totalPageCount = 0;
+ public Integer getLastResponseCode() {
+ return lastResponseCode;
+ }
+ public String fetchXMLMetadata() {
+ String xmlMetadataResponseData = null;
try {
- URI uri = buildSkipUri(requestUri, pageSize, null);
-
- do {
- entitySetResponse = client.getRetrieveRequestFactory().getEntitySetRequest(uri).execute();
- clientEntitySet = entitySetResponse.getBody();
-
- //update the caller with results
- pageHandlerCallback.apply(clientEntitySet);
+ final String requestUri = getServiceRoot() + "/$metadata";
- totalPageCount++;
+ assertNotNull(getDefaultErrorMessage("Metadata request URI was null!"), requestUri);
- //some of the next links don't currently work, so we can't use getNext() reliably.
- //we can, however, use the results of what we've downloaded previously to inform the skip.
- uri = buildSkipUri(requestUri, pageSize, totalPageCount * pageSize);
+ ODataRawRequest request = getClient().getRetrieveRequestFactory().getRawRequest(URI.create(requestUri));
+ request.setFormat(ContentType.APPLICATION_XML.toContentTypeString());
- } while (entitySetResponse.getStatusCode() == HttpStatus.SC_OK && entitySetResponse.getBody().getNext() != null
- && (pageLimit == NO_LIMIT_SENTINEL || totalPageCount < pageLimit));
+ ODataRawResponse response = request.execute();
+ lastResponseCode = response.getStatusCode();
+ if (getLastResponseCode() != HttpStatus.SC_OK) {
+ LOG.error(getDefaultErrorMessage("Request failed! \nuri:" + requestUri + "\nresponse code: " + getLastResponseCode()));
+ } else {
+ xmlMetadataResponseData = TestUtils.convertInputStreamToString(response.getRawResponse());
+ if (xmlMetadataResponseData != null) {
+ LOG.info("Metadata request successful! " + xmlMetadataResponseData.getBytes().length + " bytes transferred.");
+ }
+ }
} catch (Exception ex) {
- //NOTE: sometimes a bad skip link in the payload can cause exceptions...the Olingo library validates the responses.
- LOG.error("ERROR: getEntitySet could not continue. " + ex.toString());
- System.exit(NOT_OK);
+ LOG.error(ex.toString());
}
- return totalPageCount;
+ return xmlMetadataResponseData;
}
/**
- * Converts metadata in EDMX format to metadata in Swagger 2.0 format.
- * Converted file will have the same name as the input file, with .swagger.json appended to the name.
+ * Executes a raw OData request in the current commander instance without trying to interpret the results
*
- * @param pathToEDMX the metadata file to convert.
+ * @param requestUri the URI to make the request to
+ * @return a string containing the serialized response, or null
*/
- public void convertEDMXToSwagger(String pathToEDMX) {
- final String FILENAME_EXTENSION = ".swagger.json";
- final String XSLT_FILENAME = "./V4-CSDL-to-OpenAPI.xslt";
-
- if (validateMetadata(pathToEDMX)) {
+ public String executeRawRequest(String requestUri) {
+ String data = null;
+ if (requestUri != null) {
try {
- TransformerFactory factory = TransformerFactory.newInstance();
- Transformer transformer = factory.newTransformer(new StreamSource(new File(XSLT_FILENAME)));
-
- Source text = new StreamSource(new File(pathToEDMX));
- transformer.transform(text, new StreamResult(new File(pathToEDMX + FILENAME_EXTENSION)));
-
+ ODataRawRequest request = getClient().getRetrieveRequestFactory().getRawRequest(URI.create(requestUri));
+ ODataRawResponse response = request.execute();
+ lastResponseCode = response.getStatusCode();
+ data = TestUtils.convertInputStreamToString(response.getRawResponse());
} catch (Exception ex) {
- LOG.error("ERROR: convertMetadata failed. " + ex.toString());
- System.exit(NOT_OK);
+ LOG.error(ex);
}
- } else {
- LOG.error("ERROR: invalid metadata! Please ensure metadata is valid using validateMetadata() before proceeding.");
+ }
+ return data;
+ }
+
+ public void saveXmlMetadataResponseToFile(String outputFileName) {
+ String xmlResponse = fetchXMLMetadata();
+ assert(xmlResponse != null) : "XML Metadata request returned no data!";
+
+ try {
+ FileUtils.copyInputStreamToFile(new ByteArrayInputStream(xmlResponse.getBytes()), new File(outputFileName));
+ } catch (IOException e) {
+ e.printStackTrace();
}
}
@@ -703,11 +728,16 @@ public void serializeEntitySet(ClientEntitySet entitySet, String outputFilePath)
serializeEntitySet(entitySet, outputFilePath, ContentType.JSON);
}
+ public Commander setServiceRoot(String serviceRootUri) {
+ serviceRoot = serviceRootUri;
+ return this;
+ }
+
/**
* Error handler class for SAX parser
*/
public static class SimpleErrorHandler implements ErrorHandler {
- public void warning(SAXParseException e) throws SAXException {
+ public void warning(SAXParseException e) {
LOG.warn(e.getMessage());
}
@@ -743,7 +773,11 @@ public Builder() {
* @return a Builder containing the given Web API service root
*/
public Builder serviceRoot(String serviceRoot) {
- this.serviceRoot = serviceRoot;
+ if (serviceRoot != null) {
+ String uri = serviceRoot.endsWith("/") ? serviceRoot.substring(0, serviceRoot.length()-1) : serviceRoot;
+ uri = uri.replace("$metadata", EMPTY_STRING);
+ this.serviceRoot = uri;
+ }
return this;
}
diff --git a/src/main/java/org/reso/commander/common/DataDictionaryMetadata.java b/src/main/java/org/reso/commander/common/DataDictionaryMetadata.java
new file mode 100644
index 00000000..07ef16d1
--- /dev/null
+++ b/src/main/java/org/reso/commander/common/DataDictionaryMetadata.java
@@ -0,0 +1,68 @@
+package org.reso.commander.common;
+
+import java.util.Arrays;
+import java.util.LinkedHashSet;
+import java.util.Set;
+
+import static org.reso.commander.common.DataDictionaryMetadata.v1_7.WELL_KNOWN_KEYS.*;
+import static org.reso.commander.common.DataDictionaryMetadata.v1_7.WELL_KNOWN_KEYS.SOCIAL_MEDIA;
+
+public class DataDictionaryMetadata {
+ public static final class v1_7 {
+ public static final Set WELL_KNOWN_RESOURCES = new LinkedHashSet<>(Arrays.asList(
+ PROPERTY,
+ MEMBER,
+ OFFICE,
+ CONTACTS,
+ CONTACT_LISTINGS,
+ HISTORY_TRANSACTIONAL,
+ INTERNET_TRACKING,
+ MEDIA,
+ OPEN_HOUSE,
+ OUID,
+ PROSPECTING,
+ QUEUE,
+ RULES,
+ SAVED_SEARCH,
+ SHOWING,
+ TEAMS,
+ TEAM_MEMBERS,
+ CONTACT_LISTING_NOTES,
+ OTHER_PHONE,
+ PROPERTY_GREEN_VERIFICATION,
+ PROPERTY_POWER_PRODUCTION,
+ PROPERTY_ROOMS,
+ PROPERTY_UNIT_TYPES,
+ SOCIAL_MEDIA
+ ));
+ public static final String LOOKUP_FIELDS_AND_VALUES = "Lookup Fields and Values";
+
+ public static class WELL_KNOWN_KEYS {
+ public static final String
+ PROPERTY = "Property",
+ MEMBER = "Member",
+ OFFICE = "Office",
+ CONTACTS = "Contacts",
+ CONTACT_LISTINGS = "ContactListings",
+ HISTORY_TRANSACTIONAL = "HistoryTransactional",
+ INTERNET_TRACKING = "InternetTracking",
+ MEDIA = "Media",
+ OPEN_HOUSE = "OpenHouse",
+ OUID = "OUID",
+ PROSPECTING = "Prospecting",
+ QUEUE = "Queue",
+ RULES = "Rules",
+ SAVED_SEARCH = "SavedSearch",
+ SHOWING = "Showing",
+ TEAMS = "Teams",
+ TEAM_MEMBERS = "TeamMembers",
+ CONTACT_LISTING_NOTES = "ContactListingNotes",
+ OTHER_PHONE = "OtherPhone",
+ PROPERTY_GREEN_VERIFICATION = "PropertyGreenVerification",
+ PROPERTY_POWER_PRODUCTION = "PropertyPowerProduction",
+ PROPERTY_ROOMS = "PropertyRooms",
+ PROPERTY_UNIT_TYPES = "PropertyUnitTypes",
+ SOCIAL_MEDIA = "SocialMedia";
+ }
+ }
+}
diff --git a/src/main/java/org/reso/commander/common/ErrorMsg.java b/src/main/java/org/reso/commander/common/ErrorMsg.java
index 94e59c44..9bf755db 100644
--- a/src/main/java/org/reso/commander/common/ErrorMsg.java
+++ b/src/main/java/org/reso/commander/common/ErrorMsg.java
@@ -1,6 +1,6 @@
package org.reso.commander.common;
-import static org.reso.commander.certfication.containers.WebAPITestContainer.SINGLE_SPACE;
+import static org.reso.certification.containers.WebAPITestContainer.SINGLE_SPACE;
public final class ErrorMsg {
private static final String ERROR_MESSAGE_TEMPLATE = "ERROR: %s";
diff --git a/src/main/java/org/reso/commander/common/TestUtils.java b/src/main/java/org/reso/commander/common/TestUtils.java
index e257c360..c3df73df 100644
--- a/src/main/java/org/reso/commander/common/TestUtils.java
+++ b/src/main/java/org/reso/commander/common/TestUtils.java
@@ -4,6 +4,7 @@
import org.apache.http.Header;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
+import org.apache.olingo.client.api.communication.ODataClientErrorException;
import org.apache.olingo.client.api.communication.response.ODataResponse;
import org.apache.olingo.client.api.edm.xml.XMLMetadata;
import org.apache.olingo.commons.api.edm.Edm;
@@ -15,6 +16,8 @@
import org.apache.olingo.commons.core.edm.primitivetype.EdmDate;
import org.apache.olingo.commons.core.edm.primitivetype.EdmDateTimeOffset;
import org.apache.olingo.commons.core.edm.primitivetype.EdmTimeOfDay;
+import org.reso.certification.containers.WebAPITestContainer;
+import org.reso.commander.Commander;
import org.reso.models.Settings;
import java.io.BufferedReader;
@@ -40,701 +43,837 @@
import static org.reso.commander.common.TestUtils.DateParts.FRACTIONAL;
public final class TestUtils {
- public static final String JSON_VALUE_PATH = "value";
- public static final String HEADER_ODATA_VERSION = "OData-Version";
- private static final Logger LOG = LogManager.getLogger(TestUtils.class);
-
- /**
- * Used to prepare URIs given that the input queryStrings can sometimes contain special characters
- * that need to be ensured that they be processed.
- *
- * @param queryString the queryString to prepare
- * @return the prepared URI with special characters in the queryString processed.
- */
- public static URI prepareUri(final String queryString) {
- /* replace spaces with %20 */
- return URI.create(
- queryString.replace(" ", "%20")
- /* add other handlers here */
- );
+ public static final String JSON_VALUE_PATH = "value";
+ public static final String HEADER_ODATA_VERSION = "OData-Version";
+ private static final Logger LOG = LogManager.getLogger(LogManager.getContext());
+
+ /**
+ * Used to prepare URIs given that the input queryStrings can sometimes contain special characters
+ * that need to be ensured that they be processed.
+ *
+ * @param queryString the queryString to prepare
+ * @return the prepared URI with special characters in the queryString processed.
+ */
+ public static URI prepareUri(final String queryString) {
+ /* replace spaces with %20 */
+ return URI.create(
+ queryString.replace(" ", "%20")
+ /* add other handlers here */
+ );
+ }
+
+ /**
+ * Finds the default entity container for the given configuration.
+ *
+ * @param xmlMetadata XML Metadata to search through
+ * @return the default CSDL Container for the given XMLMetadata
+ */
+ public static CsdlEntityContainer findDefaultEntityContainer(Edm edm, XMLMetadata xmlMetadata) {
+ assertNotNull("Edm Cannot be Null!", edm);
+ assertNotNull("XMLMetadata Cannot be Null!", xmlMetadata);
+ assertNotNull("ERROR: Could not find default EntityContainer for given service root!", edm.getEntityContainer());
+
+ String entityContainerNamespace = edm.getEntityContainer().getNamespace();
+ assertNotNull("ERROR: no default EntityContainer namespace could be found", entityContainerNamespace);
+
+ return xmlMetadata.getSchema(entityContainerNamespace).getEntityContainer();
+ }
+
+ /**
+ * Gets a list of CsdlProperty items for the given entityTypeName.
+ *
+ * @param xmlMetadata the metadata to search.
+ * @param entityTypeName the name of the entityType (resource) to search for. MUST be in the default EntityContainer.
+ * @return a list of CsdlProperty items for the given entityTypeName
+ */
+ public static List findEntityTypesForEntityTypeName(Edm edm, XMLMetadata xmlMetadata, String entityTypeName) {
+ assertNotNull("ERROR: Edm Cannot be Null!", edm);
+ assertNotNull("ERROR: XMLMetadata Cannot be Null!", xmlMetadata);
+ assertNotNull("ERROR: entityTypeName cannot be null!", entityTypeName);
+
+ CsdlEntityContainer entityContainer = findDefaultEntityContainer(edm, xmlMetadata);
+ assertNotNull("ERROR: could not find a default entity container for the given server!", entityContainer);
+
+ if (entityContainer.getEntitySet(entityTypeName) == null) return null;
+
+ CsdlSchema schemaForType = xmlMetadata.getSchema(entityContainer.getEntitySet(entityTypeName).getTypeFQN().getNamespace());
+
+ return schemaForType != null ? schemaForType.getEntityType(entityTypeName).getProperties() : null;
+ }
+
+ /**
+ * Gets a list of CsdlProperty items for the given entityTypeName.
+ *
+ * @param xmlMetadata the metadata to search.
+ * @param entityTypeName the name of the entityType to search for. MUST be in the default EntityContainer.
+ * @return a list of CsdlProperty items for the given entityTypeName
+ */
+ public static List findNavigationPropertiesForEntityTypeName(Edm edm, XMLMetadata xmlMetadata, String entityTypeName) {
+ assertNotNull("ERROR: Edm Cannot be Null!", edm);
+ assertNotNull("ERROR: XMLMetadata Cannot be Null!", xmlMetadata);
+ assertNotNull("ERROR: entityTypeName cannot be null!", entityTypeName);
+
+ CsdlEntityContainer entityContainer = findDefaultEntityContainer(edm, xmlMetadata);
+ assertNotNull("ERROR: could not find a default entity container for the given server!", entityContainer);
+
+ CsdlSchema schemaForType = xmlMetadata.getSchema(entityContainer.getEntitySet(entityTypeName).getTypeFQN().getNamespace());
+
+ assertNotNull("ERROR: could not find type corresponding to given type name: " + entityTypeName, schemaForType);
+
+ return schemaForType.getEntityType(entityTypeName).getNavigationProperties();
+ }
+
+ /**
+ * Compares each item in the string (JSON) payload with the given field name to the asserted value using op.
+ *
+ * @param payload JSON payload to compare
+ * @param fieldName fieldName to compare against
+ * @param op binary comparison operator
+ * @param assertedValue asserted value
+ * @return true if values in the payload match the assertion, false otherwise.
+ */
+ public static boolean compareStringPayloadToAssertedValue(String payload, String fieldName, String op, String assertedValue) {
+ AtomicBoolean result = new AtomicBoolean(false);
+ //iterate over the items and count the number of fields with data to determine whether there are data present
+ from(payload).getList(JSON_VALUE_PATH, HashMap.class).forEach(item ->
+ result.compareAndSet(result.get(), compare((String) item.get(fieldName), op, assertedValue)));
+ return result.get();
+ }
+
+ /**
+ * Compares each item in the string (JSON) payload with the given field name to the asserted value using op.
+ *
+ * @param payload JSON payload to compare
+ * @param fieldName fieldName to compare against
+ * @param op binary comparison operator
+ * @param assertedValue asserted value
+ * @return true if values in the payload match the assertion, false otherwise.
+ */
+ public static boolean compareIntegerPayloadToAssertedValue(String payload, String fieldName, String op, Integer assertedValue) {
+ AtomicBoolean result = new AtomicBoolean(false);
+ //iterate over the items and count the number of fields with data to determine whether there are data present
+ from(payload).getList(JSON_VALUE_PATH, HashMap.class).forEach(item ->
+ result.compareAndSet(result.get(), compare((Integer) item.get(fieldName), op, assertedValue)));
+ return result.get();
+ }
+
+ /**
+ * Compares each item in the string (JSON) payload with the given field name to the asserted value using op.
+ *
+ * @param payload JSON payload to compare
+ * @param fieldName fieldName to compare against
+ * @param op binary comparison operator
+ * @param assertedValue asserted value
+ * @return true if values in the payload match the assertion, false otherwise.
+ */
+ public static boolean compareTimestampPayloadToAssertedValue(String payload, String fieldName, String op, String assertedValue) {
+ AtomicBoolean result = new AtomicBoolean(false);
+ //iterate over the items and count the number of fields with data to determine whether there are data present
+ from(payload).getList(JSON_VALUE_PATH, HashMap.class).forEach(item -> {
+ try {
+ result.compareAndSet(result.get(), compare(
+ parseTimestampFromEdmDateTimeOffsetString((String) item.get(fieldName)), op,
+ parseTimestampFromEdmDateTimeOffsetString(assertedValue)));
+ } catch (Exception ex) {
+ fail(getDefaultErrorMessage(ex));
+ }
+ });
+ return result.get();
+ }
+
+ /**
+ * Compares each item in the string (JSON) payload with the given field name to the asserted value using op.
+ *
+ * @param payload JSON payload to compare
+ * @param fieldName fieldName to compare against
+ * @param op binary comparison operator
+ * @param assertedValue asserted value
+ * @return true if values in the payload match the assertion, false otherwise.
+ */
+ public static boolean compareTimestampPayloadToAssertedDatePartValue(String payload, String datePart, String fieldName, String op, Integer assertedValue) {
+ AtomicBoolean result = new AtomicBoolean(false);
+
+ from(payload).getList(JSON_VALUE_PATH, HashMap.class).forEach(item -> {
+ try {
+ result.compareAndSet(result.get(), compare(getTimestampPart(datePart, item.get(fieldName)), op, assertedValue));
+ } catch (Exception ex) {
+ fail(getDefaultErrorMessage(ex));
+ }
+ });
+ return result.get();
+ }
+
+ //And "month" data in Date Field "Parameter_DateField" "eq" "Parameter_MonthValue"
+
+ /**
+ * Compares each item in the string (JSON) payload with the given field name to the asserted value using op.
+ *
+ * @param payload JSON payload to compare
+ * @param fieldName fieldName to compare against
+ * @param op binary comparison operator
+ * @param assertedValue asserted value
+ * @return true if values in the payload match the assertion, false otherwise.
+ */
+ public static boolean compareDatePayloadToAssertedDatePartValue(String payload, String datePart, String fieldName, String op, Integer assertedValue) {
+ AtomicBoolean result = new AtomicBoolean(false);
+
+ from(payload).getList(JSON_VALUE_PATH, HashMap.class).forEach(item -> {
+ try {
+ result.compareAndSet(result.get(), compare(getDatePart(datePart, item.get(fieldName)), op, assertedValue));
+ } catch (Exception ex) {
+ fail(getDefaultErrorMessage(ex));
+ }
+ });
+ return result.get();
+ }
+
+ /**
+ * Compares each item in the string (JSON) payload with the given field name to the asserted value using op.
+ *
+ * @param payload JSON payload to compare
+ * @param fieldName fieldName to compare against
+ * @param op binary comparison operator
+ * @param assertedValue asserted value
+ * @return true if values in the payload match the assertion, false otherwise.
+ */
+ public static boolean compareFractionalSecondsPayloadToAssertedValue(String payload, String fieldName, String op, Double assertedValue) {
+ final Double CONVERSION_FACTOR = 1000000.0;
+
+ AtomicBoolean result = new AtomicBoolean(false);
+ AtomicReference timestampPart = new AtomicReference<>(null);
+ AtomicReference fractionalSeconds = new AtomicReference<>(null);
+
+ from(payload).getList(JSON_VALUE_PATH, HashMap.class).forEach(item -> {
+ try {
+ timestampPart.set(getTimestampPart(FRACTIONAL, item.get(fieldName)));
+ if (timestampPart.get() != null) fractionalSeconds.set(timestampPart.get() / CONVERSION_FACTOR);
+
+ result.set(compare(fractionalSeconds.get(), op, assertedValue));
+
+ } catch (Exception ex) {
+ fail(getDefaultErrorMessage(ex));
+ }
+ });
+ return result.get();
+ }
+
+ /**
+ * Returns true if each item in the list is true
+ *
+ * @param lhs Integer value
+ * @param op an OData binary operator for use for comparisons
+ * @param rhs Integer value
+ * @return true if lhs op rhs produces true, false otherwise
+ */
+ public static boolean compare(Integer lhs, String op, Integer rhs) {
+ boolean result = false;
+
+ switch (op.toLowerCase()) {
+ case Operators.GREATER_THAN:
+ result = lhs != null && rhs != null && lhs > rhs;
+ break;
+ case Operators.GREATER_THAN_OR_EQUAL:
+ result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs > rhs);
+ break;
+ case Operators.EQ:
+ result = Objects.equals(lhs, rhs);
+ break;
+ case Operators.NE:
+ result = !Objects.equals(lhs, rhs);
+ break;
+ case Operators.LESS_THAN:
+ result = lhs != null && rhs != null && lhs < rhs;
+ break;
+ case Operators.LESS_THAN_OR_EQUAL:
+ result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs < rhs);
+ break;
+ default:
+ LOG.debug("Unknown Operator: " + op);
+ break;
}
-
- /**
- * Finds the default entity container for the given configuration.
- *
- * @param xmlMetadata XML Metadata to search through
- * @return the default CSDL Container for the given XMLMetadata
- */
- public static CsdlEntityContainer findDefaultEntityContainer(Edm edm, XMLMetadata xmlMetadata) {
- assertNotNull("Edm Cannot be Null!", edm);
- assertNotNull("XMLMetadata Cannot be Null!", xmlMetadata);
- assertNotNull("ERROR: Could not find default EntityContainer for given service root!", edm.getEntityContainer());
-
- String entityContainerNamespace = edm.getEntityContainer().getNamespace();
- assertNotNull("ERROR: no default EntityContainer namespace could be found", entityContainerNamespace);
-
- return xmlMetadata.getSchema(entityContainerNamespace).getEntityContainer();
- }
-
- /**
- * Gets a list of CsdlProperty items for the given entityTypeName.
- *
- * @param xmlMetadata the metadata to search.
- * @param entityTypeName the name of the entityType to search for. MUST be in the default EntityContainer.
- * @return a list of CsdlProperty items for the given entityTypeName
- */
- public static List findEntityTypesForEntityTypeName(Edm edm, XMLMetadata xmlMetadata, String entityTypeName) {
- assertNotNull("ERROR: Edm Cannot be Null!", edm);
- assertNotNull("ERROR: XMLMetadata Cannot be Null!", xmlMetadata);
- assertNotNull("ERROR: entityTypeName cannot be null!", entityTypeName);
-
- CsdlEntityContainer entityContainer = findDefaultEntityContainer(edm, xmlMetadata);
- assertNotNull("ERROR: could not find a default entity container for the given server!", entityContainer);
-
- CsdlSchema schemaForType = xmlMetadata.getSchema(entityContainer.getEntitySet(entityTypeName).getTypeFQN().getNamespace());
-
- assertNotNull("ERROR: could not find type corresponding to given type name: " + entityTypeName, schemaForType);
-
- return schemaForType.getEntityType(entityTypeName).getProperties();
- }
-
- /**
- * Gets a list of CsdlProperty items for the given entityTypeName.
- *
- * @param xmlMetadata the metadata to search.
- * @param entityTypeName the name of the entityType to search for. MUST be in the default EntityContainer.
- * @return a list of CsdlProperty items for the given entityTypeName
- */
- public static List findNavigationPropertiesForEntityTypeName(Edm edm, XMLMetadata xmlMetadata, String entityTypeName) {
- assertNotNull("ERROR: Edm Cannot be Null!", edm);
- assertNotNull("ERROR: XMLMetadata Cannot be Null!", xmlMetadata);
- assertNotNull("ERROR: entityTypeName cannot be null!", entityTypeName);
-
- CsdlEntityContainer entityContainer = findDefaultEntityContainer(edm, xmlMetadata);
- assertNotNull("ERROR: could not find a default entity container for the given server!", entityContainer);
-
- CsdlSchema schemaForType = xmlMetadata.getSchema(entityContainer.getEntitySet(entityTypeName).getTypeFQN().getNamespace());
-
- assertNotNull("ERROR: could not find type corresponding to given type name: " + entityTypeName, schemaForType);
-
- return schemaForType.getEntityType(entityTypeName).getNavigationProperties();
- }
-
- /**
- * Compares each item in the string (JSON) payload with the given field name to the asserted value using op.
- *
- * @param payload JSON payload to compare
- * @param fieldName fieldName to compare against
- * @param op binary comparison operator
- * @param assertedValue asserted value
- * @return true if values in the payload match the assertion, false otherwise.
- */
- public static boolean compareStringPayloadToAssertedValue(String payload, String fieldName, String op, String assertedValue) {
- AtomicBoolean result = new AtomicBoolean(false);
- //iterate over the items and count the number of fields with data to determine whether there are data present
- from(payload).getList(JSON_VALUE_PATH, HashMap.class).forEach(item ->
- result.compareAndSet(result.get(), compare((String) item.get(fieldName), op, assertedValue)));
- return result.get();
- }
-
- /**
- * Compares each item in the string (JSON) payload with the given field name to the asserted value using op.
- *
- * @param payload JSON payload to compare
- * @param fieldName fieldName to compare against
- * @param op binary comparison operator
- * @param assertedValue asserted value
- * @return true if values in the payload match the assertion, false otherwise.
- */
- public static boolean compareIntegerPayloadToAssertedValue(String payload, String fieldName, String op, Integer assertedValue) {
- AtomicBoolean result = new AtomicBoolean(false);
- //iterate over the items and count the number of fields with data to determine whether there are data present
- from(payload).getList(JSON_VALUE_PATH, HashMap.class).forEach(item ->
- result.compareAndSet(result.get(), compare((Integer) item.get(fieldName), op, assertedValue)));
- return result.get();
- }
-
- /**
- * Compares each item in the string (JSON) payload with the given field name to the asserted value using op.
- *
- * @param payload JSON payload to compare
- * @param fieldName fieldName to compare against
- * @param op binary comparison operator
- * @param assertedValue asserted value
- * @return true if values in the payload match the assertion, false otherwise.
- */
- public static boolean compareTimestampPayloadToAssertedValue(String payload, String fieldName, String op, String assertedValue) {
- AtomicBoolean result = new AtomicBoolean(false);
- //iterate over the items and count the number of fields with data to determine whether there are data present
- from(payload).getList(JSON_VALUE_PATH, HashMap.class).forEach(item -> {
- try {
- result.compareAndSet(result.get(), compare(
- parseTimestampFromEdmDateTimeOffsetString((String) item.get(fieldName)), op,
- parseTimestampFromEdmDateTimeOffsetString(assertedValue)));
- } catch (Exception ex) {
- fail(getDefaultErrorMessage(ex));
- }
- });
- return result.get();
- }
-
- /**
- * Compares each item in the string (JSON) payload with the given field name to the asserted value using op.
- *
- * @param payload JSON payload to compare
- * @param fieldName fieldName to compare against
- * @param op binary comparison operator
- * @param assertedValue asserted value
- * @return true if values in the payload match the assertion, false otherwise.
- */
- public static boolean compareTimestampPayloadToAssertedDatePartValue(String payload, String datePart, String fieldName, String op, Integer assertedValue) {
- AtomicBoolean result = new AtomicBoolean(false);
-
- from(payload).getList(JSON_VALUE_PATH, HashMap.class).forEach(item -> {
- try {
- result.compareAndSet(result.get(), compare(getTimestampPart(datePart, item.get(fieldName)), op, assertedValue));
- } catch (Exception ex) {
- fail(getDefaultErrorMessage(ex));
- }
- });
- return result.get();
- }
-
- //And "month" data in Date Field "Parameter_DateField" "eq" "Parameter_MonthValue"
-
- /**
- * Compares each item in the string (JSON) payload with the given field name to the asserted value using op.
- *
- * @param payload JSON payload to compare
- * @param fieldName fieldName to compare against
- * @param op binary comparison operator
- * @param assertedValue asserted value
- * @return true if values in the payload match the assertion, false otherwise.
- */
- public static boolean compareDatePayloadToAssertedDatePartValue(String payload, String datePart, String fieldName, String op, Integer assertedValue) {
- AtomicBoolean result = new AtomicBoolean(false);
-
- from(payload).getList(JSON_VALUE_PATH, HashMap.class).forEach(item -> {
- try {
- result.compareAndSet(result.get(), compare(getDatePart(datePart, item.get(fieldName)), op, assertedValue));
- } catch (Exception ex) {
- fail(getDefaultErrorMessage(ex));
- }
- });
- return result.get();
- }
-
- /**
- * Compares each item in the string (JSON) payload with the given field name to the asserted value using op.
- *
- * @param payload JSON payload to compare
- * @param fieldName fieldName to compare against
- * @param op binary comparison operator
- * @param assertedValue asserted value
- * @return true if values in the payload match the assertion, false otherwise.
- */
- public static boolean compareFractionalSecondsPayloadToAssertedValue(String payload, String fieldName, String op, Double assertedValue) {
- final Double CONVERSION_FACTOR = 1000000.0;
-
- AtomicBoolean result = new AtomicBoolean(false);
- AtomicReference timestampPart = new AtomicReference<>(null);
- AtomicReference fractionalSeconds = new AtomicReference<>(null);
-
- from(payload).getList(JSON_VALUE_PATH, HashMap.class).forEach(item -> {
- try {
- timestampPart.set(getTimestampPart(FRACTIONAL, item.get(fieldName)));
- if (timestampPart.get() != null) fractionalSeconds.set(timestampPart.get() / CONVERSION_FACTOR);
-
- result.set(compare(fractionalSeconds.get(), op, assertedValue));
-
- } catch (Exception ex) {
- fail(getDefaultErrorMessage(ex));
- }
- });
- return result.get();
- }
-
- /**
- * Returns true if each item in the list is true
- *
- * @param lhs Integer value
- * @param op an OData binary operator for use for comparisons
- * @param rhs Integer value
- * @return true if lhs op rhs produces true, false otherwise
- */
- public static boolean compare(Integer lhs, String op, Integer rhs) {
- boolean result = false;
-
- switch (op.toLowerCase()) {
- case Operators.GREATER_THAN:
- result = lhs != null && rhs != null && lhs > rhs;
- break;
- case Operators.GREATER_THAN_OR_EQUAL:
- result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs > rhs);
- break;
- case Operators.EQ:
- result = Objects.equals(lhs, rhs);
- break;
- case Operators.NE:
- result = !Objects.equals(lhs, rhs);
- break;
- case Operators.LESS_THAN:
- result = lhs != null && rhs != null && lhs < rhs;
- break;
- case Operators.LESS_THAN_OR_EQUAL:
- result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs < rhs);
- break;
- default:
- LOG.debug("Unknown Operator: " + op);
- break;
- }
- LOG.info("Compare: " + lhs + " " + op + " " + rhs + " ==> " + result);
- return result;
+ LOG.info("Compare: " + lhs + " " + op + " " + rhs + " ==> " + result);
+ return result;
+ }
+
+ /**
+ * Returns true if each item in the list is true
+ *
+ * @param lhs Integer value
+ * @param op an OData binary operator for use for comparisons
+ * @param rhs Integer value
+ * @return true if lhs op rhs produces true, false otherwise
+ */
+ public static boolean compare(String lhs, String op, String rhs) {
+ boolean result = false;
+
+ switch (op.toLowerCase()) {
+ case Operators.CONTAINS:
+ result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs.contains(rhs));
+ break;
+ case Operators.STARTS_WITH:
+ result = lhs != null && rhs != null && lhs.startsWith(rhs);
+ break;
+ case Operators.ENDS_WITH:
+ result = lhs != null && rhs != null && lhs.endsWith(rhs);
+ break;
+ case Operators.TO_LOWER:
+ result = lhs != null && lhs.toLowerCase().contentEquals(rhs);
+ break;
+ case Operators.TO_UPPER:
+ result = lhs != null && lhs.toUpperCase().contentEquals(rhs);
+ break;
+ default:
+ LOG.debug("Unknown Operator: " + op);
+ break;
}
-
- /**
- * Returns true if each item in the list is true
- *
- * @param lhs Integer value
- * @param op an OData binary operator for use for comparisons
- * @param rhs Integer value
- * @return true if lhs op rhs produces true, false otherwise
- */
- public static boolean compare(String lhs, String op, String rhs) {
- boolean result = false;
-
- switch (op.toLowerCase()) {
- case Operators.CONTAINS:
- result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs.contains(rhs));
- break;
- case Operators.STARTS_WITH:
- result = lhs != null && rhs != null && lhs.startsWith(rhs);
- break;
- case Operators.ENDS_WITH:
- result = lhs != null && rhs != null && lhs.endsWith(rhs);
- break;
- case Operators.TO_LOWER:
- result = lhs != null && lhs.toLowerCase().contentEquals(rhs);
- break;
- case Operators.TO_UPPER:
- result = lhs != null && lhs.toUpperCase().contentEquals(rhs);
- break;
- default:
- LOG.debug("Unknown Operator: " + op);
- break;
- }
- LOG.info("Compare: \"" + lhs + "\" " + op + " \"" + rhs + "\" ==> " + result);
- return result;
+ LOG.info("Compare: \"" + lhs + "\" " + op + " \"" + rhs + "\" ==> " + result);
+ return result;
+ }
+
+ /**
+ * Timestamp Comparator
+ *
+ * @param lhs Timestamp to compare
+ * @param op an OData binary operator to use for comparisons
+ * @param rhs Timestamp to compare
+ * @return true if lhs op rhs, false otherwise
+ */
+ public static boolean compare(Timestamp lhs, String op, Timestamp rhs) {
+ boolean result = false;
+
+ switch (op.toLowerCase()) {
+ case Operators.GREATER_THAN:
+ result = lhs != null && rhs != null && lhs.after(rhs);
+ break;
+ case Operators.GREATER_THAN_OR_EQUAL:
+ result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs.after(rhs));
+ break;
+ case Operators.EQ:
+ result = Objects.equals(lhs, rhs);
+ break;
+ case Operators.NE:
+ result = !Objects.equals(lhs, rhs);
+ break;
+ case Operators.LESS_THAN:
+ result = lhs != null && rhs != null && lhs.before(rhs);
+ break;
+ case Operators.LESS_THAN_OR_EQUAL:
+ result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs.before(rhs));
+ break;
+ default:
+ LOG.debug("Unknown Operator: " + op);
+ break;
}
-
- /**
- * Timestamp Comparator
- *
- * @param lhs Timestamp to compare
- * @param op an OData binary operator to use for comparisons
- * @param rhs Timestamp to compare
- * @return true if lhs op rhs, false otherwise
- */
- public static boolean compare(Timestamp lhs, String op, Timestamp rhs) {
- boolean result = false;
-
- switch (op.toLowerCase()) {
- case Operators.GREATER_THAN:
- result = lhs != null && rhs != null && lhs.after(rhs);
- break;
- case Operators.GREATER_THAN_OR_EQUAL:
- result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs.after(rhs));
- break;
- case Operators.EQ:
- result = Objects.equals(lhs, rhs);
- break;
- case Operators.NE:
- result = !Objects.equals(lhs, rhs);
- break;
- case Operators.LESS_THAN:
- result = lhs != null && rhs != null && lhs.before(rhs);
- break;
- case Operators.LESS_THAN_OR_EQUAL:
- result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs.before(rhs));
- break;
- default:
- LOG.debug("Unknown Operator: " + op);
- break;
- }
- LOG.info("Compare: " + lhs + " " + op + " " + rhs + " ==> " + result);
- return result;
+ LOG.info("Compare: " + lhs + " " + op + " " + rhs + " ==> " + result);
+ return result;
+ }
+
+ /**
+ * Time Comparator
+ *
+ * @param lhs Time to compare
+ * @param op an OData binary operator to use for comparisons
+ * @param rhs Time to compare
+ * @return true if lhs op rhs, false otherwise
+ */
+ public static boolean compare(Time lhs, String op, Time rhs) {
+ boolean result = false;
+
+ switch (op.toLowerCase()) {
+ case Operators.GREATER_THAN:
+ result = lhs != null && rhs != null && lhs.toLocalTime().isAfter(rhs.toLocalTime());
+ break;
+ case Operators.GREATER_THAN_OR_EQUAL:
+ result = Objects.equals(lhs, rhs) || lhs.toLocalTime().isAfter(rhs.toLocalTime()) || lhs.toLocalTime().equals(rhs.toLocalTime());
+ break;
+ case Operators.EQ:
+ result = Objects.equals(lhs, rhs) || lhs.toLocalTime().equals(rhs.toLocalTime());
+ break;
+ case Operators.NE:
+ result = !Objects.equals(lhs, rhs) || !lhs.toLocalTime().equals(rhs.toLocalTime());
+ break;
+ case Operators.LESS_THAN:
+ result = lhs != null && rhs != null && lhs.toLocalTime().isBefore(rhs.toLocalTime());
+ break;
+ case Operators.LESS_THAN_OR_EQUAL:
+ result = Objects.equals(lhs, rhs) || lhs.toLocalTime().isBefore(rhs.toLocalTime()) || lhs.toLocalTime().equals(rhs.toLocalTime());
+ break;
+ default:
+ LOG.debug("Unknown Operator: " + op);
+ break;
}
-
- /**
- * Time Comparator
- *
- * @param lhs Time to compare
- * @param op an OData binary operator to use for comparisons
- * @param rhs Time to compare
- * @return true if lhs op rhs, false otherwise
- */
- public static boolean compare(Time lhs, String op, Time rhs) {
- boolean result = false;
-
- switch (op.toLowerCase()) {
- case Operators.GREATER_THAN:
- result = lhs != null && rhs != null && lhs.toLocalTime().isAfter(rhs.toLocalTime());
- break;
- case Operators.GREATER_THAN_OR_EQUAL:
- result = Objects.equals(lhs, rhs) || lhs.toLocalTime().isAfter(rhs.toLocalTime()) || lhs.toLocalTime().equals(rhs.toLocalTime());
- break;
- case Operators.EQ:
- result = Objects.equals(lhs, rhs) || lhs.toLocalTime().equals(rhs.toLocalTime());
- break;
- case Operators.NE:
- result = !Objects.equals(lhs, rhs) || !lhs.toLocalTime().equals(rhs.toLocalTime());
- break;
- case Operators.LESS_THAN:
- result = lhs != null && rhs != null && lhs.toLocalTime().isBefore(rhs.toLocalTime());
- break;
- case Operators.LESS_THAN_OR_EQUAL:
- result = Objects.equals(lhs, rhs) || lhs.toLocalTime().isBefore(rhs.toLocalTime()) || lhs.toLocalTime().equals(rhs.toLocalTime());
- break;
- default:
- LOG.debug("Unknown Operator: " + op);
- break;
- }
- LOG.info("Compare: " + lhs + " " + op + " " + rhs + " ==> " + result);
- return result;
+ LOG.info("Compare: " + lhs + " " + op + " " + rhs + " ==> " + result);
+ return result;
+ }
+
+ /**
+ * Date Comparator
+ *
+ * @param lhs Date to compare
+ * @param op an OData binary operator to use for comparisons
+ * @param rhs Date to compare
+ * @return true if lhs op rhs, false otherwise
+ */
+ public static boolean compare(Date lhs, String op, Date rhs) {
+ boolean result = false;
+
+ switch (op.toLowerCase()) {
+ case Operators.GREATER_THAN:
+ result = lhs != null && lhs.after(rhs);
+ break;
+ case Operators.GREATER_THAN_OR_EQUAL:
+ result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs.after(rhs));
+ break;
+ case Operators.EQ:
+ result = Objects.equals(lhs, rhs);
+ break;
+ case Operators.NE:
+ result = !Objects.equals(lhs, rhs);
+ break;
+ case Operators.LESS_THAN:
+ result = lhs != null && lhs.before(rhs);
+ break;
+ case Operators.LESS_THAN_OR_EQUAL:
+ result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs.before(rhs));
+ break;
+ default:
+ LOG.debug("Unknown Operator: " + op);
+ break;
}
-
- /**
- * Date Comparator
- *
- * @param lhs Date to compare
- * @param op an OData binary operator to use for comparisons
- * @param rhs Date to compare
- * @return true if lhs op rhs, false otherwise
- */
- public static boolean compare(Date lhs, String op, Date rhs) {
- boolean result = false;
-
- switch (op.toLowerCase()) {
- case Operators.GREATER_THAN:
- result = lhs != null && lhs.after(rhs);
- break;
- case Operators.GREATER_THAN_OR_EQUAL:
- result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs.after(rhs));
- break;
- case Operators.EQ:
- result = Objects.equals(lhs, rhs);
- break;
- case Operators.NE:
- result = !Objects.equals(lhs, rhs);
- break;
- case Operators.LESS_THAN:
- result = lhs != null && lhs.before(rhs);
- break;
- case Operators.LESS_THAN_OR_EQUAL:
- result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs.before(rhs));
- break;
- default:
- LOG.debug("Unknown Operator: " + op);
- break;
- }
- LOG.info("Compare: " + lhs + " " + op + " " + rhs + " ==> " + result);
- return result;
- }
-
- /**
- * Compares Double values, taking nulls into account
- *
- * @param lhs the left value
- * @param op a binary comparison operator
- * @param rhs the right value
- * @return true if lhs 'op' rhs is true, false otherwise
- */
- public static boolean compare(Double lhs, String op, Double rhs) {
- boolean result = false;
-
- switch (op.toLowerCase()) {
- case Operators.GREATER_THAN:
- //TODO: consider switching to compare()
- result = lhs != null && rhs != null && lhs > rhs;
- break;
- case Operators.GREATER_THAN_OR_EQUAL:
- result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs > rhs);
- break;
- case Operators.EQ:
- result = Objects.equals(lhs, rhs);
- break;
- case Operators.NE:
- result = !Objects.equals(lhs, rhs);
- break;
- case Operators.LESS_THAN:
- result = lhs != null && rhs != null && lhs < rhs;
- break;
- case Operators.LESS_THAN_OR_EQUAL:
- result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs < rhs);
- break;
- default:
- LOG.debug("Unknown Operator: " + op);
- break;
- }
- LOG.info("Compare: " + lhs + " " + op + " " + rhs + " ==> " + result);
- return result;
+ LOG.info("Compare: " + lhs + " " + op + " " + rhs + " ==> " + result);
+ return result;
+ }
+
+ /**
+ * Compares Double values, taking nulls into account
+ *
+ * @param lhs the left value
+ * @param op a binary comparison operator
+ * @param rhs the right value
+ * @return true if lhs 'op' rhs is true, false otherwise
+ */
+ public static boolean compare(Double lhs, String op, Double rhs) {
+ boolean result = false;
+
+ switch (op.toLowerCase()) {
+ case Operators.GREATER_THAN:
+ //TODO: consider switching to compare()
+ result = lhs != null && rhs != null && lhs > rhs;
+ break;
+ case Operators.GREATER_THAN_OR_EQUAL:
+ result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs > rhs);
+ break;
+ case Operators.EQ:
+ result = Objects.equals(lhs, rhs);
+ break;
+ case Operators.NE:
+ result = !Objects.equals(lhs, rhs);
+ break;
+ case Operators.LESS_THAN:
+ result = lhs != null && rhs != null && lhs < rhs;
+ break;
+ case Operators.LESS_THAN_OR_EQUAL:
+ result = Objects.equals(lhs, rhs) || (lhs != null && rhs != null && lhs < rhs);
+ break;
+ default:
+ LOG.debug("Unknown Operator: " + op);
+ break;
}
-
- /**
- * Tests the given string to see if it's valid JSON
- *
- * @param jsonString the JSON string to test the validity of
- * @return true if valid, false otherwise. Throws {@link IOException}
- */
- public static boolean isValidJson(String jsonString) {
- try {
- final ObjectMapper mapper = new ObjectMapper();
- mapper.readTree(jsonString);
- return true;
- } catch (IOException e) {
- return false;
- }
- }
-
- /**
- * Helper method to find headers with a given key in an an array of headers
- *
- * @param key the header to get
- * @param headers an array containing Header objects
- * @return the value of the header with key, or null
- */
- public static String getHeaderData(String key, Collection headers) {
- String data = null;
-
- for (Header header : headers) {
- if (header.getName().toLowerCase().contains(key.toLowerCase())) {
- data = header.getValue();
- }
- }
- return data;
- }
-
- /**
- * Helper method to unpack headers from a raw OData response
- *
- * @param key the header to get
- * @param oDataResponse the OData raw response from the request
- * @return the value of the header with key, or null
- */
- public static String getHeaderData(String key, ODataResponse oDataResponse) {
- if (key == null || oDataResponse.getHeader(key) == null) return null;
- ArrayList result = new ArrayList<>(oDataResponse.getHeader(key));
-
- if (result.size() > 0) {
- return result.get(0);
- } else {
- return null;
- }
-
+ LOG.info("Compare: " + lhs + " " + op + " " + rhs + " ==> " + result);
+ return result;
+ }
+
+ /**
+ * Tests the given string to see if it's valid JSON
+ *
+ * @param jsonString the JSON string to test the validity of
+ * @return true if valid, false otherwise. Throws {@link IOException}
+ */
+ public static boolean isValidJson(String jsonString) {
+ try {
+ final ObjectMapper mapper = new ObjectMapper();
+ mapper.readTree(jsonString);
+ return true;
+ } catch (IOException e) {
+ return false;
}
-
- /**
- * Parses the given edmDateTimeOffsetString into a Java Instant (the type expected by the Olingo type converter).
- *
- * @param edmDateTimeOffsetString string representation of an Edm DateTimeOffset to parse.
- * @return the corresponding Instant value.
- * @throws EdmPrimitiveTypeException thrown if given value cannot be parsed.
- */
- public static Timestamp parseTimestampFromEdmDateTimeOffsetString(String edmDateTimeOffsetString) throws EdmPrimitiveTypeException {
- return EdmDateTimeOffset.getInstance().valueOfString(edmDateTimeOffsetString, true, null, null, null, null, Timestamp.class);
+ }
+
+ /**
+ * Helper method to find headers with a given key in an an array of headers
+ *
+ * @param key the header to get
+ * @param headers an array containing Header objects
+ * @return the value of the header with key, or null
+ */
+ public static String getHeaderData(String key, Collection headers) {
+ String data = null;
+
+ for (Header header : headers) {
+ if (header.getName().toLowerCase().contains(key.toLowerCase())) {
+ data = header.getValue();
+ }
}
-
- /**
- * Parses the given edmDateString into a Java Time.
- *
- * @param edmTimeOfDayOffsetString the date string to convert.
- * @return the corresponding Time value.
- * @throws EdmPrimitiveTypeException thrown if given value cannot be parsed.
- */
- public static Time parseTimeOfDayFromEdmTimeOfDayString(String edmTimeOfDayOffsetString) throws EdmPrimitiveTypeException {
- return EdmTimeOfDay.getInstance().valueOfString(edmTimeOfDayOffsetString, true, null, null, null, null, Time.class);
+ return data;
+ }
+
+ /**
+ * Helper method to unpack headers from a raw OData response
+ *
+ * @param key the header to get
+ * @param oDataResponse the OData raw response from the request
+ * @return the value of the header with key, or null
+ */
+ public static String getHeaderData(String key, ODataResponse oDataResponse) {
+ if (key == null || oDataResponse.getHeader(key) == null) return null;
+ ArrayList result = new ArrayList<>(oDataResponse.getHeader(key));
+
+ if (result.size() > 0) {
+ return result.get(0);
+ } else {
+ return null;
}
- /**
- * Parses the given DateTimeOffsetString into a Java Time.
- *
- * @param edmDateTimeOffsetString the DateTimeOffsetString to parse.
- * @return the corresponding Time value.
- * @throws EdmPrimitiveTypeException thrown if given value cannot be parsed.
- */
- public static Time parseTimeOfDayFromEdmDateTimeOffsetString(String edmDateTimeOffsetString) throws EdmPrimitiveTypeException {
- return EdmDateTimeOffset.getInstance().valueOfString(edmDateTimeOffsetString, true, null, null, null, null, Time.class);
+ }
+
+ /**
+ * Parses the given edmDateTimeOffsetString into a Java Instant (the type expected by the Olingo type converter).
+ *
+ * @param edmDateTimeOffsetString string representation of an Edm DateTimeOffset to parse.
+ * @return the corresponding Instant value.
+ * @throws EdmPrimitiveTypeException thrown if given value cannot be parsed.
+ */
+ public static Timestamp parseTimestampFromEdmDateTimeOffsetString(String edmDateTimeOffsetString) throws EdmPrimitiveTypeException {
+ return EdmDateTimeOffset.getInstance().valueOfString(edmDateTimeOffsetString, true, null, null, null, null, Timestamp.class);
+ }
+
+ /**
+ * Parses the given edmDateString into a Java Time.
+ *
+ * @param edmTimeOfDayOffsetString the date string to convert.
+ * @return the corresponding Time value.
+ * @throws EdmPrimitiveTypeException thrown if given value cannot be parsed.
+ */
+ public static Time parseTimeOfDayFromEdmTimeOfDayString(String edmTimeOfDayOffsetString) throws EdmPrimitiveTypeException {
+ return EdmTimeOfDay.getInstance().valueOfString(edmTimeOfDayOffsetString, true, null, null, null, null, Time.class);
+ }
+
+ /**
+ * Parses the given DateTimeOffsetString into a Java Time.
+ *
+ * @param edmDateTimeOffsetString the DateTimeOffsetString to parse.
+ * @return the corresponding Time value.
+ * @throws EdmPrimitiveTypeException thrown if given value cannot be parsed.
+ */
+ public static Time parseTimeOfDayFromEdmDateTimeOffsetString(String edmDateTimeOffsetString) throws EdmPrimitiveTypeException {
+ return EdmDateTimeOffset.getInstance().valueOfString(edmDateTimeOffsetString, true, null, null, null, null, Time.class);
+ }
+
+ /**
+ * Parses the given edmDateString into a Java Date
+ *
+ * @param edmDateString the date string to convert.
+ * @return the corresponding Date value.
+ * @throws EdmPrimitiveTypeException thrown if given value cannot be parsed.
+ */
+ public static Date parseDateFromEdmDateString(String edmDateString) throws EdmPrimitiveTypeException {
+ return EdmDate.getInstance().valueOfString(edmDateString, true, null, null, null, null, Date.class);
+ }
+
+ /**
+ * Parses the given edmDateTimeOffsetString into a Java Date
+ *
+ * @param edmDateTimeOffsetString string representation of an Edm DateTimeOffset to parse.
+ * @return the corresponding Date value.
+ * @throws EdmPrimitiveTypeException thrown if given value cannot be parsed.
+ */
+ public static Date parseDateFromEdmDateTimeOffsetString(String edmDateTimeOffsetString) throws EdmPrimitiveTypeException {
+ return EdmDateTimeOffset.getInstance().valueOfString(edmDateTimeOffsetString, true, null, null, null, null, Date.class);
+ }
+
+ /***
+ * Tries to parse datePart from the given Object value
+ * @param datePart the timestamp part, "Year", "Month", "Day", etc. to try and parse
+ * @param value the value to try and parse
+ * @return the Integer portion of the date if successful, otherwise throws an Exception
+ * @exception EdmPrimitiveTypeException an exception if value cannot be parsed into a date.
+ */
+ public static Integer getDatePart(String datePart, Object value) throws EdmPrimitiveTypeException {
+ if (value == null) return null;
+
+ LocalDate date = LocalDate.parse(parseDateFromEdmDateString(value.toString()).toString());
+ switch (datePart) {
+ case DateParts.YEAR:
+ return date.getYear();
+ case DateParts.MONTH:
+ return date.getMonthValue();
+ case DateParts.DAY:
+ return date.getDayOfMonth();
+ default:
+ return null;
}
-
- /**
- * Parses the given edmDateString into a Java Date
- *
- * @param edmDateString the date string to convert.
- * @return the corresponding Date value.
- * @throws EdmPrimitiveTypeException thrown if given value cannot be parsed.
- */
- public static Date parseDateFromEdmDateString(String edmDateString) throws EdmPrimitiveTypeException {
- return EdmDate.getInstance().valueOfString(edmDateString, true, null, null, null, null, Date.class);
+ }
+
+ /***
+ * Tries to parse datePart from the given Object value
+ * @param timestampPart the timestamp part, "Year", "Month", "Day", etc. to try and parse
+ * @param value the value to try and parse
+ * @return the Integer portion of the date if successful, otherwise throws an Exception
+ */
+ public static Integer getTimestampPart(String timestampPart, Object value) throws DateTimeParseException {
+ if (timestampPart == null || value == null) return null;
+
+ ZonedDateTime dateTime = ZonedDateTime.parse((String) value, DateTimeFormatter.ISO_DATE_TIME);
+
+ switch (timestampPart) {
+ case DateParts.YEAR:
+ return dateTime.getYear();
+ case DateParts.MONTH:
+ return dateTime.getMonthValue();
+ case DateParts.DAY:
+ return dateTime.getDayOfMonth();
+ case DateParts.HOUR:
+ return dateTime.getHour();
+ case DateParts.MINUTE:
+ return dateTime.getMinute();
+ case DateParts.SECOND:
+ return dateTime.getSecond();
+ case FRACTIONAL:
+ return dateTime.toInstant().get(ChronoField.MICRO_OF_SECOND);
+ default:
+ return null;
}
-
- /**
- * Parses the given edmDateTimeOffsetString into a Java Date
- *
- * @param edmDateTimeOffsetString string representation of an Edm DateTimeOffset to parse.
- * @return the corresponding Date value.
- * @throws EdmPrimitiveTypeException thrown if given value cannot be parsed.
- */
- public static Date parseDateFromEdmDateTimeOffsetString(String edmDateTimeOffsetString) throws EdmPrimitiveTypeException {
- return EdmDateTimeOffset.getInstance().valueOfString(edmDateTimeOffsetString, true, null, null, null, null, Date.class);
+ }
+
+ /**
+ * Converts the given inputStream to a string.
+ *
+ * @param inputStream the input stream to convert.
+ * @return the string value contained in the stream.
+ */
+ public static String convertInputStreamToString(InputStream inputStream) {
+ try {
+ InputStreamReader isReader = new InputStreamReader(inputStream, StandardCharsets.UTF_8.name());
+ BufferedReader reader = new BufferedReader(isReader);
+ StringBuilder sb = new StringBuilder();
+ String str;
+ while ((str = reader.readLine()) != null) {
+ sb.append(str);
+ }
+ return sb.toString();
+ } catch (Exception ex) {
+ LOG.error("Error in convertInputStreamToString: " + ex);
}
-
- /***
- * Tries to parse datePart from the given Object value
- * @param datePart the timestamp part, "Year", "Month", "Day", etc. to try and parse
- * @param value the value to try and parse
- * @return the Integer portion of the date if successful, otherwise throws an Exception
- * @exception EdmPrimitiveTypeException an exception if value cannot be parsed into a date.
- */
- public static Integer getDatePart(String datePart, Object value) throws EdmPrimitiveTypeException {
- if (value == null) return null;
-
- LocalDate date = LocalDate.parse(parseDateFromEdmDateString(value.toString()).toString());
- switch (datePart) {
- case DateParts.YEAR:
- return date.getYear();
- case DateParts.MONTH:
- return date.getMonthValue();
- case DateParts.DAY:
- return date.getDayOfMonth();
- default:
- return null;
- }
+ return null;
+ }
+
+ /**
+ * For each parameterFieldName value in responseData, assertTrue(value op timestamp)
+ *
+ * @param parameterFieldName the field name containing data
+ * @param op an OData binary operator to be used for comparsions
+ * @param parameterAssertedValue value to be used for comparisons
+ * @param responseData string containing JSON response data
+ */
+ public static void assertDateTimeOffset(String parameterFieldName, String op, String parameterAssertedValue, String responseData, Settings settings) {
+ AtomicReference assertedValue = new AtomicReference<>();
+ try {
+ assertedValue.set(parseTimestampFromEdmDateTimeOffsetString(Settings.resolveParametersString(parameterAssertedValue, settings)));
+ assertDateTimeOffset(parameterFieldName, op, assertedValue.get(), responseData, settings);
+ } catch (EdmPrimitiveTypeException tex) {
+ fail("ERROR: Cannot Convert the value in "
+ + Settings.resolveParametersString(parameterAssertedValue, settings) + " to a Timestamp value!!" + tex);
}
-
- /***
- * Tries to parse datePart from the given Object value
- * @param timestampPart the timestamp part, "Year", "Month", "Day", etc. to try and parse
- * @param value the value to try and parse
- * @return the Integer portion of the date if successful, otherwise throws an Exception
- */
- public static Integer getTimestampPart(String timestampPart, Object value) throws DateTimeParseException {
- if (timestampPart == null || value == null) return null;
-
- ZonedDateTime dateTime = ZonedDateTime.parse((String) value, DateTimeFormatter.ISO_DATE_TIME);
-
- switch (timestampPart) {
- case DateParts.YEAR:
- return dateTime.getYear();
- case DateParts.MONTH:
- return dateTime.getMonthValue();
- case DateParts.DAY:
- return dateTime.getDayOfMonth();
- case DateParts.HOUR:
- return dateTime.getHour();
- case DateParts.MINUTE:
- return dateTime.getMinute();
- case DateParts.SECOND:
- return dateTime.getSecond();
- case FRACTIONAL:
- return dateTime.toInstant().get(ChronoField.MICRO_OF_SECOND);
- default:
- return null;
- }
+ }
+
+ /**
+ * For each parameterFieldName value in responseData, assertTrue(value op timestamp)
+ *
+ * @param parameterFieldName the field name containing data
+ * @param op an OData binary operator to be used for comparsions
+ * @param timestamp value to be used for comparisons
+ * @param responseData string containing JSON response data
+ */
+ public static void assertDateTimeOffset(String parameterFieldName, String op, Timestamp timestamp, String responseData, Settings settings) {
+ LOG.info("Asserted time is: " + timestamp);
+ String fieldName = Settings.resolveParametersString(parameterFieldName, settings);
+ AtomicReference fieldValue = new AtomicReference<>();
+
+ from(responseData).getList(JSON_VALUE_PATH, HashMap.class).forEach(item -> {
+ try {
+ fieldValue.set(parseTimestampFromEdmDateTimeOffsetString(item.get(fieldName).toString()));
+ assertTrue(compare(fieldValue.get(), op, timestamp));
+ } catch (EdmPrimitiveTypeException tex) {
+ fail("ERROR: Cannot Convert the value in " + fieldValue.get() + " to a Timestamp value!!" + tex);
+ }
+ });
+ }
+
+ /**
+ * Asserts that metadata in the given container are valid. Fetches metadata if not present in the container.
+ * @param container a test container with a valid config that metadata can be fetched into
+ */
+ public static void assertValidXMLMetadata(WebAPITestContainer container) {
+ try {
+ if (!container.getHaveMetadataBeenRequested()) {
+ //will lazy-load metadata from the server if not yet requested
+ container.fetchXMLMetadata();
+ }
+ container.validateMetadata();
+ assertTrue("XML Metadata at the given service root is not valid! " + container.getServiceRoot(),
+ container.getIsValidXMLMetadata());
+ } catch (Exception ex) {
+ fail(getDefaultErrorMessage(ex));
}
-
- /**
- * Converts the given inputStream to a string.
- *
- * @param inputStream the input stream to convert.
- * @return the string value contained in the stream.
- */
- public static String convertInputStreamToString(InputStream inputStream) {
- try {
- InputStreamReader isReader = new InputStreamReader(inputStream, StandardCharsets.UTF_8.name());
- BufferedReader reader = new BufferedReader(isReader);
- StringBuilder sb = new StringBuilder();
- String str;
- while ((str = reader.readLine()) != null) {
- sb.append(str);
- }
- return sb.toString();
- } catch (Exception ex) {
- LOG.error("Error in convertInputStreamToString: " + ex);
- }
- return null;
+ }
+
+ /**
+ * Asserts that the given container has XML Metadata that contains an Entity Data Model (Edm)
+ * @param container the container with XML metadata to validate
+ */
+ public static void assertXmlMetadataContainsEdm(WebAPITestContainer container) {
+ container.setEdm(Commander.deserializeEdm(container.getXMLResponseData(), container.getCommander().getClient()));
+ assertNotNull(getDefaultErrorMessage("Edm de-serialized to an empty object!"), container.getEdm());
+ }
+
+ /**
+ * Asserts that the Edm in the given container are valid
+ * @param container the container with the XML Metadata to check
+ */
+ public static void assertValidEdm(WebAPITestContainer container) {
+ assertTrue("Edm Metadata at the given service root is not valid! " + container.getServiceRoot(),
+ container.getIsValidEdm());
+ }
+
+ /**
+ * Asserts that XML Metadata are retrieved from the server
+ * @param container the container to retrieve metadata with
+ */
+ public static void assertXMLMetadataAreRequestedFromTheServer(WebAPITestContainer container) {
+ assertNotNull(container);
+ assertNotNull("Commander is null!", container.getCommander());
+
+ if (!container.getHaveMetadataBeenRequested()) {
+ final String serviceRoot = Settings.resolveParametersString(container.getServiceRoot(), container.getSettings());
+ assertEquals(getDefaultErrorMessage("given service root doesn't match the one configured in the Commander"),
+ serviceRoot,
+ container.getCommander().getServiceRoot());
+
+ try {
+ assertNotNull(getDefaultErrorMessage("could not find valid XML Metadata for given service root:", serviceRoot),
+ container.fetchXMLMetadata());
+
+ } catch (ODataClientErrorException cex) {
+ container.setResponseCode(cex.getStatusLine().getStatusCode());
+ fail(getDefaultErrorMessage(cex));
+ } catch (Exception ex) {
+ fail(getDefaultErrorMessage(ex));
+ }
}
-
- /**
- * For each parameterFieldName value in responseData, assertTrue(value op timestamp)
- *
- * @param parameterFieldName the field name containing data
- * @param op an OData binary operator to be used for comparsions
- * @param parameterAssertedValue value to be used for comparisons
- * @param responseData string containing JSON response data
- */
- public static void assertDateTimeOffset(String parameterFieldName, String op, String parameterAssertedValue, String responseData, Settings settings) {
- AtomicReference assertedValue = new AtomicReference<>();
- try {
- assertedValue.set(parseTimestampFromEdmDateTimeOffsetString(Settings.resolveParametersString(parameterAssertedValue, settings)));
- assertDateTimeOffset(parameterFieldName, op, assertedValue.get(), responseData, settings);
- } catch (EdmPrimitiveTypeException tex) {
- LOG.error("ERROR: Cannot Convert the value in "
- + Settings.resolveParametersString(parameterAssertedValue, settings) + " to a Timestamp value!!" + tex);
- }
+ }
+
+ /**
+ * Asserts that the XML Response in the given container is valid XML
+ * @param container the container with the XML response to validate
+ */
+ public static void assertXMLResponseIsValidXML(WebAPITestContainer container) {
+ assertNotNull(getDefaultErrorMessage("no XML Response data were found!"), container.getXMLResponseData());
+ container.validateXMLMetadataXML();
+ assertTrue(getDefaultErrorMessage("invalid XML response!"), container.getIsValidXMLMetadataXML());
+ }
+
+ /**
+ * Asserts that the XML metadata in the given container has a valid service document
+ * @param container the container with XML Metadata to validate
+ */
+ public static void assertXMLMetadataHasValidServiceDocument(WebAPITestContainer container) {
+ try {
+ assertNotNull("ERROR: could not find default entity container for given service root: " +
+ container.getServiceRoot(), container.getEdm().getEntityContainer());
+ LOG.info("Found Default Entity Container: '" + container.getEdm().getEntityContainer().getNamespace() + "'");
+ } catch (ODataClientErrorException cex) {
+ container.setResponseCode(cex.getStatusLine().getStatusCode());
+ fail(cex.toString());
+ } catch (Exception ex) {
+ fail(getDefaultErrorMessage(ex));
}
-
- /**
- * For each parameterFieldName value in responseData, assertTrue(value op timestamp)
- *
- * @param parameterFieldName the field name containing data
- * @param op an OData binary operator to be used for comparsions
- * @param timestamp value to be used for comparisons
- * @param responseData string containing JSON response data
- */
- public static void assertDateTimeOffset(String parameterFieldName, String op, Timestamp timestamp, String responseData, Settings settings) {
- LOG.info("Asserted time is: " + timestamp);
- String fieldName = Settings.resolveParametersString(parameterFieldName, settings);
- AtomicReference fieldValue = new AtomicReference<>();
-
- from(responseData).getList(JSON_VALUE_PATH, HashMap.class).forEach(item -> {
- try {
- fieldValue.set(parseTimestampFromEdmDateTimeOffsetString(item.get(fieldName).toString()));
- assertTrue(compare(fieldValue.get(), op, timestamp));
- } catch (EdmPrimitiveTypeException tex) {
- LOG.error("ERROR: Cannot Convert the value in " + fieldValue.get() + " to a Timestamp value!!" + tex);
- }
- });
+ }
+
+ /**
+ * Asserts that valid Metadata have been retrieved. Fetches metadata if not present.
+ * @param container a test container to validate
+ */
+ public static void assertValidMetadataHaveBeenRetrieved(WebAPITestContainer container) {
+ try {
+ //NOTE: this is here so that tests may be run individually
+ if (!container.getHaveMetadataBeenRequested()) {
+ container.fetchXMLMetadata();
+ container.validateMetadata();
+ }
+ assertTrue(getDefaultErrorMessage("Valid metadata could not be retrieved from the server! Please check the log for more information."),
+ container.hasValidMetadata());
+ } catch (Exception ex) {
+ LOG.error(getDefaultErrorMessage(ex));
}
-
- /**
- * Contains the list of supported operators for use in query expressions.
- */
- public static class Operators {
- public static final String
- AND = "and",
- OR = "or",
- NE = "ne",
- EQ = "eq",
- GREATER_THAN = "gt",
- GREATER_THAN_OR_EQUAL = "ge",
- LESS_THAN = "lt",
- LESS_THAN_OR_EQUAL = "le",
- CONTAINS = "contains",
- ENDS_WITH = "endswith",
- STARTS_WITH = "startswith",
- TO_LOWER = "tolower",
- TO_UPPER = "toupper";
+ }
+
+ /**
+ * Contains the list of supported operators for use in query expressions.
+ */
+ public static final class Operators {
+ public static final String
+ AND = "and",
+ OR = "or",
+ NE = "ne",
+ EQ = "eq",
+ GREATER_THAN = "gt",
+ GREATER_THAN_OR_EQUAL = "ge",
+ LESS_THAN = "lt",
+ LESS_THAN_OR_EQUAL = "le",
+ CONTAINS = "contains",
+ ENDS_WITH = "endswith",
+ STARTS_WITH = "startswith",
+ TO_LOWER = "tolower",
+ TO_UPPER = "toupper";
+ }
+
+ public static final class DateParts {
+ public static final String
+ YEAR = "year",
+ MONTH = "month",
+ DAY = "day",
+ HOUR = "hour",
+ MINUTE = "minute",
+ SECOND = "second",
+ FRACTIONAL = "fractional";
+ }
+
+ public static final class TypeMappings {
+
+ public static final class DataDictionaryTypes {
+ public static final String
+ STRING = "String",
+ DATE = "Date",
+ DECIMAL = "Decimal",
+ INTEGER = "Integer",
+ BOOLEAN = "Boolean",
+ SINGLE_ENUM = "Single Enumeration",
+ MULTI_ENUM = "Multiple Enumeration",
+ TIMESTAMP = "Timestamp";
}
- public static class DateParts {
- public static final String
- YEAR = "year",
- MONTH = "month",
- DAY = "day",
- HOUR = "hour",
- MINUTE = "minute",
- SECOND = "second",
- FRACTIONAL = "fractional";
+ public static final class ODataTypes {
+ public static final String
+ STRING = "Edm.String",
+ DATE = "Edm.Date",
+ DECIMAL = "Edm.Decimal",
+ DOUBLE = "Edm.Double",
+ INT16 = "Edm.Int16",
+ INT32 = "Edm.Int32",
+ INT64 = "Edm.Int64",
+ BOOLEAN = "Edm.Boolean",
+ DATETIME_OFFSET = "Edm.DateTimeOffset";
}
+ }
}
diff --git a/src/main/java/org/reso/commander/common/Utils.java b/src/main/java/org/reso/commander/common/Utils.java
new file mode 100644
index 00000000..9e505240
--- /dev/null
+++ b/src/main/java/org/reso/commander/common/Utils.java
@@ -0,0 +1,85 @@
+package org.reso.commander.common;
+
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+
+import java.io.File;
+import java.io.FileWriter;
+import java.nio.charset.StandardCharsets;
+import java.text.DateFormat;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+
+public class Utils {
+ private static final Logger LOG = LogManager.getLogger(Utils.class);
+
+ /**
+ * Gets a formatted date string for the given date.
+ *
+ * @param date the date to format
+ * @return date string in yyyyMMddHHMMssS format
+ */
+ public static String getTimestamp(Date date) {
+ DateFormat df = new SimpleDateFormat("yyyyMMddHHMMssS");
+ return df.format(date);
+ }
+
+ /**
+ * Gets the current timestamp
+ * @return the current timestamp returned as a string
+ */
+ public static String getTimestamp() {
+ return getTimestamp(new Date());
+ }
+
+ /**
+ * Creates a file in the given directory with the given content
+ * @param directoryName the directory name to create the file in
+ * @param fileName the name of the file to create
+ * @param content the content to write to the file
+ */
+ public static File createFile(String directoryName, String fileName, String content) {
+ if (directoryName == null || fileName == null) return null;
+ String outputPath = directoryName.contains(System.getProperty("user.dir")) ? directoryName
+ : System.getProperty("user.dir") + File.separator + directoryName;
+ File baseDirectory = new File(outputPath);
+ FileWriter writer;
+ File outputFile = null;
+
+ try {
+ if (!baseDirectory.exists()) {
+ if (!baseDirectory.mkdirs()) throw new Exception("ERROR: could not create directory: " + baseDirectory);
+ }
+ outputFile = new File(outputPath + File.separator + fileName);
+ writer = new FileWriter(outputFile);
+ writer.write(new String(content.getBytes(StandardCharsets.UTF_8)));
+ writer.flush();
+ } catch (Exception ex) {
+ LOG.error("Filename: " + fileName + ". Could not create file: " + ex);
+ }
+ return outputFile;
+ }
+
+ public static String pluralize(int lengthAttribute) {
+ return lengthAttribute != 1 ? "s" : "";
+ }
+
+ final static int DEFAULT_COLUMN_WIDTH = 105;
+ final static String DEFAULT_SPACE_REPLACEMENT = "\n";
+
+ public static String wrapColumns(String content, String spaceReplacement) {
+ return wrapColumns(content, DEFAULT_COLUMN_WIDTH, spaceReplacement);
+ }
+
+ public static String wrapColumns(String content) {
+ return wrapColumns(content, DEFAULT_COLUMN_WIDTH, DEFAULT_SPACE_REPLACEMENT);
+ }
+
+ public static String wrapColumns(String content, int columnWidth) {
+ return wrapColumns(content, columnWidth, DEFAULT_SPACE_REPLACEMENT);
+ }
+
+ public static String wrapColumns(String content, int columnWidth, String spaceReplacement) {
+ return content.replaceAll(String.format("(.{1,%d})( +|$\\n?)|(.{1,%d})\n", columnWidth, columnWidth), spaceReplacement + "$1");
+ }
+}
diff --git a/src/main/java/org/reso/models/IgnoredItem.java b/src/main/java/org/reso/models/IgnoredItem.java
new file mode 100644
index 00000000..1bbdb486
--- /dev/null
+++ b/src/main/java/org/reso/models/IgnoredItem.java
@@ -0,0 +1,43 @@
+package org.reso.models;
+
+import com.google.gson.*;
+
+import java.lang.reflect.Type;
+import java.util.ArrayList;
+import java.util.List;
+
+public final class IgnoredItem implements JsonDeserializer {
+ String lookup;
+ String value;
+ List ignored;
+
+ public IgnoredItem(String lookup, String value, List ignored) {
+ this.lookup = lookup;
+ this.value = value;
+ this.ignored = ignored;
+ }
+
+ public String getLookup() {
+ return lookup;
+ }
+
+ public String getValue() {
+ return value;
+ }
+
+ public List getIgnored() {
+ return ignored;
+ }
+
+ @Override
+ public IgnoredItem deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
+ final String LOOKUP_KEY = "lookup", VALUE_KEY = "value", IGNORED_KEY = "ignored";
+
+ JsonObject jsonObject = json.getAsJsonObject();
+ String lookup = jsonObject.get(LOOKUP_KEY).getAsString();
+ String value = jsonObject.get(VALUE_KEY).getAsString();
+ List ignored = new ArrayList<>();
+ jsonObject.getAsJsonArray(IGNORED_KEY).iterator().forEachRemaining(item -> ignored.add(item.getAsString()));
+ return new IgnoredItem(lookup, value, ignored);
+ }
+}
diff --git a/src/main/java/org/reso/models/MetadataReport.java b/src/main/java/org/reso/models/MetadataReport.java
new file mode 100644
index 00000000..9fab5791
--- /dev/null
+++ b/src/main/java/org/reso/models/MetadataReport.java
@@ -0,0 +1,243 @@
+package org.reso.models;
+
+import com.google.gson.*;
+import org.apache.olingo.commons.api.edm.*;
+import org.reso.commander.common.Utils;
+
+import java.lang.reflect.Type;
+import java.util.Date;
+import java.util.List;
+
+import static org.reso.commander.Commander.REPORT_DIVIDER;
+
+public class MetadataReport implements JsonSerializer {
+ private Edm metadata;
+
+ private MetadataReport() {
+ //private default constructor
+ }
+
+ public MetadataReport(Edm metadata) {
+ this.metadata = metadata;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder reportBuilder = new StringBuilder();
+
+ reportBuilder
+ .append("\n\n" + REPORT_DIVIDER)
+ .append("\nRESO Metadata Report")
+ .append("\n").append(new Date())
+ .append("\n" + REPORT_DIVIDER);
+
+ JsonElement metadataReport = serialize(this, MetadataReport.class, null);
+ reportBuilder.append(FieldJson.buildReportString(metadataReport));
+ reportBuilder.append(LookupJson.buildReportString(metadataReport));
+
+ return reportBuilder.toString();
+ }
+
+ /**
+ * FieldJson uses a JSON payload with the following structure:
+ *
+ * {
+ * "resourceName": "Property",
+ * "fieldName": "AboveGradeFinishedArea",
+ * "type": "Edm.Decimal"
+ * }
+ */
+ private static final class FieldJson implements JsonSerializer {
+ static final String
+ RESOURCE_NAME_KEY = "resourceName", FIELD_NAME_KEY = "fieldName", TYPE_KEY = "type",
+ VALUE_KEY= "value", ANNOTATIONS_KEY = "annotations", FIELDS_KEY = "fields";
+
+ String resourceName;
+ EdmElement edmElement;
+
+ public FieldJson(String resourceName, EdmElement edmElement) {
+ this.resourceName = resourceName;
+ this.edmElement = edmElement;
+ }
+
+ public static String buildReportString(JsonElement metadataReport) {
+ StringBuilder reportBuilder = new StringBuilder();
+ metadataReport.getAsJsonObject().get(FIELDS_KEY).getAsJsonArray().forEach(field -> {
+ reportBuilder.append("\nResource: ");
+ reportBuilder.append(field.getAsJsonObject().get(RESOURCE_NAME_KEY));
+ reportBuilder.append("\nField: ");
+ reportBuilder.append(field.getAsJsonObject().get(FIELD_NAME_KEY));
+ reportBuilder.append("\nType: ");
+ reportBuilder.append(field.getAsJsonObject().get(TYPE_KEY));
+
+ if (field.getAsJsonObject().get(ANNOTATIONS_KEY) != null) {
+ JsonArray annotations = field.getAsJsonObject().get(ANNOTATIONS_KEY).getAsJsonArray();
+ if (annotations != null && annotations.size() > 0) {
+ 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(VALUE_KEY) != null) {
+ reportBuilder.append("\n\tValue: ");
+ reportBuilder.append(annotation.getAsJsonObject().get(VALUE_KEY));
+ }
+ });
+ }
+ }
+ reportBuilder.append("\n");
+ });
+ return reportBuilder.toString();
+ }
+
+ @Override
+ 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());
+
+ List annotations = ((EdmProperty)edmElement).getAnnotations();
+ if (annotations != null && annotations.size() > 0) {
+ JsonArray annotationsJsonArray = new JsonArray();
+ annotations.forEach(edmAnnotation -> {
+ JsonObject annotation = new JsonObject();
+ if (edmAnnotation.getTerm() != null) {
+ annotation.addProperty(TYPE_KEY, edmAnnotation.getTerm().getFullQualifiedName().getFullQualifiedNameAsString());
+ }
+
+ if (edmAnnotation.getExpression() != null) {
+ annotation.addProperty(VALUE_KEY, edmAnnotation.getExpression().asConstant().getValueAsString());
+ }
+ annotationsJsonArray.add(annotation);
+ });
+ field.add(ANNOTATIONS_KEY, annotationsJsonArray);
+ }
+ return field;
+ }
+ }
+
+ /**
+ * LookupJson uses a JSON payload with the following structure:
+ *
+ * {
+ * "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ * "lookupValue": "Stables",
+ * "type": "Edm.Int32"
+ * }
+ */
+ private static final class LookupJson implements JsonSerializer {
+ static final String
+ LOOKUP_NAME_KEY = "lookupName", LOOKUP_VALUE_KEY = "lookupValue",
+ TYPE_KEY = "type", VALUE_KEY= "value", ANNOTATIONS_KEY = "annotations",
+ LOOKUPS_KEY = "lookups";
+
+ EdmEnumType edmEnumType;
+ String memberName;
+
+ public LookupJson(String memberName, EdmEnumType edmEnumType) {
+ this.edmEnumType = edmEnumType;
+ this.memberName = memberName;
+ }
+
+ public static String buildReportString(JsonElement metadataReport) {
+ StringBuilder reportBuilder = new StringBuilder();
+ metadataReport.getAsJsonObject().get(LOOKUPS_KEY).getAsJsonArray().forEach(field -> {
+ reportBuilder.append("\nLookup Name: ");
+ reportBuilder.append(field.getAsJsonObject().get(LOOKUP_NAME_KEY));
+ reportBuilder.append("\nLookup Value: ");
+ reportBuilder.append(field.getAsJsonObject().get(LOOKUP_VALUE_KEY));
+ reportBuilder.append("\nType: ");
+ reportBuilder.append(field.getAsJsonObject().get(TYPE_KEY));
+
+ if (field.getAsJsonObject().get(ANNOTATIONS_KEY) != null) {
+ JsonArray annotations = field.getAsJsonObject().get(ANNOTATIONS_KEY).getAsJsonArray();
+ if (annotations != null && annotations.size() > 0) {
+ 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(VALUE_KEY) != null) {
+ reportBuilder.append("\n\tValue: ");
+ reportBuilder.append(annotation.getAsJsonObject().get(VALUE_KEY));
+ }
+ });
+ }
+ }
+ reportBuilder.append("\n");
+ });
+ return reportBuilder.toString();
+ }
+
+ @Override
+ public JsonElement serialize(LookupJson src, Type typeOfSrc, JsonSerializationContext context) {
+ JsonObject membersJsonObject = new JsonObject();
+ membersJsonObject.addProperty(LOOKUP_NAME_KEY, src.edmEnumType.getFullQualifiedName().toString());
+ membersJsonObject.addProperty(LOOKUP_VALUE_KEY, src.memberName);
+ membersJsonObject.addProperty(TYPE_KEY, src.edmEnumType.getUnderlyingType().getFullQualifiedName().getFullQualifiedNameAsString());
+
+ if (src.edmEnumType.getMember(memberName).getAnnotations().size() > 0) {
+ JsonArray annotations = new JsonArray();
+ src.edmEnumType.getMember(memberName).getAnnotations().forEach(edmAnnotation -> {
+ JsonObject annotation = new JsonObject();
+ if (edmAnnotation.getTerm() != null) {
+ annotation.addProperty(TYPE_KEY, edmAnnotation.getTerm().getFullQualifiedName().getFullQualifiedNameAsString());
+ }
+
+ if (edmAnnotation.getExpression() != null) {
+ annotation.addProperty(VALUE_KEY, edmAnnotation.getExpression().asConstant().getValueAsString());
+ }
+ annotations.add(annotation);
+ });
+ membersJsonObject.add(ANNOTATIONS_KEY, annotations);
+ }
+ return membersJsonObject;
+ }
+ }
+
+ @Override
+ public JsonElement serialize(MetadataReport src, Type typeOfSrc, JsonSerializationContext context) {
+ final String
+ DESCRIPTION_KEY = "description", DESCRIPTION = "RESO Data Dictionary Metadata Report",
+ VERSION_KEY = "version", VERSION = "1.7",
+ GENERATED_ON_KEY = "generatedOn",
+ FIELDS_KEY = "fields",
+ LOOKUPS_KEY = "lookups";
+
+ JsonArray fields = new JsonArray();
+ JsonArray lookups = new JsonArray();
+
+ src.metadata.getSchemas().forEach(edmSchema -> {
+ //serialize entities (resources) and members (fields)
+ edmSchema.getEntityTypes().forEach(edmEntityType -> {
+ edmEntityType.getPropertyNames().forEach(propertyName -> {
+ FieldJson fieldJson = new FieldJson(edmEntityType.getName(), edmEntityType.getProperty(propertyName));
+ fields.add(fieldJson.serialize(fieldJson, FieldJson.class, null));
+ });
+ });
+
+ //serialize enum types
+ edmSchema.getEnumTypes().forEach(edmEnumType -> {
+ edmEnumType.getMemberNames().forEach(memberName -> {
+ LookupJson lookupJson = new LookupJson(memberName, edmEnumType);
+ lookups.add(lookupJson.serialize(lookupJson, LookupJson.class, null));
+ });
+ });
+ });
+
+ JsonObject metadataReport = new JsonObject();
+ metadataReport.addProperty(DESCRIPTION_KEY, DESCRIPTION);
+ metadataReport.addProperty(VERSION_KEY, VERSION);
+ metadataReport.addProperty(GENERATED_ON_KEY, Utils.getTimestamp());
+ metadataReport.add(FIELDS_KEY, fields);
+ metadataReport.add(LOOKUPS_KEY, lookups);
+ return metadataReport;
+ }
+}
diff --git a/src/main/java/org/reso/models/ReferenceStandardField.java b/src/main/java/org/reso/models/ReferenceStandardField.java
new file mode 100644
index 00000000..7992ccf1
--- /dev/null
+++ b/src/main/java/org/reso/models/ReferenceStandardField.java
@@ -0,0 +1,298 @@
+package org.reso.models;
+
+import java.util.List;
+
+/**
+ *
+ */
+public class ReferenceStandardField {
+ private String standardName;
+ private String displayName;
+ private String parentResourceName;
+ private String definition;
+ private List groups;
+ private String simpleDataType;
+ private Integer suggestedMaxLength;
+ private List synonyms;
+ private String elementStatus;
+ private String bedes;
+ private String certificationLevel;
+ private Integer recordId;
+ private String lookupStatus;
+ private String lookup;
+ private String collection;
+ private Integer suggestedMaxPrecision;
+ private Boolean repeatingElement;
+ private List propertyTypes;
+ private List payloads;
+ private String spanishStandardName;
+ private String statusChangeDate;
+ private String revisedDate;
+ private String addedInVersion;
+ private String wikiPageTitle;
+ private String wikiPageUrl;
+ private Integer wikiPageId;
+
+
+ private ReferenceStandardField() { /* private constructor use Builder instead */ }
+
+ public Boolean isMultipleEnumeration() {
+ final String DATA_TYPE_NAME = "String List, Multi";
+ return getSimpleDataType().trim().contentEquals(DATA_TYPE_NAME);
+ }
+
+ public Boolean isSingleEnumeration() {
+ final String DATA_TYPE_NAME = "String List, Single";
+ return getSimpleDataType().trim().contentEquals(DATA_TYPE_NAME);
+ }
+
+ public String getStandardName() {
+ return standardName;
+ }
+
+ public String getDisplayName() {
+ return displayName;
+ }
+
+ public String getParentResourceName(){
+ return parentResourceName;
+ }
+
+ public String getDefinition() {
+ return definition;
+ }
+
+ public List getGroups() {
+ return groups;
+ }
+
+ public String getSimpleDataType() {
+ return simpleDataType;
+ }
+
+ public Integer getSuggestedMaxLength() {
+ return suggestedMaxLength;
+ }
+
+ public List getSynonyms() {
+ return synonyms;
+ }
+
+ public String getElementStatus() {
+ return elementStatus;
+ }
+
+ public String getBedes() {
+ return bedes;
+ }
+
+ public String getCertificationLevel() {
+ return certificationLevel;
+ }
+
+ public Integer getRecordId() {
+ return recordId;
+ }
+
+ public String getLookupStatus() {
+ return lookupStatus;
+ }
+
+ public String getLookup() {
+ return lookup;
+ }
+
+ public String getLookupStandardName() {
+ return getLookup().replace("Lookups", "").trim();
+ }
+
+ public String getCollection() {
+ return collection;
+ }
+
+ public Integer getSuggestedMaxPrecision() {
+ return suggestedMaxPrecision;
+ }
+
+ public Boolean getRepeatingElement() {
+ return repeatingElement;
+ }
+
+ public List getPropertyTypes() {
+ return propertyTypes;
+ }
+
+ public List getPayloads() {
+ return payloads;
+ }
+
+ public String getSpanishStandardName() {
+ return spanishStandardName;
+ }
+
+ public String getStatusChangeDate() {
+ return statusChangeDate;
+ }
+
+ public String getRevisedDate() {
+ return revisedDate;
+ }
+
+ public String getAddedInVersion() {
+ return addedInVersion;
+ }
+
+ public String getWikiPageTitle() {
+ return wikiPageTitle;
+ }
+
+ public String getWikiPageUrl() {
+ return wikiPageUrl;
+ }
+
+ public Integer getWikiPageId() {
+ return wikiPageId;
+ }
+
+ public void setParentResourceName(String parentResourceName) {
+ this.parentResourceName = parentResourceName;
+ }
+
+ public static class Builder {
+ ReferenceStandardField referenceStandardField = new ReferenceStandardField();
+
+ public Builder setStandardName(String standardName) {
+ referenceStandardField.standardName = standardName;
+ return this;
+ }
+
+ public Builder setDisplayName(String displayName) {
+ referenceStandardField.displayName = displayName;
+ return this;
+ }
+
+ public Builder setParentResourceName(String parentResourceName) {
+ referenceStandardField.parentResourceName = parentResourceName;
+ return this;
+ }
+
+ public Builder setDefinition(String definition) {
+ referenceStandardField.definition = definition;
+ return this;
+ }
+
+ public Builder setGroups(List groups) {
+ referenceStandardField.groups = groups;
+ return this;
+ }
+
+ public Builder setSimpleDataType(String simpleDataType) {
+ referenceStandardField.simpleDataType = simpleDataType;
+ return this;
+ }
+
+ public Builder setSuggestedMaxLength(Integer suggestedMaxLength) {
+ referenceStandardField.suggestedMaxLength = suggestedMaxLength;
+ return this;
+ }
+
+ public Builder setSynonyms(List synonyms) {
+ referenceStandardField.synonyms = synonyms;
+ return this;
+ }
+
+ public Builder setElementStatus(String elementStatus) {
+ referenceStandardField.elementStatus = elementStatus;
+ return this;
+ }
+
+ public Builder setBedes(String bedes) {
+ referenceStandardField.bedes = bedes;
+ return this;
+ }
+
+ public Builder setCertificationLevel(String certificationLevel) {
+ referenceStandardField.certificationLevel = certificationLevel;
+ return this;
+ }
+
+ public Builder setRecordId(Integer recordId) {
+ referenceStandardField.recordId = recordId;
+ return this;
+ }
+
+ public Builder setLookup(String lookup) {
+ referenceStandardField.lookup = lookup;
+ return this;
+ }
+
+ public Builder setLookupStatus(String lookupStatus) {
+ referenceStandardField.lookupStatus = lookupStatus;
+ return this;
+ }
+
+ public Builder setCollection(String collection) {
+ referenceStandardField.collection = collection;
+ return this;
+ }
+
+ public Builder setSuggestedMaxPrecision(Integer suggestedMaxPrecision) {
+ referenceStandardField.suggestedMaxPrecision = suggestedMaxPrecision;
+ return this;
+ }
+
+ public Builder setRepeatingElement(Boolean repeatingElement) {
+ referenceStandardField.repeatingElement = repeatingElement;
+ return this;
+ }
+
+ public Builder setPropertyTypes(List propertyTypes) {
+ referenceStandardField.propertyTypes = propertyTypes;
+ return this;
+ }
+
+ public Builder setPayloads(List payloads) {
+ referenceStandardField.payloads = payloads;
+ return this;
+ }
+
+ public Builder setSpanishStandardName(String spanishStandardName) {
+ referenceStandardField.spanishStandardName = spanishStandardName;
+ return this;
+ }
+
+ public Builder setStatusChangeDate(String statusChangeDate) {
+ referenceStandardField.statusChangeDate = statusChangeDate;
+ return this;
+ }
+
+ public Builder setRevisedDate(String revisedDate) {
+ referenceStandardField.revisedDate = revisedDate;
+ return this;
+ }
+
+ public Builder setAddedInVersion(String addedInVersion) {
+ referenceStandardField.addedInVersion = addedInVersion;
+ return this;
+ }
+
+ public Builder setWikiPageTitle(String wikiPageTitle) {
+ referenceStandardField.wikiPageTitle = wikiPageTitle;
+ return this;
+ }
+
+ public Builder setWikiPageURL(String wikiPageUrl) {
+ referenceStandardField.wikiPageUrl = wikiPageUrl;
+ return this;
+ }
+
+ public Builder setWikiPageID(Integer wikiPageId) {
+ referenceStandardField.wikiPageId = wikiPageId;
+ return this;
+ }
+
+ public ReferenceStandardField build() {
+ return referenceStandardField;
+ }
+ }
+}
diff --git a/src/main/java/org/reso/models/ReferenceStandardLookup.java b/src/main/java/org/reso/models/ReferenceStandardLookup.java
new file mode 100644
index 00000000..2490a4fb
--- /dev/null
+++ b/src/main/java/org/reso/models/ReferenceStandardLookup.java
@@ -0,0 +1,188 @@
+package org.reso.models;
+
+import java.util.List;
+
+public class ReferenceStandardLookup {
+ private String lookupField;
+ private String lookupValue;
+ private String lookupDisplayName;
+ private String definition;
+ List lookupDisplayNameSynonyms;
+ private String bedes;
+ private List references;
+ private String elementStatus;
+ private Integer lookupId;
+ private Integer lookupFieldId;
+ private String spanishLookupField;
+ private String spanishLookupValue;
+ private String statusChangeDate;
+ private String revisedDate;
+ private String addedInVersion;
+ private String wikiPageTitle;
+ private String wikiPageUrl;
+
+ private ReferenceStandardLookup() {
+ //default constructor is private, use Builder instead
+ }
+
+ public String getLookupField() {
+ return lookupField;
+ }
+
+ public String getLookupValue() {
+ return lookupValue;
+ }
+
+ public String getLookupDisplayName() {
+ return lookupDisplayName;
+ }
+
+ public String getDefinition() {
+ return definition;
+ }
+
+ public List getLookupDisplayNameSynonyms() {
+ return lookupDisplayNameSynonyms;
+ }
+
+ public String getBedes() {
+ return bedes;
+ }
+
+ public List getReferences() {
+ return references;
+ }
+
+ public String getElementStatus() {
+ return elementStatus;
+ }
+
+ public Integer getLookupId() {
+ return lookupId;
+ }
+
+ public Integer getLookupFieldId() {
+ return lookupFieldId;
+ }
+
+ public String getSpanishLookupField() {
+ return spanishLookupField;
+ }
+
+ public String getSpanishLookupValue() {
+ return spanishLookupValue;
+ }
+
+ public String getStatusChangeDate() {
+ return statusChangeDate;
+ }
+
+ public String getRevisedDate() {
+ return revisedDate;
+ }
+
+ public String getAddedInVersion() {
+ return addedInVersion;
+ }
+
+ public String getWikiPageTitle() {
+ return wikiPageTitle;
+ }
+
+ public String getWikiPageUrl() {
+ return wikiPageUrl;
+ }
+
+ public static class Builder {
+ ReferenceStandardLookup referenceStandardLookup = new ReferenceStandardLookup();
+
+ public Builder setLookupField(String lookupField) {
+ referenceStandardLookup.lookupField = lookupField;
+ return this;
+ }
+
+ public Builder setLookupValue(String lookupValue) {
+ referenceStandardLookup.lookupValue = lookupValue;
+ return this;
+ }
+
+ public Builder setLookupDisplayName(String lookupDisplayName) {
+ referenceStandardLookup.lookupDisplayName = lookupDisplayName;
+ return this;
+ }
+
+ public Builder setDefinition(String definition) {
+ referenceStandardLookup.definition = definition;
+ return this;
+ }
+
+ public Builder setLookupDisplayNameSynonyms(List lookupDisplayNameSynonyms) {
+ referenceStandardLookup.lookupDisplayNameSynonyms = lookupDisplayNameSynonyms;
+ return this;
+ }
+
+ public Builder setBedes(String bedes) {
+ referenceStandardLookup.bedes = bedes;
+ return this;
+ }
+
+ public Builder setReferences(List references) {
+ referenceStandardLookup.references = references;
+ return this;
+ }
+
+ public Builder setElementStatus(String elementStatus) {
+ referenceStandardLookup.elementStatus = elementStatus;
+ return this;
+ }
+
+ public Builder setLookupId(Integer lookupId) {
+ referenceStandardLookup.lookupId = lookupId;
+ return this;
+ }
+
+ public Builder setLookupFieldId(Integer lookupFieldId) {
+ referenceStandardLookup.lookupFieldId = lookupFieldId;
+ return this;
+ }
+
+ public Builder setSpanishLookupField(String spanishLookupField) {
+ referenceStandardLookup.spanishLookupField = spanishLookupField;
+ return this;
+ }
+
+ public Builder setSpanishLookupValue(String spanishLookupValue) {
+ referenceStandardLookup.spanishLookupValue = spanishLookupValue;
+ return this;
+ }
+
+ public Builder setStatusChangeDate(String statusChangeDate) {
+ referenceStandardLookup.statusChangeDate = statusChangeDate;
+ return this;
+ }
+
+ public Builder setRevisedDate(String revisedDate) {
+ referenceStandardLookup.revisedDate = revisedDate;
+ return this;
+ }
+
+ public Builder setAddedInVersion(String addedInVersion) {
+ referenceStandardLookup.addedInVersion = addedInVersion;
+ return this;
+ }
+
+ public Builder setWikiPageTitle(String wikiPageTitle) {
+ referenceStandardLookup.wikiPageTitle = wikiPageTitle;
+ return this;
+ }
+
+ public Builder setWikiPageUrl(String wikiPageUrl) {
+ referenceStandardLookup.wikiPageUrl = wikiPageUrl;
+ return this;
+ }
+
+ public ReferenceStandardLookup build() {
+ return referenceStandardLookup;
+ }
+ }
+}
diff --git a/src/main/java/org/reso/models/ReferenceStandardRelationship.java b/src/main/java/org/reso/models/ReferenceStandardRelationship.java
new file mode 100644
index 00000000..ec227c1b
--- /dev/null
+++ b/src/main/java/org/reso/models/ReferenceStandardRelationship.java
@@ -0,0 +1,133 @@
+package org.reso.models;
+
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.apache.poi.ss.usermodel.Row;
+
+import java.util.stream.Stream;
+
+public class ReferenceStandardRelationship {
+ private static final Logger LOG = LogManager.getLogger(ReferenceStandardRelationship.class);
+ private String targetResource;
+ private String targetResourceKey;
+ private String targetStandardName;
+ private Cardinality cardinality;
+ private String sourceResource;
+ private String sourceResourceKey;
+
+ private ReferenceStandardRelationship() { }
+
+ @Override
+ public String toString() {
+ return "ReferenceStandardRelationship{" +
+ "targetResource='" + targetResource + '\'' +
+ ", targetResourceKey='" + targetResourceKey + '\'' +
+ ", targetStandardName='" + targetStandardName + '\'' +
+ ", cardinality=" + cardinality +
+ ", sourceResource='" + sourceResource + '\'' +
+ ", sourceResourceKey='" + sourceResourceKey + '\'' +
+ '}';
+ }
+
+ public static class Builder {
+ public static ReferenceStandardRelationship build(String targetResource, String targetResourceKey, String targetStandardName, Cardinality cardinality, String sourceResource, String sourceResourceKey) {
+
+ assert(targetResource != null && targetStandardName != null && cardinality != null && sourceResource != null && sourceResourceKey != null);
+
+ ReferenceStandardRelationship referenceStandardRelationship = new ReferenceStandardRelationship();
+
+ referenceStandardRelationship.setTargetResource(targetResource);
+ //targetResourceKey is not required, this is just here as a convenience. Pass null if there's no targetResourceKey
+ referenceStandardRelationship.setTargetResourceKey(targetResourceKey);
+ referenceStandardRelationship.setTargetStandardName(targetStandardName);
+ referenceStandardRelationship.setCardinality(cardinality);
+ referenceStandardRelationship.setSourceResource(sourceResource);
+ referenceStandardRelationship.setSourceResourceKey(sourceResourceKey);
+
+ //LOG.info(referenceStandardRelationship);
+ return referenceStandardRelationship;
+ }
+ }
+
+ public String getTargetResource() {
+ return targetResource;
+ }
+
+ public void setTargetResource(String targetResource) {
+ this.targetResource = targetResource;
+ }
+
+ public String getTargetResourceKey() {
+ return targetResourceKey;
+ }
+
+ public void setTargetResourceKey(String targetResourceKey) {
+ //only allow a value or null, and ensure null in the model if blank
+ this.targetResourceKey = targetResourceKey != null && targetResourceKey.length() > 0 ? targetResourceKey : null;
+ }
+
+ public String getTargetStandardName() {
+ return targetStandardName;
+ }
+
+ public void setTargetStandardName(String targetStandardName) {
+ this.targetStandardName = targetStandardName;
+ }
+
+ public Cardinality getCardinality() {
+ return cardinality;
+ }
+
+ public void setCardinality(Cardinality cardinality) {
+ this.cardinality = cardinality;
+ }
+
+ public String getSourceResource() {
+ return sourceResource;
+ }
+
+ public void setSourceResource(String sourceResource) {
+ this.sourceResource = sourceResource;
+ }
+
+ public String getSourceResourceKey() {
+ return sourceResourceKey;
+ }
+
+ public void setSourceResourceKey(String sourceResourceKey) {
+ this.sourceResourceKey = sourceResourceKey;
+ }
+
+ /**
+ * Enumerates possible relationship types
+ * TODO: add similar for allowed resources from an allowed resources string
+ */
+ public enum Cardinality {
+ ONE_TO_ONE("one-to-one"),
+ ONE_TO_MANY("one-to-many"),
+ MANY_TO_ONE("many-to-one"),
+ MANY_TO_MANY("many-to-many");
+
+ private String relationshipType;
+
+ Cardinality(String relationshipType) {
+ this.relationshipType = relationshipType;
+ }
+
+ public static Stream stream() {
+ return Stream.of(Cardinality.values());
+ }
+
+ public String getRelationshipType() {
+ return relationshipType;
+ }
+
+ public void setRelationshipType(String relationshipType) {
+ this.relationshipType = relationshipType;
+ }
+ };
+
+ public static ReferenceStandardRelationship deserializeRow(Row row) {
+ return null;
+ }
+}
diff --git a/src/main/resources/RESODataDictionary-1.7.edmx b/src/main/resources/RESODataDictionary-1.7.edmx
new file mode 100644
index 00000000..aa603a3b
--- /dev/null
+++ b/src/main/resources/RESODataDictionary-1.7.edmx
@@ -0,0 +1,20013 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/main/resources/RESODataDictionary-1.7.json b/src/main/resources/RESODataDictionary-1.7.json
new file mode 100644
index 00000000..e59aa265
--- /dev/null
+++ b/src/main/resources/RESODataDictionary-1.7.json
@@ -0,0 +1 @@
+{"openapi":"3.0.2","info":{"title":"Service for namespace org.reso.metadata","description":"This service is located at [https://localhost/service-root/](https://localhost/service-root/)","version":""},"servers":[{"url":"https://localhost/service-root"}],"tags":[{"name":"Property"},{"name":"Member"},{"name":"Office"},{"name":"Contacts"},{"name":"Media"},{"name":"HistoryTransactional"},{"name":"ContactListings"},{"name":"InternetTracking"},{"name":"SavedSearch"},{"name":"OpenHouse"},{"name":"Prospecting"},{"name":"Queue"},{"name":"Rules"},{"name":"Teams"},{"name":"Showing"},{"name":"TeamMembers"},{"name":"OUID"},{"name":"ContactListingNotes"},{"name":"OtherPhone"},{"name":"PropertyGreenVerification"},{"name":"PropertyPowerProduction"},{"name":"PropertyRooms"},{"name":"PropertyUnitTypes"},{"name":"SocialMedia"}],"paths":{"/Property":{"get":{"summary":"Get entities from Property","tags":["Property"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AboveGradeFinishedArea","AboveGradeFinishedArea desc","AboveGradeFinishedAreaSource","AboveGradeFinishedAreaSource desc","AboveGradeFinishedAreaUnits","AboveGradeFinishedAreaUnits desc","AccessCode","AccessCode desc","AccessibilityFeatures","AccessibilityFeatures desc","AdditionalParcelsDescription","AdditionalParcelsDescription desc","AdditionalParcelsYN","AdditionalParcelsYN desc","AnchorsCoTenants","AnchorsCoTenants desc","Appliances","Appliances desc","ArchitecturalStyle","ArchitecturalStyle desc","AssociationAmenities","AssociationAmenities desc","AssociationFee","AssociationFee desc","AssociationFee2","AssociationFee2 desc","AssociationFee2Frequency","AssociationFee2Frequency desc","AssociationFeeFrequency","AssociationFeeFrequency desc","AssociationFeeIncludes","AssociationFeeIncludes desc","AssociationName","AssociationName desc","AssociationName2","AssociationName2 desc","AssociationPhone","AssociationPhone desc","AssociationPhone2","AssociationPhone2 desc","AssociationYN","AssociationYN desc","AttachedGarageYN","AttachedGarageYN desc","AvailabilityDate","AvailabilityDate desc","Basement","Basement desc","BasementYN","BasementYN desc","BathroomsFull","BathroomsFull desc","BathroomsHalf","BathroomsHalf desc","BathroomsOneQuarter","BathroomsOneQuarter desc","BathroomsPartial","BathroomsPartial desc","BathroomsThreeQuarter","BathroomsThreeQuarter desc","BathroomsTotalInteger","BathroomsTotalInteger desc","BedroomsPossible","BedroomsPossible desc","BedroomsTotal","BedroomsTotal desc","BelowGradeFinishedArea","BelowGradeFinishedArea desc","BelowGradeFinishedAreaSource","BelowGradeFinishedAreaSource desc","BelowGradeFinishedAreaUnits","BelowGradeFinishedAreaUnits desc","BodyType","BodyType desc","BuilderModel","BuilderModel desc","BuilderName","BuilderName desc","BuildingAreaSource","BuildingAreaSource desc","BuildingAreaTotal","BuildingAreaTotal desc","BuildingAreaUnits","BuildingAreaUnits desc","BuildingFeatures","BuildingFeatures desc","BuildingName","BuildingName desc","BusinessName","BusinessName desc","BusinessType","BusinessType desc","BuyerAgencyCompensation","BuyerAgencyCompensation desc","BuyerAgencyCompensationType","BuyerAgencyCompensationType desc","BuyerAgentAOR","BuyerAgentAOR desc","BuyerAgentDesignation","BuyerAgentDesignation desc","BuyerAgentDirectPhone","BuyerAgentDirectPhone desc","BuyerAgentEmail","BuyerAgentEmail desc","BuyerAgentFax","BuyerAgentFax desc","BuyerAgentFirstName","BuyerAgentFirstName desc","BuyerAgentFullName","BuyerAgentFullName desc","BuyerAgentHomePhone","BuyerAgentHomePhone desc","BuyerAgentKey","BuyerAgentKey desc","BuyerAgentKeyNumeric","BuyerAgentKeyNumeric desc","BuyerAgentLastName","BuyerAgentLastName desc","BuyerAgentMiddleName","BuyerAgentMiddleName desc","BuyerAgentMlsId","BuyerAgentMlsId desc","BuyerAgentMobilePhone","BuyerAgentMobilePhone desc","BuyerAgentNamePrefix","BuyerAgentNamePrefix desc","BuyerAgentNameSuffix","BuyerAgentNameSuffix desc","BuyerAgentOfficePhone","BuyerAgentOfficePhone desc","BuyerAgentOfficePhoneExt","BuyerAgentOfficePhoneExt desc","BuyerAgentPager","BuyerAgentPager desc","BuyerAgentPreferredPhone","BuyerAgentPreferredPhone desc","BuyerAgentPreferredPhoneExt","BuyerAgentPreferredPhoneExt desc","BuyerAgentStateLicense","BuyerAgentStateLicense desc","BuyerAgentTollFreePhone","BuyerAgentTollFreePhone desc","BuyerAgentURL","BuyerAgentURL desc","BuyerAgentVoiceMail","BuyerAgentVoiceMail desc","BuyerAgentVoiceMailExt","BuyerAgentVoiceMailExt desc","BuyerFinancing","BuyerFinancing desc","BuyerOfficeAOR","BuyerOfficeAOR desc","BuyerOfficeEmail","BuyerOfficeEmail desc","BuyerOfficeFax","BuyerOfficeFax desc","BuyerOfficeKey","BuyerOfficeKey desc","BuyerOfficeKeyNumeric","BuyerOfficeKeyNumeric desc","BuyerOfficeMlsId","BuyerOfficeMlsId desc","BuyerOfficeName","BuyerOfficeName desc","BuyerOfficePhone","BuyerOfficePhone desc","BuyerOfficePhoneExt","BuyerOfficePhoneExt desc","BuyerOfficeURL","BuyerOfficeURL desc","BuyerTeamKey","BuyerTeamKey desc","BuyerTeamKeyNumeric","BuyerTeamKeyNumeric desc","BuyerTeamName","BuyerTeamName desc","CableTvExpense","CableTvExpense desc","CancellationDate","CancellationDate desc","CapRate","CapRate desc","CarportSpaces","CarportSpaces desc","CarportYN","CarportYN desc","CarrierRoute","CarrierRoute desc","City","City desc","CityRegion","CityRegion desc","CloseDate","CloseDate desc","ClosePrice","ClosePrice desc","CoBuyerAgentAOR","CoBuyerAgentAOR desc","CoBuyerAgentDesignation","CoBuyerAgentDesignation desc","CoBuyerAgentDirectPhone","CoBuyerAgentDirectPhone desc","CoBuyerAgentEmail","CoBuyerAgentEmail desc","CoBuyerAgentFax","CoBuyerAgentFax desc","CoBuyerAgentFirstName","CoBuyerAgentFirstName desc","CoBuyerAgentFullName","CoBuyerAgentFullName desc","CoBuyerAgentHomePhone","CoBuyerAgentHomePhone desc","CoBuyerAgentKey","CoBuyerAgentKey desc","CoBuyerAgentKeyNumeric","CoBuyerAgentKeyNumeric desc","CoBuyerAgentLastName","CoBuyerAgentLastName desc","CoBuyerAgentMiddleName","CoBuyerAgentMiddleName desc","CoBuyerAgentMlsId","CoBuyerAgentMlsId desc","CoBuyerAgentMobilePhone","CoBuyerAgentMobilePhone desc","CoBuyerAgentNamePrefix","CoBuyerAgentNamePrefix desc","CoBuyerAgentNameSuffix","CoBuyerAgentNameSuffix desc","CoBuyerAgentOfficePhone","CoBuyerAgentOfficePhone desc","CoBuyerAgentOfficePhoneExt","CoBuyerAgentOfficePhoneExt desc","CoBuyerAgentPager","CoBuyerAgentPager desc","CoBuyerAgentPreferredPhone","CoBuyerAgentPreferredPhone desc","CoBuyerAgentPreferredPhoneExt","CoBuyerAgentPreferredPhoneExt desc","CoBuyerAgentStateLicense","CoBuyerAgentStateLicense desc","CoBuyerAgentTollFreePhone","CoBuyerAgentTollFreePhone desc","CoBuyerAgentURL","CoBuyerAgentURL desc","CoBuyerAgentVoiceMail","CoBuyerAgentVoiceMail desc","CoBuyerAgentVoiceMailExt","CoBuyerAgentVoiceMailExt desc","CoBuyerOfficeAOR","CoBuyerOfficeAOR desc","CoBuyerOfficeEmail","CoBuyerOfficeEmail desc","CoBuyerOfficeFax","CoBuyerOfficeFax desc","CoBuyerOfficeKey","CoBuyerOfficeKey desc","CoBuyerOfficeKeyNumeric","CoBuyerOfficeKeyNumeric desc","CoBuyerOfficeMlsId","CoBuyerOfficeMlsId desc","CoBuyerOfficeName","CoBuyerOfficeName desc","CoBuyerOfficePhone","CoBuyerOfficePhone desc","CoBuyerOfficePhoneExt","CoBuyerOfficePhoneExt desc","CoBuyerOfficeURL","CoBuyerOfficeURL desc","CoListAgentAOR","CoListAgentAOR desc","CoListAgentDesignation","CoListAgentDesignation desc","CoListAgentDirectPhone","CoListAgentDirectPhone desc","CoListAgentEmail","CoListAgentEmail desc","CoListAgentFax","CoListAgentFax desc","CoListAgentFirstName","CoListAgentFirstName desc","CoListAgentFullName","CoListAgentFullName desc","CoListAgentHomePhone","CoListAgentHomePhone desc","CoListAgentKey","CoListAgentKey desc","CoListAgentKeyNumeric","CoListAgentKeyNumeric desc","CoListAgentLastName","CoListAgentLastName desc","CoListAgentMiddleName","CoListAgentMiddleName desc","CoListAgentMlsId","CoListAgentMlsId desc","CoListAgentMobilePhone","CoListAgentMobilePhone desc","CoListAgentNamePrefix","CoListAgentNamePrefix desc","CoListAgentNameSuffix","CoListAgentNameSuffix desc","CoListAgentOfficePhone","CoListAgentOfficePhone desc","CoListAgentOfficePhoneExt","CoListAgentOfficePhoneExt desc","CoListAgentPager","CoListAgentPager desc","CoListAgentPreferredPhone","CoListAgentPreferredPhone desc","CoListAgentPreferredPhoneExt","CoListAgentPreferredPhoneExt desc","CoListAgentStateLicense","CoListAgentStateLicense desc","CoListAgentTollFreePhone","CoListAgentTollFreePhone desc","CoListAgentURL","CoListAgentURL desc","CoListAgentVoiceMail","CoListAgentVoiceMail desc","CoListAgentVoiceMailExt","CoListAgentVoiceMailExt desc","CoListOfficeAOR","CoListOfficeAOR desc","CoListOfficeEmail","CoListOfficeEmail desc","CoListOfficeFax","CoListOfficeFax desc","CoListOfficeKey","CoListOfficeKey desc","CoListOfficeKeyNumeric","CoListOfficeKeyNumeric desc","CoListOfficeMlsId","CoListOfficeMlsId desc","CoListOfficeName","CoListOfficeName desc","CoListOfficePhone","CoListOfficePhone desc","CoListOfficePhoneExt","CoListOfficePhoneExt desc","CoListOfficeURL","CoListOfficeURL desc","CommonInterest","CommonInterest desc","CommonWalls","CommonWalls desc","CommunityFeatures","CommunityFeatures desc","Concessions","Concessions desc","ConcessionsAmount","ConcessionsAmount desc","ConcessionsComments","ConcessionsComments desc","ConstructionMaterials","ConstructionMaterials desc","ContinentRegion","ContinentRegion desc","Contingency","Contingency desc","ContingentDate","ContingentDate desc","ContractStatusChangeDate","ContractStatusChangeDate desc","Cooling","Cooling desc","CoolingYN","CoolingYN desc","CopyrightNotice","CopyrightNotice desc","Country","Country desc","CountryRegion","CountryRegion desc","CountyOrParish","CountyOrParish desc","CoveredSpaces","CoveredSpaces desc","CropsIncludedYN","CropsIncludedYN desc","CrossStreet","CrossStreet desc","CultivatedArea","CultivatedArea desc","CumulativeDaysOnMarket","CumulativeDaysOnMarket desc","CurrentFinancing","CurrentFinancing desc","CurrentUse","CurrentUse desc","DOH1","DOH1 desc","DOH2","DOH2 desc","DOH3","DOH3 desc","DaysOnMarket","DaysOnMarket desc","DevelopmentStatus","DevelopmentStatus desc","DirectionFaces","DirectionFaces desc","Directions","Directions desc","Disclaimer","Disclaimer desc","Disclosures","Disclosures desc","DistanceToBusComments","DistanceToBusComments desc","DistanceToBusNumeric","DistanceToBusNumeric desc","DistanceToBusUnits","DistanceToBusUnits desc","DistanceToElectricComments","DistanceToElectricComments desc","DistanceToElectricNumeric","DistanceToElectricNumeric desc","DistanceToElectricUnits","DistanceToElectricUnits desc","DistanceToFreewayComments","DistanceToFreewayComments desc","DistanceToFreewayNumeric","DistanceToFreewayNumeric desc","DistanceToFreewayUnits","DistanceToFreewayUnits desc","DistanceToGasComments","DistanceToGasComments desc","DistanceToGasNumeric","DistanceToGasNumeric desc","DistanceToGasUnits","DistanceToGasUnits desc","DistanceToPhoneServiceComments","DistanceToPhoneServiceComments desc","DistanceToPhoneServiceNumeric","DistanceToPhoneServiceNumeric desc","DistanceToPhoneServiceUnits","DistanceToPhoneServiceUnits desc","DistanceToPlaceofWorshipComments","DistanceToPlaceofWorshipComments desc","DistanceToPlaceofWorshipNumeric","DistanceToPlaceofWorshipNumeric desc","DistanceToPlaceofWorshipUnits","DistanceToPlaceofWorshipUnits desc","DistanceToSchoolBusComments","DistanceToSchoolBusComments desc","DistanceToSchoolBusNumeric","DistanceToSchoolBusNumeric desc","DistanceToSchoolBusUnits","DistanceToSchoolBusUnits desc","DistanceToSchoolsComments","DistanceToSchoolsComments desc","DistanceToSchoolsNumeric","DistanceToSchoolsNumeric desc","DistanceToSchoolsUnits","DistanceToSchoolsUnits desc","DistanceToSewerComments","DistanceToSewerComments desc","DistanceToSewerNumeric","DistanceToSewerNumeric desc","DistanceToSewerUnits","DistanceToSewerUnits desc","DistanceToShoppingComments","DistanceToShoppingComments desc","DistanceToShoppingNumeric","DistanceToShoppingNumeric desc","DistanceToShoppingUnits","DistanceToShoppingUnits desc","DistanceToStreetComments","DistanceToStreetComments desc","DistanceToStreetNumeric","DistanceToStreetNumeric desc","DistanceToStreetUnits","DistanceToStreetUnits desc","DistanceToWaterComments","DistanceToWaterComments desc","DistanceToWaterNumeric","DistanceToWaterNumeric desc","DistanceToWaterUnits","DistanceToWaterUnits desc","DocumentsAvailable","DocumentsAvailable desc","DocumentsChangeTimestamp","DocumentsChangeTimestamp desc","DocumentsCount","DocumentsCount desc","DoorFeatures","DoorFeatures desc","DualVariableCompensationYN","DualVariableCompensationYN desc","Electric","Electric desc","ElectricExpense","ElectricExpense desc","ElectricOnPropertyYN","ElectricOnPropertyYN desc","ElementarySchool","ElementarySchool desc","ElementarySchoolDistrict","ElementarySchoolDistrict desc","Elevation","Elevation desc","ElevationUnits","ElevationUnits desc","EntryLevel","EntryLevel desc","EntryLocation","EntryLocation desc","Exclusions","Exclusions desc","ExistingLeaseType","ExistingLeaseType desc","ExpirationDate","ExpirationDate desc","ExteriorFeatures","ExteriorFeatures desc","FarmCreditServiceInclYN","FarmCreditServiceInclYN desc","FarmLandAreaSource","FarmLandAreaSource desc","FarmLandAreaUnits","FarmLandAreaUnits desc","Fencing","Fencing desc","FinancialDataSource","FinancialDataSource desc","FireplaceFeatures","FireplaceFeatures desc","FireplaceYN","FireplaceYN desc","FireplacesTotal","FireplacesTotal desc","Flooring","Flooring desc","FoundationArea","FoundationArea desc","FoundationDetails","FoundationDetails desc","FrontageLength","FrontageLength desc","FrontageType","FrontageType desc","FuelExpense","FuelExpense desc","Furnished","Furnished desc","FurnitureReplacementExpense","FurnitureReplacementExpense desc","GarageSpaces","GarageSpaces desc","GarageYN","GarageYN desc","GardenerExpense","GardenerExpense desc","GrazingPermitsBlmYN","GrazingPermitsBlmYN desc","GrazingPermitsForestServiceYN","GrazingPermitsForestServiceYN desc","GrazingPermitsPrivateYN","GrazingPermitsPrivateYN desc","GreenBuildingVerificationType","GreenBuildingVerificationType desc","GreenEnergyEfficient","GreenEnergyEfficient desc","GreenEnergyGeneration","GreenEnergyGeneration desc","GreenIndoorAirQuality","GreenIndoorAirQuality desc","GreenLocation","GreenLocation desc","GreenSustainability","GreenSustainability desc","GreenWaterConservation","GreenWaterConservation desc","GrossIncome","GrossIncome desc","GrossScheduledIncome","GrossScheduledIncome desc","HabitableResidenceYN","HabitableResidenceYN desc","Heating","Heating desc","HeatingYN","HeatingYN desc","HighSchool","HighSchool desc","HighSchoolDistrict","HighSchoolDistrict desc","HomeWarrantyYN","HomeWarrantyYN desc","HorseAmenities","HorseAmenities desc","HorseYN","HorseYN desc","HoursDaysOfOperation","HoursDaysOfOperation desc","HoursDaysOfOperationDescription","HoursDaysOfOperationDescription desc","Inclusions","Inclusions desc","IncomeIncludes","IncomeIncludes desc","InsuranceExpense","InsuranceExpense desc","InteriorFeatures","InteriorFeatures desc","InternetAddressDisplayYN","InternetAddressDisplayYN desc","InternetAutomatedValuationDisplayYN","InternetAutomatedValuationDisplayYN desc","InternetConsumerCommentYN","InternetConsumerCommentYN desc","InternetEntireListingDisplayYN","InternetEntireListingDisplayYN desc","IrrigationSource","IrrigationSource desc","IrrigationWaterRightsAcres","IrrigationWaterRightsAcres desc","IrrigationWaterRightsYN","IrrigationWaterRightsYN desc","LaborInformation","LaborInformation desc","LandLeaseAmount","LandLeaseAmount desc","LandLeaseAmountFrequency","LandLeaseAmountFrequency desc","LandLeaseExpirationDate","LandLeaseExpirationDate desc","LandLeaseYN","LandLeaseYN desc","Latitude","Latitude desc","LaundryFeatures","LaundryFeatures desc","LeasableArea","LeasableArea desc","LeasableAreaUnits","LeasableAreaUnits desc","LeaseAmount","LeaseAmount desc","LeaseAmountFrequency","LeaseAmountFrequency desc","LeaseAssignableYN","LeaseAssignableYN desc","LeaseConsideredYN","LeaseConsideredYN desc","LeaseExpiration","LeaseExpiration desc","LeaseRenewalCompensation","LeaseRenewalCompensation desc","LeaseRenewalOptionYN","LeaseRenewalOptionYN desc","LeaseTerm","LeaseTerm desc","Levels","Levels desc","License1","License1 desc","License2","License2 desc","License3","License3 desc","LicensesExpense","LicensesExpense desc","ListAOR","ListAOR desc","ListAgentAOR","ListAgentAOR desc","ListAgentDesignation","ListAgentDesignation desc","ListAgentDirectPhone","ListAgentDirectPhone desc","ListAgentEmail","ListAgentEmail desc","ListAgentFax","ListAgentFax desc","ListAgentFirstName","ListAgentFirstName desc","ListAgentFullName","ListAgentFullName desc","ListAgentHomePhone","ListAgentHomePhone desc","ListAgentKey","ListAgentKey desc","ListAgentKeyNumeric","ListAgentKeyNumeric desc","ListAgentLastName","ListAgentLastName desc","ListAgentMiddleName","ListAgentMiddleName desc","ListAgentMlsId","ListAgentMlsId desc","ListAgentMobilePhone","ListAgentMobilePhone desc","ListAgentNamePrefix","ListAgentNamePrefix desc","ListAgentNameSuffix","ListAgentNameSuffix desc","ListAgentOfficePhone","ListAgentOfficePhone desc","ListAgentOfficePhoneExt","ListAgentOfficePhoneExt desc","ListAgentPager","ListAgentPager desc","ListAgentPreferredPhone","ListAgentPreferredPhone desc","ListAgentPreferredPhoneExt","ListAgentPreferredPhoneExt desc","ListAgentStateLicense","ListAgentStateLicense desc","ListAgentTollFreePhone","ListAgentTollFreePhone desc","ListAgentURL","ListAgentURL desc","ListAgentVoiceMail","ListAgentVoiceMail desc","ListAgentVoiceMailExt","ListAgentVoiceMailExt desc","ListOfficeAOR","ListOfficeAOR desc","ListOfficeEmail","ListOfficeEmail desc","ListOfficeFax","ListOfficeFax desc","ListOfficeKey","ListOfficeKey desc","ListOfficeKeyNumeric","ListOfficeKeyNumeric desc","ListOfficeMlsId","ListOfficeMlsId desc","ListOfficeName","ListOfficeName desc","ListOfficePhone","ListOfficePhone desc","ListOfficePhoneExt","ListOfficePhoneExt desc","ListOfficeURL","ListOfficeURL desc","ListPrice","ListPrice desc","ListPriceLow","ListPriceLow desc","ListTeamKey","ListTeamKey desc","ListTeamKeyNumeric","ListTeamKeyNumeric desc","ListTeamName","ListTeamName desc","ListingAgreement","ListingAgreement desc","ListingContractDate","ListingContractDate desc","ListingId","ListingId desc","ListingKey","ListingKey desc","ListingKeyNumeric","ListingKeyNumeric desc","ListingService","ListingService desc","ListingTerms","ListingTerms desc","LivingArea","LivingArea desc","LivingAreaSource","LivingAreaSource desc","LivingAreaUnits","LivingAreaUnits desc","LockBoxLocation","LockBoxLocation desc","LockBoxSerialNumber","LockBoxSerialNumber desc","LockBoxType","LockBoxType desc","Longitude","Longitude desc","LotDimensionsSource","LotDimensionsSource desc","LotFeatures","LotFeatures desc","LotSizeAcres","LotSizeAcres desc","LotSizeArea","LotSizeArea desc","LotSizeDimensions","LotSizeDimensions desc","LotSizeSource","LotSizeSource desc","LotSizeSquareFeet","LotSizeSquareFeet desc","LotSizeUnits","LotSizeUnits desc","MLSAreaMajor","MLSAreaMajor desc","MLSAreaMinor","MLSAreaMinor desc","MainLevelBathrooms","MainLevelBathrooms desc","MainLevelBedrooms","MainLevelBedrooms desc","MaintenanceExpense","MaintenanceExpense desc","MajorChangeTimestamp","MajorChangeTimestamp desc","MajorChangeType","MajorChangeType desc","Make","Make desc","ManagerExpense","ManagerExpense desc","MapCoordinate","MapCoordinate desc","MapCoordinateSource","MapCoordinateSource desc","MapURL","MapURL desc","MiddleOrJuniorSchool","MiddleOrJuniorSchool desc","MiddleOrJuniorSchoolDistrict","MiddleOrJuniorSchoolDistrict desc","MlsStatus","MlsStatus desc","MobileDimUnits","MobileDimUnits desc","MobileHomeRemainsYN","MobileHomeRemainsYN desc","MobileLength","MobileLength desc","MobileWidth","MobileWidth desc","Model","Model desc","ModificationTimestamp","ModificationTimestamp desc","NetOperatingIncome","NetOperatingIncome desc","NewConstructionYN","NewConstructionYN desc","NewTaxesExpense","NewTaxesExpense desc","NumberOfBuildings","NumberOfBuildings desc","NumberOfFullTimeEmployees","NumberOfFullTimeEmployees desc","NumberOfLots","NumberOfLots desc","NumberOfPads","NumberOfPads desc","NumberOfPartTimeEmployees","NumberOfPartTimeEmployees desc","NumberOfSeparateElectricMeters","NumberOfSeparateElectricMeters desc","NumberOfSeparateGasMeters","NumberOfSeparateGasMeters desc","NumberOfSeparateWaterMeters","NumberOfSeparateWaterMeters desc","NumberOfUnitsInCommunity","NumberOfUnitsInCommunity desc","NumberOfUnitsLeased","NumberOfUnitsLeased desc","NumberOfUnitsMoMo","NumberOfUnitsMoMo desc","NumberOfUnitsTotal","NumberOfUnitsTotal desc","NumberOfUnitsVacant","NumberOfUnitsVacant desc","OccupantName","OccupantName desc","OccupantPhone","OccupantPhone desc","OccupantType","OccupantType desc","OffMarketDate","OffMarketDate desc","OffMarketTimestamp","OffMarketTimestamp desc","OnMarketDate","OnMarketDate desc","OnMarketTimestamp","OnMarketTimestamp desc","OpenParkingSpaces","OpenParkingSpaces desc","OpenParkingYN","OpenParkingYN desc","OperatingExpense","OperatingExpense desc","OperatingExpenseIncludes","OperatingExpenseIncludes desc","OriginalEntryTimestamp","OriginalEntryTimestamp desc","OriginalListPrice","OriginalListPrice desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemKey","OriginatingSystemKey desc","OriginatingSystemName","OriginatingSystemName desc","OtherEquipment","OtherEquipment desc","OtherExpense","OtherExpense desc","OtherParking","OtherParking desc","OtherStructures","OtherStructures desc","OwnerName","OwnerName desc","OwnerPays","OwnerPays desc","OwnerPhone","OwnerPhone desc","Ownership","Ownership desc","OwnershipType","OwnershipType desc","ParcelNumber","ParcelNumber desc","ParkManagerName","ParkManagerName desc","ParkManagerPhone","ParkManagerPhone desc","ParkName","ParkName desc","ParkingFeatures","ParkingFeatures desc","ParkingTotal","ParkingTotal desc","PastureArea","PastureArea desc","PatioAndPorchFeatures","PatioAndPorchFeatures desc","PendingTimestamp","PendingTimestamp desc","PestControlExpense","PestControlExpense desc","PetsAllowed","PetsAllowed desc","PhotosChangeTimestamp","PhotosChangeTimestamp desc","PhotosCount","PhotosCount desc","PoolExpense","PoolExpense desc","PoolFeatures","PoolFeatures desc","PoolPrivateYN","PoolPrivateYN desc","Possession","Possession desc","PossibleUse","PossibleUse desc","PostalCity","PostalCity desc","PostalCode","PostalCode desc","PostalCodePlus4","PostalCodePlus4 desc","PowerProductionType","PowerProductionType desc","PreviousListPrice","PreviousListPrice desc","PriceChangeTimestamp","PriceChangeTimestamp desc","PrivateOfficeRemarks","PrivateOfficeRemarks desc","PrivateRemarks","PrivateRemarks desc","ProfessionalManagementExpense","ProfessionalManagementExpense desc","PropertyAttachedYN","PropertyAttachedYN desc","PropertyCondition","PropertyCondition desc","PropertySubType","PropertySubType desc","PropertyType","PropertyType desc","PublicRemarks","PublicRemarks desc","PublicSurveyRange","PublicSurveyRange desc","PublicSurveySection","PublicSurveySection desc","PublicSurveyTownship","PublicSurveyTownship desc","PurchaseContractDate","PurchaseContractDate desc","RVParkingDimensions","RVParkingDimensions desc","RangeArea","RangeArea desc","RentControlYN","RentControlYN desc","RentIncludes","RentIncludes desc","RoadFrontageType","RoadFrontageType desc","RoadResponsibility","RoadResponsibility desc","RoadSurfaceType","RoadSurfaceType desc","Roof","Roof desc","RoomType","RoomType desc","RoomsTotal","RoomsTotal desc","SeatingCapacity","SeatingCapacity desc","SecurityFeatures","SecurityFeatures desc","SeniorCommunityYN","SeniorCommunityYN desc","SerialU","SerialU desc","SerialX","SerialX desc","SerialXX","SerialXX desc","Sewer","Sewer desc","ShowingAdvanceNotice","ShowingAdvanceNotice desc","ShowingAttendedYN","ShowingAttendedYN desc","ShowingContactName","ShowingContactName desc","ShowingContactPhone","ShowingContactPhone desc","ShowingContactPhoneExt","ShowingContactPhoneExt desc","ShowingContactType","ShowingContactType desc","ShowingDays","ShowingDays desc","ShowingEndTime","ShowingEndTime desc","ShowingInstructions","ShowingInstructions desc","ShowingRequirements","ShowingRequirements desc","ShowingStartTime","ShowingStartTime desc","SignOnPropertyYN","SignOnPropertyYN desc","Skirt","Skirt desc","SourceSystemID","SourceSystemID desc","SourceSystemKey","SourceSystemKey desc","SourceSystemName","SourceSystemName desc","SpaFeatures","SpaFeatures desc","SpaYN","SpaYN desc","SpecialLicenses","SpecialLicenses desc","SpecialListingConditions","SpecialListingConditions desc","StandardStatus","StandardStatus desc","StateOrProvince","StateOrProvince desc","StateRegion","StateRegion desc","StatusChangeTimestamp","StatusChangeTimestamp desc","Stories","Stories desc","StoriesTotal","StoriesTotal desc","StreetAdditionalInfo","StreetAdditionalInfo desc","StreetDirPrefix","StreetDirPrefix desc","StreetDirSuffix","StreetDirSuffix desc","StreetName","StreetName desc","StreetNumber","StreetNumber desc","StreetNumberNumeric","StreetNumberNumeric desc","StreetSuffix","StreetSuffix desc","StreetSuffixModifier","StreetSuffixModifier desc","StructureType","StructureType desc","SubAgencyCompensation","SubAgencyCompensation desc","SubAgencyCompensationType","SubAgencyCompensationType desc","SubdivisionName","SubdivisionName desc","SuppliesExpense","SuppliesExpense desc","SyndicateTo","SyndicateTo desc","SyndicationRemarks","SyndicationRemarks desc","TaxAnnualAmount","TaxAnnualAmount desc","TaxAssessedValue","TaxAssessedValue desc","TaxBlock","TaxBlock desc","TaxBookNumber","TaxBookNumber desc","TaxLegalDescription","TaxLegalDescription desc","TaxLot","TaxLot desc","TaxMapNumber","TaxMapNumber desc","TaxOtherAnnualAssessmentAmount","TaxOtherAnnualAssessmentAmount desc","TaxParcelLetter","TaxParcelLetter desc","TaxStatusCurrent","TaxStatusCurrent desc","TaxTract","TaxTract desc","TaxYear","TaxYear desc","TenantPays","TenantPays desc","Topography","Topography desc","TotalActualRent","TotalActualRent desc","Township","Township desc","TransactionBrokerCompensation","TransactionBrokerCompensation desc","TransactionBrokerCompensationType","TransactionBrokerCompensationType desc","TrashExpense","TrashExpense desc","UnitNumber","UnitNumber desc","UnitTypeType","UnitTypeType desc","UnitsFurnished","UnitsFurnished desc","UniversalPropertyId","UniversalPropertyId desc","UniversalPropertySubId","UniversalPropertySubId desc","UnparsedAddress","UnparsedAddress desc","Utilities","Utilities desc","VacancyAllowance","VacancyAllowance desc","VacancyAllowanceRate","VacancyAllowanceRate desc","Vegetation","Vegetation desc","VideosChangeTimestamp","VideosChangeTimestamp desc","VideosCount","VideosCount desc","View","View desc","ViewYN","ViewYN desc","VirtualTourURLBranded","VirtualTourURLBranded desc","VirtualTourURLUnbranded","VirtualTourURLUnbranded desc","WalkScore","WalkScore desc","WaterBodyName","WaterBodyName desc","WaterSewerExpense","WaterSewerExpense desc","WaterSource","WaterSource desc","WaterfrontFeatures","WaterfrontFeatures desc","WaterfrontYN","WaterfrontYN desc","WindowFeatures","WindowFeatures desc","WithdrawnDate","WithdrawnDate desc","WoodedArea","WoodedArea desc","WorkmansCompensationExpense","WorkmansCompensationExpense desc","YearBuilt","YearBuilt desc","YearBuiltDetails","YearBuiltDetails desc","YearBuiltEffective","YearBuiltEffective desc","YearBuiltSource","YearBuiltSource desc","YearEstablished","YearEstablished desc","YearsCurrentOwner","YearsCurrentOwner desc","Zoning","Zoning desc","ZoningDescription","ZoningDescription desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AboveGradeFinishedArea","AboveGradeFinishedAreaSource","AboveGradeFinishedAreaUnits","AccessCode","AccessibilityFeatures","AdditionalParcelsDescription","AdditionalParcelsYN","AnchorsCoTenants","Appliances","ArchitecturalStyle","AssociationAmenities","AssociationFee","AssociationFee2","AssociationFee2Frequency","AssociationFeeFrequency","AssociationFeeIncludes","AssociationName","AssociationName2","AssociationPhone","AssociationPhone2","AssociationYN","AttachedGarageYN","AvailabilityDate","Basement","BasementYN","BathroomsFull","BathroomsHalf","BathroomsOneQuarter","BathroomsPartial","BathroomsThreeQuarter","BathroomsTotalInteger","BedroomsPossible","BedroomsTotal","BelowGradeFinishedArea","BelowGradeFinishedAreaSource","BelowGradeFinishedAreaUnits","BodyType","BuilderModel","BuilderName","BuildingAreaSource","BuildingAreaTotal","BuildingAreaUnits","BuildingFeatures","BuildingName","BusinessName","BusinessType","BuyerAgencyCompensation","BuyerAgencyCompensationType","BuyerAgentAOR","BuyerAgentDesignation","BuyerAgentDirectPhone","BuyerAgentEmail","BuyerAgentFax","BuyerAgentFirstName","BuyerAgentFullName","BuyerAgentHomePhone","BuyerAgentKey","BuyerAgentKeyNumeric","BuyerAgentLastName","BuyerAgentMiddleName","BuyerAgentMlsId","BuyerAgentMobilePhone","BuyerAgentNamePrefix","BuyerAgentNameSuffix","BuyerAgentOfficePhone","BuyerAgentOfficePhoneExt","BuyerAgentPager","BuyerAgentPreferredPhone","BuyerAgentPreferredPhoneExt","BuyerAgentStateLicense","BuyerAgentTollFreePhone","BuyerAgentURL","BuyerAgentVoiceMail","BuyerAgentVoiceMailExt","BuyerFinancing","BuyerOfficeAOR","BuyerOfficeEmail","BuyerOfficeFax","BuyerOfficeKey","BuyerOfficeKeyNumeric","BuyerOfficeMlsId","BuyerOfficeName","BuyerOfficePhone","BuyerOfficePhoneExt","BuyerOfficeURL","BuyerTeamKey","BuyerTeamKeyNumeric","BuyerTeamName","CableTvExpense","CancellationDate","CapRate","CarportSpaces","CarportYN","CarrierRoute","City","CityRegion","CloseDate","ClosePrice","CoBuyerAgentAOR","CoBuyerAgentDesignation","CoBuyerAgentDirectPhone","CoBuyerAgentEmail","CoBuyerAgentFax","CoBuyerAgentFirstName","CoBuyerAgentFullName","CoBuyerAgentHomePhone","CoBuyerAgentKey","CoBuyerAgentKeyNumeric","CoBuyerAgentLastName","CoBuyerAgentMiddleName","CoBuyerAgentMlsId","CoBuyerAgentMobilePhone","CoBuyerAgentNamePrefix","CoBuyerAgentNameSuffix","CoBuyerAgentOfficePhone","CoBuyerAgentOfficePhoneExt","CoBuyerAgentPager","CoBuyerAgentPreferredPhone","CoBuyerAgentPreferredPhoneExt","CoBuyerAgentStateLicense","CoBuyerAgentTollFreePhone","CoBuyerAgentURL","CoBuyerAgentVoiceMail","CoBuyerAgentVoiceMailExt","CoBuyerOfficeAOR","CoBuyerOfficeEmail","CoBuyerOfficeFax","CoBuyerOfficeKey","CoBuyerOfficeKeyNumeric","CoBuyerOfficeMlsId","CoBuyerOfficeName","CoBuyerOfficePhone","CoBuyerOfficePhoneExt","CoBuyerOfficeURL","CoListAgentAOR","CoListAgentDesignation","CoListAgentDirectPhone","CoListAgentEmail","CoListAgentFax","CoListAgentFirstName","CoListAgentFullName","CoListAgentHomePhone","CoListAgentKey","CoListAgentKeyNumeric","CoListAgentLastName","CoListAgentMiddleName","CoListAgentMlsId","CoListAgentMobilePhone","CoListAgentNamePrefix","CoListAgentNameSuffix","CoListAgentOfficePhone","CoListAgentOfficePhoneExt","CoListAgentPager","CoListAgentPreferredPhone","CoListAgentPreferredPhoneExt","CoListAgentStateLicense","CoListAgentTollFreePhone","CoListAgentURL","CoListAgentVoiceMail","CoListAgentVoiceMailExt","CoListOfficeAOR","CoListOfficeEmail","CoListOfficeFax","CoListOfficeKey","CoListOfficeKeyNumeric","CoListOfficeMlsId","CoListOfficeName","CoListOfficePhone","CoListOfficePhoneExt","CoListOfficeURL","CommonInterest","CommonWalls","CommunityFeatures","Concessions","ConcessionsAmount","ConcessionsComments","ConstructionMaterials","ContinentRegion","Contingency","ContingentDate","ContractStatusChangeDate","Cooling","CoolingYN","CopyrightNotice","Country","CountryRegion","CountyOrParish","CoveredSpaces","CropsIncludedYN","CrossStreet","CultivatedArea","CumulativeDaysOnMarket","CurrentFinancing","CurrentUse","DOH1","DOH2","DOH3","DaysOnMarket","DevelopmentStatus","DirectionFaces","Directions","Disclaimer","Disclosures","DistanceToBusComments","DistanceToBusNumeric","DistanceToBusUnits","DistanceToElectricComments","DistanceToElectricNumeric","DistanceToElectricUnits","DistanceToFreewayComments","DistanceToFreewayNumeric","DistanceToFreewayUnits","DistanceToGasComments","DistanceToGasNumeric","DistanceToGasUnits","DistanceToPhoneServiceComments","DistanceToPhoneServiceNumeric","DistanceToPhoneServiceUnits","DistanceToPlaceofWorshipComments","DistanceToPlaceofWorshipNumeric","DistanceToPlaceofWorshipUnits","DistanceToSchoolBusComments","DistanceToSchoolBusNumeric","DistanceToSchoolBusUnits","DistanceToSchoolsComments","DistanceToSchoolsNumeric","DistanceToSchoolsUnits","DistanceToSewerComments","DistanceToSewerNumeric","DistanceToSewerUnits","DistanceToShoppingComments","DistanceToShoppingNumeric","DistanceToShoppingUnits","DistanceToStreetComments","DistanceToStreetNumeric","DistanceToStreetUnits","DistanceToWaterComments","DistanceToWaterNumeric","DistanceToWaterUnits","DocumentsAvailable","DocumentsChangeTimestamp","DocumentsCount","DoorFeatures","DualVariableCompensationYN","Electric","ElectricExpense","ElectricOnPropertyYN","ElementarySchool","ElementarySchoolDistrict","Elevation","ElevationUnits","EntryLevel","EntryLocation","Exclusions","ExistingLeaseType","ExpirationDate","ExteriorFeatures","FarmCreditServiceInclYN","FarmLandAreaSource","FarmLandAreaUnits","Fencing","FinancialDataSource","FireplaceFeatures","FireplaceYN","FireplacesTotal","Flooring","FoundationArea","FoundationDetails","FrontageLength","FrontageType","FuelExpense","Furnished","FurnitureReplacementExpense","GarageSpaces","GarageYN","GardenerExpense","GrazingPermitsBlmYN","GrazingPermitsForestServiceYN","GrazingPermitsPrivateYN","GreenBuildingVerificationType","GreenEnergyEfficient","GreenEnergyGeneration","GreenIndoorAirQuality","GreenLocation","GreenSustainability","GreenWaterConservation","GrossIncome","GrossScheduledIncome","HabitableResidenceYN","Heating","HeatingYN","HighSchool","HighSchoolDistrict","HomeWarrantyYN","HorseAmenities","HorseYN","HoursDaysOfOperation","HoursDaysOfOperationDescription","Inclusions","IncomeIncludes","InsuranceExpense","InteriorFeatures","InternetAddressDisplayYN","InternetAutomatedValuationDisplayYN","InternetConsumerCommentYN","InternetEntireListingDisplayYN","IrrigationSource","IrrigationWaterRightsAcres","IrrigationWaterRightsYN","LaborInformation","LandLeaseAmount","LandLeaseAmountFrequency","LandLeaseExpirationDate","LandLeaseYN","Latitude","LaundryFeatures","LeasableArea","LeasableAreaUnits","LeaseAmount","LeaseAmountFrequency","LeaseAssignableYN","LeaseConsideredYN","LeaseExpiration","LeaseRenewalCompensation","LeaseRenewalOptionYN","LeaseTerm","Levels","License1","License2","License3","LicensesExpense","ListAOR","ListAgentAOR","ListAgentDesignation","ListAgentDirectPhone","ListAgentEmail","ListAgentFax","ListAgentFirstName","ListAgentFullName","ListAgentHomePhone","ListAgentKey","ListAgentKeyNumeric","ListAgentLastName","ListAgentMiddleName","ListAgentMlsId","ListAgentMobilePhone","ListAgentNamePrefix","ListAgentNameSuffix","ListAgentOfficePhone","ListAgentOfficePhoneExt","ListAgentPager","ListAgentPreferredPhone","ListAgentPreferredPhoneExt","ListAgentStateLicense","ListAgentTollFreePhone","ListAgentURL","ListAgentVoiceMail","ListAgentVoiceMailExt","ListOfficeAOR","ListOfficeEmail","ListOfficeFax","ListOfficeKey","ListOfficeKeyNumeric","ListOfficeMlsId","ListOfficeName","ListOfficePhone","ListOfficePhoneExt","ListOfficeURL","ListPrice","ListPriceLow","ListTeamKey","ListTeamKeyNumeric","ListTeamName","ListingAgreement","ListingContractDate","ListingId","ListingKey","ListingKeyNumeric","ListingService","ListingTerms","LivingArea","LivingAreaSource","LivingAreaUnits","LockBoxLocation","LockBoxSerialNumber","LockBoxType","Longitude","LotDimensionsSource","LotFeatures","LotSizeAcres","LotSizeArea","LotSizeDimensions","LotSizeSource","LotSizeSquareFeet","LotSizeUnits","MLSAreaMajor","MLSAreaMinor","MainLevelBathrooms","MainLevelBedrooms","MaintenanceExpense","MajorChangeTimestamp","MajorChangeType","Make","ManagerExpense","MapCoordinate","MapCoordinateSource","MapURL","MiddleOrJuniorSchool","MiddleOrJuniorSchoolDistrict","MlsStatus","MobileDimUnits","MobileHomeRemainsYN","MobileLength","MobileWidth","Model","ModificationTimestamp","NetOperatingIncome","NewConstructionYN","NewTaxesExpense","NumberOfBuildings","NumberOfFullTimeEmployees","NumberOfLots","NumberOfPads","NumberOfPartTimeEmployees","NumberOfSeparateElectricMeters","NumberOfSeparateGasMeters","NumberOfSeparateWaterMeters","NumberOfUnitsInCommunity","NumberOfUnitsLeased","NumberOfUnitsMoMo","NumberOfUnitsTotal","NumberOfUnitsVacant","OccupantName","OccupantPhone","OccupantType","OffMarketDate","OffMarketTimestamp","OnMarketDate","OnMarketTimestamp","OpenParkingSpaces","OpenParkingYN","OperatingExpense","OperatingExpenseIncludes","OriginalEntryTimestamp","OriginalListPrice","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","OtherEquipment","OtherExpense","OtherParking","OtherStructures","OwnerName","OwnerPays","OwnerPhone","Ownership","OwnershipType","ParcelNumber","ParkManagerName","ParkManagerPhone","ParkName","ParkingFeatures","ParkingTotal","PastureArea","PatioAndPorchFeatures","PendingTimestamp","PestControlExpense","PetsAllowed","PhotosChangeTimestamp","PhotosCount","PoolExpense","PoolFeatures","PoolPrivateYN","Possession","PossibleUse","PostalCity","PostalCode","PostalCodePlus4","PowerProductionType","PreviousListPrice","PriceChangeTimestamp","PrivateOfficeRemarks","PrivateRemarks","ProfessionalManagementExpense","PropertyAttachedYN","PropertyCondition","PropertySubType","PropertyType","PublicRemarks","PublicSurveyRange","PublicSurveySection","PublicSurveyTownship","PurchaseContractDate","RVParkingDimensions","RangeArea","RentControlYN","RentIncludes","RoadFrontageType","RoadResponsibility","RoadSurfaceType","Roof","RoomType","RoomsTotal","SeatingCapacity","SecurityFeatures","SeniorCommunityYN","SerialU","SerialX","SerialXX","Sewer","ShowingAdvanceNotice","ShowingAttendedYN","ShowingContactName","ShowingContactPhone","ShowingContactPhoneExt","ShowingContactType","ShowingDays","ShowingEndTime","ShowingInstructions","ShowingRequirements","ShowingStartTime","SignOnPropertyYN","Skirt","SourceSystemID","SourceSystemKey","SourceSystemName","SpaFeatures","SpaYN","SpecialLicenses","SpecialListingConditions","StandardStatus","StateOrProvince","StateRegion","StatusChangeTimestamp","Stories","StoriesTotal","StreetAdditionalInfo","StreetDirPrefix","StreetDirSuffix","StreetName","StreetNumber","StreetNumberNumeric","StreetSuffix","StreetSuffixModifier","StructureType","SubAgencyCompensation","SubAgencyCompensationType","SubdivisionName","SuppliesExpense","SyndicateTo","SyndicationRemarks","TaxAnnualAmount","TaxAssessedValue","TaxBlock","TaxBookNumber","TaxLegalDescription","TaxLot","TaxMapNumber","TaxOtherAnnualAssessmentAmount","TaxParcelLetter","TaxStatusCurrent","TaxTract","TaxYear","TenantPays","Topography","TotalActualRent","Township","TransactionBrokerCompensation","TransactionBrokerCompensationType","TrashExpense","UnitNumber","UnitTypeType","UnitsFurnished","UniversalPropertyId","UniversalPropertySubId","UnparsedAddress","Utilities","VacancyAllowance","VacancyAllowanceRate","Vegetation","VideosChangeTimestamp","VideosCount","View","ViewYN","VirtualTourURLBranded","VirtualTourURLUnbranded","WalkScore","WaterBodyName","WaterSewerExpense","WaterSource","WaterfrontFeatures","WaterfrontYN","WindowFeatures","WithdrawnDate","WoodedArea","WorkmansCompensationExpense","YearBuilt","YearBuiltDetails","YearBuiltEffective","YearBuiltSource","YearEstablished","YearsCurrentOwner","Zoning","ZoningDescription"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","BuyerAgent","BuyerOffice","CoBuyerAgent","CoBuyerOffice","CoListAgent","CoListOffice","ListAgent","ListOffice","BuyerTeam","ListTeam","SourceSystem","HistoryTransactional","Media","SocialMedia","OpenHouse"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Property","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Property"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to Property","tags":["Property"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Property-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Property"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from Property by key","tags":["Property"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AboveGradeFinishedArea","AboveGradeFinishedAreaSource","AboveGradeFinishedAreaUnits","AccessCode","AccessibilityFeatures","AdditionalParcelsDescription","AdditionalParcelsYN","AnchorsCoTenants","Appliances","ArchitecturalStyle","AssociationAmenities","AssociationFee","AssociationFee2","AssociationFee2Frequency","AssociationFeeFrequency","AssociationFeeIncludes","AssociationName","AssociationName2","AssociationPhone","AssociationPhone2","AssociationYN","AttachedGarageYN","AvailabilityDate","Basement","BasementYN","BathroomsFull","BathroomsHalf","BathroomsOneQuarter","BathroomsPartial","BathroomsThreeQuarter","BathroomsTotalInteger","BedroomsPossible","BedroomsTotal","BelowGradeFinishedArea","BelowGradeFinishedAreaSource","BelowGradeFinishedAreaUnits","BodyType","BuilderModel","BuilderName","BuildingAreaSource","BuildingAreaTotal","BuildingAreaUnits","BuildingFeatures","BuildingName","BusinessName","BusinessType","BuyerAgencyCompensation","BuyerAgencyCompensationType","BuyerAgentAOR","BuyerAgentDesignation","BuyerAgentDirectPhone","BuyerAgentEmail","BuyerAgentFax","BuyerAgentFirstName","BuyerAgentFullName","BuyerAgentHomePhone","BuyerAgentKey","BuyerAgentKeyNumeric","BuyerAgentLastName","BuyerAgentMiddleName","BuyerAgentMlsId","BuyerAgentMobilePhone","BuyerAgentNamePrefix","BuyerAgentNameSuffix","BuyerAgentOfficePhone","BuyerAgentOfficePhoneExt","BuyerAgentPager","BuyerAgentPreferredPhone","BuyerAgentPreferredPhoneExt","BuyerAgentStateLicense","BuyerAgentTollFreePhone","BuyerAgentURL","BuyerAgentVoiceMail","BuyerAgentVoiceMailExt","BuyerFinancing","BuyerOfficeAOR","BuyerOfficeEmail","BuyerOfficeFax","BuyerOfficeKey","BuyerOfficeKeyNumeric","BuyerOfficeMlsId","BuyerOfficeName","BuyerOfficePhone","BuyerOfficePhoneExt","BuyerOfficeURL","BuyerTeamKey","BuyerTeamKeyNumeric","BuyerTeamName","CableTvExpense","CancellationDate","CapRate","CarportSpaces","CarportYN","CarrierRoute","City","CityRegion","CloseDate","ClosePrice","CoBuyerAgentAOR","CoBuyerAgentDesignation","CoBuyerAgentDirectPhone","CoBuyerAgentEmail","CoBuyerAgentFax","CoBuyerAgentFirstName","CoBuyerAgentFullName","CoBuyerAgentHomePhone","CoBuyerAgentKey","CoBuyerAgentKeyNumeric","CoBuyerAgentLastName","CoBuyerAgentMiddleName","CoBuyerAgentMlsId","CoBuyerAgentMobilePhone","CoBuyerAgentNamePrefix","CoBuyerAgentNameSuffix","CoBuyerAgentOfficePhone","CoBuyerAgentOfficePhoneExt","CoBuyerAgentPager","CoBuyerAgentPreferredPhone","CoBuyerAgentPreferredPhoneExt","CoBuyerAgentStateLicense","CoBuyerAgentTollFreePhone","CoBuyerAgentURL","CoBuyerAgentVoiceMail","CoBuyerAgentVoiceMailExt","CoBuyerOfficeAOR","CoBuyerOfficeEmail","CoBuyerOfficeFax","CoBuyerOfficeKey","CoBuyerOfficeKeyNumeric","CoBuyerOfficeMlsId","CoBuyerOfficeName","CoBuyerOfficePhone","CoBuyerOfficePhoneExt","CoBuyerOfficeURL","CoListAgentAOR","CoListAgentDesignation","CoListAgentDirectPhone","CoListAgentEmail","CoListAgentFax","CoListAgentFirstName","CoListAgentFullName","CoListAgentHomePhone","CoListAgentKey","CoListAgentKeyNumeric","CoListAgentLastName","CoListAgentMiddleName","CoListAgentMlsId","CoListAgentMobilePhone","CoListAgentNamePrefix","CoListAgentNameSuffix","CoListAgentOfficePhone","CoListAgentOfficePhoneExt","CoListAgentPager","CoListAgentPreferredPhone","CoListAgentPreferredPhoneExt","CoListAgentStateLicense","CoListAgentTollFreePhone","CoListAgentURL","CoListAgentVoiceMail","CoListAgentVoiceMailExt","CoListOfficeAOR","CoListOfficeEmail","CoListOfficeFax","CoListOfficeKey","CoListOfficeKeyNumeric","CoListOfficeMlsId","CoListOfficeName","CoListOfficePhone","CoListOfficePhoneExt","CoListOfficeURL","CommonInterest","CommonWalls","CommunityFeatures","Concessions","ConcessionsAmount","ConcessionsComments","ConstructionMaterials","ContinentRegion","Contingency","ContingentDate","ContractStatusChangeDate","Cooling","CoolingYN","CopyrightNotice","Country","CountryRegion","CountyOrParish","CoveredSpaces","CropsIncludedYN","CrossStreet","CultivatedArea","CumulativeDaysOnMarket","CurrentFinancing","CurrentUse","DOH1","DOH2","DOH3","DaysOnMarket","DevelopmentStatus","DirectionFaces","Directions","Disclaimer","Disclosures","DistanceToBusComments","DistanceToBusNumeric","DistanceToBusUnits","DistanceToElectricComments","DistanceToElectricNumeric","DistanceToElectricUnits","DistanceToFreewayComments","DistanceToFreewayNumeric","DistanceToFreewayUnits","DistanceToGasComments","DistanceToGasNumeric","DistanceToGasUnits","DistanceToPhoneServiceComments","DistanceToPhoneServiceNumeric","DistanceToPhoneServiceUnits","DistanceToPlaceofWorshipComments","DistanceToPlaceofWorshipNumeric","DistanceToPlaceofWorshipUnits","DistanceToSchoolBusComments","DistanceToSchoolBusNumeric","DistanceToSchoolBusUnits","DistanceToSchoolsComments","DistanceToSchoolsNumeric","DistanceToSchoolsUnits","DistanceToSewerComments","DistanceToSewerNumeric","DistanceToSewerUnits","DistanceToShoppingComments","DistanceToShoppingNumeric","DistanceToShoppingUnits","DistanceToStreetComments","DistanceToStreetNumeric","DistanceToStreetUnits","DistanceToWaterComments","DistanceToWaterNumeric","DistanceToWaterUnits","DocumentsAvailable","DocumentsChangeTimestamp","DocumentsCount","DoorFeatures","DualVariableCompensationYN","Electric","ElectricExpense","ElectricOnPropertyYN","ElementarySchool","ElementarySchoolDistrict","Elevation","ElevationUnits","EntryLevel","EntryLocation","Exclusions","ExistingLeaseType","ExpirationDate","ExteriorFeatures","FarmCreditServiceInclYN","FarmLandAreaSource","FarmLandAreaUnits","Fencing","FinancialDataSource","FireplaceFeatures","FireplaceYN","FireplacesTotal","Flooring","FoundationArea","FoundationDetails","FrontageLength","FrontageType","FuelExpense","Furnished","FurnitureReplacementExpense","GarageSpaces","GarageYN","GardenerExpense","GrazingPermitsBlmYN","GrazingPermitsForestServiceYN","GrazingPermitsPrivateYN","GreenBuildingVerificationType","GreenEnergyEfficient","GreenEnergyGeneration","GreenIndoorAirQuality","GreenLocation","GreenSustainability","GreenWaterConservation","GrossIncome","GrossScheduledIncome","HabitableResidenceYN","Heating","HeatingYN","HighSchool","HighSchoolDistrict","HomeWarrantyYN","HorseAmenities","HorseYN","HoursDaysOfOperation","HoursDaysOfOperationDescription","Inclusions","IncomeIncludes","InsuranceExpense","InteriorFeatures","InternetAddressDisplayYN","InternetAutomatedValuationDisplayYN","InternetConsumerCommentYN","InternetEntireListingDisplayYN","IrrigationSource","IrrigationWaterRightsAcres","IrrigationWaterRightsYN","LaborInformation","LandLeaseAmount","LandLeaseAmountFrequency","LandLeaseExpirationDate","LandLeaseYN","Latitude","LaundryFeatures","LeasableArea","LeasableAreaUnits","LeaseAmount","LeaseAmountFrequency","LeaseAssignableYN","LeaseConsideredYN","LeaseExpiration","LeaseRenewalCompensation","LeaseRenewalOptionYN","LeaseTerm","Levels","License1","License2","License3","LicensesExpense","ListAOR","ListAgentAOR","ListAgentDesignation","ListAgentDirectPhone","ListAgentEmail","ListAgentFax","ListAgentFirstName","ListAgentFullName","ListAgentHomePhone","ListAgentKey","ListAgentKeyNumeric","ListAgentLastName","ListAgentMiddleName","ListAgentMlsId","ListAgentMobilePhone","ListAgentNamePrefix","ListAgentNameSuffix","ListAgentOfficePhone","ListAgentOfficePhoneExt","ListAgentPager","ListAgentPreferredPhone","ListAgentPreferredPhoneExt","ListAgentStateLicense","ListAgentTollFreePhone","ListAgentURL","ListAgentVoiceMail","ListAgentVoiceMailExt","ListOfficeAOR","ListOfficeEmail","ListOfficeFax","ListOfficeKey","ListOfficeKeyNumeric","ListOfficeMlsId","ListOfficeName","ListOfficePhone","ListOfficePhoneExt","ListOfficeURL","ListPrice","ListPriceLow","ListTeamKey","ListTeamKeyNumeric","ListTeamName","ListingAgreement","ListingContractDate","ListingId","ListingKey","ListingKeyNumeric","ListingService","ListingTerms","LivingArea","LivingAreaSource","LivingAreaUnits","LockBoxLocation","LockBoxSerialNumber","LockBoxType","Longitude","LotDimensionsSource","LotFeatures","LotSizeAcres","LotSizeArea","LotSizeDimensions","LotSizeSource","LotSizeSquareFeet","LotSizeUnits","MLSAreaMajor","MLSAreaMinor","MainLevelBathrooms","MainLevelBedrooms","MaintenanceExpense","MajorChangeTimestamp","MajorChangeType","Make","ManagerExpense","MapCoordinate","MapCoordinateSource","MapURL","MiddleOrJuniorSchool","MiddleOrJuniorSchoolDistrict","MlsStatus","MobileDimUnits","MobileHomeRemainsYN","MobileLength","MobileWidth","Model","ModificationTimestamp","NetOperatingIncome","NewConstructionYN","NewTaxesExpense","NumberOfBuildings","NumberOfFullTimeEmployees","NumberOfLots","NumberOfPads","NumberOfPartTimeEmployees","NumberOfSeparateElectricMeters","NumberOfSeparateGasMeters","NumberOfSeparateWaterMeters","NumberOfUnitsInCommunity","NumberOfUnitsLeased","NumberOfUnitsMoMo","NumberOfUnitsTotal","NumberOfUnitsVacant","OccupantName","OccupantPhone","OccupantType","OffMarketDate","OffMarketTimestamp","OnMarketDate","OnMarketTimestamp","OpenParkingSpaces","OpenParkingYN","OperatingExpense","OperatingExpenseIncludes","OriginalEntryTimestamp","OriginalListPrice","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","OtherEquipment","OtherExpense","OtherParking","OtherStructures","OwnerName","OwnerPays","OwnerPhone","Ownership","OwnershipType","ParcelNumber","ParkManagerName","ParkManagerPhone","ParkName","ParkingFeatures","ParkingTotal","PastureArea","PatioAndPorchFeatures","PendingTimestamp","PestControlExpense","PetsAllowed","PhotosChangeTimestamp","PhotosCount","PoolExpense","PoolFeatures","PoolPrivateYN","Possession","PossibleUse","PostalCity","PostalCode","PostalCodePlus4","PowerProductionType","PreviousListPrice","PriceChangeTimestamp","PrivateOfficeRemarks","PrivateRemarks","ProfessionalManagementExpense","PropertyAttachedYN","PropertyCondition","PropertySubType","PropertyType","PublicRemarks","PublicSurveyRange","PublicSurveySection","PublicSurveyTownship","PurchaseContractDate","RVParkingDimensions","RangeArea","RentControlYN","RentIncludes","RoadFrontageType","RoadResponsibility","RoadSurfaceType","Roof","RoomType","RoomsTotal","SeatingCapacity","SecurityFeatures","SeniorCommunityYN","SerialU","SerialX","SerialXX","Sewer","ShowingAdvanceNotice","ShowingAttendedYN","ShowingContactName","ShowingContactPhone","ShowingContactPhoneExt","ShowingContactType","ShowingDays","ShowingEndTime","ShowingInstructions","ShowingRequirements","ShowingStartTime","SignOnPropertyYN","Skirt","SourceSystemID","SourceSystemKey","SourceSystemName","SpaFeatures","SpaYN","SpecialLicenses","SpecialListingConditions","StandardStatus","StateOrProvince","StateRegion","StatusChangeTimestamp","Stories","StoriesTotal","StreetAdditionalInfo","StreetDirPrefix","StreetDirSuffix","StreetName","StreetNumber","StreetNumberNumeric","StreetSuffix","StreetSuffixModifier","StructureType","SubAgencyCompensation","SubAgencyCompensationType","SubdivisionName","SuppliesExpense","SyndicateTo","SyndicationRemarks","TaxAnnualAmount","TaxAssessedValue","TaxBlock","TaxBookNumber","TaxLegalDescription","TaxLot","TaxMapNumber","TaxOtherAnnualAssessmentAmount","TaxParcelLetter","TaxStatusCurrent","TaxTract","TaxYear","TenantPays","Topography","TotalActualRent","Township","TransactionBrokerCompensation","TransactionBrokerCompensationType","TrashExpense","UnitNumber","UnitTypeType","UnitsFurnished","UniversalPropertyId","UniversalPropertySubId","UnparsedAddress","Utilities","VacancyAllowance","VacancyAllowanceRate","Vegetation","VideosChangeTimestamp","VideosCount","View","ViewYN","VirtualTourURLBranded","VirtualTourURLUnbranded","WalkScore","WaterBodyName","WaterSewerExpense","WaterSource","WaterfrontFeatures","WaterfrontYN","WindowFeatures","WithdrawnDate","WoodedArea","WorkmansCompensationExpense","YearBuilt","YearBuiltDetails","YearBuiltEffective","YearBuiltSource","YearEstablished","YearsCurrentOwner","Zoning","ZoningDescription"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","BuyerAgent","BuyerOffice","CoBuyerAgent","CoBuyerOffice","CoListAgent","CoListOffice","ListAgent","ListOffice","BuyerTeam","ListTeam","SourceSystem","HistoryTransactional","Media","SocialMedia","OpenHouse"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Property"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in Property","tags":["Property"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Property-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from Property","tags":["Property"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/OriginatingSystem":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OriginatingSystem","tags":["Property"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/BuyerAgent":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related BuyerAgent","tags":["Property"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/BuyerOffice":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related BuyerOffice","tags":["Property"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["FranchiseAffiliation","IDXOfficeParticipationYN","MainOfficeKey","MainOfficeKeyNumeric","MainOfficeMlsId","ModificationTimestamp","OfficeAOR","OfficeAORMlsId","OfficeAORkey","OfficeAORkeyNumeric","OfficeAddress1","OfficeAddress2","OfficeAssociationComments","OfficeBranchType","OfficeBrokerKey","OfficeBrokerKeyNumeric","OfficeBrokerMlsId","OfficeCity","OfficeCorporateLicense","OfficeCountyOrParish","OfficeEmail","OfficeFax","OfficeKey","OfficeKeyNumeric","OfficeManagerKey","OfficeManagerKeyNumeric","OfficeManagerMlsId","OfficeMlsId","OfficeName","OfficeNationalAssociationId","OfficePhone","OfficePhoneExt","OfficePostalCode","OfficePostalCodePlus4","OfficeStateOrProvince","OfficeStatus","OfficeType","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemName","OriginatingSystemOfficeKey","SocialMediaType","SourceSystemID","SourceSystemName","SourceSystemOfficeKey","SyndicateAgentOption","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","MainOffice","OfficeBroker","OfficeManager","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Office"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/CoBuyerAgent":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related CoBuyerAgent","tags":["Property"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/CoBuyerOffice":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related CoBuyerOffice","tags":["Property"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["FranchiseAffiliation","IDXOfficeParticipationYN","MainOfficeKey","MainOfficeKeyNumeric","MainOfficeMlsId","ModificationTimestamp","OfficeAOR","OfficeAORMlsId","OfficeAORkey","OfficeAORkeyNumeric","OfficeAddress1","OfficeAddress2","OfficeAssociationComments","OfficeBranchType","OfficeBrokerKey","OfficeBrokerKeyNumeric","OfficeBrokerMlsId","OfficeCity","OfficeCorporateLicense","OfficeCountyOrParish","OfficeEmail","OfficeFax","OfficeKey","OfficeKeyNumeric","OfficeManagerKey","OfficeManagerKeyNumeric","OfficeManagerMlsId","OfficeMlsId","OfficeName","OfficeNationalAssociationId","OfficePhone","OfficePhoneExt","OfficePostalCode","OfficePostalCodePlus4","OfficeStateOrProvince","OfficeStatus","OfficeType","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemName","OriginatingSystemOfficeKey","SocialMediaType","SourceSystemID","SourceSystemName","SourceSystemOfficeKey","SyndicateAgentOption","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","MainOffice","OfficeBroker","OfficeManager","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Office"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/CoListAgent":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related CoListAgent","tags":["Property"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/CoListOffice":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related CoListOffice","tags":["Property"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["FranchiseAffiliation","IDXOfficeParticipationYN","MainOfficeKey","MainOfficeKeyNumeric","MainOfficeMlsId","ModificationTimestamp","OfficeAOR","OfficeAORMlsId","OfficeAORkey","OfficeAORkeyNumeric","OfficeAddress1","OfficeAddress2","OfficeAssociationComments","OfficeBranchType","OfficeBrokerKey","OfficeBrokerKeyNumeric","OfficeBrokerMlsId","OfficeCity","OfficeCorporateLicense","OfficeCountyOrParish","OfficeEmail","OfficeFax","OfficeKey","OfficeKeyNumeric","OfficeManagerKey","OfficeManagerKeyNumeric","OfficeManagerMlsId","OfficeMlsId","OfficeName","OfficeNationalAssociationId","OfficePhone","OfficePhoneExt","OfficePostalCode","OfficePostalCodePlus4","OfficeStateOrProvince","OfficeStatus","OfficeType","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemName","OriginatingSystemOfficeKey","SocialMediaType","SourceSystemID","SourceSystemName","SourceSystemOfficeKey","SyndicateAgentOption","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","MainOffice","OfficeBroker","OfficeManager","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Office"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/ListAgent":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ListAgent","tags":["Property"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/ListOffice":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ListOffice","tags":["Property"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["FranchiseAffiliation","IDXOfficeParticipationYN","MainOfficeKey","MainOfficeKeyNumeric","MainOfficeMlsId","ModificationTimestamp","OfficeAOR","OfficeAORMlsId","OfficeAORkey","OfficeAORkeyNumeric","OfficeAddress1","OfficeAddress2","OfficeAssociationComments","OfficeBranchType","OfficeBrokerKey","OfficeBrokerKeyNumeric","OfficeBrokerMlsId","OfficeCity","OfficeCorporateLicense","OfficeCountyOrParish","OfficeEmail","OfficeFax","OfficeKey","OfficeKeyNumeric","OfficeManagerKey","OfficeManagerKeyNumeric","OfficeManagerMlsId","OfficeMlsId","OfficeName","OfficeNationalAssociationId","OfficePhone","OfficePhoneExt","OfficePostalCode","OfficePostalCodePlus4","OfficeStateOrProvince","OfficeStatus","OfficeType","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemName","OriginatingSystemOfficeKey","SocialMediaType","SourceSystemID","SourceSystemName","SourceSystemOfficeKey","SyndicateAgentOption","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","MainOffice","OfficeBroker","OfficeManager","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Office"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/BuyerTeam":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related BuyerTeam","tags":["Property"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ModificationTimestamp","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemKey","SourceSystemName","TeamAddress1","TeamAddress2","TeamCarrierRoute","TeamCity","TeamCountry","TeamCountyOrParish","TeamDescription","TeamDirectPhone","TeamEmail","TeamFax","TeamKey","TeamKeyNumeric","TeamLeadKey","TeamLeadKeyNumeric","TeamLeadLoginId","TeamLeadMlsId","TeamLeadNationalAssociationId","TeamLeadStateLicense","TeamLeadStateLicenseState","TeamMobilePhone","TeamName","TeamOfficePhone","TeamOfficePhoneExt","TeamPostalCode","TeamPostalCodePlus4","TeamPreferredPhone","TeamPreferredPhoneExt","TeamStateOrProvince","TeamStatus","TeamTollFreePhone","TeamVoiceMail","TeamVoiceMailExt"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","SourceSystem","TeamLead","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Teams"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/ListTeam":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ListTeam","tags":["Property"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ModificationTimestamp","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemKey","SourceSystemName","TeamAddress1","TeamAddress2","TeamCarrierRoute","TeamCity","TeamCountry","TeamCountyOrParish","TeamDescription","TeamDirectPhone","TeamEmail","TeamFax","TeamKey","TeamKeyNumeric","TeamLeadKey","TeamLeadKeyNumeric","TeamLeadLoginId","TeamLeadMlsId","TeamLeadNationalAssociationId","TeamLeadStateLicense","TeamLeadStateLicenseState","TeamMobilePhone","TeamName","TeamOfficePhone","TeamOfficePhoneExt","TeamPostalCode","TeamPostalCodePlus4","TeamPreferredPhone","TeamPreferredPhoneExt","TeamStateOrProvince","TeamStatus","TeamTollFreePhone","TeamVoiceMail","TeamVoiceMailExt"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","SourceSystem","TeamLead","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Teams"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/SourceSystem":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related SourceSystem","tags":["Property"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/HistoryTransactional":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["Property"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/Media":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related Media","tags":["Property"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","ImageHeight","ImageHeight desc","ImageOf","ImageOf desc","ImageSizeDescription","ImageSizeDescription desc","ImageWidth","ImageWidth desc","LongDescription","LongDescription desc","MediaCategory","MediaCategory desc","MediaHTML","MediaHTML desc","MediaKey","MediaKey desc","MediaKeyNumeric","MediaKeyNumeric desc","MediaModificationTimestamp","MediaModificationTimestamp desc","MediaObjectID","MediaObjectID desc","MediaStatus","MediaStatus desc","MediaType","MediaType desc","MediaURL","MediaURL desc","ModificationTimestamp","ModificationTimestamp desc","Order","Order desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemMediaKey","OriginatingSystemMediaKey desc","OriginatingSystemName","OriginatingSystemName desc","Permission","Permission desc","PreferredPhotoYN","PreferredPhotoYN desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","ShortDescription","ShortDescription desc","SourceSystemID","SourceSystemID desc","SourceSystemMediaKey","SourceSystemMediaKey desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","ImageHeight","ImageOf","ImageSizeDescription","ImageWidth","LongDescription","MediaCategory","MediaHTML","MediaKey","MediaKeyNumeric","MediaModificationTimestamp","MediaObjectID","MediaStatus","MediaType","MediaURL","ModificationTimestamp","Order","OriginatingSystemID","OriginatingSystemMediaKey","OriginatingSystemName","Permission","PreferredPhotoYN","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","ShortDescription","SourceSystemID","SourceSystemMediaKey","SourceSystemName"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Media","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/SocialMedia":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related SocialMedia","tags":["Property"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ClassName desc","ModificationTimestamp","ModificationTimestamp desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SocialMediaKey","SocialMediaKey desc","SocialMediaKeyNumeric","SocialMediaKeyNumeric desc","SocialMediaType","SocialMediaType desc","SocialMediaUrlOrId","SocialMediaUrlOrId desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SocialMediaKey","SocialMediaKeyNumeric","SocialMediaType","SocialMediaUrlOrId"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of SocialMedia","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Property('{ListingKey}')/OpenHouse":{"parameters":[{"description":"key: ListingKey","in":"path","name":"ListingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related OpenHouse","tags":["Property"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AppointmentRequiredYN","AppointmentRequiredYN desc","ListingId","ListingId desc","ListingKey","ListingKey desc","ListingKeyNumeric","ListingKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","OpenHouseAttendedBy","OpenHouseAttendedBy desc","OpenHouseDate","OpenHouseDate desc","OpenHouseEndTime","OpenHouseEndTime desc","OpenHouseId","OpenHouseId desc","OpenHouseKey","OpenHouseKey desc","OpenHouseKeyNumeric","OpenHouseKeyNumeric desc","OpenHouseRemarks","OpenHouseRemarks desc","OpenHouseStartTime","OpenHouseStartTime desc","OpenHouseStatus","OpenHouseStatus desc","OpenHouseType","OpenHouseType desc","OriginalEntryTimestamp","OriginalEntryTimestamp desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemKey","OriginatingSystemKey desc","OriginatingSystemName","OriginatingSystemName desc","Refreshments","Refreshments desc","ShowingAgentFirstName","ShowingAgentFirstName desc","ShowingAgentKey","ShowingAgentKey desc","ShowingAgentKeyNumeric","ShowingAgentKeyNumeric desc","ShowingAgentLastName","ShowingAgentLastName desc","ShowingAgentMlsID","ShowingAgentMlsID desc","SourceSystemID","SourceSystemID desc","SourceSystemKey","SourceSystemKey desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AppointmentRequiredYN","ListingId","ListingKey","ListingKeyNumeric","ModificationTimestamp","OpenHouseAttendedBy","OpenHouseDate","OpenHouseEndTime","OpenHouseId","OpenHouseKey","OpenHouseKeyNumeric","OpenHouseRemarks","OpenHouseStartTime","OpenHouseStatus","OpenHouseType","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","Refreshments","ShowingAgentFirstName","ShowingAgentKey","ShowingAgentKeyNumeric","ShowingAgentLastName","ShowingAgentMlsID","SourceSystemID","SourceSystemKey","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Listing","OriginatingSystem","ShowingAgent","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of OpenHouse","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.OpenHouse"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Member":{"get":{"summary":"Get entities from Member","tags":["Member"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","JobTitle desc","LastLoginTimestamp","LastLoginTimestamp desc","MemberAOR","MemberAOR desc","MemberAORMlsId","MemberAORMlsId desc","MemberAORkey","MemberAORkey desc","MemberAORkeyNumeric","MemberAORkeyNumeric desc","MemberAddress1","MemberAddress1 desc","MemberAddress2","MemberAddress2 desc","MemberAssociationComments","MemberAssociationComments desc","MemberCarrierRoute","MemberCarrierRoute desc","MemberCity","MemberCity desc","MemberCountry","MemberCountry desc","MemberCountyOrParish","MemberCountyOrParish desc","MemberDesignation","MemberDesignation desc","MemberDirectPhone","MemberDirectPhone desc","MemberEmail","MemberEmail desc","MemberFax","MemberFax desc","MemberFirstName","MemberFirstName desc","MemberFullName","MemberFullName desc","MemberHomePhone","MemberHomePhone desc","MemberIsAssistantTo","MemberIsAssistantTo desc","MemberKey","MemberKey desc","MemberKeyNumeric","MemberKeyNumeric desc","MemberLanguages","MemberLanguages desc","MemberLastName","MemberLastName desc","MemberLoginId","MemberLoginId desc","MemberMiddleName","MemberMiddleName desc","MemberMlsAccessYN","MemberMlsAccessYN desc","MemberMlsId","MemberMlsId desc","MemberMlsSecurityClass","MemberMlsSecurityClass desc","MemberMobilePhone","MemberMobilePhone desc","MemberNamePrefix","MemberNamePrefix desc","MemberNameSuffix","MemberNameSuffix desc","MemberNationalAssociationId","MemberNationalAssociationId desc","MemberNickname","MemberNickname desc","MemberOfficePhone","MemberOfficePhone desc","MemberOfficePhoneExt","MemberOfficePhoneExt desc","MemberOtherPhoneType","MemberOtherPhoneType desc","MemberPager","MemberPager desc","MemberPassword","MemberPassword desc","MemberPhoneTTYTDD","MemberPhoneTTYTDD desc","MemberPostalCode","MemberPostalCode desc","MemberPostalCodePlus4","MemberPostalCodePlus4 desc","MemberPreferredPhone","MemberPreferredPhone desc","MemberPreferredPhoneExt","MemberPreferredPhoneExt desc","MemberStateLicense","MemberStateLicense desc","MemberStateLicenseState","MemberStateLicenseState desc","MemberStateOrProvince","MemberStateOrProvince desc","MemberStatus","MemberStatus desc","MemberTollFreePhone","MemberTollFreePhone desc","MemberType","MemberType desc","MemberVoiceMail","MemberVoiceMail desc","MemberVoiceMailExt","MemberVoiceMailExt desc","ModificationTimestamp","ModificationTimestamp desc","OfficeKey","OfficeKey desc","OfficeKeyNumeric","OfficeKeyNumeric desc","OfficeMlsId","OfficeMlsId desc","OfficeName","OfficeName desc","OriginalEntryTimestamp","OriginalEntryTimestamp desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemMemberKey","OriginatingSystemMemberKey desc","OriginatingSystemName","OriginatingSystemName desc","SocialMediaType","SocialMediaType desc","SourceSystemID","SourceSystemID desc","SourceSystemMemberKey","SourceSystemMemberKey desc","SourceSystemName","SourceSystemName desc","SyndicateTo","SyndicateTo desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Member","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to Member","tags":["Member"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Member('{MemberKey}')":{"parameters":[{"description":"key: MemberKey","in":"path","name":"MemberKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from Member by key","tags":["Member"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in Member","tags":["Member"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from Member","tags":["Member"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/Member('{MemberKey}')/Office":{"parameters":[{"description":"key: MemberKey","in":"path","name":"MemberKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related Office","tags":["Member"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["FranchiseAffiliation","IDXOfficeParticipationYN","MainOfficeKey","MainOfficeKeyNumeric","MainOfficeMlsId","ModificationTimestamp","OfficeAOR","OfficeAORMlsId","OfficeAORkey","OfficeAORkeyNumeric","OfficeAddress1","OfficeAddress2","OfficeAssociationComments","OfficeBranchType","OfficeBrokerKey","OfficeBrokerKeyNumeric","OfficeBrokerMlsId","OfficeCity","OfficeCorporateLicense","OfficeCountyOrParish","OfficeEmail","OfficeFax","OfficeKey","OfficeKeyNumeric","OfficeManagerKey","OfficeManagerKeyNumeric","OfficeManagerMlsId","OfficeMlsId","OfficeName","OfficeNationalAssociationId","OfficePhone","OfficePhoneExt","OfficePostalCode","OfficePostalCodePlus4","OfficeStateOrProvince","OfficeStatus","OfficeType","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemName","OriginatingSystemOfficeKey","SocialMediaType","SourceSystemID","SourceSystemName","SourceSystemOfficeKey","SyndicateAgentOption","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","MainOffice","OfficeBroker","OfficeManager","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Office"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Member('{MemberKey}')/OriginatingSystem":{"parameters":[{"description":"key: MemberKey","in":"path","name":"MemberKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OriginatingSystem","tags":["Member"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Member('{MemberKey}')/SourceSystem":{"parameters":[{"description":"key: MemberKey","in":"path","name":"MemberKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related SourceSystem","tags":["Member"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Member('{MemberKey}')/HistoryTransactional":{"parameters":[{"description":"key: MemberKey","in":"path","name":"MemberKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["Member"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Member('{MemberKey}')/Media":{"parameters":[{"description":"key: MemberKey","in":"path","name":"MemberKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related Media","tags":["Member"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","ImageHeight","ImageHeight desc","ImageOf","ImageOf desc","ImageSizeDescription","ImageSizeDescription desc","ImageWidth","ImageWidth desc","LongDescription","LongDescription desc","MediaCategory","MediaCategory desc","MediaHTML","MediaHTML desc","MediaKey","MediaKey desc","MediaKeyNumeric","MediaKeyNumeric desc","MediaModificationTimestamp","MediaModificationTimestamp desc","MediaObjectID","MediaObjectID desc","MediaStatus","MediaStatus desc","MediaType","MediaType desc","MediaURL","MediaURL desc","ModificationTimestamp","ModificationTimestamp desc","Order","Order desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemMediaKey","OriginatingSystemMediaKey desc","OriginatingSystemName","OriginatingSystemName desc","Permission","Permission desc","PreferredPhotoYN","PreferredPhotoYN desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","ShortDescription","ShortDescription desc","SourceSystemID","SourceSystemID desc","SourceSystemMediaKey","SourceSystemMediaKey desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","ImageHeight","ImageOf","ImageSizeDescription","ImageWidth","LongDescription","MediaCategory","MediaHTML","MediaKey","MediaKeyNumeric","MediaModificationTimestamp","MediaObjectID","MediaStatus","MediaType","MediaURL","ModificationTimestamp","Order","OriginatingSystemID","OriginatingSystemMediaKey","OriginatingSystemName","Permission","PreferredPhotoYN","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","ShortDescription","SourceSystemID","SourceSystemMediaKey","SourceSystemName"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Media","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Member('{MemberKey}')/SocialMedia":{"parameters":[{"description":"key: MemberKey","in":"path","name":"MemberKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related SocialMedia","tags":["Member"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ClassName desc","ModificationTimestamp","ModificationTimestamp desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SocialMediaKey","SocialMediaKey desc","SocialMediaKeyNumeric","SocialMediaKeyNumeric desc","SocialMediaType","SocialMediaType desc","SocialMediaUrlOrId","SocialMediaUrlOrId desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SocialMediaKey","SocialMediaKeyNumeric","SocialMediaType","SocialMediaUrlOrId"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of SocialMedia","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Office":{"get":{"summary":"Get entities from Office","tags":["Office"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["FranchiseAffiliation","FranchiseAffiliation desc","IDXOfficeParticipationYN","IDXOfficeParticipationYN desc","MainOfficeKey","MainOfficeKey desc","MainOfficeKeyNumeric","MainOfficeKeyNumeric desc","MainOfficeMlsId","MainOfficeMlsId desc","ModificationTimestamp","ModificationTimestamp desc","OfficeAOR","OfficeAOR desc","OfficeAORMlsId","OfficeAORMlsId desc","OfficeAORkey","OfficeAORkey desc","OfficeAORkeyNumeric","OfficeAORkeyNumeric desc","OfficeAddress1","OfficeAddress1 desc","OfficeAddress2","OfficeAddress2 desc","OfficeAssociationComments","OfficeAssociationComments desc","OfficeBranchType","OfficeBranchType desc","OfficeBrokerKey","OfficeBrokerKey desc","OfficeBrokerKeyNumeric","OfficeBrokerKeyNumeric desc","OfficeBrokerMlsId","OfficeBrokerMlsId desc","OfficeCity","OfficeCity desc","OfficeCorporateLicense","OfficeCorporateLicense desc","OfficeCountyOrParish","OfficeCountyOrParish desc","OfficeEmail","OfficeEmail desc","OfficeFax","OfficeFax desc","OfficeKey","OfficeKey desc","OfficeKeyNumeric","OfficeKeyNumeric desc","OfficeManagerKey","OfficeManagerKey desc","OfficeManagerKeyNumeric","OfficeManagerKeyNumeric desc","OfficeManagerMlsId","OfficeManagerMlsId desc","OfficeMlsId","OfficeMlsId desc","OfficeName","OfficeName desc","OfficeNationalAssociationId","OfficeNationalAssociationId desc","OfficePhone","OfficePhone desc","OfficePhoneExt","OfficePhoneExt desc","OfficePostalCode","OfficePostalCode desc","OfficePostalCodePlus4","OfficePostalCodePlus4 desc","OfficeStateOrProvince","OfficeStateOrProvince desc","OfficeStatus","OfficeStatus desc","OfficeType","OfficeType desc","OriginalEntryTimestamp","OriginalEntryTimestamp desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","OriginatingSystemOfficeKey","OriginatingSystemOfficeKey desc","SocialMediaType","SocialMediaType desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc","SourceSystemOfficeKey","SourceSystemOfficeKey desc","SyndicateAgentOption","SyndicateAgentOption desc","SyndicateTo","SyndicateTo desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["FranchiseAffiliation","IDXOfficeParticipationYN","MainOfficeKey","MainOfficeKeyNumeric","MainOfficeMlsId","ModificationTimestamp","OfficeAOR","OfficeAORMlsId","OfficeAORkey","OfficeAORkeyNumeric","OfficeAddress1","OfficeAddress2","OfficeAssociationComments","OfficeBranchType","OfficeBrokerKey","OfficeBrokerKeyNumeric","OfficeBrokerMlsId","OfficeCity","OfficeCorporateLicense","OfficeCountyOrParish","OfficeEmail","OfficeFax","OfficeKey","OfficeKeyNumeric","OfficeManagerKey","OfficeManagerKeyNumeric","OfficeManagerMlsId","OfficeMlsId","OfficeName","OfficeNationalAssociationId","OfficePhone","OfficePhoneExt","OfficePostalCode","OfficePostalCodePlus4","OfficeStateOrProvince","OfficeStatus","OfficeType","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemName","OriginatingSystemOfficeKey","SocialMediaType","SourceSystemID","SourceSystemName","SourceSystemOfficeKey","SyndicateAgentOption","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","MainOffice","OfficeBroker","OfficeManager","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Office","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Office"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to Office","tags":["Office"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Office-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Office"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Office('{OfficeKey}')":{"parameters":[{"description":"key: OfficeKey","in":"path","name":"OfficeKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from Office by key","tags":["Office"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["FranchiseAffiliation","IDXOfficeParticipationYN","MainOfficeKey","MainOfficeKeyNumeric","MainOfficeMlsId","ModificationTimestamp","OfficeAOR","OfficeAORMlsId","OfficeAORkey","OfficeAORkeyNumeric","OfficeAddress1","OfficeAddress2","OfficeAssociationComments","OfficeBranchType","OfficeBrokerKey","OfficeBrokerKeyNumeric","OfficeBrokerMlsId","OfficeCity","OfficeCorporateLicense","OfficeCountyOrParish","OfficeEmail","OfficeFax","OfficeKey","OfficeKeyNumeric","OfficeManagerKey","OfficeManagerKeyNumeric","OfficeManagerMlsId","OfficeMlsId","OfficeName","OfficeNationalAssociationId","OfficePhone","OfficePhoneExt","OfficePostalCode","OfficePostalCodePlus4","OfficeStateOrProvince","OfficeStatus","OfficeType","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemName","OriginatingSystemOfficeKey","SocialMediaType","SourceSystemID","SourceSystemName","SourceSystemOfficeKey","SyndicateAgentOption","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","MainOffice","OfficeBroker","OfficeManager","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Office"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in Office","tags":["Office"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Office-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from Office","tags":["Office"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/Office('{OfficeKey}')/MainOffice":{"parameters":[{"description":"key: OfficeKey","in":"path","name":"OfficeKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related MainOffice","tags":["Office"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["FranchiseAffiliation","IDXOfficeParticipationYN","MainOfficeKey","MainOfficeKeyNumeric","MainOfficeMlsId","ModificationTimestamp","OfficeAOR","OfficeAORMlsId","OfficeAORkey","OfficeAORkeyNumeric","OfficeAddress1","OfficeAddress2","OfficeAssociationComments","OfficeBranchType","OfficeBrokerKey","OfficeBrokerKeyNumeric","OfficeBrokerMlsId","OfficeCity","OfficeCorporateLicense","OfficeCountyOrParish","OfficeEmail","OfficeFax","OfficeKey","OfficeKeyNumeric","OfficeManagerKey","OfficeManagerKeyNumeric","OfficeManagerMlsId","OfficeMlsId","OfficeName","OfficeNationalAssociationId","OfficePhone","OfficePhoneExt","OfficePostalCode","OfficePostalCodePlus4","OfficeStateOrProvince","OfficeStatus","OfficeType","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemName","OriginatingSystemOfficeKey","SocialMediaType","SourceSystemID","SourceSystemName","SourceSystemOfficeKey","SyndicateAgentOption","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","MainOffice","OfficeBroker","OfficeManager","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Office"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Office('{OfficeKey}')/OfficeBroker":{"parameters":[{"description":"key: OfficeKey","in":"path","name":"OfficeKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OfficeBroker","tags":["Office"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Office('{OfficeKey}')/OfficeManager":{"parameters":[{"description":"key: OfficeKey","in":"path","name":"OfficeKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OfficeManager","tags":["Office"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Office('{OfficeKey}')/OriginatingSystem":{"parameters":[{"description":"key: OfficeKey","in":"path","name":"OfficeKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OriginatingSystem","tags":["Office"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Office('{OfficeKey}')/SourceSystem":{"parameters":[{"description":"key: OfficeKey","in":"path","name":"OfficeKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related SourceSystem","tags":["Office"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Office('{OfficeKey}')/HistoryTransactional":{"parameters":[{"description":"key: OfficeKey","in":"path","name":"OfficeKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["Office"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Office('{OfficeKey}')/Media":{"parameters":[{"description":"key: OfficeKey","in":"path","name":"OfficeKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related Media","tags":["Office"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","ImageHeight","ImageHeight desc","ImageOf","ImageOf desc","ImageSizeDescription","ImageSizeDescription desc","ImageWidth","ImageWidth desc","LongDescription","LongDescription desc","MediaCategory","MediaCategory desc","MediaHTML","MediaHTML desc","MediaKey","MediaKey desc","MediaKeyNumeric","MediaKeyNumeric desc","MediaModificationTimestamp","MediaModificationTimestamp desc","MediaObjectID","MediaObjectID desc","MediaStatus","MediaStatus desc","MediaType","MediaType desc","MediaURL","MediaURL desc","ModificationTimestamp","ModificationTimestamp desc","Order","Order desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemMediaKey","OriginatingSystemMediaKey desc","OriginatingSystemName","OriginatingSystemName desc","Permission","Permission desc","PreferredPhotoYN","PreferredPhotoYN desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","ShortDescription","ShortDescription desc","SourceSystemID","SourceSystemID desc","SourceSystemMediaKey","SourceSystemMediaKey desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","ImageHeight","ImageOf","ImageSizeDescription","ImageWidth","LongDescription","MediaCategory","MediaHTML","MediaKey","MediaKeyNumeric","MediaModificationTimestamp","MediaObjectID","MediaStatus","MediaType","MediaURL","ModificationTimestamp","Order","OriginatingSystemID","OriginatingSystemMediaKey","OriginatingSystemName","Permission","PreferredPhotoYN","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","ShortDescription","SourceSystemID","SourceSystemMediaKey","SourceSystemName"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Media","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Office('{OfficeKey}')/SocialMedia":{"parameters":[{"description":"key: OfficeKey","in":"path","name":"OfficeKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related SocialMedia","tags":["Office"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ClassName desc","ModificationTimestamp","ModificationTimestamp desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SocialMediaKey","SocialMediaKey desc","SocialMediaKeyNumeric","SocialMediaKeyNumeric desc","SocialMediaType","SocialMediaType desc","SocialMediaUrlOrId","SocialMediaUrlOrId desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SocialMediaKey","SocialMediaKeyNumeric","SocialMediaType","SocialMediaUrlOrId"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of SocialMedia","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Contacts":{"get":{"summary":"Get entities from Contacts","tags":["Contacts"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["Anniversary","Anniversary desc","AssistantEmail","AssistantEmail desc","AssistantName","AssistantName desc","AssistantPhone","AssistantPhone desc","AssistantPhoneExt","AssistantPhoneExt desc","Birthdate","Birthdate desc","BusinessFax","BusinessFax desc","Children","Children desc","Company","Company desc","ContactKey","ContactKey desc","ContactKeyNumeric","ContactKeyNumeric desc","ContactLoginId","ContactLoginId desc","ContactPassword","ContactPassword desc","ContactStatus","ContactStatus desc","ContactType","ContactType desc","Department","Department desc","DirectPhone","DirectPhone desc","Email","Email desc","Email2","Email2 desc","Email3","Email3 desc","FirstName","FirstName desc","FullName","FullName desc","HomeAddress1","HomeAddress1 desc","HomeAddress2","HomeAddress2 desc","HomeCarrierRoute","HomeCarrierRoute desc","HomeCity","HomeCity desc","HomeCountry","HomeCountry desc","HomeCountyOrParish","HomeCountyOrParish desc","HomeFax","HomeFax desc","HomePhone","HomePhone desc","HomePostalCode","HomePostalCode desc","HomePostalCodePlus4","HomePostalCodePlus4 desc","HomeStateOrProvince","HomeStateOrProvince desc","JobTitle","JobTitle desc","Language","Language desc","LastName","LastName desc","LeadSource","LeadSource desc","MiddleName","MiddleName desc","MobilePhone","MobilePhone desc","ModificationTimestamp","ModificationTimestamp desc","NamePrefix","NamePrefix desc","NameSuffix","NameSuffix desc","Nickname","Nickname desc","Notes","Notes desc","OfficePhone","OfficePhone desc","OfficePhoneExt","OfficePhoneExt desc","OriginalEntryTimestamp","OriginalEntryTimestamp desc","OriginatingSystemContactKey","OriginatingSystemContactKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","OtherAddress1","OtherAddress1 desc","OtherAddress2","OtherAddress2 desc","OtherCarrierRoute","OtherCarrierRoute desc","OtherCity","OtherCity desc","OtherCountry","OtherCountry desc","OtherCountyOrParish","OtherCountyOrParish desc","OtherPhoneType","OtherPhoneType desc","OtherPostalCode","OtherPostalCode desc","OtherPostalCodePlus4","OtherPostalCodePlus4 desc","OtherStateOrProvince","OtherStateOrProvince desc","OwnerMemberID","OwnerMemberID desc","OwnerMemberKey","OwnerMemberKey desc","OwnerMemberKeyNumeric","OwnerMemberKeyNumeric desc","Pager","Pager desc","PhoneTTYTDD","PhoneTTYTDD desc","PreferredAddress","PreferredAddress desc","PreferredPhone","PreferredPhone desc","ReferredBy","ReferredBy desc","SocialMediaType","SocialMediaType desc","SourceSystemContactKey","SourceSystemContactKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc","SpousePartnerName","SpousePartnerName desc","TollFreePhone","TollFreePhone desc","VoiceMail","VoiceMail desc","VoiceMailExt","VoiceMailExt desc","WorkAddress1","WorkAddress1 desc","WorkAddress2","WorkAddress2 desc","WorkCarrierRoute","WorkCarrierRoute desc","WorkCity","WorkCity desc","WorkCountry","WorkCountry desc","WorkCountyOrParish","WorkCountyOrParish desc","WorkPostalCode","WorkPostalCode desc","WorkPostalCodePlus4","WorkPostalCodePlus4 desc","WorkStateOrProvince","WorkStateOrProvince desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["Anniversary","AssistantEmail","AssistantName","AssistantPhone","AssistantPhoneExt","Birthdate","BusinessFax","Children","Company","ContactKey","ContactKeyNumeric","ContactLoginId","ContactPassword","ContactStatus","ContactType","Department","DirectPhone","Email","Email2","Email3","FirstName","FullName","HomeAddress1","HomeAddress2","HomeCarrierRoute","HomeCity","HomeCountry","HomeCountyOrParish","HomeFax","HomePhone","HomePostalCode","HomePostalCodePlus4","HomeStateOrProvince","JobTitle","Language","LastName","LeadSource","MiddleName","MobilePhone","ModificationTimestamp","NamePrefix","NameSuffix","Nickname","Notes","OfficePhone","OfficePhoneExt","OriginalEntryTimestamp","OriginatingSystemContactKey","OriginatingSystemID","OriginatingSystemName","OtherAddress1","OtherAddress2","OtherCarrierRoute","OtherCity","OtherCountry","OtherCountyOrParish","OtherPhoneType","OtherPostalCode","OtherPostalCodePlus4","OtherStateOrProvince","OwnerMemberID","OwnerMemberKey","OwnerMemberKeyNumeric","Pager","PhoneTTYTDD","PreferredAddress","PreferredPhone","ReferredBy","SocialMediaType","SourceSystemContactKey","SourceSystemID","SourceSystemName","SpousePartnerName","TollFreePhone","VoiceMail","VoiceMailExt","WorkAddress1","WorkAddress2","WorkCarrierRoute","WorkCity","WorkCountry","WorkCountyOrParish","WorkPostalCode","WorkPostalCodePlus4","WorkStateOrProvince"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","SourceSystem","OwnerMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Contacts","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Contacts"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to Contacts","tags":["Contacts"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Contacts-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Contacts"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Contacts('{ContactKey}')":{"parameters":[{"description":"key: ContactKey","in":"path","name":"ContactKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from Contacts by key","tags":["Contacts"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["Anniversary","AssistantEmail","AssistantName","AssistantPhone","AssistantPhoneExt","Birthdate","BusinessFax","Children","Company","ContactKey","ContactKeyNumeric","ContactLoginId","ContactPassword","ContactStatus","ContactType","Department","DirectPhone","Email","Email2","Email3","FirstName","FullName","HomeAddress1","HomeAddress2","HomeCarrierRoute","HomeCity","HomeCountry","HomeCountyOrParish","HomeFax","HomePhone","HomePostalCode","HomePostalCodePlus4","HomeStateOrProvince","JobTitle","Language","LastName","LeadSource","MiddleName","MobilePhone","ModificationTimestamp","NamePrefix","NameSuffix","Nickname","Notes","OfficePhone","OfficePhoneExt","OriginalEntryTimestamp","OriginatingSystemContactKey","OriginatingSystemID","OriginatingSystemName","OtherAddress1","OtherAddress2","OtherCarrierRoute","OtherCity","OtherCountry","OtherCountyOrParish","OtherPhoneType","OtherPostalCode","OtherPostalCodePlus4","OtherStateOrProvince","OwnerMemberID","OwnerMemberKey","OwnerMemberKeyNumeric","Pager","PhoneTTYTDD","PreferredAddress","PreferredPhone","ReferredBy","SocialMediaType","SourceSystemContactKey","SourceSystemID","SourceSystemName","SpousePartnerName","TollFreePhone","VoiceMail","VoiceMailExt","WorkAddress1","WorkAddress2","WorkCarrierRoute","WorkCity","WorkCountry","WorkCountyOrParish","WorkPostalCode","WorkPostalCodePlus4","WorkStateOrProvince"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","SourceSystem","OwnerMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Contacts"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in Contacts","tags":["Contacts"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Contacts-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from Contacts","tags":["Contacts"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/Contacts('{ContactKey}')/OriginatingSystem":{"parameters":[{"description":"key: ContactKey","in":"path","name":"ContactKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OriginatingSystem","tags":["Contacts"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Contacts('{ContactKey}')/SourceSystem":{"parameters":[{"description":"key: ContactKey","in":"path","name":"ContactKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related SourceSystem","tags":["Contacts"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Contacts('{ContactKey}')/OwnerMember":{"parameters":[{"description":"key: ContactKey","in":"path","name":"ContactKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OwnerMember","tags":["Contacts"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Contacts('{ContactKey}')/HistoryTransactional":{"parameters":[{"description":"key: ContactKey","in":"path","name":"ContactKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["Contacts"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Contacts('{ContactKey}')/Media":{"parameters":[{"description":"key: ContactKey","in":"path","name":"ContactKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related Media","tags":["Contacts"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","ImageHeight","ImageHeight desc","ImageOf","ImageOf desc","ImageSizeDescription","ImageSizeDescription desc","ImageWidth","ImageWidth desc","LongDescription","LongDescription desc","MediaCategory","MediaCategory desc","MediaHTML","MediaHTML desc","MediaKey","MediaKey desc","MediaKeyNumeric","MediaKeyNumeric desc","MediaModificationTimestamp","MediaModificationTimestamp desc","MediaObjectID","MediaObjectID desc","MediaStatus","MediaStatus desc","MediaType","MediaType desc","MediaURL","MediaURL desc","ModificationTimestamp","ModificationTimestamp desc","Order","Order desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemMediaKey","OriginatingSystemMediaKey desc","OriginatingSystemName","OriginatingSystemName desc","Permission","Permission desc","PreferredPhotoYN","PreferredPhotoYN desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","ShortDescription","ShortDescription desc","SourceSystemID","SourceSystemID desc","SourceSystemMediaKey","SourceSystemMediaKey desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","ImageHeight","ImageOf","ImageSizeDescription","ImageWidth","LongDescription","MediaCategory","MediaHTML","MediaKey","MediaKeyNumeric","MediaModificationTimestamp","MediaObjectID","MediaStatus","MediaType","MediaURL","ModificationTimestamp","Order","OriginatingSystemID","OriginatingSystemMediaKey","OriginatingSystemName","Permission","PreferredPhotoYN","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","ShortDescription","SourceSystemID","SourceSystemMediaKey","SourceSystemName"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Media","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Contacts('{ContactKey}')/SocialMedia":{"parameters":[{"description":"key: ContactKey","in":"path","name":"ContactKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related SocialMedia","tags":["Contacts"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ClassName desc","ModificationTimestamp","ModificationTimestamp desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SocialMediaKey","SocialMediaKey desc","SocialMediaKeyNumeric","SocialMediaKeyNumeric desc","SocialMediaType","SocialMediaType desc","SocialMediaUrlOrId","SocialMediaUrlOrId desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SocialMediaKey","SocialMediaKeyNumeric","SocialMediaType","SocialMediaUrlOrId"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of SocialMedia","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Media":{"get":{"summary":"Get entities from Media","tags":["Media"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","ImageHeight","ImageHeight desc","ImageOf","ImageOf desc","ImageSizeDescription","ImageSizeDescription desc","ImageWidth","ImageWidth desc","LongDescription","LongDescription desc","MediaCategory","MediaCategory desc","MediaHTML","MediaHTML desc","MediaKey","MediaKey desc","MediaKeyNumeric","MediaKeyNumeric desc","MediaModificationTimestamp","MediaModificationTimestamp desc","MediaObjectID","MediaObjectID desc","MediaStatus","MediaStatus desc","MediaType","MediaType desc","MediaURL","MediaURL desc","ModificationTimestamp","ModificationTimestamp desc","Order","Order desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemMediaKey","OriginatingSystemMediaKey desc","OriginatingSystemName","OriginatingSystemName desc","Permission","Permission desc","PreferredPhotoYN","PreferredPhotoYN desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","ShortDescription","ShortDescription desc","SourceSystemID","SourceSystemID desc","SourceSystemMediaKey","SourceSystemMediaKey desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","ImageHeight","ImageOf","ImageSizeDescription","ImageWidth","LongDescription","MediaCategory","MediaHTML","MediaKey","MediaKeyNumeric","MediaModificationTimestamp","MediaObjectID","MediaStatus","MediaType","MediaURL","ModificationTimestamp","Order","OriginatingSystemID","OriginatingSystemMediaKey","OriginatingSystemName","Permission","PreferredPhotoYN","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","ShortDescription","SourceSystemID","SourceSystemMediaKey","SourceSystemName"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Media","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to Media","tags":["Media"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Media-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Media"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Media('{MediaKey}')":{"parameters":[{"description":"key: MediaKey","in":"path","name":"MediaKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from Media by key","tags":["Media"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","ImageHeight","ImageOf","ImageSizeDescription","ImageWidth","LongDescription","MediaCategory","MediaHTML","MediaKey","MediaKeyNumeric","MediaModificationTimestamp","MediaObjectID","MediaStatus","MediaType","MediaURL","ModificationTimestamp","Order","OriginatingSystemID","OriginatingSystemMediaKey","OriginatingSystemName","Permission","PreferredPhotoYN","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","ShortDescription","SourceSystemID","SourceSystemMediaKey","SourceSystemName"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Media"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in Media","tags":["Media"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Media-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from Media","tags":["Media"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/HistoryTransactional":{"get":{"summary":"Get entities from HistoryTransactional","tags":["HistoryTransactional"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to HistoryTransactional","tags":["HistoryTransactional"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/HistoryTransactional('{HistoryTransactionalKey}')":{"parameters":[{"description":"key: HistoryTransactionalKey","in":"path","name":"HistoryTransactionalKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from HistoryTransactional by key","tags":["HistoryTransactional"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in HistoryTransactional","tags":["HistoryTransactional"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from HistoryTransactional","tags":["HistoryTransactional"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/HistoryTransactional('{HistoryTransactionalKey}')/ChangedByMember":{"parameters":[{"description":"key: HistoryTransactionalKey","in":"path","name":"HistoryTransactionalKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ChangedByMember","tags":["HistoryTransactional"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/HistoryTransactional('{HistoryTransactionalKey}')/OriginatingSystem":{"parameters":[{"description":"key: HistoryTransactionalKey","in":"path","name":"HistoryTransactionalKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OriginatingSystem","tags":["HistoryTransactional"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/HistoryTransactional('{HistoryTransactionalKey}')/SourceSystem":{"parameters":[{"description":"key: HistoryTransactionalKey","in":"path","name":"HistoryTransactionalKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related SourceSystem","tags":["HistoryTransactional"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/ContactListings":{"get":{"summary":"Get entities from ContactListings","tags":["ContactListings"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AgentNotesUnreadYN","AgentNotesUnreadYN desc","ClassName","ClassName desc","ContactKey","ContactKey desc","ContactKeyNumeric","ContactKeyNumeric desc","ContactListingPreference","ContactListingPreference desc","ContactListingsKey","ContactListingsKey desc","ContactListingsKeyNumeric","ContactListingsKeyNumeric desc","ContactLoginId","ContactLoginId desc","ContactNotesUnreadYN","ContactNotesUnreadYN desc","DirectEmailYN","DirectEmailYN desc","LastAgentNoteTimestamp","LastAgentNoteTimestamp desc","LastContactNoteTimestamp","LastContactNoteTimestamp desc","ListingId","ListingId desc","ListingKey","ListingKey desc","ListingKeyNumeric","ListingKeyNumeric desc","ListingModificationTimestamp","ListingModificationTimestamp desc","ListingSentTimestamp","ListingSentTimestamp desc","ListingViewedYN","ListingViewedYN desc","ModificationTimestamp","ModificationTimestamp desc","PortalLastVisitedTimestamp","PortalLastVisitedTimestamp desc","ResourceName","ResourceName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AgentNotesUnreadYN","ClassName","ContactKey","ContactKeyNumeric","ContactListingPreference","ContactListingsKey","ContactListingsKeyNumeric","ContactLoginId","ContactNotesUnreadYN","DirectEmailYN","LastAgentNoteTimestamp","LastContactNoteTimestamp","ListingId","ListingKey","ListingKeyNumeric","ListingModificationTimestamp","ListingSentTimestamp","ListingViewedYN","ModificationTimestamp","PortalLastVisitedTimestamp","ResourceName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Contact","Listing"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of ContactListings","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.ContactListings"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to ContactListings","tags":["ContactListings"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.ContactListings-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.ContactListings"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/ContactListings('{ContactListingsKey}')":{"parameters":[{"description":"key: ContactListingsKey","in":"path","name":"ContactListingsKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from ContactListings by key","tags":["ContactListings"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AgentNotesUnreadYN","ClassName","ContactKey","ContactKeyNumeric","ContactListingPreference","ContactListingsKey","ContactListingsKeyNumeric","ContactLoginId","ContactNotesUnreadYN","DirectEmailYN","LastAgentNoteTimestamp","LastContactNoteTimestamp","ListingId","ListingKey","ListingKeyNumeric","ListingModificationTimestamp","ListingSentTimestamp","ListingViewedYN","ModificationTimestamp","PortalLastVisitedTimestamp","ResourceName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Contact","Listing"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.ContactListings"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in ContactListings","tags":["ContactListings"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.ContactListings-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from ContactListings","tags":["ContactListings"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/ContactListings('{ContactListingsKey}')/Contact":{"parameters":[{"description":"key: ContactListingsKey","in":"path","name":"ContactListingsKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related Contact","tags":["ContactListings"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["Anniversary","AssistantEmail","AssistantName","AssistantPhone","AssistantPhoneExt","Birthdate","BusinessFax","Children","Company","ContactKey","ContactKeyNumeric","ContactLoginId","ContactPassword","ContactStatus","ContactType","Department","DirectPhone","Email","Email2","Email3","FirstName","FullName","HomeAddress1","HomeAddress2","HomeCarrierRoute","HomeCity","HomeCountry","HomeCountyOrParish","HomeFax","HomePhone","HomePostalCode","HomePostalCodePlus4","HomeStateOrProvince","JobTitle","Language","LastName","LeadSource","MiddleName","MobilePhone","ModificationTimestamp","NamePrefix","NameSuffix","Nickname","Notes","OfficePhone","OfficePhoneExt","OriginalEntryTimestamp","OriginatingSystemContactKey","OriginatingSystemID","OriginatingSystemName","OtherAddress1","OtherAddress2","OtherCarrierRoute","OtherCity","OtherCountry","OtherCountyOrParish","OtherPhoneType","OtherPostalCode","OtherPostalCodePlus4","OtherStateOrProvince","OwnerMemberID","OwnerMemberKey","OwnerMemberKeyNumeric","Pager","PhoneTTYTDD","PreferredAddress","PreferredPhone","ReferredBy","SocialMediaType","SourceSystemContactKey","SourceSystemID","SourceSystemName","SpousePartnerName","TollFreePhone","VoiceMail","VoiceMailExt","WorkAddress1","WorkAddress2","WorkCarrierRoute","WorkCity","WorkCountry","WorkCountyOrParish","WorkPostalCode","WorkPostalCodePlus4","WorkStateOrProvince"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","SourceSystem","OwnerMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Contacts"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/ContactListings('{ContactListingsKey}')/Listing":{"parameters":[{"description":"key: ContactListingsKey","in":"path","name":"ContactListingsKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related Listing","tags":["ContactListings"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AboveGradeFinishedArea","AboveGradeFinishedAreaSource","AboveGradeFinishedAreaUnits","AccessCode","AccessibilityFeatures","AdditionalParcelsDescription","AdditionalParcelsYN","AnchorsCoTenants","Appliances","ArchitecturalStyle","AssociationAmenities","AssociationFee","AssociationFee2","AssociationFee2Frequency","AssociationFeeFrequency","AssociationFeeIncludes","AssociationName","AssociationName2","AssociationPhone","AssociationPhone2","AssociationYN","AttachedGarageYN","AvailabilityDate","Basement","BasementYN","BathroomsFull","BathroomsHalf","BathroomsOneQuarter","BathroomsPartial","BathroomsThreeQuarter","BathroomsTotalInteger","BedroomsPossible","BedroomsTotal","BelowGradeFinishedArea","BelowGradeFinishedAreaSource","BelowGradeFinishedAreaUnits","BodyType","BuilderModel","BuilderName","BuildingAreaSource","BuildingAreaTotal","BuildingAreaUnits","BuildingFeatures","BuildingName","BusinessName","BusinessType","BuyerAgencyCompensation","BuyerAgencyCompensationType","BuyerAgentAOR","BuyerAgentDesignation","BuyerAgentDirectPhone","BuyerAgentEmail","BuyerAgentFax","BuyerAgentFirstName","BuyerAgentFullName","BuyerAgentHomePhone","BuyerAgentKey","BuyerAgentKeyNumeric","BuyerAgentLastName","BuyerAgentMiddleName","BuyerAgentMlsId","BuyerAgentMobilePhone","BuyerAgentNamePrefix","BuyerAgentNameSuffix","BuyerAgentOfficePhone","BuyerAgentOfficePhoneExt","BuyerAgentPager","BuyerAgentPreferredPhone","BuyerAgentPreferredPhoneExt","BuyerAgentStateLicense","BuyerAgentTollFreePhone","BuyerAgentURL","BuyerAgentVoiceMail","BuyerAgentVoiceMailExt","BuyerFinancing","BuyerOfficeAOR","BuyerOfficeEmail","BuyerOfficeFax","BuyerOfficeKey","BuyerOfficeKeyNumeric","BuyerOfficeMlsId","BuyerOfficeName","BuyerOfficePhone","BuyerOfficePhoneExt","BuyerOfficeURL","BuyerTeamKey","BuyerTeamKeyNumeric","BuyerTeamName","CableTvExpense","CancellationDate","CapRate","CarportSpaces","CarportYN","CarrierRoute","City","CityRegion","CloseDate","ClosePrice","CoBuyerAgentAOR","CoBuyerAgentDesignation","CoBuyerAgentDirectPhone","CoBuyerAgentEmail","CoBuyerAgentFax","CoBuyerAgentFirstName","CoBuyerAgentFullName","CoBuyerAgentHomePhone","CoBuyerAgentKey","CoBuyerAgentKeyNumeric","CoBuyerAgentLastName","CoBuyerAgentMiddleName","CoBuyerAgentMlsId","CoBuyerAgentMobilePhone","CoBuyerAgentNamePrefix","CoBuyerAgentNameSuffix","CoBuyerAgentOfficePhone","CoBuyerAgentOfficePhoneExt","CoBuyerAgentPager","CoBuyerAgentPreferredPhone","CoBuyerAgentPreferredPhoneExt","CoBuyerAgentStateLicense","CoBuyerAgentTollFreePhone","CoBuyerAgentURL","CoBuyerAgentVoiceMail","CoBuyerAgentVoiceMailExt","CoBuyerOfficeAOR","CoBuyerOfficeEmail","CoBuyerOfficeFax","CoBuyerOfficeKey","CoBuyerOfficeKeyNumeric","CoBuyerOfficeMlsId","CoBuyerOfficeName","CoBuyerOfficePhone","CoBuyerOfficePhoneExt","CoBuyerOfficeURL","CoListAgentAOR","CoListAgentDesignation","CoListAgentDirectPhone","CoListAgentEmail","CoListAgentFax","CoListAgentFirstName","CoListAgentFullName","CoListAgentHomePhone","CoListAgentKey","CoListAgentKeyNumeric","CoListAgentLastName","CoListAgentMiddleName","CoListAgentMlsId","CoListAgentMobilePhone","CoListAgentNamePrefix","CoListAgentNameSuffix","CoListAgentOfficePhone","CoListAgentOfficePhoneExt","CoListAgentPager","CoListAgentPreferredPhone","CoListAgentPreferredPhoneExt","CoListAgentStateLicense","CoListAgentTollFreePhone","CoListAgentURL","CoListAgentVoiceMail","CoListAgentVoiceMailExt","CoListOfficeAOR","CoListOfficeEmail","CoListOfficeFax","CoListOfficeKey","CoListOfficeKeyNumeric","CoListOfficeMlsId","CoListOfficeName","CoListOfficePhone","CoListOfficePhoneExt","CoListOfficeURL","CommonInterest","CommonWalls","CommunityFeatures","Concessions","ConcessionsAmount","ConcessionsComments","ConstructionMaterials","ContinentRegion","Contingency","ContingentDate","ContractStatusChangeDate","Cooling","CoolingYN","CopyrightNotice","Country","CountryRegion","CountyOrParish","CoveredSpaces","CropsIncludedYN","CrossStreet","CultivatedArea","CumulativeDaysOnMarket","CurrentFinancing","CurrentUse","DOH1","DOH2","DOH3","DaysOnMarket","DevelopmentStatus","DirectionFaces","Directions","Disclaimer","Disclosures","DistanceToBusComments","DistanceToBusNumeric","DistanceToBusUnits","DistanceToElectricComments","DistanceToElectricNumeric","DistanceToElectricUnits","DistanceToFreewayComments","DistanceToFreewayNumeric","DistanceToFreewayUnits","DistanceToGasComments","DistanceToGasNumeric","DistanceToGasUnits","DistanceToPhoneServiceComments","DistanceToPhoneServiceNumeric","DistanceToPhoneServiceUnits","DistanceToPlaceofWorshipComments","DistanceToPlaceofWorshipNumeric","DistanceToPlaceofWorshipUnits","DistanceToSchoolBusComments","DistanceToSchoolBusNumeric","DistanceToSchoolBusUnits","DistanceToSchoolsComments","DistanceToSchoolsNumeric","DistanceToSchoolsUnits","DistanceToSewerComments","DistanceToSewerNumeric","DistanceToSewerUnits","DistanceToShoppingComments","DistanceToShoppingNumeric","DistanceToShoppingUnits","DistanceToStreetComments","DistanceToStreetNumeric","DistanceToStreetUnits","DistanceToWaterComments","DistanceToWaterNumeric","DistanceToWaterUnits","DocumentsAvailable","DocumentsChangeTimestamp","DocumentsCount","DoorFeatures","DualVariableCompensationYN","Electric","ElectricExpense","ElectricOnPropertyYN","ElementarySchool","ElementarySchoolDistrict","Elevation","ElevationUnits","EntryLevel","EntryLocation","Exclusions","ExistingLeaseType","ExpirationDate","ExteriorFeatures","FarmCreditServiceInclYN","FarmLandAreaSource","FarmLandAreaUnits","Fencing","FinancialDataSource","FireplaceFeatures","FireplaceYN","FireplacesTotal","Flooring","FoundationArea","FoundationDetails","FrontageLength","FrontageType","FuelExpense","Furnished","FurnitureReplacementExpense","GarageSpaces","GarageYN","GardenerExpense","GrazingPermitsBlmYN","GrazingPermitsForestServiceYN","GrazingPermitsPrivateYN","GreenBuildingVerificationType","GreenEnergyEfficient","GreenEnergyGeneration","GreenIndoorAirQuality","GreenLocation","GreenSustainability","GreenWaterConservation","GrossIncome","GrossScheduledIncome","HabitableResidenceYN","Heating","HeatingYN","HighSchool","HighSchoolDistrict","HomeWarrantyYN","HorseAmenities","HorseYN","HoursDaysOfOperation","HoursDaysOfOperationDescription","Inclusions","IncomeIncludes","InsuranceExpense","InteriorFeatures","InternetAddressDisplayYN","InternetAutomatedValuationDisplayYN","InternetConsumerCommentYN","InternetEntireListingDisplayYN","IrrigationSource","IrrigationWaterRightsAcres","IrrigationWaterRightsYN","LaborInformation","LandLeaseAmount","LandLeaseAmountFrequency","LandLeaseExpirationDate","LandLeaseYN","Latitude","LaundryFeatures","LeasableArea","LeasableAreaUnits","LeaseAmount","LeaseAmountFrequency","LeaseAssignableYN","LeaseConsideredYN","LeaseExpiration","LeaseRenewalCompensation","LeaseRenewalOptionYN","LeaseTerm","Levels","License1","License2","License3","LicensesExpense","ListAOR","ListAgentAOR","ListAgentDesignation","ListAgentDirectPhone","ListAgentEmail","ListAgentFax","ListAgentFirstName","ListAgentFullName","ListAgentHomePhone","ListAgentKey","ListAgentKeyNumeric","ListAgentLastName","ListAgentMiddleName","ListAgentMlsId","ListAgentMobilePhone","ListAgentNamePrefix","ListAgentNameSuffix","ListAgentOfficePhone","ListAgentOfficePhoneExt","ListAgentPager","ListAgentPreferredPhone","ListAgentPreferredPhoneExt","ListAgentStateLicense","ListAgentTollFreePhone","ListAgentURL","ListAgentVoiceMail","ListAgentVoiceMailExt","ListOfficeAOR","ListOfficeEmail","ListOfficeFax","ListOfficeKey","ListOfficeKeyNumeric","ListOfficeMlsId","ListOfficeName","ListOfficePhone","ListOfficePhoneExt","ListOfficeURL","ListPrice","ListPriceLow","ListTeamKey","ListTeamKeyNumeric","ListTeamName","ListingAgreement","ListingContractDate","ListingId","ListingKey","ListingKeyNumeric","ListingService","ListingTerms","LivingArea","LivingAreaSource","LivingAreaUnits","LockBoxLocation","LockBoxSerialNumber","LockBoxType","Longitude","LotDimensionsSource","LotFeatures","LotSizeAcres","LotSizeArea","LotSizeDimensions","LotSizeSource","LotSizeSquareFeet","LotSizeUnits","MLSAreaMajor","MLSAreaMinor","MainLevelBathrooms","MainLevelBedrooms","MaintenanceExpense","MajorChangeTimestamp","MajorChangeType","Make","ManagerExpense","MapCoordinate","MapCoordinateSource","MapURL","MiddleOrJuniorSchool","MiddleOrJuniorSchoolDistrict","MlsStatus","MobileDimUnits","MobileHomeRemainsYN","MobileLength","MobileWidth","Model","ModificationTimestamp","NetOperatingIncome","NewConstructionYN","NewTaxesExpense","NumberOfBuildings","NumberOfFullTimeEmployees","NumberOfLots","NumberOfPads","NumberOfPartTimeEmployees","NumberOfSeparateElectricMeters","NumberOfSeparateGasMeters","NumberOfSeparateWaterMeters","NumberOfUnitsInCommunity","NumberOfUnitsLeased","NumberOfUnitsMoMo","NumberOfUnitsTotal","NumberOfUnitsVacant","OccupantName","OccupantPhone","OccupantType","OffMarketDate","OffMarketTimestamp","OnMarketDate","OnMarketTimestamp","OpenParkingSpaces","OpenParkingYN","OperatingExpense","OperatingExpenseIncludes","OriginalEntryTimestamp","OriginalListPrice","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","OtherEquipment","OtherExpense","OtherParking","OtherStructures","OwnerName","OwnerPays","OwnerPhone","Ownership","OwnershipType","ParcelNumber","ParkManagerName","ParkManagerPhone","ParkName","ParkingFeatures","ParkingTotal","PastureArea","PatioAndPorchFeatures","PendingTimestamp","PestControlExpense","PetsAllowed","PhotosChangeTimestamp","PhotosCount","PoolExpense","PoolFeatures","PoolPrivateYN","Possession","PossibleUse","PostalCity","PostalCode","PostalCodePlus4","PowerProductionType","PreviousListPrice","PriceChangeTimestamp","PrivateOfficeRemarks","PrivateRemarks","ProfessionalManagementExpense","PropertyAttachedYN","PropertyCondition","PropertySubType","PropertyType","PublicRemarks","PublicSurveyRange","PublicSurveySection","PublicSurveyTownship","PurchaseContractDate","RVParkingDimensions","RangeArea","RentControlYN","RentIncludes","RoadFrontageType","RoadResponsibility","RoadSurfaceType","Roof","RoomType","RoomsTotal","SeatingCapacity","SecurityFeatures","SeniorCommunityYN","SerialU","SerialX","SerialXX","Sewer","ShowingAdvanceNotice","ShowingAttendedYN","ShowingContactName","ShowingContactPhone","ShowingContactPhoneExt","ShowingContactType","ShowingDays","ShowingEndTime","ShowingInstructions","ShowingRequirements","ShowingStartTime","SignOnPropertyYN","Skirt","SourceSystemID","SourceSystemKey","SourceSystemName","SpaFeatures","SpaYN","SpecialLicenses","SpecialListingConditions","StandardStatus","StateOrProvince","StateRegion","StatusChangeTimestamp","Stories","StoriesTotal","StreetAdditionalInfo","StreetDirPrefix","StreetDirSuffix","StreetName","StreetNumber","StreetNumberNumeric","StreetSuffix","StreetSuffixModifier","StructureType","SubAgencyCompensation","SubAgencyCompensationType","SubdivisionName","SuppliesExpense","SyndicateTo","SyndicationRemarks","TaxAnnualAmount","TaxAssessedValue","TaxBlock","TaxBookNumber","TaxLegalDescription","TaxLot","TaxMapNumber","TaxOtherAnnualAssessmentAmount","TaxParcelLetter","TaxStatusCurrent","TaxTract","TaxYear","TenantPays","Topography","TotalActualRent","Township","TransactionBrokerCompensation","TransactionBrokerCompensationType","TrashExpense","UnitNumber","UnitTypeType","UnitsFurnished","UniversalPropertyId","UniversalPropertySubId","UnparsedAddress","Utilities","VacancyAllowance","VacancyAllowanceRate","Vegetation","VideosChangeTimestamp","VideosCount","View","ViewYN","VirtualTourURLBranded","VirtualTourURLUnbranded","WalkScore","WaterBodyName","WaterSewerExpense","WaterSource","WaterfrontFeatures","WaterfrontYN","WindowFeatures","WithdrawnDate","WoodedArea","WorkmansCompensationExpense","YearBuilt","YearBuiltDetails","YearBuiltEffective","YearBuiltSource","YearEstablished","YearsCurrentOwner","Zoning","ZoningDescription"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","BuyerAgent","BuyerOffice","CoBuyerAgent","CoBuyerOffice","CoListAgent","CoListOffice","ListAgent","ListOffice","BuyerTeam","ListTeam","SourceSystem","HistoryTransactional","Media","SocialMedia","OpenHouse"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Property"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/InternetTracking":{"get":{"summary":"Get entities from InternetTracking","tags":["InternetTracking"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ActorCity","ActorCity desc","ActorEmail","ActorEmail desc","ActorID","ActorID desc","ActorIP","ActorIP desc","ActorKey","ActorKey desc","ActorKeyNumeric","ActorKeyNumeric desc","ActorLatitude","ActorLatitude desc","ActorLongitude","ActorLongitude desc","ActorOriginatingSystemID","ActorOriginatingSystemID desc","ActorOriginatingSystemName","ActorOriginatingSystemName desc","ActorPhone","ActorPhone desc","ActorPhoneExt","ActorPhoneExt desc","ActorPostalCode","ActorPostalCode desc","ActorPostalCodePlus4","ActorPostalCodePlus4 desc","ActorRegion","ActorRegion desc","ActorSourceSystemID","ActorSourceSystemID desc","ActorSourceSystemName","ActorSourceSystemName desc","ActorStateOrProvince","ActorStateOrProvince desc","ActorType","ActorType desc","ColorDepth","ColorDepth desc","DeviceType","DeviceType desc","EventDescription","EventDescription desc","EventKey","EventKey desc","EventKeyNumeric","EventKeyNumeric desc","EventLabel","EventLabel desc","EventOriginatingSystemID","EventOriginatingSystemID desc","EventOriginatingSystemName","EventOriginatingSystemName desc","EventSourceSystemID","EventSourceSystemID desc","EventSourceSystemName","EventSourceSystemName desc","EventTarget","EventTarget desc","EventTimestamp","EventTimestamp desc","EventType","EventType desc","ObjectID","ObjectID desc","ObjectIdType","ObjectIdType desc","ObjectKey","ObjectKey desc","ObjectKeyNumeric","ObjectKeyNumeric desc","ObjectOriginatingSystemID","ObjectOriginatingSystemID desc","ObjectOriginatingSystemName","ObjectOriginatingSystemName desc","ObjectSourceSystemID","ObjectSourceSystemID desc","ObjectSourceSystemName","ObjectSourceSystemName desc","ObjectType","ObjectType desc","ObjectURL","ObjectURL desc","OriginatingSystemActorKey","OriginatingSystemActorKey desc","OriginatingSystemEventKey","OriginatingSystemEventKey desc","OriginatingSystemObjectKey","OriginatingSystemObjectKey desc","ReferringURL","ReferringURL desc","ScreenHeight","ScreenHeight desc","ScreenWidth","ScreenWidth desc","SessionID","SessionID desc","SourceSystemActorKey","SourceSystemActorKey desc","SourceSystemEventKey","SourceSystemEventKey desc","SourceSystemObjectKey","SourceSystemObjectKey desc","TimeZoneOffset","TimeZoneOffset desc","UserAgent","UserAgent desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ActorCity","ActorEmail","ActorID","ActorIP","ActorKey","ActorKeyNumeric","ActorLatitude","ActorLongitude","ActorOriginatingSystemID","ActorOriginatingSystemName","ActorPhone","ActorPhoneExt","ActorPostalCode","ActorPostalCodePlus4","ActorRegion","ActorSourceSystemID","ActorSourceSystemName","ActorStateOrProvince","ActorType","ColorDepth","DeviceType","EventDescription","EventKey","EventKeyNumeric","EventLabel","EventOriginatingSystemID","EventOriginatingSystemName","EventSourceSystemID","EventSourceSystemName","EventTarget","EventTimestamp","EventType","ObjectID","ObjectIdType","ObjectKey","ObjectKeyNumeric","ObjectOriginatingSystemID","ObjectOriginatingSystemName","ObjectSourceSystemID","ObjectSourceSystemName","ObjectType","ObjectURL","OriginatingSystemActorKey","OriginatingSystemEventKey","OriginatingSystemObjectKey","ReferringURL","ScreenHeight","ScreenWidth","SessionID","SourceSystemActorKey","SourceSystemEventKey","SourceSystemObjectKey","TimeZoneOffset","UserAgent"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ActorOriginatingSystem","ActorSourceSystem","EventOriginatingSystem","EventSourceSystem","ObjectOriginatingSystem","ObjectSourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of InternetTracking","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.InternetTracking"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to InternetTracking","tags":["InternetTracking"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.InternetTracking-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.InternetTracking"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/InternetTracking('{EventKey}')":{"parameters":[{"description":"key: EventKey","in":"path","name":"EventKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from InternetTracking by key","tags":["InternetTracking"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ActorCity","ActorEmail","ActorID","ActorIP","ActorKey","ActorKeyNumeric","ActorLatitude","ActorLongitude","ActorOriginatingSystemID","ActorOriginatingSystemName","ActorPhone","ActorPhoneExt","ActorPostalCode","ActorPostalCodePlus4","ActorRegion","ActorSourceSystemID","ActorSourceSystemName","ActorStateOrProvince","ActorType","ColorDepth","DeviceType","EventDescription","EventKey","EventKeyNumeric","EventLabel","EventOriginatingSystemID","EventOriginatingSystemName","EventSourceSystemID","EventSourceSystemName","EventTarget","EventTimestamp","EventType","ObjectID","ObjectIdType","ObjectKey","ObjectKeyNumeric","ObjectOriginatingSystemID","ObjectOriginatingSystemName","ObjectSourceSystemID","ObjectSourceSystemName","ObjectType","ObjectURL","OriginatingSystemActorKey","OriginatingSystemEventKey","OriginatingSystemObjectKey","ReferringURL","ScreenHeight","ScreenWidth","SessionID","SourceSystemActorKey","SourceSystemEventKey","SourceSystemObjectKey","TimeZoneOffset","UserAgent"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ActorOriginatingSystem","ActorSourceSystem","EventOriginatingSystem","EventSourceSystem","ObjectOriginatingSystem","ObjectSourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.InternetTracking"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in InternetTracking","tags":["InternetTracking"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.InternetTracking-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from InternetTracking","tags":["InternetTracking"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/InternetTracking('{EventKey}')/ActorOriginatingSystem":{"parameters":[{"description":"key: EventKey","in":"path","name":"EventKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ActorOriginatingSystem","tags":["InternetTracking"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/InternetTracking('{EventKey}')/ActorSourceSystem":{"parameters":[{"description":"key: EventKey","in":"path","name":"EventKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ActorSourceSystem","tags":["InternetTracking"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/InternetTracking('{EventKey}')/EventOriginatingSystem":{"parameters":[{"description":"key: EventKey","in":"path","name":"EventKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related EventOriginatingSystem","tags":["InternetTracking"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/InternetTracking('{EventKey}')/EventSourceSystem":{"parameters":[{"description":"key: EventKey","in":"path","name":"EventKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related EventSourceSystem","tags":["InternetTracking"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/InternetTracking('{EventKey}')/ObjectOriginatingSystem":{"parameters":[{"description":"key: EventKey","in":"path","name":"EventKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ObjectOriginatingSystem","tags":["InternetTracking"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/InternetTracking('{EventKey}')/ObjectSourceSystem":{"parameters":[{"description":"key: EventKey","in":"path","name":"EventKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ObjectSourceSystem","tags":["InternetTracking"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/SavedSearch":{"get":{"summary":"Get entities from SavedSearch","tags":["SavedSearch"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ClassName desc","MemberKey","MemberKey desc","MemberKeyNumeric","MemberKeyNumeric desc","MemberMlsId","MemberMlsId desc","ModificationTimestamp","ModificationTimestamp desc","OriginalEntryTimestamp","OriginalEntryTimestamp desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemKey","OriginatingSystemKey desc","OriginatingSystemMemberKey","OriginatingSystemMemberKey desc","OriginatingSystemMemberName","OriginatingSystemMemberName desc","OriginatingSystemName","OriginatingSystemName desc","ResourceName","ResourceName desc","SavedSearchDescription","SavedSearchDescription desc","SavedSearchKey","SavedSearchKey desc","SavedSearchKeyNumeric","SavedSearchKeyNumeric desc","SavedSearchName","SavedSearchName desc","SavedSearchType","SavedSearchType desc","SearchQuery","SearchQuery desc","SearchQueryExceptionDetails","SearchQueryExceptionDetails desc","SearchQueryExceptions","SearchQueryExceptions desc","SearchQueryHumanReadable","SearchQueryHumanReadable desc","SearchQueryType","SearchQueryType desc","SourceSystemID","SourceSystemID desc","SourceSystemKey","SourceSystemKey desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","MemberKey","MemberKeyNumeric","MemberMlsId","ModificationTimestamp","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemMemberKey","OriginatingSystemMemberName","OriginatingSystemName","ResourceName","SavedSearchDescription","SavedSearchKey","SavedSearchKeyNumeric","SavedSearchName","SavedSearchType","SearchQuery","SearchQueryExceptionDetails","SearchQueryExceptions","SearchQueryHumanReadable","SearchQueryType","SourceSystemID","SourceSystemKey","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Member","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of SavedSearch","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SavedSearch"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to SavedSearch","tags":["SavedSearch"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.SavedSearch-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.SavedSearch"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/SavedSearch('{SavedSearchKey}')":{"parameters":[{"description":"key: SavedSearchKey","in":"path","name":"SavedSearchKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from SavedSearch by key","tags":["SavedSearch"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","MemberKey","MemberKeyNumeric","MemberMlsId","ModificationTimestamp","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemMemberKey","OriginatingSystemMemberName","OriginatingSystemName","ResourceName","SavedSearchDescription","SavedSearchKey","SavedSearchKeyNumeric","SavedSearchName","SavedSearchType","SearchQuery","SearchQueryExceptionDetails","SearchQueryExceptions","SearchQueryHumanReadable","SearchQueryType","SourceSystemID","SourceSystemKey","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Member","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.SavedSearch"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in SavedSearch","tags":["SavedSearch"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.SavedSearch-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from SavedSearch","tags":["SavedSearch"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/SavedSearch('{SavedSearchKey}')/Member":{"parameters":[{"description":"key: SavedSearchKey","in":"path","name":"SavedSearchKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related Member","tags":["SavedSearch"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/SavedSearch('{SavedSearchKey}')/OriginatingSystem":{"parameters":[{"description":"key: SavedSearchKey","in":"path","name":"SavedSearchKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OriginatingSystem","tags":["SavedSearch"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/SavedSearch('{SavedSearchKey}')/SourceSystem":{"parameters":[{"description":"key: SavedSearchKey","in":"path","name":"SavedSearchKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related SourceSystem","tags":["SavedSearch"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OpenHouse":{"get":{"summary":"Get entities from OpenHouse","tags":["OpenHouse"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AppointmentRequiredYN","AppointmentRequiredYN desc","ListingId","ListingId desc","ListingKey","ListingKey desc","ListingKeyNumeric","ListingKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","OpenHouseAttendedBy","OpenHouseAttendedBy desc","OpenHouseDate","OpenHouseDate desc","OpenHouseEndTime","OpenHouseEndTime desc","OpenHouseId","OpenHouseId desc","OpenHouseKey","OpenHouseKey desc","OpenHouseKeyNumeric","OpenHouseKeyNumeric desc","OpenHouseRemarks","OpenHouseRemarks desc","OpenHouseStartTime","OpenHouseStartTime desc","OpenHouseStatus","OpenHouseStatus desc","OpenHouseType","OpenHouseType desc","OriginalEntryTimestamp","OriginalEntryTimestamp desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemKey","OriginatingSystemKey desc","OriginatingSystemName","OriginatingSystemName desc","Refreshments","Refreshments desc","ShowingAgentFirstName","ShowingAgentFirstName desc","ShowingAgentKey","ShowingAgentKey desc","ShowingAgentKeyNumeric","ShowingAgentKeyNumeric desc","ShowingAgentLastName","ShowingAgentLastName desc","ShowingAgentMlsID","ShowingAgentMlsID desc","SourceSystemID","SourceSystemID desc","SourceSystemKey","SourceSystemKey desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AppointmentRequiredYN","ListingId","ListingKey","ListingKeyNumeric","ModificationTimestamp","OpenHouseAttendedBy","OpenHouseDate","OpenHouseEndTime","OpenHouseId","OpenHouseKey","OpenHouseKeyNumeric","OpenHouseRemarks","OpenHouseStartTime","OpenHouseStatus","OpenHouseType","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","Refreshments","ShowingAgentFirstName","ShowingAgentKey","ShowingAgentKeyNumeric","ShowingAgentLastName","ShowingAgentMlsID","SourceSystemID","SourceSystemKey","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Listing","OriginatingSystem","ShowingAgent","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of OpenHouse","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.OpenHouse"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to OpenHouse","tags":["OpenHouse"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OpenHouse-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OpenHouse"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OpenHouse('{OpenHouseKey}')":{"parameters":[{"description":"key: OpenHouseKey","in":"path","name":"OpenHouseKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from OpenHouse by key","tags":["OpenHouse"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AppointmentRequiredYN","ListingId","ListingKey","ListingKeyNumeric","ModificationTimestamp","OpenHouseAttendedBy","OpenHouseDate","OpenHouseEndTime","OpenHouseId","OpenHouseKey","OpenHouseKeyNumeric","OpenHouseRemarks","OpenHouseStartTime","OpenHouseStatus","OpenHouseType","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","Refreshments","ShowingAgentFirstName","ShowingAgentKey","ShowingAgentKeyNumeric","ShowingAgentLastName","ShowingAgentMlsID","SourceSystemID","SourceSystemKey","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Listing","OriginatingSystem","ShowingAgent","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OpenHouse"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in OpenHouse","tags":["OpenHouse"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OpenHouse-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from OpenHouse","tags":["OpenHouse"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/OpenHouse('{OpenHouseKey}')/Listing":{"parameters":[{"description":"key: OpenHouseKey","in":"path","name":"OpenHouseKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related Listing","tags":["OpenHouse"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AboveGradeFinishedArea","AboveGradeFinishedAreaSource","AboveGradeFinishedAreaUnits","AccessCode","AccessibilityFeatures","AdditionalParcelsDescription","AdditionalParcelsYN","AnchorsCoTenants","Appliances","ArchitecturalStyle","AssociationAmenities","AssociationFee","AssociationFee2","AssociationFee2Frequency","AssociationFeeFrequency","AssociationFeeIncludes","AssociationName","AssociationName2","AssociationPhone","AssociationPhone2","AssociationYN","AttachedGarageYN","AvailabilityDate","Basement","BasementYN","BathroomsFull","BathroomsHalf","BathroomsOneQuarter","BathroomsPartial","BathroomsThreeQuarter","BathroomsTotalInteger","BedroomsPossible","BedroomsTotal","BelowGradeFinishedArea","BelowGradeFinishedAreaSource","BelowGradeFinishedAreaUnits","BodyType","BuilderModel","BuilderName","BuildingAreaSource","BuildingAreaTotal","BuildingAreaUnits","BuildingFeatures","BuildingName","BusinessName","BusinessType","BuyerAgencyCompensation","BuyerAgencyCompensationType","BuyerAgentAOR","BuyerAgentDesignation","BuyerAgentDirectPhone","BuyerAgentEmail","BuyerAgentFax","BuyerAgentFirstName","BuyerAgentFullName","BuyerAgentHomePhone","BuyerAgentKey","BuyerAgentKeyNumeric","BuyerAgentLastName","BuyerAgentMiddleName","BuyerAgentMlsId","BuyerAgentMobilePhone","BuyerAgentNamePrefix","BuyerAgentNameSuffix","BuyerAgentOfficePhone","BuyerAgentOfficePhoneExt","BuyerAgentPager","BuyerAgentPreferredPhone","BuyerAgentPreferredPhoneExt","BuyerAgentStateLicense","BuyerAgentTollFreePhone","BuyerAgentURL","BuyerAgentVoiceMail","BuyerAgentVoiceMailExt","BuyerFinancing","BuyerOfficeAOR","BuyerOfficeEmail","BuyerOfficeFax","BuyerOfficeKey","BuyerOfficeKeyNumeric","BuyerOfficeMlsId","BuyerOfficeName","BuyerOfficePhone","BuyerOfficePhoneExt","BuyerOfficeURL","BuyerTeamKey","BuyerTeamKeyNumeric","BuyerTeamName","CableTvExpense","CancellationDate","CapRate","CarportSpaces","CarportYN","CarrierRoute","City","CityRegion","CloseDate","ClosePrice","CoBuyerAgentAOR","CoBuyerAgentDesignation","CoBuyerAgentDirectPhone","CoBuyerAgentEmail","CoBuyerAgentFax","CoBuyerAgentFirstName","CoBuyerAgentFullName","CoBuyerAgentHomePhone","CoBuyerAgentKey","CoBuyerAgentKeyNumeric","CoBuyerAgentLastName","CoBuyerAgentMiddleName","CoBuyerAgentMlsId","CoBuyerAgentMobilePhone","CoBuyerAgentNamePrefix","CoBuyerAgentNameSuffix","CoBuyerAgentOfficePhone","CoBuyerAgentOfficePhoneExt","CoBuyerAgentPager","CoBuyerAgentPreferredPhone","CoBuyerAgentPreferredPhoneExt","CoBuyerAgentStateLicense","CoBuyerAgentTollFreePhone","CoBuyerAgentURL","CoBuyerAgentVoiceMail","CoBuyerAgentVoiceMailExt","CoBuyerOfficeAOR","CoBuyerOfficeEmail","CoBuyerOfficeFax","CoBuyerOfficeKey","CoBuyerOfficeKeyNumeric","CoBuyerOfficeMlsId","CoBuyerOfficeName","CoBuyerOfficePhone","CoBuyerOfficePhoneExt","CoBuyerOfficeURL","CoListAgentAOR","CoListAgentDesignation","CoListAgentDirectPhone","CoListAgentEmail","CoListAgentFax","CoListAgentFirstName","CoListAgentFullName","CoListAgentHomePhone","CoListAgentKey","CoListAgentKeyNumeric","CoListAgentLastName","CoListAgentMiddleName","CoListAgentMlsId","CoListAgentMobilePhone","CoListAgentNamePrefix","CoListAgentNameSuffix","CoListAgentOfficePhone","CoListAgentOfficePhoneExt","CoListAgentPager","CoListAgentPreferredPhone","CoListAgentPreferredPhoneExt","CoListAgentStateLicense","CoListAgentTollFreePhone","CoListAgentURL","CoListAgentVoiceMail","CoListAgentVoiceMailExt","CoListOfficeAOR","CoListOfficeEmail","CoListOfficeFax","CoListOfficeKey","CoListOfficeKeyNumeric","CoListOfficeMlsId","CoListOfficeName","CoListOfficePhone","CoListOfficePhoneExt","CoListOfficeURL","CommonInterest","CommonWalls","CommunityFeatures","Concessions","ConcessionsAmount","ConcessionsComments","ConstructionMaterials","ContinentRegion","Contingency","ContingentDate","ContractStatusChangeDate","Cooling","CoolingYN","CopyrightNotice","Country","CountryRegion","CountyOrParish","CoveredSpaces","CropsIncludedYN","CrossStreet","CultivatedArea","CumulativeDaysOnMarket","CurrentFinancing","CurrentUse","DOH1","DOH2","DOH3","DaysOnMarket","DevelopmentStatus","DirectionFaces","Directions","Disclaimer","Disclosures","DistanceToBusComments","DistanceToBusNumeric","DistanceToBusUnits","DistanceToElectricComments","DistanceToElectricNumeric","DistanceToElectricUnits","DistanceToFreewayComments","DistanceToFreewayNumeric","DistanceToFreewayUnits","DistanceToGasComments","DistanceToGasNumeric","DistanceToGasUnits","DistanceToPhoneServiceComments","DistanceToPhoneServiceNumeric","DistanceToPhoneServiceUnits","DistanceToPlaceofWorshipComments","DistanceToPlaceofWorshipNumeric","DistanceToPlaceofWorshipUnits","DistanceToSchoolBusComments","DistanceToSchoolBusNumeric","DistanceToSchoolBusUnits","DistanceToSchoolsComments","DistanceToSchoolsNumeric","DistanceToSchoolsUnits","DistanceToSewerComments","DistanceToSewerNumeric","DistanceToSewerUnits","DistanceToShoppingComments","DistanceToShoppingNumeric","DistanceToShoppingUnits","DistanceToStreetComments","DistanceToStreetNumeric","DistanceToStreetUnits","DistanceToWaterComments","DistanceToWaterNumeric","DistanceToWaterUnits","DocumentsAvailable","DocumentsChangeTimestamp","DocumentsCount","DoorFeatures","DualVariableCompensationYN","Electric","ElectricExpense","ElectricOnPropertyYN","ElementarySchool","ElementarySchoolDistrict","Elevation","ElevationUnits","EntryLevel","EntryLocation","Exclusions","ExistingLeaseType","ExpirationDate","ExteriorFeatures","FarmCreditServiceInclYN","FarmLandAreaSource","FarmLandAreaUnits","Fencing","FinancialDataSource","FireplaceFeatures","FireplaceYN","FireplacesTotal","Flooring","FoundationArea","FoundationDetails","FrontageLength","FrontageType","FuelExpense","Furnished","FurnitureReplacementExpense","GarageSpaces","GarageYN","GardenerExpense","GrazingPermitsBlmYN","GrazingPermitsForestServiceYN","GrazingPermitsPrivateYN","GreenBuildingVerificationType","GreenEnergyEfficient","GreenEnergyGeneration","GreenIndoorAirQuality","GreenLocation","GreenSustainability","GreenWaterConservation","GrossIncome","GrossScheduledIncome","HabitableResidenceYN","Heating","HeatingYN","HighSchool","HighSchoolDistrict","HomeWarrantyYN","HorseAmenities","HorseYN","HoursDaysOfOperation","HoursDaysOfOperationDescription","Inclusions","IncomeIncludes","InsuranceExpense","InteriorFeatures","InternetAddressDisplayYN","InternetAutomatedValuationDisplayYN","InternetConsumerCommentYN","InternetEntireListingDisplayYN","IrrigationSource","IrrigationWaterRightsAcres","IrrigationWaterRightsYN","LaborInformation","LandLeaseAmount","LandLeaseAmountFrequency","LandLeaseExpirationDate","LandLeaseYN","Latitude","LaundryFeatures","LeasableArea","LeasableAreaUnits","LeaseAmount","LeaseAmountFrequency","LeaseAssignableYN","LeaseConsideredYN","LeaseExpiration","LeaseRenewalCompensation","LeaseRenewalOptionYN","LeaseTerm","Levels","License1","License2","License3","LicensesExpense","ListAOR","ListAgentAOR","ListAgentDesignation","ListAgentDirectPhone","ListAgentEmail","ListAgentFax","ListAgentFirstName","ListAgentFullName","ListAgentHomePhone","ListAgentKey","ListAgentKeyNumeric","ListAgentLastName","ListAgentMiddleName","ListAgentMlsId","ListAgentMobilePhone","ListAgentNamePrefix","ListAgentNameSuffix","ListAgentOfficePhone","ListAgentOfficePhoneExt","ListAgentPager","ListAgentPreferredPhone","ListAgentPreferredPhoneExt","ListAgentStateLicense","ListAgentTollFreePhone","ListAgentURL","ListAgentVoiceMail","ListAgentVoiceMailExt","ListOfficeAOR","ListOfficeEmail","ListOfficeFax","ListOfficeKey","ListOfficeKeyNumeric","ListOfficeMlsId","ListOfficeName","ListOfficePhone","ListOfficePhoneExt","ListOfficeURL","ListPrice","ListPriceLow","ListTeamKey","ListTeamKeyNumeric","ListTeamName","ListingAgreement","ListingContractDate","ListingId","ListingKey","ListingKeyNumeric","ListingService","ListingTerms","LivingArea","LivingAreaSource","LivingAreaUnits","LockBoxLocation","LockBoxSerialNumber","LockBoxType","Longitude","LotDimensionsSource","LotFeatures","LotSizeAcres","LotSizeArea","LotSizeDimensions","LotSizeSource","LotSizeSquareFeet","LotSizeUnits","MLSAreaMajor","MLSAreaMinor","MainLevelBathrooms","MainLevelBedrooms","MaintenanceExpense","MajorChangeTimestamp","MajorChangeType","Make","ManagerExpense","MapCoordinate","MapCoordinateSource","MapURL","MiddleOrJuniorSchool","MiddleOrJuniorSchoolDistrict","MlsStatus","MobileDimUnits","MobileHomeRemainsYN","MobileLength","MobileWidth","Model","ModificationTimestamp","NetOperatingIncome","NewConstructionYN","NewTaxesExpense","NumberOfBuildings","NumberOfFullTimeEmployees","NumberOfLots","NumberOfPads","NumberOfPartTimeEmployees","NumberOfSeparateElectricMeters","NumberOfSeparateGasMeters","NumberOfSeparateWaterMeters","NumberOfUnitsInCommunity","NumberOfUnitsLeased","NumberOfUnitsMoMo","NumberOfUnitsTotal","NumberOfUnitsVacant","OccupantName","OccupantPhone","OccupantType","OffMarketDate","OffMarketTimestamp","OnMarketDate","OnMarketTimestamp","OpenParkingSpaces","OpenParkingYN","OperatingExpense","OperatingExpenseIncludes","OriginalEntryTimestamp","OriginalListPrice","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","OtherEquipment","OtherExpense","OtherParking","OtherStructures","OwnerName","OwnerPays","OwnerPhone","Ownership","OwnershipType","ParcelNumber","ParkManagerName","ParkManagerPhone","ParkName","ParkingFeatures","ParkingTotal","PastureArea","PatioAndPorchFeatures","PendingTimestamp","PestControlExpense","PetsAllowed","PhotosChangeTimestamp","PhotosCount","PoolExpense","PoolFeatures","PoolPrivateYN","Possession","PossibleUse","PostalCity","PostalCode","PostalCodePlus4","PowerProductionType","PreviousListPrice","PriceChangeTimestamp","PrivateOfficeRemarks","PrivateRemarks","ProfessionalManagementExpense","PropertyAttachedYN","PropertyCondition","PropertySubType","PropertyType","PublicRemarks","PublicSurveyRange","PublicSurveySection","PublicSurveyTownship","PurchaseContractDate","RVParkingDimensions","RangeArea","RentControlYN","RentIncludes","RoadFrontageType","RoadResponsibility","RoadSurfaceType","Roof","RoomType","RoomsTotal","SeatingCapacity","SecurityFeatures","SeniorCommunityYN","SerialU","SerialX","SerialXX","Sewer","ShowingAdvanceNotice","ShowingAttendedYN","ShowingContactName","ShowingContactPhone","ShowingContactPhoneExt","ShowingContactType","ShowingDays","ShowingEndTime","ShowingInstructions","ShowingRequirements","ShowingStartTime","SignOnPropertyYN","Skirt","SourceSystemID","SourceSystemKey","SourceSystemName","SpaFeatures","SpaYN","SpecialLicenses","SpecialListingConditions","StandardStatus","StateOrProvince","StateRegion","StatusChangeTimestamp","Stories","StoriesTotal","StreetAdditionalInfo","StreetDirPrefix","StreetDirSuffix","StreetName","StreetNumber","StreetNumberNumeric","StreetSuffix","StreetSuffixModifier","StructureType","SubAgencyCompensation","SubAgencyCompensationType","SubdivisionName","SuppliesExpense","SyndicateTo","SyndicationRemarks","TaxAnnualAmount","TaxAssessedValue","TaxBlock","TaxBookNumber","TaxLegalDescription","TaxLot","TaxMapNumber","TaxOtherAnnualAssessmentAmount","TaxParcelLetter","TaxStatusCurrent","TaxTract","TaxYear","TenantPays","Topography","TotalActualRent","Township","TransactionBrokerCompensation","TransactionBrokerCompensationType","TrashExpense","UnitNumber","UnitTypeType","UnitsFurnished","UniversalPropertyId","UniversalPropertySubId","UnparsedAddress","Utilities","VacancyAllowance","VacancyAllowanceRate","Vegetation","VideosChangeTimestamp","VideosCount","View","ViewYN","VirtualTourURLBranded","VirtualTourURLUnbranded","WalkScore","WaterBodyName","WaterSewerExpense","WaterSource","WaterfrontFeatures","WaterfrontYN","WindowFeatures","WithdrawnDate","WoodedArea","WorkmansCompensationExpense","YearBuilt","YearBuiltDetails","YearBuiltEffective","YearBuiltSource","YearEstablished","YearsCurrentOwner","Zoning","ZoningDescription"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","BuyerAgent","BuyerOffice","CoBuyerAgent","CoBuyerOffice","CoListAgent","CoListOffice","ListAgent","ListOffice","BuyerTeam","ListTeam","SourceSystem","HistoryTransactional","Media","SocialMedia","OpenHouse"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Property"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OpenHouse('{OpenHouseKey}')/OriginatingSystem":{"parameters":[{"description":"key: OpenHouseKey","in":"path","name":"OpenHouseKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OriginatingSystem","tags":["OpenHouse"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OpenHouse('{OpenHouseKey}')/ShowingAgent":{"parameters":[{"description":"key: OpenHouseKey","in":"path","name":"OpenHouseKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ShowingAgent","tags":["OpenHouse"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OpenHouse('{OpenHouseKey}')/SourceSystem":{"parameters":[{"description":"key: OpenHouseKey","in":"path","name":"OpenHouseKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related SourceSystem","tags":["OpenHouse"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OpenHouse('{OpenHouseKey}')/HistoryTransactional":{"parameters":[{"description":"key: OpenHouseKey","in":"path","name":"OpenHouseKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["OpenHouse"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OpenHouse('{OpenHouseKey}')/Media":{"parameters":[{"description":"key: OpenHouseKey","in":"path","name":"OpenHouseKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related Media","tags":["OpenHouse"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","ImageHeight","ImageHeight desc","ImageOf","ImageOf desc","ImageSizeDescription","ImageSizeDescription desc","ImageWidth","ImageWidth desc","LongDescription","LongDescription desc","MediaCategory","MediaCategory desc","MediaHTML","MediaHTML desc","MediaKey","MediaKey desc","MediaKeyNumeric","MediaKeyNumeric desc","MediaModificationTimestamp","MediaModificationTimestamp desc","MediaObjectID","MediaObjectID desc","MediaStatus","MediaStatus desc","MediaType","MediaType desc","MediaURL","MediaURL desc","ModificationTimestamp","ModificationTimestamp desc","Order","Order desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemMediaKey","OriginatingSystemMediaKey desc","OriginatingSystemName","OriginatingSystemName desc","Permission","Permission desc","PreferredPhotoYN","PreferredPhotoYN desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","ShortDescription","ShortDescription desc","SourceSystemID","SourceSystemID desc","SourceSystemMediaKey","SourceSystemMediaKey desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","ImageHeight","ImageOf","ImageSizeDescription","ImageWidth","LongDescription","MediaCategory","MediaHTML","MediaKey","MediaKeyNumeric","MediaModificationTimestamp","MediaObjectID","MediaStatus","MediaType","MediaURL","ModificationTimestamp","Order","OriginatingSystemID","OriginatingSystemMediaKey","OriginatingSystemName","Permission","PreferredPhotoYN","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","ShortDescription","SourceSystemID","SourceSystemMediaKey","SourceSystemName"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Media","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OpenHouse('{OpenHouseKey}')/SocialMedia":{"parameters":[{"description":"key: OpenHouseKey","in":"path","name":"OpenHouseKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related SocialMedia","tags":["OpenHouse"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ClassName desc","ModificationTimestamp","ModificationTimestamp desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SocialMediaKey","SocialMediaKey desc","SocialMediaKeyNumeric","SocialMediaKeyNumeric desc","SocialMediaType","SocialMediaType desc","SocialMediaUrlOrId","SocialMediaUrlOrId desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SocialMediaKey","SocialMediaKeyNumeric","SocialMediaType","SocialMediaUrlOrId"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of SocialMedia","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Prospecting":{"get":{"summary":"Get entities from Prospecting","tags":["Prospecting"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ActiveYN","ActiveYN desc","BccEmailList","BccEmailList desc","BccMeYN","BccMeYN desc","CcEmailList","CcEmailList desc","ClientActivatedYN","ClientActivatedYN desc","ConciergeNotificationsYN","ConciergeNotificationsYN desc","ConciergeYN","ConciergeYN desc","ContactKey","ContactKey desc","ContactKeyNumeric","ContactKeyNumeric desc","DailySchedule","DailySchedule desc","DisplayTemplateID","DisplayTemplateID desc","Language","Language desc","LastNewChangedTimestamp","LastNewChangedTimestamp desc","LastViewedTimestamp","LastViewedTimestamp desc","MessageNew","MessageNew desc","MessageRevise","MessageRevise desc","MessageUpdate","MessageUpdate desc","ModificationTimestamp","ModificationTimestamp desc","NextSendTimestamp","NextSendTimestamp desc","OwnerMemberID","OwnerMemberID desc","OwnerMemberKey","OwnerMemberKey desc","OwnerMemberKeyNumeric","OwnerMemberKeyNumeric desc","ProspectingKey","ProspectingKey desc","ProspectingKeyNumeric","ProspectingKeyNumeric desc","ReasonActiveOrDisabled","ReasonActiveOrDisabled desc","SavedSearchKey","SavedSearchKey desc","SavedSearchKeyNumeric","SavedSearchKeyNumeric desc","ScheduleType","ScheduleType desc","Subject","Subject desc","ToEmailList","ToEmailList desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ActiveYN","BccEmailList","BccMeYN","CcEmailList","ClientActivatedYN","ConciergeNotificationsYN","ConciergeYN","ContactKey","ContactKeyNumeric","DailySchedule","DisplayTemplateID","Language","LastNewChangedTimestamp","LastViewedTimestamp","MessageNew","MessageRevise","MessageUpdate","ModificationTimestamp","NextSendTimestamp","OwnerMemberID","OwnerMemberKey","OwnerMemberKeyNumeric","ProspectingKey","ProspectingKeyNumeric","ReasonActiveOrDisabled","SavedSearchKey","SavedSearchKeyNumeric","ScheduleType","Subject","ToEmailList"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Contact","OwnerMember","SavedSearch","HistoryTransactional","Media"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Prospecting","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Prospecting"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to Prospecting","tags":["Prospecting"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Prospecting-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Prospecting"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Prospecting('{ProspectingKey}')":{"parameters":[{"description":"key: ProspectingKey","in":"path","name":"ProspectingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from Prospecting by key","tags":["Prospecting"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ActiveYN","BccEmailList","BccMeYN","CcEmailList","ClientActivatedYN","ConciergeNotificationsYN","ConciergeYN","ContactKey","ContactKeyNumeric","DailySchedule","DisplayTemplateID","Language","LastNewChangedTimestamp","LastViewedTimestamp","MessageNew","MessageRevise","MessageUpdate","ModificationTimestamp","NextSendTimestamp","OwnerMemberID","OwnerMemberKey","OwnerMemberKeyNumeric","ProspectingKey","ProspectingKeyNumeric","ReasonActiveOrDisabled","SavedSearchKey","SavedSearchKeyNumeric","ScheduleType","Subject","ToEmailList"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Contact","OwnerMember","SavedSearch","HistoryTransactional","Media"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Prospecting"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in Prospecting","tags":["Prospecting"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Prospecting-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from Prospecting","tags":["Prospecting"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/Prospecting('{ProspectingKey}')/Contact":{"parameters":[{"description":"key: ProspectingKey","in":"path","name":"ProspectingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related Contact","tags":["Prospecting"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["Anniversary","AssistantEmail","AssistantName","AssistantPhone","AssistantPhoneExt","Birthdate","BusinessFax","Children","Company","ContactKey","ContactKeyNumeric","ContactLoginId","ContactPassword","ContactStatus","ContactType","Department","DirectPhone","Email","Email2","Email3","FirstName","FullName","HomeAddress1","HomeAddress2","HomeCarrierRoute","HomeCity","HomeCountry","HomeCountyOrParish","HomeFax","HomePhone","HomePostalCode","HomePostalCodePlus4","HomeStateOrProvince","JobTitle","Language","LastName","LeadSource","MiddleName","MobilePhone","ModificationTimestamp","NamePrefix","NameSuffix","Nickname","Notes","OfficePhone","OfficePhoneExt","OriginalEntryTimestamp","OriginatingSystemContactKey","OriginatingSystemID","OriginatingSystemName","OtherAddress1","OtherAddress2","OtherCarrierRoute","OtherCity","OtherCountry","OtherCountyOrParish","OtherPhoneType","OtherPostalCode","OtherPostalCodePlus4","OtherStateOrProvince","OwnerMemberID","OwnerMemberKey","OwnerMemberKeyNumeric","Pager","PhoneTTYTDD","PreferredAddress","PreferredPhone","ReferredBy","SocialMediaType","SourceSystemContactKey","SourceSystemID","SourceSystemName","SpousePartnerName","TollFreePhone","VoiceMail","VoiceMailExt","WorkAddress1","WorkAddress2","WorkCarrierRoute","WorkCity","WorkCountry","WorkCountyOrParish","WorkPostalCode","WorkPostalCodePlus4","WorkStateOrProvince"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","SourceSystem","OwnerMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Contacts"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Prospecting('{ProspectingKey}')/OwnerMember":{"parameters":[{"description":"key: ProspectingKey","in":"path","name":"ProspectingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OwnerMember","tags":["Prospecting"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Prospecting('{ProspectingKey}')/SavedSearch":{"parameters":[{"description":"key: ProspectingKey","in":"path","name":"ProspectingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related SavedSearch","tags":["Prospecting"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","MemberKey","MemberKeyNumeric","MemberMlsId","ModificationTimestamp","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemMemberKey","OriginatingSystemMemberName","OriginatingSystemName","ResourceName","SavedSearchDescription","SavedSearchKey","SavedSearchKeyNumeric","SavedSearchName","SavedSearchType","SearchQuery","SearchQueryExceptionDetails","SearchQueryExceptions","SearchQueryHumanReadable","SearchQueryType","SourceSystemID","SourceSystemKey","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Member","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.SavedSearch"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Prospecting('{ProspectingKey}')/HistoryTransactional":{"parameters":[{"description":"key: ProspectingKey","in":"path","name":"ProspectingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["Prospecting"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Prospecting('{ProspectingKey}')/Media":{"parameters":[{"description":"key: ProspectingKey","in":"path","name":"ProspectingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related Media","tags":["Prospecting"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","ImageHeight","ImageHeight desc","ImageOf","ImageOf desc","ImageSizeDescription","ImageSizeDescription desc","ImageWidth","ImageWidth desc","LongDescription","LongDescription desc","MediaCategory","MediaCategory desc","MediaHTML","MediaHTML desc","MediaKey","MediaKey desc","MediaKeyNumeric","MediaKeyNumeric desc","MediaModificationTimestamp","MediaModificationTimestamp desc","MediaObjectID","MediaObjectID desc","MediaStatus","MediaStatus desc","MediaType","MediaType desc","MediaURL","MediaURL desc","ModificationTimestamp","ModificationTimestamp desc","Order","Order desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemMediaKey","OriginatingSystemMediaKey desc","OriginatingSystemName","OriginatingSystemName desc","Permission","Permission desc","PreferredPhotoYN","PreferredPhotoYN desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","ShortDescription","ShortDescription desc","SourceSystemID","SourceSystemID desc","SourceSystemMediaKey","SourceSystemMediaKey desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","ImageHeight","ImageOf","ImageSizeDescription","ImageWidth","LongDescription","MediaCategory","MediaHTML","MediaKey","MediaKeyNumeric","MediaModificationTimestamp","MediaObjectID","MediaStatus","MediaType","MediaURL","ModificationTimestamp","Order","OriginatingSystemID","OriginatingSystemMediaKey","OriginatingSystemName","Permission","PreferredPhotoYN","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","ShortDescription","SourceSystemID","SourceSystemMediaKey","SourceSystemName"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Media","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Queue":{"get":{"summary":"Get entities from Queue","tags":["Queue"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ClassName desc","ModificationTimestamp","ModificationTimestamp desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","OriginatingSystemQueueKey","OriginatingSystemQueueKey desc","QueueTransactionKey","QueueTransactionKey desc","QueueTransactionKeyNumeric","QueueTransactionKeyNumeric desc","QueueTransactionType","QueueTransactionType desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc","SourceSystemQueueKey","SourceSystemQueueKey desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","OriginatingSystemID","OriginatingSystemName","OriginatingSystemQueueKey","QueueTransactionKey","QueueTransactionKeyNumeric","QueueTransactionType","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemID","SourceSystemName","SourceSystemQueueKey"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Queue","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Queue"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to Queue","tags":["Queue"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Queue-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Queue"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Queue('{QueueTransactionKey}')":{"parameters":[{"description":"key: QueueTransactionKey","in":"path","name":"QueueTransactionKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from Queue by key","tags":["Queue"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","OriginatingSystemID","OriginatingSystemName","OriginatingSystemQueueKey","QueueTransactionKey","QueueTransactionKeyNumeric","QueueTransactionType","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemID","SourceSystemName","SourceSystemQueueKey"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Queue"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in Queue","tags":["Queue"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Queue-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from Queue","tags":["Queue"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/Queue('{QueueTransactionKey}')/OriginatingSystem":{"parameters":[{"description":"key: QueueTransactionKey","in":"path","name":"QueueTransactionKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OriginatingSystem","tags":["Queue"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Queue('{QueueTransactionKey}')/SourceSystem":{"parameters":[{"description":"key: QueueTransactionKey","in":"path","name":"QueueTransactionKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related SourceSystem","tags":["Queue"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Rules":{"get":{"summary":"Get entities from Rules","tags":["Rules"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","ModificationTimestamp","ModificationTimestamp desc","OriginalEntryTimestamp","OriginalEntryTimestamp desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","OriginatingSystemRuleKey","OriginatingSystemRuleKey desc","ResourceName","ResourceName desc","RuleAction","RuleAction desc","RuleDescription","RuleDescription desc","RuleEnabledYN","RuleEnabledYN desc","RuleErrorText","RuleErrorText desc","RuleExpression","RuleExpression desc","RuleFormat","RuleFormat desc","RuleHelpText","RuleHelpText desc","RuleKey","RuleKey desc","RuleKeyNumeric","RuleKeyNumeric desc","RuleName","RuleName desc","RuleOrder","RuleOrder desc","RuleType","RuleType desc","RuleVersion","RuleVersion desc","RuleWarningText","RuleWarningText desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","FieldKey","FieldKeyNumeric","FieldName","ModificationTimestamp","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemName","OriginatingSystemRuleKey","ResourceName","RuleAction","RuleDescription","RuleEnabledYN","RuleErrorText","RuleExpression","RuleFormat","RuleHelpText","RuleKey","RuleKeyNumeric","RuleName","RuleOrder","RuleType","RuleVersion","RuleWarningText","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","SourceSystem","HistoryTransactional"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Rules","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Rules"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to Rules","tags":["Rules"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Rules-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Rules"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Rules('{RuleKey}')":{"parameters":[{"description":"key: RuleKey","in":"path","name":"RuleKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from Rules by key","tags":["Rules"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","FieldKey","FieldKeyNumeric","FieldName","ModificationTimestamp","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemName","OriginatingSystemRuleKey","ResourceName","RuleAction","RuleDescription","RuleEnabledYN","RuleErrorText","RuleExpression","RuleFormat","RuleHelpText","RuleKey","RuleKeyNumeric","RuleName","RuleOrder","RuleType","RuleVersion","RuleWarningText","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","SourceSystem","HistoryTransactional"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Rules"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in Rules","tags":["Rules"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Rules-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from Rules","tags":["Rules"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/Rules('{RuleKey}')/OriginatingSystem":{"parameters":[{"description":"key: RuleKey","in":"path","name":"RuleKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OriginatingSystem","tags":["Rules"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Rules('{RuleKey}')/SourceSystem":{"parameters":[{"description":"key: RuleKey","in":"path","name":"RuleKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related SourceSystem","tags":["Rules"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Rules('{RuleKey}')/HistoryTransactional":{"parameters":[{"description":"key: RuleKey","in":"path","name":"RuleKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["Rules"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Teams":{"get":{"summary":"Get entities from Teams","tags":["Teams"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ModificationTimestamp","ModificationTimestamp desc","OriginalEntryTimestamp","OriginalEntryTimestamp desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemKey","OriginatingSystemKey desc","OriginatingSystemName","OriginatingSystemName desc","SocialMediaType","SocialMediaType desc","SourceSystemID","SourceSystemID desc","SourceSystemKey","SourceSystemKey desc","SourceSystemName","SourceSystemName desc","TeamAddress1","TeamAddress1 desc","TeamAddress2","TeamAddress2 desc","TeamCarrierRoute","TeamCarrierRoute desc","TeamCity","TeamCity desc","TeamCountry","TeamCountry desc","TeamCountyOrParish","TeamCountyOrParish desc","TeamDescription","TeamDescription desc","TeamDirectPhone","TeamDirectPhone desc","TeamEmail","TeamEmail desc","TeamFax","TeamFax desc","TeamKey","TeamKey desc","TeamKeyNumeric","TeamKeyNumeric desc","TeamLeadKey","TeamLeadKey desc","TeamLeadKeyNumeric","TeamLeadKeyNumeric desc","TeamLeadLoginId","TeamLeadLoginId desc","TeamLeadMlsId","TeamLeadMlsId desc","TeamLeadNationalAssociationId","TeamLeadNationalAssociationId desc","TeamLeadStateLicense","TeamLeadStateLicense desc","TeamLeadStateLicenseState","TeamLeadStateLicenseState desc","TeamMobilePhone","TeamMobilePhone desc","TeamName","TeamName desc","TeamOfficePhone","TeamOfficePhone desc","TeamOfficePhoneExt","TeamOfficePhoneExt desc","TeamPostalCode","TeamPostalCode desc","TeamPostalCodePlus4","TeamPostalCodePlus4 desc","TeamPreferredPhone","TeamPreferredPhone desc","TeamPreferredPhoneExt","TeamPreferredPhoneExt desc","TeamStateOrProvince","TeamStateOrProvince desc","TeamStatus","TeamStatus desc","TeamTollFreePhone","TeamTollFreePhone desc","TeamVoiceMail","TeamVoiceMail desc","TeamVoiceMailExt","TeamVoiceMailExt desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ModificationTimestamp","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemKey","SourceSystemName","TeamAddress1","TeamAddress2","TeamCarrierRoute","TeamCity","TeamCountry","TeamCountyOrParish","TeamDescription","TeamDirectPhone","TeamEmail","TeamFax","TeamKey","TeamKeyNumeric","TeamLeadKey","TeamLeadKeyNumeric","TeamLeadLoginId","TeamLeadMlsId","TeamLeadNationalAssociationId","TeamLeadStateLicense","TeamLeadStateLicenseState","TeamMobilePhone","TeamName","TeamOfficePhone","TeamOfficePhoneExt","TeamPostalCode","TeamPostalCodePlus4","TeamPreferredPhone","TeamPreferredPhoneExt","TeamStateOrProvince","TeamStatus","TeamTollFreePhone","TeamVoiceMail","TeamVoiceMailExt"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","SourceSystem","TeamLead","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Teams","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Teams"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to Teams","tags":["Teams"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Teams-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Teams"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Teams('{TeamKey}')":{"parameters":[{"description":"key: TeamKey","in":"path","name":"TeamKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from Teams by key","tags":["Teams"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ModificationTimestamp","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemKey","SourceSystemName","TeamAddress1","TeamAddress2","TeamCarrierRoute","TeamCity","TeamCountry","TeamCountyOrParish","TeamDescription","TeamDirectPhone","TeamEmail","TeamFax","TeamKey","TeamKeyNumeric","TeamLeadKey","TeamLeadKeyNumeric","TeamLeadLoginId","TeamLeadMlsId","TeamLeadNationalAssociationId","TeamLeadStateLicense","TeamLeadStateLicenseState","TeamMobilePhone","TeamName","TeamOfficePhone","TeamOfficePhoneExt","TeamPostalCode","TeamPostalCodePlus4","TeamPreferredPhone","TeamPreferredPhoneExt","TeamStateOrProvince","TeamStatus","TeamTollFreePhone","TeamVoiceMail","TeamVoiceMailExt"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","SourceSystem","TeamLead","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Teams"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in Teams","tags":["Teams"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Teams-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from Teams","tags":["Teams"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/Teams('{TeamKey}')/OriginatingSystem":{"parameters":[{"description":"key: TeamKey","in":"path","name":"TeamKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OriginatingSystem","tags":["Teams"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Teams('{TeamKey}')/SourceSystem":{"parameters":[{"description":"key: TeamKey","in":"path","name":"TeamKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related SourceSystem","tags":["Teams"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Teams('{TeamKey}')/TeamLead":{"parameters":[{"description":"key: TeamKey","in":"path","name":"TeamKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related TeamLead","tags":["Teams"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Teams('{TeamKey}')/HistoryTransactional":{"parameters":[{"description":"key: TeamKey","in":"path","name":"TeamKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["Teams"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Teams('{TeamKey}')/Media":{"parameters":[{"description":"key: TeamKey","in":"path","name":"TeamKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related Media","tags":["Teams"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","ImageHeight","ImageHeight desc","ImageOf","ImageOf desc","ImageSizeDescription","ImageSizeDescription desc","ImageWidth","ImageWidth desc","LongDescription","LongDescription desc","MediaCategory","MediaCategory desc","MediaHTML","MediaHTML desc","MediaKey","MediaKey desc","MediaKeyNumeric","MediaKeyNumeric desc","MediaModificationTimestamp","MediaModificationTimestamp desc","MediaObjectID","MediaObjectID desc","MediaStatus","MediaStatus desc","MediaType","MediaType desc","MediaURL","MediaURL desc","ModificationTimestamp","ModificationTimestamp desc","Order","Order desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemMediaKey","OriginatingSystemMediaKey desc","OriginatingSystemName","OriginatingSystemName desc","Permission","Permission desc","PreferredPhotoYN","PreferredPhotoYN desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","ShortDescription","ShortDescription desc","SourceSystemID","SourceSystemID desc","SourceSystemMediaKey","SourceSystemMediaKey desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","ImageHeight","ImageOf","ImageSizeDescription","ImageWidth","LongDescription","MediaCategory","MediaHTML","MediaKey","MediaKeyNumeric","MediaModificationTimestamp","MediaObjectID","MediaStatus","MediaType","MediaURL","ModificationTimestamp","Order","OriginatingSystemID","OriginatingSystemMediaKey","OriginatingSystemName","Permission","PreferredPhotoYN","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","ShortDescription","SourceSystemID","SourceSystemMediaKey","SourceSystemName"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Media","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Teams('{TeamKey}')/SocialMedia":{"parameters":[{"description":"key: TeamKey","in":"path","name":"TeamKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related SocialMedia","tags":["Teams"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ClassName desc","ModificationTimestamp","ModificationTimestamp desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SocialMediaKey","SocialMediaKey desc","SocialMediaKeyNumeric","SocialMediaKeyNumeric desc","SocialMediaType","SocialMediaType desc","SocialMediaUrlOrId","SocialMediaUrlOrId desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SocialMediaKey","SocialMediaKeyNumeric","SocialMediaType","SocialMediaUrlOrId"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of SocialMedia","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Showing":{"get":{"summary":"Get entities from Showing","tags":["Showing"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AgentOriginatingSystemID","AgentOriginatingSystemID desc","AgentOriginatingSystemName","AgentOriginatingSystemName desc","AgentSourceSystemID","AgentSourceSystemID desc","AgentSourceSystemName","AgentSourceSystemName desc","ListingId","ListingId desc","ListingKey","ListingKey desc","ListingKeyNumeric","ListingKeyNumeric desc","ListingOriginatingSystemID","ListingOriginatingSystemID desc","ListingOriginatingSystemName","ListingOriginatingSystemName desc","ListingSourceSystemID","ListingSourceSystemID desc","ListingSourceSystemName","ListingSourceSystemName desc","ModificationTimestamp","ModificationTimestamp desc","OriginalEntryTimestamp","OriginalEntryTimestamp desc","OriginatingSystemAgentKey","OriginatingSystemAgentKey desc","OriginatingSystemListingKey","OriginatingSystemListingKey desc","OriginatingSystemShowingKey","OriginatingSystemShowingKey desc","ShowingAgentKey","ShowingAgentKey desc","ShowingAgentKeyNumeric","ShowingAgentKeyNumeric desc","ShowingAgentMlsID","ShowingAgentMlsID desc","ShowingEndTimestamp","ShowingEndTimestamp desc","ShowingId","ShowingId desc","ShowingKey","ShowingKey desc","ShowingKeyNumeric","ShowingKeyNumeric desc","ShowingOriginatingSystemID","ShowingOriginatingSystemID desc","ShowingOriginatingSystemName","ShowingOriginatingSystemName desc","ShowingRequestedTimestamp","ShowingRequestedTimestamp desc","ShowingSourceSystemID","ShowingSourceSystemID desc","ShowingSourceSystemName","ShowingSourceSystemName desc","ShowingStartTimestamp","ShowingStartTimestamp desc","SourceSystemAgentKey","SourceSystemAgentKey desc","SourceSystemListingKey","SourceSystemListingKey desc","SourceSystemShowingKey","SourceSystemShowingKey desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AgentOriginatingSystemID","AgentOriginatingSystemName","AgentSourceSystemID","AgentSourceSystemName","ListingId","ListingKey","ListingKeyNumeric","ListingOriginatingSystemID","ListingOriginatingSystemName","ListingSourceSystemID","ListingSourceSystemName","ModificationTimestamp","OriginalEntryTimestamp","OriginatingSystemAgentKey","OriginatingSystemListingKey","OriginatingSystemShowingKey","ShowingAgentKey","ShowingAgentKeyNumeric","ShowingAgentMlsID","ShowingEndTimestamp","ShowingId","ShowingKey","ShowingKeyNumeric","ShowingOriginatingSystemID","ShowingOriginatingSystemName","ShowingRequestedTimestamp","ShowingSourceSystemID","ShowingSourceSystemName","ShowingStartTimestamp","SourceSystemAgentKey","SourceSystemListingKey","SourceSystemShowingKey"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","AgentOriginatingSystem","AgentSourceSystem","ShowingAgent","Listing","ListingOriginatingSystem","ListingSourceSystem","ShowingOriginatingSystem","ShowingSourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Showing","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Showing"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to Showing","tags":["Showing"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Showing-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Showing"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Showing('{ShowingKey}')":{"parameters":[{"description":"key: ShowingKey","in":"path","name":"ShowingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from Showing by key","tags":["Showing"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AgentOriginatingSystemID","AgentOriginatingSystemName","AgentSourceSystemID","AgentSourceSystemName","ListingId","ListingKey","ListingKeyNumeric","ListingOriginatingSystemID","ListingOriginatingSystemName","ListingSourceSystemID","ListingSourceSystemName","ModificationTimestamp","OriginalEntryTimestamp","OriginatingSystemAgentKey","OriginatingSystemListingKey","OriginatingSystemShowingKey","ShowingAgentKey","ShowingAgentKeyNumeric","ShowingAgentMlsID","ShowingEndTimestamp","ShowingId","ShowingKey","ShowingKeyNumeric","ShowingOriginatingSystemID","ShowingOriginatingSystemName","ShowingRequestedTimestamp","ShowingSourceSystemID","ShowingSourceSystemName","ShowingStartTimestamp","SourceSystemAgentKey","SourceSystemListingKey","SourceSystemShowingKey"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","AgentOriginatingSystem","AgentSourceSystem","ShowingAgent","Listing","ListingOriginatingSystem","ListingSourceSystem","ShowingOriginatingSystem","ShowingSourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Showing"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in Showing","tags":["Showing"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Showing-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from Showing","tags":["Showing"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/Showing('{ShowingKey}')/AgentOriginatingSystem":{"parameters":[{"description":"key: ShowingKey","in":"path","name":"ShowingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related AgentOriginatingSystem","tags":["Showing"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Showing('{ShowingKey}')/AgentSourceSystem":{"parameters":[{"description":"key: ShowingKey","in":"path","name":"ShowingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related AgentSourceSystem","tags":["Showing"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Showing('{ShowingKey}')/ShowingAgent":{"parameters":[{"description":"key: ShowingKey","in":"path","name":"ShowingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ShowingAgent","tags":["Showing"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Showing('{ShowingKey}')/Listing":{"parameters":[{"description":"key: ShowingKey","in":"path","name":"ShowingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related Listing","tags":["Showing"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AboveGradeFinishedArea","AboveGradeFinishedAreaSource","AboveGradeFinishedAreaUnits","AccessCode","AccessibilityFeatures","AdditionalParcelsDescription","AdditionalParcelsYN","AnchorsCoTenants","Appliances","ArchitecturalStyle","AssociationAmenities","AssociationFee","AssociationFee2","AssociationFee2Frequency","AssociationFeeFrequency","AssociationFeeIncludes","AssociationName","AssociationName2","AssociationPhone","AssociationPhone2","AssociationYN","AttachedGarageYN","AvailabilityDate","Basement","BasementYN","BathroomsFull","BathroomsHalf","BathroomsOneQuarter","BathroomsPartial","BathroomsThreeQuarter","BathroomsTotalInteger","BedroomsPossible","BedroomsTotal","BelowGradeFinishedArea","BelowGradeFinishedAreaSource","BelowGradeFinishedAreaUnits","BodyType","BuilderModel","BuilderName","BuildingAreaSource","BuildingAreaTotal","BuildingAreaUnits","BuildingFeatures","BuildingName","BusinessName","BusinessType","BuyerAgencyCompensation","BuyerAgencyCompensationType","BuyerAgentAOR","BuyerAgentDesignation","BuyerAgentDirectPhone","BuyerAgentEmail","BuyerAgentFax","BuyerAgentFirstName","BuyerAgentFullName","BuyerAgentHomePhone","BuyerAgentKey","BuyerAgentKeyNumeric","BuyerAgentLastName","BuyerAgentMiddleName","BuyerAgentMlsId","BuyerAgentMobilePhone","BuyerAgentNamePrefix","BuyerAgentNameSuffix","BuyerAgentOfficePhone","BuyerAgentOfficePhoneExt","BuyerAgentPager","BuyerAgentPreferredPhone","BuyerAgentPreferredPhoneExt","BuyerAgentStateLicense","BuyerAgentTollFreePhone","BuyerAgentURL","BuyerAgentVoiceMail","BuyerAgentVoiceMailExt","BuyerFinancing","BuyerOfficeAOR","BuyerOfficeEmail","BuyerOfficeFax","BuyerOfficeKey","BuyerOfficeKeyNumeric","BuyerOfficeMlsId","BuyerOfficeName","BuyerOfficePhone","BuyerOfficePhoneExt","BuyerOfficeURL","BuyerTeamKey","BuyerTeamKeyNumeric","BuyerTeamName","CableTvExpense","CancellationDate","CapRate","CarportSpaces","CarportYN","CarrierRoute","City","CityRegion","CloseDate","ClosePrice","CoBuyerAgentAOR","CoBuyerAgentDesignation","CoBuyerAgentDirectPhone","CoBuyerAgentEmail","CoBuyerAgentFax","CoBuyerAgentFirstName","CoBuyerAgentFullName","CoBuyerAgentHomePhone","CoBuyerAgentKey","CoBuyerAgentKeyNumeric","CoBuyerAgentLastName","CoBuyerAgentMiddleName","CoBuyerAgentMlsId","CoBuyerAgentMobilePhone","CoBuyerAgentNamePrefix","CoBuyerAgentNameSuffix","CoBuyerAgentOfficePhone","CoBuyerAgentOfficePhoneExt","CoBuyerAgentPager","CoBuyerAgentPreferredPhone","CoBuyerAgentPreferredPhoneExt","CoBuyerAgentStateLicense","CoBuyerAgentTollFreePhone","CoBuyerAgentURL","CoBuyerAgentVoiceMail","CoBuyerAgentVoiceMailExt","CoBuyerOfficeAOR","CoBuyerOfficeEmail","CoBuyerOfficeFax","CoBuyerOfficeKey","CoBuyerOfficeKeyNumeric","CoBuyerOfficeMlsId","CoBuyerOfficeName","CoBuyerOfficePhone","CoBuyerOfficePhoneExt","CoBuyerOfficeURL","CoListAgentAOR","CoListAgentDesignation","CoListAgentDirectPhone","CoListAgentEmail","CoListAgentFax","CoListAgentFirstName","CoListAgentFullName","CoListAgentHomePhone","CoListAgentKey","CoListAgentKeyNumeric","CoListAgentLastName","CoListAgentMiddleName","CoListAgentMlsId","CoListAgentMobilePhone","CoListAgentNamePrefix","CoListAgentNameSuffix","CoListAgentOfficePhone","CoListAgentOfficePhoneExt","CoListAgentPager","CoListAgentPreferredPhone","CoListAgentPreferredPhoneExt","CoListAgentStateLicense","CoListAgentTollFreePhone","CoListAgentURL","CoListAgentVoiceMail","CoListAgentVoiceMailExt","CoListOfficeAOR","CoListOfficeEmail","CoListOfficeFax","CoListOfficeKey","CoListOfficeKeyNumeric","CoListOfficeMlsId","CoListOfficeName","CoListOfficePhone","CoListOfficePhoneExt","CoListOfficeURL","CommonInterest","CommonWalls","CommunityFeatures","Concessions","ConcessionsAmount","ConcessionsComments","ConstructionMaterials","ContinentRegion","Contingency","ContingentDate","ContractStatusChangeDate","Cooling","CoolingYN","CopyrightNotice","Country","CountryRegion","CountyOrParish","CoveredSpaces","CropsIncludedYN","CrossStreet","CultivatedArea","CumulativeDaysOnMarket","CurrentFinancing","CurrentUse","DOH1","DOH2","DOH3","DaysOnMarket","DevelopmentStatus","DirectionFaces","Directions","Disclaimer","Disclosures","DistanceToBusComments","DistanceToBusNumeric","DistanceToBusUnits","DistanceToElectricComments","DistanceToElectricNumeric","DistanceToElectricUnits","DistanceToFreewayComments","DistanceToFreewayNumeric","DistanceToFreewayUnits","DistanceToGasComments","DistanceToGasNumeric","DistanceToGasUnits","DistanceToPhoneServiceComments","DistanceToPhoneServiceNumeric","DistanceToPhoneServiceUnits","DistanceToPlaceofWorshipComments","DistanceToPlaceofWorshipNumeric","DistanceToPlaceofWorshipUnits","DistanceToSchoolBusComments","DistanceToSchoolBusNumeric","DistanceToSchoolBusUnits","DistanceToSchoolsComments","DistanceToSchoolsNumeric","DistanceToSchoolsUnits","DistanceToSewerComments","DistanceToSewerNumeric","DistanceToSewerUnits","DistanceToShoppingComments","DistanceToShoppingNumeric","DistanceToShoppingUnits","DistanceToStreetComments","DistanceToStreetNumeric","DistanceToStreetUnits","DistanceToWaterComments","DistanceToWaterNumeric","DistanceToWaterUnits","DocumentsAvailable","DocumentsChangeTimestamp","DocumentsCount","DoorFeatures","DualVariableCompensationYN","Electric","ElectricExpense","ElectricOnPropertyYN","ElementarySchool","ElementarySchoolDistrict","Elevation","ElevationUnits","EntryLevel","EntryLocation","Exclusions","ExistingLeaseType","ExpirationDate","ExteriorFeatures","FarmCreditServiceInclYN","FarmLandAreaSource","FarmLandAreaUnits","Fencing","FinancialDataSource","FireplaceFeatures","FireplaceYN","FireplacesTotal","Flooring","FoundationArea","FoundationDetails","FrontageLength","FrontageType","FuelExpense","Furnished","FurnitureReplacementExpense","GarageSpaces","GarageYN","GardenerExpense","GrazingPermitsBlmYN","GrazingPermitsForestServiceYN","GrazingPermitsPrivateYN","GreenBuildingVerificationType","GreenEnergyEfficient","GreenEnergyGeneration","GreenIndoorAirQuality","GreenLocation","GreenSustainability","GreenWaterConservation","GrossIncome","GrossScheduledIncome","HabitableResidenceYN","Heating","HeatingYN","HighSchool","HighSchoolDistrict","HomeWarrantyYN","HorseAmenities","HorseYN","HoursDaysOfOperation","HoursDaysOfOperationDescription","Inclusions","IncomeIncludes","InsuranceExpense","InteriorFeatures","InternetAddressDisplayYN","InternetAutomatedValuationDisplayYN","InternetConsumerCommentYN","InternetEntireListingDisplayYN","IrrigationSource","IrrigationWaterRightsAcres","IrrigationWaterRightsYN","LaborInformation","LandLeaseAmount","LandLeaseAmountFrequency","LandLeaseExpirationDate","LandLeaseYN","Latitude","LaundryFeatures","LeasableArea","LeasableAreaUnits","LeaseAmount","LeaseAmountFrequency","LeaseAssignableYN","LeaseConsideredYN","LeaseExpiration","LeaseRenewalCompensation","LeaseRenewalOptionYN","LeaseTerm","Levels","License1","License2","License3","LicensesExpense","ListAOR","ListAgentAOR","ListAgentDesignation","ListAgentDirectPhone","ListAgentEmail","ListAgentFax","ListAgentFirstName","ListAgentFullName","ListAgentHomePhone","ListAgentKey","ListAgentKeyNumeric","ListAgentLastName","ListAgentMiddleName","ListAgentMlsId","ListAgentMobilePhone","ListAgentNamePrefix","ListAgentNameSuffix","ListAgentOfficePhone","ListAgentOfficePhoneExt","ListAgentPager","ListAgentPreferredPhone","ListAgentPreferredPhoneExt","ListAgentStateLicense","ListAgentTollFreePhone","ListAgentURL","ListAgentVoiceMail","ListAgentVoiceMailExt","ListOfficeAOR","ListOfficeEmail","ListOfficeFax","ListOfficeKey","ListOfficeKeyNumeric","ListOfficeMlsId","ListOfficeName","ListOfficePhone","ListOfficePhoneExt","ListOfficeURL","ListPrice","ListPriceLow","ListTeamKey","ListTeamKeyNumeric","ListTeamName","ListingAgreement","ListingContractDate","ListingId","ListingKey","ListingKeyNumeric","ListingService","ListingTerms","LivingArea","LivingAreaSource","LivingAreaUnits","LockBoxLocation","LockBoxSerialNumber","LockBoxType","Longitude","LotDimensionsSource","LotFeatures","LotSizeAcres","LotSizeArea","LotSizeDimensions","LotSizeSource","LotSizeSquareFeet","LotSizeUnits","MLSAreaMajor","MLSAreaMinor","MainLevelBathrooms","MainLevelBedrooms","MaintenanceExpense","MajorChangeTimestamp","MajorChangeType","Make","ManagerExpense","MapCoordinate","MapCoordinateSource","MapURL","MiddleOrJuniorSchool","MiddleOrJuniorSchoolDistrict","MlsStatus","MobileDimUnits","MobileHomeRemainsYN","MobileLength","MobileWidth","Model","ModificationTimestamp","NetOperatingIncome","NewConstructionYN","NewTaxesExpense","NumberOfBuildings","NumberOfFullTimeEmployees","NumberOfLots","NumberOfPads","NumberOfPartTimeEmployees","NumberOfSeparateElectricMeters","NumberOfSeparateGasMeters","NumberOfSeparateWaterMeters","NumberOfUnitsInCommunity","NumberOfUnitsLeased","NumberOfUnitsMoMo","NumberOfUnitsTotal","NumberOfUnitsVacant","OccupantName","OccupantPhone","OccupantType","OffMarketDate","OffMarketTimestamp","OnMarketDate","OnMarketTimestamp","OpenParkingSpaces","OpenParkingYN","OperatingExpense","OperatingExpenseIncludes","OriginalEntryTimestamp","OriginalListPrice","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","OtherEquipment","OtherExpense","OtherParking","OtherStructures","OwnerName","OwnerPays","OwnerPhone","Ownership","OwnershipType","ParcelNumber","ParkManagerName","ParkManagerPhone","ParkName","ParkingFeatures","ParkingTotal","PastureArea","PatioAndPorchFeatures","PendingTimestamp","PestControlExpense","PetsAllowed","PhotosChangeTimestamp","PhotosCount","PoolExpense","PoolFeatures","PoolPrivateYN","Possession","PossibleUse","PostalCity","PostalCode","PostalCodePlus4","PowerProductionType","PreviousListPrice","PriceChangeTimestamp","PrivateOfficeRemarks","PrivateRemarks","ProfessionalManagementExpense","PropertyAttachedYN","PropertyCondition","PropertySubType","PropertyType","PublicRemarks","PublicSurveyRange","PublicSurveySection","PublicSurveyTownship","PurchaseContractDate","RVParkingDimensions","RangeArea","RentControlYN","RentIncludes","RoadFrontageType","RoadResponsibility","RoadSurfaceType","Roof","RoomType","RoomsTotal","SeatingCapacity","SecurityFeatures","SeniorCommunityYN","SerialU","SerialX","SerialXX","Sewer","ShowingAdvanceNotice","ShowingAttendedYN","ShowingContactName","ShowingContactPhone","ShowingContactPhoneExt","ShowingContactType","ShowingDays","ShowingEndTime","ShowingInstructions","ShowingRequirements","ShowingStartTime","SignOnPropertyYN","Skirt","SourceSystemID","SourceSystemKey","SourceSystemName","SpaFeatures","SpaYN","SpecialLicenses","SpecialListingConditions","StandardStatus","StateOrProvince","StateRegion","StatusChangeTimestamp","Stories","StoriesTotal","StreetAdditionalInfo","StreetDirPrefix","StreetDirSuffix","StreetName","StreetNumber","StreetNumberNumeric","StreetSuffix","StreetSuffixModifier","StructureType","SubAgencyCompensation","SubAgencyCompensationType","SubdivisionName","SuppliesExpense","SyndicateTo","SyndicationRemarks","TaxAnnualAmount","TaxAssessedValue","TaxBlock","TaxBookNumber","TaxLegalDescription","TaxLot","TaxMapNumber","TaxOtherAnnualAssessmentAmount","TaxParcelLetter","TaxStatusCurrent","TaxTract","TaxYear","TenantPays","Topography","TotalActualRent","Township","TransactionBrokerCompensation","TransactionBrokerCompensationType","TrashExpense","UnitNumber","UnitTypeType","UnitsFurnished","UniversalPropertyId","UniversalPropertySubId","UnparsedAddress","Utilities","VacancyAllowance","VacancyAllowanceRate","Vegetation","VideosChangeTimestamp","VideosCount","View","ViewYN","VirtualTourURLBranded","VirtualTourURLUnbranded","WalkScore","WaterBodyName","WaterSewerExpense","WaterSource","WaterfrontFeatures","WaterfrontYN","WindowFeatures","WithdrawnDate","WoodedArea","WorkmansCompensationExpense","YearBuilt","YearBuiltDetails","YearBuiltEffective","YearBuiltSource","YearEstablished","YearsCurrentOwner","Zoning","ZoningDescription"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","BuyerAgent","BuyerOffice","CoBuyerAgent","CoBuyerOffice","CoListAgent","CoListOffice","ListAgent","ListOffice","BuyerTeam","ListTeam","SourceSystem","HistoryTransactional","Media","SocialMedia","OpenHouse"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Property"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Showing('{ShowingKey}')/ListingOriginatingSystem":{"parameters":[{"description":"key: ShowingKey","in":"path","name":"ShowingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ListingOriginatingSystem","tags":["Showing"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Showing('{ShowingKey}')/ListingSourceSystem":{"parameters":[{"description":"key: ShowingKey","in":"path","name":"ShowingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ListingSourceSystem","tags":["Showing"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Showing('{ShowingKey}')/ShowingOriginatingSystem":{"parameters":[{"description":"key: ShowingKey","in":"path","name":"ShowingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ShowingOriginatingSystem","tags":["Showing"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Showing('{ShowingKey}')/ShowingSourceSystem":{"parameters":[{"description":"key: ShowingKey","in":"path","name":"ShowingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ShowingSourceSystem","tags":["Showing"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Showing('{ShowingKey}')/HistoryTransactional":{"parameters":[{"description":"key: ShowingKey","in":"path","name":"ShowingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["Showing"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Showing('{ShowingKey}')/Media":{"parameters":[{"description":"key: ShowingKey","in":"path","name":"ShowingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related Media","tags":["Showing"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","ImageHeight","ImageHeight desc","ImageOf","ImageOf desc","ImageSizeDescription","ImageSizeDescription desc","ImageWidth","ImageWidth desc","LongDescription","LongDescription desc","MediaCategory","MediaCategory desc","MediaHTML","MediaHTML desc","MediaKey","MediaKey desc","MediaKeyNumeric","MediaKeyNumeric desc","MediaModificationTimestamp","MediaModificationTimestamp desc","MediaObjectID","MediaObjectID desc","MediaStatus","MediaStatus desc","MediaType","MediaType desc","MediaURL","MediaURL desc","ModificationTimestamp","ModificationTimestamp desc","Order","Order desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemMediaKey","OriginatingSystemMediaKey desc","OriginatingSystemName","OriginatingSystemName desc","Permission","Permission desc","PreferredPhotoYN","PreferredPhotoYN desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","ShortDescription","ShortDescription desc","SourceSystemID","SourceSystemID desc","SourceSystemMediaKey","SourceSystemMediaKey desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","ImageHeight","ImageOf","ImageSizeDescription","ImageWidth","LongDescription","MediaCategory","MediaHTML","MediaKey","MediaKeyNumeric","MediaModificationTimestamp","MediaObjectID","MediaStatus","MediaType","MediaURL","ModificationTimestamp","Order","OriginatingSystemID","OriginatingSystemMediaKey","OriginatingSystemName","Permission","PreferredPhotoYN","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","ShortDescription","SourceSystemID","SourceSystemMediaKey","SourceSystemName"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Media","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/Showing('{ShowingKey}')/SocialMedia":{"parameters":[{"description":"key: ShowingKey","in":"path","name":"ShowingKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related SocialMedia","tags":["Showing"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ClassName desc","ModificationTimestamp","ModificationTimestamp desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SocialMediaKey","SocialMediaKey desc","SocialMediaKeyNumeric","SocialMediaKeyNumeric desc","SocialMediaType","SocialMediaType desc","SocialMediaUrlOrId","SocialMediaUrlOrId desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SocialMediaKey","SocialMediaKeyNumeric","SocialMediaType","SocialMediaUrlOrId"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of SocialMedia","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/TeamMembers":{"get":{"summary":"Get entities from TeamMembers","tags":["TeamMembers"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["MemberKey","MemberKey desc","MemberKeyNumeric","MemberKeyNumeric desc","MemberLoginId","MemberLoginId desc","MemberMlsId","MemberMlsId desc","ModificationTimestamp","ModificationTimestamp desc","OriginalEntryTimestamp","OriginalEntryTimestamp desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemKey","OriginatingSystemKey desc","OriginatingSystemName","OriginatingSystemName desc","SourceSystemID","SourceSystemID desc","SourceSystemKey","SourceSystemKey desc","SourceSystemName","SourceSystemName desc","TeamImpersonationLevel","TeamImpersonationLevel desc","TeamKey","TeamKey desc","TeamKeyNumeric","TeamKeyNumeric desc","TeamMemberKey","TeamMemberKey desc","TeamMemberKeyNumeric","TeamMemberKeyNumeric desc","TeamMemberNationalAssociationId","TeamMemberNationalAssociationId desc","TeamMemberStateLicense","TeamMemberStateLicense desc","TeamMemberType","TeamMemberType desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["MemberKey","MemberKeyNumeric","MemberLoginId","MemberMlsId","ModificationTimestamp","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","SourceSystemID","SourceSystemKey","SourceSystemName","TeamImpersonationLevel","TeamKey","TeamKeyNumeric","TeamMemberKey","TeamMemberKeyNumeric","TeamMemberNationalAssociationId","TeamMemberStateLicense","TeamMemberType"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Member","OriginatingSystem","SourceSystem","HistoryTransactional"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of TeamMembers","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.TeamMembers"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to TeamMembers","tags":["TeamMembers"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.TeamMembers-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.TeamMembers"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/TeamMembers('{TeamMemberKey}')":{"parameters":[{"description":"key: TeamMemberKey","in":"path","name":"TeamMemberKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from TeamMembers by key","tags":["TeamMembers"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["MemberKey","MemberKeyNumeric","MemberLoginId","MemberMlsId","ModificationTimestamp","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","SourceSystemID","SourceSystemKey","SourceSystemName","TeamImpersonationLevel","TeamKey","TeamKeyNumeric","TeamMemberKey","TeamMemberKeyNumeric","TeamMemberNationalAssociationId","TeamMemberStateLicense","TeamMemberType"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Member","OriginatingSystem","SourceSystem","HistoryTransactional"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.TeamMembers"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in TeamMembers","tags":["TeamMembers"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.TeamMembers-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from TeamMembers","tags":["TeamMembers"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/TeamMembers('{TeamMemberKey}')/Member":{"parameters":[{"description":"key: TeamMemberKey","in":"path","name":"TeamMemberKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related Member","tags":["TeamMembers"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/TeamMembers('{TeamMemberKey}')/OriginatingSystem":{"parameters":[{"description":"key: TeamMemberKey","in":"path","name":"TeamMemberKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related OriginatingSystem","tags":["TeamMembers"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/TeamMembers('{TeamMemberKey}')/SourceSystem":{"parameters":[{"description":"key: TeamMemberKey","in":"path","name":"TeamMemberKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related SourceSystem","tags":["TeamMembers"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/TeamMembers('{TeamMemberKey}')/HistoryTransactional":{"parameters":[{"description":"key: TeamMemberKey","in":"path","name":"TeamMemberKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["TeamMembers"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OUID":{"get":{"summary":"Get entities from OUID","tags":["OUID"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","OrganizationAOR","OrganizationAOR desc","OrganizationAddress1","OrganizationAddress1 desc","OrganizationAddress2","OrganizationAddress2 desc","OrganizationAorOuid","OrganizationAorOuid desc","OrganizationAorOuidKey","OrganizationAorOuidKey desc","OrganizationAorOuidKeyNumeric","OrganizationAorOuidKeyNumeric desc","OrganizationCarrierRoute","OrganizationCarrierRoute desc","OrganizationCity","OrganizationCity desc","OrganizationComments","OrganizationComments desc","OrganizationContactEmail","OrganizationContactEmail desc","OrganizationContactFax","OrganizationContactFax desc","OrganizationContactFirstName","OrganizationContactFirstName desc","OrganizationContactFullName","OrganizationContactFullName desc","OrganizationContactJobTitle","OrganizationContactJobTitle desc","OrganizationContactLastName","OrganizationContactLastName desc","OrganizationContactMiddleName","OrganizationContactMiddleName desc","OrganizationContactNamePrefix","OrganizationContactNamePrefix desc","OrganizationContactNameSuffix","OrganizationContactNameSuffix desc","OrganizationContactPhone","OrganizationContactPhone desc","OrganizationContactPhoneExt","OrganizationContactPhoneExt desc","OrganizationCountry","OrganizationCountry desc","OrganizationCountyOrParish","OrganizationCountyOrParish desc","OrganizationMemberCount","OrganizationMemberCount desc","OrganizationMlsCode","OrganizationMlsCode desc","OrganizationMlsVendorName","OrganizationMlsVendorName desc","OrganizationMlsVendorOuid","OrganizationMlsVendorOuid desc","OrganizationName","OrganizationName desc","OrganizationNationalAssociationId","OrganizationNationalAssociationId desc","OrganizationPostalCode","OrganizationPostalCode desc","OrganizationPostalCodePlus4","OrganizationPostalCodePlus4 desc","OrganizationSocialMediaType","OrganizationSocialMediaType desc","OrganizationStateLicense","OrganizationStateLicense desc","OrganizationStateLicenseState","OrganizationStateLicenseState desc","OrganizationStateOrProvince","OrganizationStateOrProvince desc","OrganizationStatus","OrganizationStatus desc","OrganizationStatusChangeTimestamp","OrganizationStatusChangeTimestamp desc","OrganizationType","OrganizationType desc","OrganizationUniqueId","OrganizationUniqueId desc","OrganizationUniqueIdKey","OrganizationUniqueIdKey desc","OrganizationUniqueIdKeyNumeric","OrganizationUniqueIdKeyNumeric desc","OriginalEntryTimestamp","OriginalEntryTimestamp desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of OUID","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to OUID","tags":["OUID"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OUID('{OrganizationUniqueIdKey}')":{"parameters":[{"description":"key: OrganizationUniqueIdKey","in":"path","name":"OrganizationUniqueIdKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from OUID by key","tags":["OUID"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ModificationTimestamp","OrganizationAOR","OrganizationAddress1","OrganizationAddress2","OrganizationAorOuid","OrganizationAorOuidKey","OrganizationAorOuidKeyNumeric","OrganizationCarrierRoute","OrganizationCity","OrganizationComments","OrganizationContactEmail","OrganizationContactFax","OrganizationContactFirstName","OrganizationContactFullName","OrganizationContactJobTitle","OrganizationContactLastName","OrganizationContactMiddleName","OrganizationContactNamePrefix","OrganizationContactNameSuffix","OrganizationContactPhone","OrganizationContactPhoneExt","OrganizationCountry","OrganizationCountyOrParish","OrganizationMemberCount","OrganizationMlsCode","OrganizationMlsVendorName","OrganizationMlsVendorOuid","OrganizationName","OrganizationNationalAssociationId","OrganizationPostalCode","OrganizationPostalCodePlus4","OrganizationSocialMediaType","OrganizationStateLicense","OrganizationStateLicenseState","OrganizationStateOrProvince","OrganizationStatus","OrganizationStatusChangeTimestamp","OrganizationType","OrganizationUniqueId","OrganizationUniqueIdKey","OrganizationUniqueIdKeyNumeric","OriginalEntryTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in OUID","tags":["OUID"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OUID-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from OUID","tags":["OUID"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/OUID('{OrganizationUniqueIdKey}')/ChangedByMember":{"parameters":[{"description":"key: OrganizationUniqueIdKey","in":"path","name":"OrganizationUniqueIdKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related ChangedByMember","tags":["OUID"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["JobTitle","LastLoginTimestamp","MemberAOR","MemberAORMlsId","MemberAORkey","MemberAORkeyNumeric","MemberAddress1","MemberAddress2","MemberAssociationComments","MemberCarrierRoute","MemberCity","MemberCountry","MemberCountyOrParish","MemberDesignation","MemberDirectPhone","MemberEmail","MemberFax","MemberFirstName","MemberFullName","MemberHomePhone","MemberIsAssistantTo","MemberKey","MemberKeyNumeric","MemberLanguages","MemberLastName","MemberLoginId","MemberMiddleName","MemberMlsAccessYN","MemberMlsId","MemberMlsSecurityClass","MemberMobilePhone","MemberNamePrefix","MemberNameSuffix","MemberNationalAssociationId","MemberNickname","MemberOfficePhone","MemberOfficePhoneExt","MemberOtherPhoneType","MemberPager","MemberPassword","MemberPhoneTTYTDD","MemberPostalCode","MemberPostalCodePlus4","MemberPreferredPhone","MemberPreferredPhoneExt","MemberStateLicense","MemberStateLicenseState","MemberStateOrProvince","MemberStatus","MemberTollFreePhone","MemberType","MemberVoiceMail","MemberVoiceMailExt","ModificationTimestamp","OfficeKey","OfficeKeyNumeric","OfficeMlsId","OfficeName","OriginalEntryTimestamp","OriginatingSystemID","OriginatingSystemMemberKey","OriginatingSystemName","SocialMediaType","SourceSystemID","SourceSystemMemberKey","SourceSystemName","SyndicateTo"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Office","OriginatingSystem","SourceSystem","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Member"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OUID('{OrganizationUniqueIdKey}')/HistoryTransactional":{"parameters":[{"description":"key: OrganizationUniqueIdKey","in":"path","name":"OrganizationUniqueIdKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["OUID"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OUID('{OrganizationUniqueIdKey}')/Media":{"parameters":[{"description":"key: OrganizationUniqueIdKey","in":"path","name":"OrganizationUniqueIdKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related Media","tags":["OUID"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","ImageHeight","ImageHeight desc","ImageOf","ImageOf desc","ImageSizeDescription","ImageSizeDescription desc","ImageWidth","ImageWidth desc","LongDescription","LongDescription desc","MediaCategory","MediaCategory desc","MediaHTML","MediaHTML desc","MediaKey","MediaKey desc","MediaKeyNumeric","MediaKeyNumeric desc","MediaModificationTimestamp","MediaModificationTimestamp desc","MediaObjectID","MediaObjectID desc","MediaStatus","MediaStatus desc","MediaType","MediaType desc","MediaURL","MediaURL desc","ModificationTimestamp","ModificationTimestamp desc","Order","Order desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemMediaKey","OriginatingSystemMediaKey desc","OriginatingSystemName","OriginatingSystemName desc","Permission","Permission desc","PreferredPhotoYN","PreferredPhotoYN desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","ShortDescription","ShortDescription desc","SourceSystemID","SourceSystemID desc","SourceSystemMediaKey","SourceSystemMediaKey desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","ImageHeight","ImageOf","ImageSizeDescription","ImageWidth","LongDescription","MediaCategory","MediaHTML","MediaKey","MediaKeyNumeric","MediaModificationTimestamp","MediaObjectID","MediaStatus","MediaType","MediaURL","ModificationTimestamp","Order","OriginatingSystemID","OriginatingSystemMediaKey","OriginatingSystemName","Permission","PreferredPhotoYN","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","ShortDescription","SourceSystemID","SourceSystemMediaKey","SourceSystemName"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of Media","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OUID('{OrganizationUniqueIdKey}')/SocialMedia":{"parameters":[{"description":"key: OrganizationUniqueIdKey","in":"path","name":"OrganizationUniqueIdKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related SocialMedia","tags":["OUID"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ClassName desc","ModificationTimestamp","ModificationTimestamp desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SocialMediaKey","SocialMediaKey desc","SocialMediaKeyNumeric","SocialMediaKeyNumeric desc","SocialMediaType","SocialMediaType desc","SocialMediaUrlOrId","SocialMediaUrlOrId desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SocialMediaKey","SocialMediaKeyNumeric","SocialMediaType","SocialMediaUrlOrId"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of SocialMedia","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/ContactListingNotes":{"get":{"summary":"Get entities from ContactListingNotes","tags":["ContactListingNotes"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ContactKey","ContactKey desc","ContactKeyNumeric","ContactKeyNumeric desc","ContactListingNotesKey","ContactListingNotesKey desc","ContactListingNotesKeyNumeric","ContactListingNotesKeyNumeric desc","ListingId","ListingId desc","ListingKey","ListingKey desc","ListingKeyNumeric","ListingKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NoteContents","NoteContents desc","NotedBy","NotedBy desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ContactKey","ContactKeyNumeric","ContactListingNotesKey","ContactListingNotesKeyNumeric","ListingId","ListingKey","ListingKeyNumeric","ModificationTimestamp","NoteContents","NotedBy"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Contact"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of ContactListingNotes","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.ContactListingNotes"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to ContactListingNotes","tags":["ContactListingNotes"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.ContactListingNotes-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.ContactListingNotes"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/ContactListingNotes('{ContactKey}')":{"parameters":[{"description":"key: ContactKey","in":"path","name":"ContactKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from ContactListingNotes by key","tags":["ContactListingNotes"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ContactKey","ContactKeyNumeric","ContactListingNotesKey","ContactListingNotesKeyNumeric","ListingId","ListingKey","ListingKeyNumeric","ModificationTimestamp","NoteContents","NotedBy"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Contact"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.ContactListingNotes"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in ContactListingNotes","tags":["ContactListingNotes"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.ContactListingNotes-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from ContactListingNotes","tags":["ContactListingNotes"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/ContactListingNotes('{ContactKey}')/Contact":{"parameters":[{"description":"key: ContactKey","in":"path","name":"ContactKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related Contact","tags":["ContactListingNotes"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["Anniversary","AssistantEmail","AssistantName","AssistantPhone","AssistantPhoneExt","Birthdate","BusinessFax","Children","Company","ContactKey","ContactKeyNumeric","ContactLoginId","ContactPassword","ContactStatus","ContactType","Department","DirectPhone","Email","Email2","Email3","FirstName","FullName","HomeAddress1","HomeAddress2","HomeCarrierRoute","HomeCity","HomeCountry","HomeCountyOrParish","HomeFax","HomePhone","HomePostalCode","HomePostalCodePlus4","HomeStateOrProvince","JobTitle","Language","LastName","LeadSource","MiddleName","MobilePhone","ModificationTimestamp","NamePrefix","NameSuffix","Nickname","Notes","OfficePhone","OfficePhoneExt","OriginalEntryTimestamp","OriginatingSystemContactKey","OriginatingSystemID","OriginatingSystemName","OtherAddress1","OtherAddress2","OtherCarrierRoute","OtherCity","OtherCountry","OtherCountyOrParish","OtherPhoneType","OtherPostalCode","OtherPostalCodePlus4","OtherStateOrProvince","OwnerMemberID","OwnerMemberKey","OwnerMemberKeyNumeric","Pager","PhoneTTYTDD","PreferredAddress","PreferredPhone","ReferredBy","SocialMediaType","SourceSystemContactKey","SourceSystemID","SourceSystemName","SpousePartnerName","TollFreePhone","VoiceMail","VoiceMailExt","WorkAddress1","WorkAddress2","WorkCarrierRoute","WorkCity","WorkCountry","WorkCountyOrParish","WorkPostalCode","WorkPostalCodePlus4","WorkStateOrProvince"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","SourceSystem","OwnerMember","HistoryTransactional","Media","SocialMedia"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Contacts"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OtherPhone":{"get":{"summary":"Get entities from OtherPhone","tags":["OtherPhone"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ClassName desc","ModificationTimestamp","ModificationTimestamp desc","OtherPhoneExt","OtherPhoneExt desc","OtherPhoneKey","OtherPhoneKey desc","OtherPhoneKeyNumeric","OtherPhoneKeyNumeric desc","OtherPhoneNumber","OtherPhoneNumber desc","OtherPhoneType","OtherPhoneType desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","OtherPhoneExt","OtherPhoneKey","OtherPhoneKeyNumeric","OtherPhoneNumber","OtherPhoneType","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of OtherPhone","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.OtherPhone"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to OtherPhone","tags":["OtherPhone"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OtherPhone-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OtherPhone"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/OtherPhone('{OtherPhoneKey}')":{"parameters":[{"description":"key: OtherPhoneKey","in":"path","name":"OtherPhoneKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from OtherPhone by key","tags":["OtherPhone"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","OtherPhoneExt","OtherPhoneKey","OtherPhoneKeyNumeric","OtherPhoneNumber","OtherPhoneType","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OtherPhone"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in OtherPhone","tags":["OtherPhone"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.OtherPhone-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from OtherPhone","tags":["OtherPhone"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyGreenVerification":{"get":{"summary":"Get entities from PropertyGreenVerification","tags":["PropertyGreenVerification"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["GreenBuildingVerificationKey","GreenBuildingVerificationKey desc","GreenBuildingVerificationKeyNumeric","GreenBuildingVerificationKeyNumeric desc","GreenBuildingVerificationType","GreenBuildingVerificationType desc","GreenVerificationBody","GreenVerificationBody desc","GreenVerificationMetric","GreenVerificationMetric desc","GreenVerificationRating","GreenVerificationRating desc","GreenVerificationSource","GreenVerificationSource desc","GreenVerificationStatus","GreenVerificationStatus desc","GreenVerificationURL","GreenVerificationURL desc","GreenVerificationVersion","GreenVerificationVersion desc","GreenVerificationYear","GreenVerificationYear desc","ListingId","ListingId desc","ListingKey","ListingKey desc","ListingKeyNumeric","ListingKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["GreenBuildingVerificationKey","GreenBuildingVerificationKeyNumeric","GreenBuildingVerificationType","GreenVerificationBody","GreenVerificationMetric","GreenVerificationRating","GreenVerificationSource","GreenVerificationStatus","GreenVerificationURL","GreenVerificationVersion","GreenVerificationYear","ListingId","ListingKey","ListingKeyNumeric","ModificationTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Listing","HistoryTransactional"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of PropertyGreenVerification","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.PropertyGreenVerification"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to PropertyGreenVerification","tags":["PropertyGreenVerification"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyGreenVerification-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyGreenVerification"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyGreenVerification('{GreenBuildingVerificationKey}')":{"parameters":[{"description":"key: GreenBuildingVerificationKey","in":"path","name":"GreenBuildingVerificationKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from PropertyGreenVerification by key","tags":["PropertyGreenVerification"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["GreenBuildingVerificationKey","GreenBuildingVerificationKeyNumeric","GreenBuildingVerificationType","GreenVerificationBody","GreenVerificationMetric","GreenVerificationRating","GreenVerificationSource","GreenVerificationStatus","GreenVerificationURL","GreenVerificationVersion","GreenVerificationYear","ListingId","ListingKey","ListingKeyNumeric","ModificationTimestamp"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Listing","HistoryTransactional"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyGreenVerification"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in PropertyGreenVerification","tags":["PropertyGreenVerification"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyGreenVerification-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from PropertyGreenVerification","tags":["PropertyGreenVerification"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyGreenVerification('{GreenBuildingVerificationKey}')/Listing":{"parameters":[{"description":"key: GreenBuildingVerificationKey","in":"path","name":"GreenBuildingVerificationKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related Listing","tags":["PropertyGreenVerification"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AboveGradeFinishedArea","AboveGradeFinishedAreaSource","AboveGradeFinishedAreaUnits","AccessCode","AccessibilityFeatures","AdditionalParcelsDescription","AdditionalParcelsYN","AnchorsCoTenants","Appliances","ArchitecturalStyle","AssociationAmenities","AssociationFee","AssociationFee2","AssociationFee2Frequency","AssociationFeeFrequency","AssociationFeeIncludes","AssociationName","AssociationName2","AssociationPhone","AssociationPhone2","AssociationYN","AttachedGarageYN","AvailabilityDate","Basement","BasementYN","BathroomsFull","BathroomsHalf","BathroomsOneQuarter","BathroomsPartial","BathroomsThreeQuarter","BathroomsTotalInteger","BedroomsPossible","BedroomsTotal","BelowGradeFinishedArea","BelowGradeFinishedAreaSource","BelowGradeFinishedAreaUnits","BodyType","BuilderModel","BuilderName","BuildingAreaSource","BuildingAreaTotal","BuildingAreaUnits","BuildingFeatures","BuildingName","BusinessName","BusinessType","BuyerAgencyCompensation","BuyerAgencyCompensationType","BuyerAgentAOR","BuyerAgentDesignation","BuyerAgentDirectPhone","BuyerAgentEmail","BuyerAgentFax","BuyerAgentFirstName","BuyerAgentFullName","BuyerAgentHomePhone","BuyerAgentKey","BuyerAgentKeyNumeric","BuyerAgentLastName","BuyerAgentMiddleName","BuyerAgentMlsId","BuyerAgentMobilePhone","BuyerAgentNamePrefix","BuyerAgentNameSuffix","BuyerAgentOfficePhone","BuyerAgentOfficePhoneExt","BuyerAgentPager","BuyerAgentPreferredPhone","BuyerAgentPreferredPhoneExt","BuyerAgentStateLicense","BuyerAgentTollFreePhone","BuyerAgentURL","BuyerAgentVoiceMail","BuyerAgentVoiceMailExt","BuyerFinancing","BuyerOfficeAOR","BuyerOfficeEmail","BuyerOfficeFax","BuyerOfficeKey","BuyerOfficeKeyNumeric","BuyerOfficeMlsId","BuyerOfficeName","BuyerOfficePhone","BuyerOfficePhoneExt","BuyerOfficeURL","BuyerTeamKey","BuyerTeamKeyNumeric","BuyerTeamName","CableTvExpense","CancellationDate","CapRate","CarportSpaces","CarportYN","CarrierRoute","City","CityRegion","CloseDate","ClosePrice","CoBuyerAgentAOR","CoBuyerAgentDesignation","CoBuyerAgentDirectPhone","CoBuyerAgentEmail","CoBuyerAgentFax","CoBuyerAgentFirstName","CoBuyerAgentFullName","CoBuyerAgentHomePhone","CoBuyerAgentKey","CoBuyerAgentKeyNumeric","CoBuyerAgentLastName","CoBuyerAgentMiddleName","CoBuyerAgentMlsId","CoBuyerAgentMobilePhone","CoBuyerAgentNamePrefix","CoBuyerAgentNameSuffix","CoBuyerAgentOfficePhone","CoBuyerAgentOfficePhoneExt","CoBuyerAgentPager","CoBuyerAgentPreferredPhone","CoBuyerAgentPreferredPhoneExt","CoBuyerAgentStateLicense","CoBuyerAgentTollFreePhone","CoBuyerAgentURL","CoBuyerAgentVoiceMail","CoBuyerAgentVoiceMailExt","CoBuyerOfficeAOR","CoBuyerOfficeEmail","CoBuyerOfficeFax","CoBuyerOfficeKey","CoBuyerOfficeKeyNumeric","CoBuyerOfficeMlsId","CoBuyerOfficeName","CoBuyerOfficePhone","CoBuyerOfficePhoneExt","CoBuyerOfficeURL","CoListAgentAOR","CoListAgentDesignation","CoListAgentDirectPhone","CoListAgentEmail","CoListAgentFax","CoListAgentFirstName","CoListAgentFullName","CoListAgentHomePhone","CoListAgentKey","CoListAgentKeyNumeric","CoListAgentLastName","CoListAgentMiddleName","CoListAgentMlsId","CoListAgentMobilePhone","CoListAgentNamePrefix","CoListAgentNameSuffix","CoListAgentOfficePhone","CoListAgentOfficePhoneExt","CoListAgentPager","CoListAgentPreferredPhone","CoListAgentPreferredPhoneExt","CoListAgentStateLicense","CoListAgentTollFreePhone","CoListAgentURL","CoListAgentVoiceMail","CoListAgentVoiceMailExt","CoListOfficeAOR","CoListOfficeEmail","CoListOfficeFax","CoListOfficeKey","CoListOfficeKeyNumeric","CoListOfficeMlsId","CoListOfficeName","CoListOfficePhone","CoListOfficePhoneExt","CoListOfficeURL","CommonInterest","CommonWalls","CommunityFeatures","Concessions","ConcessionsAmount","ConcessionsComments","ConstructionMaterials","ContinentRegion","Contingency","ContingentDate","ContractStatusChangeDate","Cooling","CoolingYN","CopyrightNotice","Country","CountryRegion","CountyOrParish","CoveredSpaces","CropsIncludedYN","CrossStreet","CultivatedArea","CumulativeDaysOnMarket","CurrentFinancing","CurrentUse","DOH1","DOH2","DOH3","DaysOnMarket","DevelopmentStatus","DirectionFaces","Directions","Disclaimer","Disclosures","DistanceToBusComments","DistanceToBusNumeric","DistanceToBusUnits","DistanceToElectricComments","DistanceToElectricNumeric","DistanceToElectricUnits","DistanceToFreewayComments","DistanceToFreewayNumeric","DistanceToFreewayUnits","DistanceToGasComments","DistanceToGasNumeric","DistanceToGasUnits","DistanceToPhoneServiceComments","DistanceToPhoneServiceNumeric","DistanceToPhoneServiceUnits","DistanceToPlaceofWorshipComments","DistanceToPlaceofWorshipNumeric","DistanceToPlaceofWorshipUnits","DistanceToSchoolBusComments","DistanceToSchoolBusNumeric","DistanceToSchoolBusUnits","DistanceToSchoolsComments","DistanceToSchoolsNumeric","DistanceToSchoolsUnits","DistanceToSewerComments","DistanceToSewerNumeric","DistanceToSewerUnits","DistanceToShoppingComments","DistanceToShoppingNumeric","DistanceToShoppingUnits","DistanceToStreetComments","DistanceToStreetNumeric","DistanceToStreetUnits","DistanceToWaterComments","DistanceToWaterNumeric","DistanceToWaterUnits","DocumentsAvailable","DocumentsChangeTimestamp","DocumentsCount","DoorFeatures","DualVariableCompensationYN","Electric","ElectricExpense","ElectricOnPropertyYN","ElementarySchool","ElementarySchoolDistrict","Elevation","ElevationUnits","EntryLevel","EntryLocation","Exclusions","ExistingLeaseType","ExpirationDate","ExteriorFeatures","FarmCreditServiceInclYN","FarmLandAreaSource","FarmLandAreaUnits","Fencing","FinancialDataSource","FireplaceFeatures","FireplaceYN","FireplacesTotal","Flooring","FoundationArea","FoundationDetails","FrontageLength","FrontageType","FuelExpense","Furnished","FurnitureReplacementExpense","GarageSpaces","GarageYN","GardenerExpense","GrazingPermitsBlmYN","GrazingPermitsForestServiceYN","GrazingPermitsPrivateYN","GreenBuildingVerificationType","GreenEnergyEfficient","GreenEnergyGeneration","GreenIndoorAirQuality","GreenLocation","GreenSustainability","GreenWaterConservation","GrossIncome","GrossScheduledIncome","HabitableResidenceYN","Heating","HeatingYN","HighSchool","HighSchoolDistrict","HomeWarrantyYN","HorseAmenities","HorseYN","HoursDaysOfOperation","HoursDaysOfOperationDescription","Inclusions","IncomeIncludes","InsuranceExpense","InteriorFeatures","InternetAddressDisplayYN","InternetAutomatedValuationDisplayYN","InternetConsumerCommentYN","InternetEntireListingDisplayYN","IrrigationSource","IrrigationWaterRightsAcres","IrrigationWaterRightsYN","LaborInformation","LandLeaseAmount","LandLeaseAmountFrequency","LandLeaseExpirationDate","LandLeaseYN","Latitude","LaundryFeatures","LeasableArea","LeasableAreaUnits","LeaseAmount","LeaseAmountFrequency","LeaseAssignableYN","LeaseConsideredYN","LeaseExpiration","LeaseRenewalCompensation","LeaseRenewalOptionYN","LeaseTerm","Levels","License1","License2","License3","LicensesExpense","ListAOR","ListAgentAOR","ListAgentDesignation","ListAgentDirectPhone","ListAgentEmail","ListAgentFax","ListAgentFirstName","ListAgentFullName","ListAgentHomePhone","ListAgentKey","ListAgentKeyNumeric","ListAgentLastName","ListAgentMiddleName","ListAgentMlsId","ListAgentMobilePhone","ListAgentNamePrefix","ListAgentNameSuffix","ListAgentOfficePhone","ListAgentOfficePhoneExt","ListAgentPager","ListAgentPreferredPhone","ListAgentPreferredPhoneExt","ListAgentStateLicense","ListAgentTollFreePhone","ListAgentURL","ListAgentVoiceMail","ListAgentVoiceMailExt","ListOfficeAOR","ListOfficeEmail","ListOfficeFax","ListOfficeKey","ListOfficeKeyNumeric","ListOfficeMlsId","ListOfficeName","ListOfficePhone","ListOfficePhoneExt","ListOfficeURL","ListPrice","ListPriceLow","ListTeamKey","ListTeamKeyNumeric","ListTeamName","ListingAgreement","ListingContractDate","ListingId","ListingKey","ListingKeyNumeric","ListingService","ListingTerms","LivingArea","LivingAreaSource","LivingAreaUnits","LockBoxLocation","LockBoxSerialNumber","LockBoxType","Longitude","LotDimensionsSource","LotFeatures","LotSizeAcres","LotSizeArea","LotSizeDimensions","LotSizeSource","LotSizeSquareFeet","LotSizeUnits","MLSAreaMajor","MLSAreaMinor","MainLevelBathrooms","MainLevelBedrooms","MaintenanceExpense","MajorChangeTimestamp","MajorChangeType","Make","ManagerExpense","MapCoordinate","MapCoordinateSource","MapURL","MiddleOrJuniorSchool","MiddleOrJuniorSchoolDistrict","MlsStatus","MobileDimUnits","MobileHomeRemainsYN","MobileLength","MobileWidth","Model","ModificationTimestamp","NetOperatingIncome","NewConstructionYN","NewTaxesExpense","NumberOfBuildings","NumberOfFullTimeEmployees","NumberOfLots","NumberOfPads","NumberOfPartTimeEmployees","NumberOfSeparateElectricMeters","NumberOfSeparateGasMeters","NumberOfSeparateWaterMeters","NumberOfUnitsInCommunity","NumberOfUnitsLeased","NumberOfUnitsMoMo","NumberOfUnitsTotal","NumberOfUnitsVacant","OccupantName","OccupantPhone","OccupantType","OffMarketDate","OffMarketTimestamp","OnMarketDate","OnMarketTimestamp","OpenParkingSpaces","OpenParkingYN","OperatingExpense","OperatingExpenseIncludes","OriginalEntryTimestamp","OriginalListPrice","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","OtherEquipment","OtherExpense","OtherParking","OtherStructures","OwnerName","OwnerPays","OwnerPhone","Ownership","OwnershipType","ParcelNumber","ParkManagerName","ParkManagerPhone","ParkName","ParkingFeatures","ParkingTotal","PastureArea","PatioAndPorchFeatures","PendingTimestamp","PestControlExpense","PetsAllowed","PhotosChangeTimestamp","PhotosCount","PoolExpense","PoolFeatures","PoolPrivateYN","Possession","PossibleUse","PostalCity","PostalCode","PostalCodePlus4","PowerProductionType","PreviousListPrice","PriceChangeTimestamp","PrivateOfficeRemarks","PrivateRemarks","ProfessionalManagementExpense","PropertyAttachedYN","PropertyCondition","PropertySubType","PropertyType","PublicRemarks","PublicSurveyRange","PublicSurveySection","PublicSurveyTownship","PurchaseContractDate","RVParkingDimensions","RangeArea","RentControlYN","RentIncludes","RoadFrontageType","RoadResponsibility","RoadSurfaceType","Roof","RoomType","RoomsTotal","SeatingCapacity","SecurityFeatures","SeniorCommunityYN","SerialU","SerialX","SerialXX","Sewer","ShowingAdvanceNotice","ShowingAttendedYN","ShowingContactName","ShowingContactPhone","ShowingContactPhoneExt","ShowingContactType","ShowingDays","ShowingEndTime","ShowingInstructions","ShowingRequirements","ShowingStartTime","SignOnPropertyYN","Skirt","SourceSystemID","SourceSystemKey","SourceSystemName","SpaFeatures","SpaYN","SpecialLicenses","SpecialListingConditions","StandardStatus","StateOrProvince","StateRegion","StatusChangeTimestamp","Stories","StoriesTotal","StreetAdditionalInfo","StreetDirPrefix","StreetDirSuffix","StreetName","StreetNumber","StreetNumberNumeric","StreetSuffix","StreetSuffixModifier","StructureType","SubAgencyCompensation","SubAgencyCompensationType","SubdivisionName","SuppliesExpense","SyndicateTo","SyndicationRemarks","TaxAnnualAmount","TaxAssessedValue","TaxBlock","TaxBookNumber","TaxLegalDescription","TaxLot","TaxMapNumber","TaxOtherAnnualAssessmentAmount","TaxParcelLetter","TaxStatusCurrent","TaxTract","TaxYear","TenantPays","Topography","TotalActualRent","Township","TransactionBrokerCompensation","TransactionBrokerCompensationType","TrashExpense","UnitNumber","UnitTypeType","UnitsFurnished","UniversalPropertyId","UniversalPropertySubId","UnparsedAddress","Utilities","VacancyAllowance","VacancyAllowanceRate","Vegetation","VideosChangeTimestamp","VideosCount","View","ViewYN","VirtualTourURLBranded","VirtualTourURLUnbranded","WalkScore","WaterBodyName","WaterSewerExpense","WaterSource","WaterfrontFeatures","WaterfrontYN","WindowFeatures","WithdrawnDate","WoodedArea","WorkmansCompensationExpense","YearBuilt","YearBuiltDetails","YearBuiltEffective","YearBuiltSource","YearEstablished","YearsCurrentOwner","Zoning","ZoningDescription"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","BuyerAgent","BuyerOffice","CoBuyerAgent","CoBuyerOffice","CoListAgent","CoListOffice","ListAgent","ListOffice","BuyerTeam","ListTeam","SourceSystem","HistoryTransactional","Media","SocialMedia","OpenHouse"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Property"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyGreenVerification('{GreenBuildingVerificationKey}')/HistoryTransactional":{"parameters":[{"description":"key: GreenBuildingVerificationKey","in":"path","name":"GreenBuildingVerificationKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["PropertyGreenVerification"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyPowerProduction":{"get":{"summary":"Get entities from PropertyPowerProduction","tags":["PropertyPowerProduction"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ListingId","ListingId desc","ListingKey","ListingKey desc","ListingKeyNumeric","ListingKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","PowerProductionAnnual","PowerProductionAnnual desc","PowerProductionAnnualStatus","PowerProductionAnnualStatus desc","PowerProductionKey","PowerProductionKey desc","PowerProductionKeyNumeric","PowerProductionKeyNumeric desc","PowerProductionSize","PowerProductionSize desc","PowerProductionType","PowerProductionType desc","PowerProductionYearInstall","PowerProductionYearInstall desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ListingId","ListingKey","ListingKeyNumeric","ModificationTimestamp","PowerProductionAnnual","PowerProductionAnnualStatus","PowerProductionKey","PowerProductionKeyNumeric","PowerProductionSize","PowerProductionType","PowerProductionYearInstall"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Listing","HistoryTransactional"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of PropertyPowerProduction","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.PropertyPowerProduction"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to PropertyPowerProduction","tags":["PropertyPowerProduction"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyPowerProduction-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyPowerProduction"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyPowerProduction('{PowerProductionKey}')":{"parameters":[{"description":"key: PowerProductionKey","in":"path","name":"PowerProductionKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from PropertyPowerProduction by key","tags":["PropertyPowerProduction"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ListingId","ListingKey","ListingKeyNumeric","ModificationTimestamp","PowerProductionAnnual","PowerProductionAnnualStatus","PowerProductionKey","PowerProductionKeyNumeric","PowerProductionSize","PowerProductionType","PowerProductionYearInstall"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Listing","HistoryTransactional"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyPowerProduction"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in PropertyPowerProduction","tags":["PropertyPowerProduction"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyPowerProduction-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from PropertyPowerProduction","tags":["PropertyPowerProduction"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyPowerProduction('{PowerProductionKey}')/Listing":{"parameters":[{"description":"key: PowerProductionKey","in":"path","name":"PowerProductionKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related Listing","tags":["PropertyPowerProduction"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AboveGradeFinishedArea","AboveGradeFinishedAreaSource","AboveGradeFinishedAreaUnits","AccessCode","AccessibilityFeatures","AdditionalParcelsDescription","AdditionalParcelsYN","AnchorsCoTenants","Appliances","ArchitecturalStyle","AssociationAmenities","AssociationFee","AssociationFee2","AssociationFee2Frequency","AssociationFeeFrequency","AssociationFeeIncludes","AssociationName","AssociationName2","AssociationPhone","AssociationPhone2","AssociationYN","AttachedGarageYN","AvailabilityDate","Basement","BasementYN","BathroomsFull","BathroomsHalf","BathroomsOneQuarter","BathroomsPartial","BathroomsThreeQuarter","BathroomsTotalInteger","BedroomsPossible","BedroomsTotal","BelowGradeFinishedArea","BelowGradeFinishedAreaSource","BelowGradeFinishedAreaUnits","BodyType","BuilderModel","BuilderName","BuildingAreaSource","BuildingAreaTotal","BuildingAreaUnits","BuildingFeatures","BuildingName","BusinessName","BusinessType","BuyerAgencyCompensation","BuyerAgencyCompensationType","BuyerAgentAOR","BuyerAgentDesignation","BuyerAgentDirectPhone","BuyerAgentEmail","BuyerAgentFax","BuyerAgentFirstName","BuyerAgentFullName","BuyerAgentHomePhone","BuyerAgentKey","BuyerAgentKeyNumeric","BuyerAgentLastName","BuyerAgentMiddleName","BuyerAgentMlsId","BuyerAgentMobilePhone","BuyerAgentNamePrefix","BuyerAgentNameSuffix","BuyerAgentOfficePhone","BuyerAgentOfficePhoneExt","BuyerAgentPager","BuyerAgentPreferredPhone","BuyerAgentPreferredPhoneExt","BuyerAgentStateLicense","BuyerAgentTollFreePhone","BuyerAgentURL","BuyerAgentVoiceMail","BuyerAgentVoiceMailExt","BuyerFinancing","BuyerOfficeAOR","BuyerOfficeEmail","BuyerOfficeFax","BuyerOfficeKey","BuyerOfficeKeyNumeric","BuyerOfficeMlsId","BuyerOfficeName","BuyerOfficePhone","BuyerOfficePhoneExt","BuyerOfficeURL","BuyerTeamKey","BuyerTeamKeyNumeric","BuyerTeamName","CableTvExpense","CancellationDate","CapRate","CarportSpaces","CarportYN","CarrierRoute","City","CityRegion","CloseDate","ClosePrice","CoBuyerAgentAOR","CoBuyerAgentDesignation","CoBuyerAgentDirectPhone","CoBuyerAgentEmail","CoBuyerAgentFax","CoBuyerAgentFirstName","CoBuyerAgentFullName","CoBuyerAgentHomePhone","CoBuyerAgentKey","CoBuyerAgentKeyNumeric","CoBuyerAgentLastName","CoBuyerAgentMiddleName","CoBuyerAgentMlsId","CoBuyerAgentMobilePhone","CoBuyerAgentNamePrefix","CoBuyerAgentNameSuffix","CoBuyerAgentOfficePhone","CoBuyerAgentOfficePhoneExt","CoBuyerAgentPager","CoBuyerAgentPreferredPhone","CoBuyerAgentPreferredPhoneExt","CoBuyerAgentStateLicense","CoBuyerAgentTollFreePhone","CoBuyerAgentURL","CoBuyerAgentVoiceMail","CoBuyerAgentVoiceMailExt","CoBuyerOfficeAOR","CoBuyerOfficeEmail","CoBuyerOfficeFax","CoBuyerOfficeKey","CoBuyerOfficeKeyNumeric","CoBuyerOfficeMlsId","CoBuyerOfficeName","CoBuyerOfficePhone","CoBuyerOfficePhoneExt","CoBuyerOfficeURL","CoListAgentAOR","CoListAgentDesignation","CoListAgentDirectPhone","CoListAgentEmail","CoListAgentFax","CoListAgentFirstName","CoListAgentFullName","CoListAgentHomePhone","CoListAgentKey","CoListAgentKeyNumeric","CoListAgentLastName","CoListAgentMiddleName","CoListAgentMlsId","CoListAgentMobilePhone","CoListAgentNamePrefix","CoListAgentNameSuffix","CoListAgentOfficePhone","CoListAgentOfficePhoneExt","CoListAgentPager","CoListAgentPreferredPhone","CoListAgentPreferredPhoneExt","CoListAgentStateLicense","CoListAgentTollFreePhone","CoListAgentURL","CoListAgentVoiceMail","CoListAgentVoiceMailExt","CoListOfficeAOR","CoListOfficeEmail","CoListOfficeFax","CoListOfficeKey","CoListOfficeKeyNumeric","CoListOfficeMlsId","CoListOfficeName","CoListOfficePhone","CoListOfficePhoneExt","CoListOfficeURL","CommonInterest","CommonWalls","CommunityFeatures","Concessions","ConcessionsAmount","ConcessionsComments","ConstructionMaterials","ContinentRegion","Contingency","ContingentDate","ContractStatusChangeDate","Cooling","CoolingYN","CopyrightNotice","Country","CountryRegion","CountyOrParish","CoveredSpaces","CropsIncludedYN","CrossStreet","CultivatedArea","CumulativeDaysOnMarket","CurrentFinancing","CurrentUse","DOH1","DOH2","DOH3","DaysOnMarket","DevelopmentStatus","DirectionFaces","Directions","Disclaimer","Disclosures","DistanceToBusComments","DistanceToBusNumeric","DistanceToBusUnits","DistanceToElectricComments","DistanceToElectricNumeric","DistanceToElectricUnits","DistanceToFreewayComments","DistanceToFreewayNumeric","DistanceToFreewayUnits","DistanceToGasComments","DistanceToGasNumeric","DistanceToGasUnits","DistanceToPhoneServiceComments","DistanceToPhoneServiceNumeric","DistanceToPhoneServiceUnits","DistanceToPlaceofWorshipComments","DistanceToPlaceofWorshipNumeric","DistanceToPlaceofWorshipUnits","DistanceToSchoolBusComments","DistanceToSchoolBusNumeric","DistanceToSchoolBusUnits","DistanceToSchoolsComments","DistanceToSchoolsNumeric","DistanceToSchoolsUnits","DistanceToSewerComments","DistanceToSewerNumeric","DistanceToSewerUnits","DistanceToShoppingComments","DistanceToShoppingNumeric","DistanceToShoppingUnits","DistanceToStreetComments","DistanceToStreetNumeric","DistanceToStreetUnits","DistanceToWaterComments","DistanceToWaterNumeric","DistanceToWaterUnits","DocumentsAvailable","DocumentsChangeTimestamp","DocumentsCount","DoorFeatures","DualVariableCompensationYN","Electric","ElectricExpense","ElectricOnPropertyYN","ElementarySchool","ElementarySchoolDistrict","Elevation","ElevationUnits","EntryLevel","EntryLocation","Exclusions","ExistingLeaseType","ExpirationDate","ExteriorFeatures","FarmCreditServiceInclYN","FarmLandAreaSource","FarmLandAreaUnits","Fencing","FinancialDataSource","FireplaceFeatures","FireplaceYN","FireplacesTotal","Flooring","FoundationArea","FoundationDetails","FrontageLength","FrontageType","FuelExpense","Furnished","FurnitureReplacementExpense","GarageSpaces","GarageYN","GardenerExpense","GrazingPermitsBlmYN","GrazingPermitsForestServiceYN","GrazingPermitsPrivateYN","GreenBuildingVerificationType","GreenEnergyEfficient","GreenEnergyGeneration","GreenIndoorAirQuality","GreenLocation","GreenSustainability","GreenWaterConservation","GrossIncome","GrossScheduledIncome","HabitableResidenceYN","Heating","HeatingYN","HighSchool","HighSchoolDistrict","HomeWarrantyYN","HorseAmenities","HorseYN","HoursDaysOfOperation","HoursDaysOfOperationDescription","Inclusions","IncomeIncludes","InsuranceExpense","InteriorFeatures","InternetAddressDisplayYN","InternetAutomatedValuationDisplayYN","InternetConsumerCommentYN","InternetEntireListingDisplayYN","IrrigationSource","IrrigationWaterRightsAcres","IrrigationWaterRightsYN","LaborInformation","LandLeaseAmount","LandLeaseAmountFrequency","LandLeaseExpirationDate","LandLeaseYN","Latitude","LaundryFeatures","LeasableArea","LeasableAreaUnits","LeaseAmount","LeaseAmountFrequency","LeaseAssignableYN","LeaseConsideredYN","LeaseExpiration","LeaseRenewalCompensation","LeaseRenewalOptionYN","LeaseTerm","Levels","License1","License2","License3","LicensesExpense","ListAOR","ListAgentAOR","ListAgentDesignation","ListAgentDirectPhone","ListAgentEmail","ListAgentFax","ListAgentFirstName","ListAgentFullName","ListAgentHomePhone","ListAgentKey","ListAgentKeyNumeric","ListAgentLastName","ListAgentMiddleName","ListAgentMlsId","ListAgentMobilePhone","ListAgentNamePrefix","ListAgentNameSuffix","ListAgentOfficePhone","ListAgentOfficePhoneExt","ListAgentPager","ListAgentPreferredPhone","ListAgentPreferredPhoneExt","ListAgentStateLicense","ListAgentTollFreePhone","ListAgentURL","ListAgentVoiceMail","ListAgentVoiceMailExt","ListOfficeAOR","ListOfficeEmail","ListOfficeFax","ListOfficeKey","ListOfficeKeyNumeric","ListOfficeMlsId","ListOfficeName","ListOfficePhone","ListOfficePhoneExt","ListOfficeURL","ListPrice","ListPriceLow","ListTeamKey","ListTeamKeyNumeric","ListTeamName","ListingAgreement","ListingContractDate","ListingId","ListingKey","ListingKeyNumeric","ListingService","ListingTerms","LivingArea","LivingAreaSource","LivingAreaUnits","LockBoxLocation","LockBoxSerialNumber","LockBoxType","Longitude","LotDimensionsSource","LotFeatures","LotSizeAcres","LotSizeArea","LotSizeDimensions","LotSizeSource","LotSizeSquareFeet","LotSizeUnits","MLSAreaMajor","MLSAreaMinor","MainLevelBathrooms","MainLevelBedrooms","MaintenanceExpense","MajorChangeTimestamp","MajorChangeType","Make","ManagerExpense","MapCoordinate","MapCoordinateSource","MapURL","MiddleOrJuniorSchool","MiddleOrJuniorSchoolDistrict","MlsStatus","MobileDimUnits","MobileHomeRemainsYN","MobileLength","MobileWidth","Model","ModificationTimestamp","NetOperatingIncome","NewConstructionYN","NewTaxesExpense","NumberOfBuildings","NumberOfFullTimeEmployees","NumberOfLots","NumberOfPads","NumberOfPartTimeEmployees","NumberOfSeparateElectricMeters","NumberOfSeparateGasMeters","NumberOfSeparateWaterMeters","NumberOfUnitsInCommunity","NumberOfUnitsLeased","NumberOfUnitsMoMo","NumberOfUnitsTotal","NumberOfUnitsVacant","OccupantName","OccupantPhone","OccupantType","OffMarketDate","OffMarketTimestamp","OnMarketDate","OnMarketTimestamp","OpenParkingSpaces","OpenParkingYN","OperatingExpense","OperatingExpenseIncludes","OriginalEntryTimestamp","OriginalListPrice","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","OtherEquipment","OtherExpense","OtherParking","OtherStructures","OwnerName","OwnerPays","OwnerPhone","Ownership","OwnershipType","ParcelNumber","ParkManagerName","ParkManagerPhone","ParkName","ParkingFeatures","ParkingTotal","PastureArea","PatioAndPorchFeatures","PendingTimestamp","PestControlExpense","PetsAllowed","PhotosChangeTimestamp","PhotosCount","PoolExpense","PoolFeatures","PoolPrivateYN","Possession","PossibleUse","PostalCity","PostalCode","PostalCodePlus4","PowerProductionType","PreviousListPrice","PriceChangeTimestamp","PrivateOfficeRemarks","PrivateRemarks","ProfessionalManagementExpense","PropertyAttachedYN","PropertyCondition","PropertySubType","PropertyType","PublicRemarks","PublicSurveyRange","PublicSurveySection","PublicSurveyTownship","PurchaseContractDate","RVParkingDimensions","RangeArea","RentControlYN","RentIncludes","RoadFrontageType","RoadResponsibility","RoadSurfaceType","Roof","RoomType","RoomsTotal","SeatingCapacity","SecurityFeatures","SeniorCommunityYN","SerialU","SerialX","SerialXX","Sewer","ShowingAdvanceNotice","ShowingAttendedYN","ShowingContactName","ShowingContactPhone","ShowingContactPhoneExt","ShowingContactType","ShowingDays","ShowingEndTime","ShowingInstructions","ShowingRequirements","ShowingStartTime","SignOnPropertyYN","Skirt","SourceSystemID","SourceSystemKey","SourceSystemName","SpaFeatures","SpaYN","SpecialLicenses","SpecialListingConditions","StandardStatus","StateOrProvince","StateRegion","StatusChangeTimestamp","Stories","StoriesTotal","StreetAdditionalInfo","StreetDirPrefix","StreetDirSuffix","StreetName","StreetNumber","StreetNumberNumeric","StreetSuffix","StreetSuffixModifier","StructureType","SubAgencyCompensation","SubAgencyCompensationType","SubdivisionName","SuppliesExpense","SyndicateTo","SyndicationRemarks","TaxAnnualAmount","TaxAssessedValue","TaxBlock","TaxBookNumber","TaxLegalDescription","TaxLot","TaxMapNumber","TaxOtherAnnualAssessmentAmount","TaxParcelLetter","TaxStatusCurrent","TaxTract","TaxYear","TenantPays","Topography","TotalActualRent","Township","TransactionBrokerCompensation","TransactionBrokerCompensationType","TrashExpense","UnitNumber","UnitTypeType","UnitsFurnished","UniversalPropertyId","UniversalPropertySubId","UnparsedAddress","Utilities","VacancyAllowance","VacancyAllowanceRate","Vegetation","VideosChangeTimestamp","VideosCount","View","ViewYN","VirtualTourURLBranded","VirtualTourURLUnbranded","WalkScore","WaterBodyName","WaterSewerExpense","WaterSource","WaterfrontFeatures","WaterfrontYN","WindowFeatures","WithdrawnDate","WoodedArea","WorkmansCompensationExpense","YearBuilt","YearBuiltDetails","YearBuiltEffective","YearBuiltSource","YearEstablished","YearsCurrentOwner","Zoning","ZoningDescription"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","BuyerAgent","BuyerOffice","CoBuyerAgent","CoBuyerOffice","CoListAgent","CoListOffice","ListAgent","ListOffice","BuyerTeam","ListTeam","SourceSystem","HistoryTransactional","Media","SocialMedia","OpenHouse"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Property"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyPowerProduction('{PowerProductionKey}')/HistoryTransactional":{"parameters":[{"description":"key: PowerProductionKey","in":"path","name":"PowerProductionKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["PropertyPowerProduction"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyRooms":{"get":{"summary":"Get entities from PropertyRooms","tags":["PropertyRooms"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ListingId","ListingId desc","ListingKey","ListingKey desc","ListingKeyNumeric","ListingKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","RoomArea","RoomArea desc","RoomAreaSource","RoomAreaSource desc","RoomAreaUnits","RoomAreaUnits desc","RoomDescription","RoomDescription desc","RoomDimensions","RoomDimensions desc","RoomFeatures","RoomFeatures desc","RoomKey","RoomKey desc","RoomKeyNumeric","RoomKeyNumeric desc","RoomLength","RoomLength desc","RoomLengthWidthUnits","RoomLengthWidthUnits desc","RoomType","RoomType desc","RoomWidth","RoomWidth desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ListingId","ListingKey","ListingKeyNumeric","ModificationTimestamp","RoomArea","RoomAreaSource","RoomAreaUnits","RoomDescription","RoomDimensions","RoomFeatures","RoomKey","RoomKeyNumeric","RoomLength","RoomLengthWidthUnits","RoomType","RoomWidth"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Listing","HistoryTransactional"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of PropertyRooms","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.PropertyRooms"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to PropertyRooms","tags":["PropertyRooms"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyRooms-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyRooms"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyRooms('{RoomKey}')":{"parameters":[{"description":"key: RoomKey","in":"path","name":"RoomKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from PropertyRooms by key","tags":["PropertyRooms"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ListingId","ListingKey","ListingKeyNumeric","ModificationTimestamp","RoomArea","RoomAreaSource","RoomAreaUnits","RoomDescription","RoomDimensions","RoomFeatures","RoomKey","RoomKeyNumeric","RoomLength","RoomLengthWidthUnits","RoomType","RoomWidth"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Listing","HistoryTransactional"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyRooms"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in PropertyRooms","tags":["PropertyRooms"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyRooms-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from PropertyRooms","tags":["PropertyRooms"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyRooms('{RoomKey}')/Listing":{"parameters":[{"description":"key: RoomKey","in":"path","name":"RoomKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related Listing","tags":["PropertyRooms"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AboveGradeFinishedArea","AboveGradeFinishedAreaSource","AboveGradeFinishedAreaUnits","AccessCode","AccessibilityFeatures","AdditionalParcelsDescription","AdditionalParcelsYN","AnchorsCoTenants","Appliances","ArchitecturalStyle","AssociationAmenities","AssociationFee","AssociationFee2","AssociationFee2Frequency","AssociationFeeFrequency","AssociationFeeIncludes","AssociationName","AssociationName2","AssociationPhone","AssociationPhone2","AssociationYN","AttachedGarageYN","AvailabilityDate","Basement","BasementYN","BathroomsFull","BathroomsHalf","BathroomsOneQuarter","BathroomsPartial","BathroomsThreeQuarter","BathroomsTotalInteger","BedroomsPossible","BedroomsTotal","BelowGradeFinishedArea","BelowGradeFinishedAreaSource","BelowGradeFinishedAreaUnits","BodyType","BuilderModel","BuilderName","BuildingAreaSource","BuildingAreaTotal","BuildingAreaUnits","BuildingFeatures","BuildingName","BusinessName","BusinessType","BuyerAgencyCompensation","BuyerAgencyCompensationType","BuyerAgentAOR","BuyerAgentDesignation","BuyerAgentDirectPhone","BuyerAgentEmail","BuyerAgentFax","BuyerAgentFirstName","BuyerAgentFullName","BuyerAgentHomePhone","BuyerAgentKey","BuyerAgentKeyNumeric","BuyerAgentLastName","BuyerAgentMiddleName","BuyerAgentMlsId","BuyerAgentMobilePhone","BuyerAgentNamePrefix","BuyerAgentNameSuffix","BuyerAgentOfficePhone","BuyerAgentOfficePhoneExt","BuyerAgentPager","BuyerAgentPreferredPhone","BuyerAgentPreferredPhoneExt","BuyerAgentStateLicense","BuyerAgentTollFreePhone","BuyerAgentURL","BuyerAgentVoiceMail","BuyerAgentVoiceMailExt","BuyerFinancing","BuyerOfficeAOR","BuyerOfficeEmail","BuyerOfficeFax","BuyerOfficeKey","BuyerOfficeKeyNumeric","BuyerOfficeMlsId","BuyerOfficeName","BuyerOfficePhone","BuyerOfficePhoneExt","BuyerOfficeURL","BuyerTeamKey","BuyerTeamKeyNumeric","BuyerTeamName","CableTvExpense","CancellationDate","CapRate","CarportSpaces","CarportYN","CarrierRoute","City","CityRegion","CloseDate","ClosePrice","CoBuyerAgentAOR","CoBuyerAgentDesignation","CoBuyerAgentDirectPhone","CoBuyerAgentEmail","CoBuyerAgentFax","CoBuyerAgentFirstName","CoBuyerAgentFullName","CoBuyerAgentHomePhone","CoBuyerAgentKey","CoBuyerAgentKeyNumeric","CoBuyerAgentLastName","CoBuyerAgentMiddleName","CoBuyerAgentMlsId","CoBuyerAgentMobilePhone","CoBuyerAgentNamePrefix","CoBuyerAgentNameSuffix","CoBuyerAgentOfficePhone","CoBuyerAgentOfficePhoneExt","CoBuyerAgentPager","CoBuyerAgentPreferredPhone","CoBuyerAgentPreferredPhoneExt","CoBuyerAgentStateLicense","CoBuyerAgentTollFreePhone","CoBuyerAgentURL","CoBuyerAgentVoiceMail","CoBuyerAgentVoiceMailExt","CoBuyerOfficeAOR","CoBuyerOfficeEmail","CoBuyerOfficeFax","CoBuyerOfficeKey","CoBuyerOfficeKeyNumeric","CoBuyerOfficeMlsId","CoBuyerOfficeName","CoBuyerOfficePhone","CoBuyerOfficePhoneExt","CoBuyerOfficeURL","CoListAgentAOR","CoListAgentDesignation","CoListAgentDirectPhone","CoListAgentEmail","CoListAgentFax","CoListAgentFirstName","CoListAgentFullName","CoListAgentHomePhone","CoListAgentKey","CoListAgentKeyNumeric","CoListAgentLastName","CoListAgentMiddleName","CoListAgentMlsId","CoListAgentMobilePhone","CoListAgentNamePrefix","CoListAgentNameSuffix","CoListAgentOfficePhone","CoListAgentOfficePhoneExt","CoListAgentPager","CoListAgentPreferredPhone","CoListAgentPreferredPhoneExt","CoListAgentStateLicense","CoListAgentTollFreePhone","CoListAgentURL","CoListAgentVoiceMail","CoListAgentVoiceMailExt","CoListOfficeAOR","CoListOfficeEmail","CoListOfficeFax","CoListOfficeKey","CoListOfficeKeyNumeric","CoListOfficeMlsId","CoListOfficeName","CoListOfficePhone","CoListOfficePhoneExt","CoListOfficeURL","CommonInterest","CommonWalls","CommunityFeatures","Concessions","ConcessionsAmount","ConcessionsComments","ConstructionMaterials","ContinentRegion","Contingency","ContingentDate","ContractStatusChangeDate","Cooling","CoolingYN","CopyrightNotice","Country","CountryRegion","CountyOrParish","CoveredSpaces","CropsIncludedYN","CrossStreet","CultivatedArea","CumulativeDaysOnMarket","CurrentFinancing","CurrentUse","DOH1","DOH2","DOH3","DaysOnMarket","DevelopmentStatus","DirectionFaces","Directions","Disclaimer","Disclosures","DistanceToBusComments","DistanceToBusNumeric","DistanceToBusUnits","DistanceToElectricComments","DistanceToElectricNumeric","DistanceToElectricUnits","DistanceToFreewayComments","DistanceToFreewayNumeric","DistanceToFreewayUnits","DistanceToGasComments","DistanceToGasNumeric","DistanceToGasUnits","DistanceToPhoneServiceComments","DistanceToPhoneServiceNumeric","DistanceToPhoneServiceUnits","DistanceToPlaceofWorshipComments","DistanceToPlaceofWorshipNumeric","DistanceToPlaceofWorshipUnits","DistanceToSchoolBusComments","DistanceToSchoolBusNumeric","DistanceToSchoolBusUnits","DistanceToSchoolsComments","DistanceToSchoolsNumeric","DistanceToSchoolsUnits","DistanceToSewerComments","DistanceToSewerNumeric","DistanceToSewerUnits","DistanceToShoppingComments","DistanceToShoppingNumeric","DistanceToShoppingUnits","DistanceToStreetComments","DistanceToStreetNumeric","DistanceToStreetUnits","DistanceToWaterComments","DistanceToWaterNumeric","DistanceToWaterUnits","DocumentsAvailable","DocumentsChangeTimestamp","DocumentsCount","DoorFeatures","DualVariableCompensationYN","Electric","ElectricExpense","ElectricOnPropertyYN","ElementarySchool","ElementarySchoolDistrict","Elevation","ElevationUnits","EntryLevel","EntryLocation","Exclusions","ExistingLeaseType","ExpirationDate","ExteriorFeatures","FarmCreditServiceInclYN","FarmLandAreaSource","FarmLandAreaUnits","Fencing","FinancialDataSource","FireplaceFeatures","FireplaceYN","FireplacesTotal","Flooring","FoundationArea","FoundationDetails","FrontageLength","FrontageType","FuelExpense","Furnished","FurnitureReplacementExpense","GarageSpaces","GarageYN","GardenerExpense","GrazingPermitsBlmYN","GrazingPermitsForestServiceYN","GrazingPermitsPrivateYN","GreenBuildingVerificationType","GreenEnergyEfficient","GreenEnergyGeneration","GreenIndoorAirQuality","GreenLocation","GreenSustainability","GreenWaterConservation","GrossIncome","GrossScheduledIncome","HabitableResidenceYN","Heating","HeatingYN","HighSchool","HighSchoolDistrict","HomeWarrantyYN","HorseAmenities","HorseYN","HoursDaysOfOperation","HoursDaysOfOperationDescription","Inclusions","IncomeIncludes","InsuranceExpense","InteriorFeatures","InternetAddressDisplayYN","InternetAutomatedValuationDisplayYN","InternetConsumerCommentYN","InternetEntireListingDisplayYN","IrrigationSource","IrrigationWaterRightsAcres","IrrigationWaterRightsYN","LaborInformation","LandLeaseAmount","LandLeaseAmountFrequency","LandLeaseExpirationDate","LandLeaseYN","Latitude","LaundryFeatures","LeasableArea","LeasableAreaUnits","LeaseAmount","LeaseAmountFrequency","LeaseAssignableYN","LeaseConsideredYN","LeaseExpiration","LeaseRenewalCompensation","LeaseRenewalOptionYN","LeaseTerm","Levels","License1","License2","License3","LicensesExpense","ListAOR","ListAgentAOR","ListAgentDesignation","ListAgentDirectPhone","ListAgentEmail","ListAgentFax","ListAgentFirstName","ListAgentFullName","ListAgentHomePhone","ListAgentKey","ListAgentKeyNumeric","ListAgentLastName","ListAgentMiddleName","ListAgentMlsId","ListAgentMobilePhone","ListAgentNamePrefix","ListAgentNameSuffix","ListAgentOfficePhone","ListAgentOfficePhoneExt","ListAgentPager","ListAgentPreferredPhone","ListAgentPreferredPhoneExt","ListAgentStateLicense","ListAgentTollFreePhone","ListAgentURL","ListAgentVoiceMail","ListAgentVoiceMailExt","ListOfficeAOR","ListOfficeEmail","ListOfficeFax","ListOfficeKey","ListOfficeKeyNumeric","ListOfficeMlsId","ListOfficeName","ListOfficePhone","ListOfficePhoneExt","ListOfficeURL","ListPrice","ListPriceLow","ListTeamKey","ListTeamKeyNumeric","ListTeamName","ListingAgreement","ListingContractDate","ListingId","ListingKey","ListingKeyNumeric","ListingService","ListingTerms","LivingArea","LivingAreaSource","LivingAreaUnits","LockBoxLocation","LockBoxSerialNumber","LockBoxType","Longitude","LotDimensionsSource","LotFeatures","LotSizeAcres","LotSizeArea","LotSizeDimensions","LotSizeSource","LotSizeSquareFeet","LotSizeUnits","MLSAreaMajor","MLSAreaMinor","MainLevelBathrooms","MainLevelBedrooms","MaintenanceExpense","MajorChangeTimestamp","MajorChangeType","Make","ManagerExpense","MapCoordinate","MapCoordinateSource","MapURL","MiddleOrJuniorSchool","MiddleOrJuniorSchoolDistrict","MlsStatus","MobileDimUnits","MobileHomeRemainsYN","MobileLength","MobileWidth","Model","ModificationTimestamp","NetOperatingIncome","NewConstructionYN","NewTaxesExpense","NumberOfBuildings","NumberOfFullTimeEmployees","NumberOfLots","NumberOfPads","NumberOfPartTimeEmployees","NumberOfSeparateElectricMeters","NumberOfSeparateGasMeters","NumberOfSeparateWaterMeters","NumberOfUnitsInCommunity","NumberOfUnitsLeased","NumberOfUnitsMoMo","NumberOfUnitsTotal","NumberOfUnitsVacant","OccupantName","OccupantPhone","OccupantType","OffMarketDate","OffMarketTimestamp","OnMarketDate","OnMarketTimestamp","OpenParkingSpaces","OpenParkingYN","OperatingExpense","OperatingExpenseIncludes","OriginalEntryTimestamp","OriginalListPrice","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","OtherEquipment","OtherExpense","OtherParking","OtherStructures","OwnerName","OwnerPays","OwnerPhone","Ownership","OwnershipType","ParcelNumber","ParkManagerName","ParkManagerPhone","ParkName","ParkingFeatures","ParkingTotal","PastureArea","PatioAndPorchFeatures","PendingTimestamp","PestControlExpense","PetsAllowed","PhotosChangeTimestamp","PhotosCount","PoolExpense","PoolFeatures","PoolPrivateYN","Possession","PossibleUse","PostalCity","PostalCode","PostalCodePlus4","PowerProductionType","PreviousListPrice","PriceChangeTimestamp","PrivateOfficeRemarks","PrivateRemarks","ProfessionalManagementExpense","PropertyAttachedYN","PropertyCondition","PropertySubType","PropertyType","PublicRemarks","PublicSurveyRange","PublicSurveySection","PublicSurveyTownship","PurchaseContractDate","RVParkingDimensions","RangeArea","RentControlYN","RentIncludes","RoadFrontageType","RoadResponsibility","RoadSurfaceType","Roof","RoomType","RoomsTotal","SeatingCapacity","SecurityFeatures","SeniorCommunityYN","SerialU","SerialX","SerialXX","Sewer","ShowingAdvanceNotice","ShowingAttendedYN","ShowingContactName","ShowingContactPhone","ShowingContactPhoneExt","ShowingContactType","ShowingDays","ShowingEndTime","ShowingInstructions","ShowingRequirements","ShowingStartTime","SignOnPropertyYN","Skirt","SourceSystemID","SourceSystemKey","SourceSystemName","SpaFeatures","SpaYN","SpecialLicenses","SpecialListingConditions","StandardStatus","StateOrProvince","StateRegion","StatusChangeTimestamp","Stories","StoriesTotal","StreetAdditionalInfo","StreetDirPrefix","StreetDirSuffix","StreetName","StreetNumber","StreetNumberNumeric","StreetSuffix","StreetSuffixModifier","StructureType","SubAgencyCompensation","SubAgencyCompensationType","SubdivisionName","SuppliesExpense","SyndicateTo","SyndicationRemarks","TaxAnnualAmount","TaxAssessedValue","TaxBlock","TaxBookNumber","TaxLegalDescription","TaxLot","TaxMapNumber","TaxOtherAnnualAssessmentAmount","TaxParcelLetter","TaxStatusCurrent","TaxTract","TaxYear","TenantPays","Topography","TotalActualRent","Township","TransactionBrokerCompensation","TransactionBrokerCompensationType","TrashExpense","UnitNumber","UnitTypeType","UnitsFurnished","UniversalPropertyId","UniversalPropertySubId","UnparsedAddress","Utilities","VacancyAllowance","VacancyAllowanceRate","Vegetation","VideosChangeTimestamp","VideosCount","View","ViewYN","VirtualTourURLBranded","VirtualTourURLUnbranded","WalkScore","WaterBodyName","WaterSewerExpense","WaterSource","WaterfrontFeatures","WaterfrontYN","WindowFeatures","WithdrawnDate","WoodedArea","WorkmansCompensationExpense","YearBuilt","YearBuiltDetails","YearBuiltEffective","YearBuiltSource","YearEstablished","YearsCurrentOwner","Zoning","ZoningDescription"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","BuyerAgent","BuyerOffice","CoBuyerAgent","CoBuyerOffice","CoListAgent","CoListOffice","ListAgent","ListOffice","BuyerTeam","ListTeam","SourceSystem","HistoryTransactional","Media","SocialMedia","OpenHouse"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Property"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyRooms('{RoomKey}')/HistoryTransactional":{"parameters":[{"description":"key: RoomKey","in":"path","name":"RoomKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["PropertyRooms"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyUnitTypes":{"get":{"summary":"Get entities from PropertyUnitTypes","tags":["PropertyUnitTypes"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ListingId","ListingId desc","ListingKey","ListingKey desc","ListingKeyNumeric","ListingKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","UnitTypeActualRent","UnitTypeActualRent desc","UnitTypeBathsTotal","UnitTypeBathsTotal desc","UnitTypeBedsTotal","UnitTypeBedsTotal desc","UnitTypeDescription","UnitTypeDescription desc","UnitTypeFurnished","UnitTypeFurnished desc","UnitTypeGarageAttachedYN","UnitTypeGarageAttachedYN desc","UnitTypeGarageSpaces","UnitTypeGarageSpaces desc","UnitTypeKey","UnitTypeKey desc","UnitTypeKeyNumeric","UnitTypeKeyNumeric desc","UnitTypeProForma","UnitTypeProForma desc","UnitTypeTotalRent","UnitTypeTotalRent desc","UnitTypeType","UnitTypeType desc","UnitTypeUnitsTotal","UnitTypeUnitsTotal desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ListingId","ListingKey","ListingKeyNumeric","ModificationTimestamp","UnitTypeActualRent","UnitTypeBathsTotal","UnitTypeBedsTotal","UnitTypeDescription","UnitTypeFurnished","UnitTypeGarageAttachedYN","UnitTypeGarageSpaces","UnitTypeKey","UnitTypeKeyNumeric","UnitTypeProForma","UnitTypeTotalRent","UnitTypeType","UnitTypeUnitsTotal"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Listing","HistoryTransactional"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of PropertyUnitTypes","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.PropertyUnitTypes"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to PropertyUnitTypes","tags":["PropertyUnitTypes"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyUnitTypes-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyUnitTypes"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyUnitTypes('{UnitTypeKey}')":{"parameters":[{"description":"key: UnitTypeKey","in":"path","name":"UnitTypeKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from PropertyUnitTypes by key","tags":["PropertyUnitTypes"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ListingId","ListingKey","ListingKeyNumeric","ModificationTimestamp","UnitTypeActualRent","UnitTypeBathsTotal","UnitTypeBedsTotal","UnitTypeDescription","UnitTypeFurnished","UnitTypeGarageAttachedYN","UnitTypeGarageSpaces","UnitTypeKey","UnitTypeKeyNumeric","UnitTypeProForma","UnitTypeTotalRent","UnitTypeType","UnitTypeUnitsTotal"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","Listing","HistoryTransactional"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyUnitTypes"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in PropertyUnitTypes","tags":["PropertyUnitTypes"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.PropertyUnitTypes-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from PropertyUnitTypes","tags":["PropertyUnitTypes"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyUnitTypes('{UnitTypeKey}')/Listing":{"parameters":[{"description":"key: UnitTypeKey","in":"path","name":"UnitTypeKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get related Listing","tags":["PropertyUnitTypes"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["AboveGradeFinishedArea","AboveGradeFinishedAreaSource","AboveGradeFinishedAreaUnits","AccessCode","AccessibilityFeatures","AdditionalParcelsDescription","AdditionalParcelsYN","AnchorsCoTenants","Appliances","ArchitecturalStyle","AssociationAmenities","AssociationFee","AssociationFee2","AssociationFee2Frequency","AssociationFeeFrequency","AssociationFeeIncludes","AssociationName","AssociationName2","AssociationPhone","AssociationPhone2","AssociationYN","AttachedGarageYN","AvailabilityDate","Basement","BasementYN","BathroomsFull","BathroomsHalf","BathroomsOneQuarter","BathroomsPartial","BathroomsThreeQuarter","BathroomsTotalInteger","BedroomsPossible","BedroomsTotal","BelowGradeFinishedArea","BelowGradeFinishedAreaSource","BelowGradeFinishedAreaUnits","BodyType","BuilderModel","BuilderName","BuildingAreaSource","BuildingAreaTotal","BuildingAreaUnits","BuildingFeatures","BuildingName","BusinessName","BusinessType","BuyerAgencyCompensation","BuyerAgencyCompensationType","BuyerAgentAOR","BuyerAgentDesignation","BuyerAgentDirectPhone","BuyerAgentEmail","BuyerAgentFax","BuyerAgentFirstName","BuyerAgentFullName","BuyerAgentHomePhone","BuyerAgentKey","BuyerAgentKeyNumeric","BuyerAgentLastName","BuyerAgentMiddleName","BuyerAgentMlsId","BuyerAgentMobilePhone","BuyerAgentNamePrefix","BuyerAgentNameSuffix","BuyerAgentOfficePhone","BuyerAgentOfficePhoneExt","BuyerAgentPager","BuyerAgentPreferredPhone","BuyerAgentPreferredPhoneExt","BuyerAgentStateLicense","BuyerAgentTollFreePhone","BuyerAgentURL","BuyerAgentVoiceMail","BuyerAgentVoiceMailExt","BuyerFinancing","BuyerOfficeAOR","BuyerOfficeEmail","BuyerOfficeFax","BuyerOfficeKey","BuyerOfficeKeyNumeric","BuyerOfficeMlsId","BuyerOfficeName","BuyerOfficePhone","BuyerOfficePhoneExt","BuyerOfficeURL","BuyerTeamKey","BuyerTeamKeyNumeric","BuyerTeamName","CableTvExpense","CancellationDate","CapRate","CarportSpaces","CarportYN","CarrierRoute","City","CityRegion","CloseDate","ClosePrice","CoBuyerAgentAOR","CoBuyerAgentDesignation","CoBuyerAgentDirectPhone","CoBuyerAgentEmail","CoBuyerAgentFax","CoBuyerAgentFirstName","CoBuyerAgentFullName","CoBuyerAgentHomePhone","CoBuyerAgentKey","CoBuyerAgentKeyNumeric","CoBuyerAgentLastName","CoBuyerAgentMiddleName","CoBuyerAgentMlsId","CoBuyerAgentMobilePhone","CoBuyerAgentNamePrefix","CoBuyerAgentNameSuffix","CoBuyerAgentOfficePhone","CoBuyerAgentOfficePhoneExt","CoBuyerAgentPager","CoBuyerAgentPreferredPhone","CoBuyerAgentPreferredPhoneExt","CoBuyerAgentStateLicense","CoBuyerAgentTollFreePhone","CoBuyerAgentURL","CoBuyerAgentVoiceMail","CoBuyerAgentVoiceMailExt","CoBuyerOfficeAOR","CoBuyerOfficeEmail","CoBuyerOfficeFax","CoBuyerOfficeKey","CoBuyerOfficeKeyNumeric","CoBuyerOfficeMlsId","CoBuyerOfficeName","CoBuyerOfficePhone","CoBuyerOfficePhoneExt","CoBuyerOfficeURL","CoListAgentAOR","CoListAgentDesignation","CoListAgentDirectPhone","CoListAgentEmail","CoListAgentFax","CoListAgentFirstName","CoListAgentFullName","CoListAgentHomePhone","CoListAgentKey","CoListAgentKeyNumeric","CoListAgentLastName","CoListAgentMiddleName","CoListAgentMlsId","CoListAgentMobilePhone","CoListAgentNamePrefix","CoListAgentNameSuffix","CoListAgentOfficePhone","CoListAgentOfficePhoneExt","CoListAgentPager","CoListAgentPreferredPhone","CoListAgentPreferredPhoneExt","CoListAgentStateLicense","CoListAgentTollFreePhone","CoListAgentURL","CoListAgentVoiceMail","CoListAgentVoiceMailExt","CoListOfficeAOR","CoListOfficeEmail","CoListOfficeFax","CoListOfficeKey","CoListOfficeKeyNumeric","CoListOfficeMlsId","CoListOfficeName","CoListOfficePhone","CoListOfficePhoneExt","CoListOfficeURL","CommonInterest","CommonWalls","CommunityFeatures","Concessions","ConcessionsAmount","ConcessionsComments","ConstructionMaterials","ContinentRegion","Contingency","ContingentDate","ContractStatusChangeDate","Cooling","CoolingYN","CopyrightNotice","Country","CountryRegion","CountyOrParish","CoveredSpaces","CropsIncludedYN","CrossStreet","CultivatedArea","CumulativeDaysOnMarket","CurrentFinancing","CurrentUse","DOH1","DOH2","DOH3","DaysOnMarket","DevelopmentStatus","DirectionFaces","Directions","Disclaimer","Disclosures","DistanceToBusComments","DistanceToBusNumeric","DistanceToBusUnits","DistanceToElectricComments","DistanceToElectricNumeric","DistanceToElectricUnits","DistanceToFreewayComments","DistanceToFreewayNumeric","DistanceToFreewayUnits","DistanceToGasComments","DistanceToGasNumeric","DistanceToGasUnits","DistanceToPhoneServiceComments","DistanceToPhoneServiceNumeric","DistanceToPhoneServiceUnits","DistanceToPlaceofWorshipComments","DistanceToPlaceofWorshipNumeric","DistanceToPlaceofWorshipUnits","DistanceToSchoolBusComments","DistanceToSchoolBusNumeric","DistanceToSchoolBusUnits","DistanceToSchoolsComments","DistanceToSchoolsNumeric","DistanceToSchoolsUnits","DistanceToSewerComments","DistanceToSewerNumeric","DistanceToSewerUnits","DistanceToShoppingComments","DistanceToShoppingNumeric","DistanceToShoppingUnits","DistanceToStreetComments","DistanceToStreetNumeric","DistanceToStreetUnits","DistanceToWaterComments","DistanceToWaterNumeric","DistanceToWaterUnits","DocumentsAvailable","DocumentsChangeTimestamp","DocumentsCount","DoorFeatures","DualVariableCompensationYN","Electric","ElectricExpense","ElectricOnPropertyYN","ElementarySchool","ElementarySchoolDistrict","Elevation","ElevationUnits","EntryLevel","EntryLocation","Exclusions","ExistingLeaseType","ExpirationDate","ExteriorFeatures","FarmCreditServiceInclYN","FarmLandAreaSource","FarmLandAreaUnits","Fencing","FinancialDataSource","FireplaceFeatures","FireplaceYN","FireplacesTotal","Flooring","FoundationArea","FoundationDetails","FrontageLength","FrontageType","FuelExpense","Furnished","FurnitureReplacementExpense","GarageSpaces","GarageYN","GardenerExpense","GrazingPermitsBlmYN","GrazingPermitsForestServiceYN","GrazingPermitsPrivateYN","GreenBuildingVerificationType","GreenEnergyEfficient","GreenEnergyGeneration","GreenIndoorAirQuality","GreenLocation","GreenSustainability","GreenWaterConservation","GrossIncome","GrossScheduledIncome","HabitableResidenceYN","Heating","HeatingYN","HighSchool","HighSchoolDistrict","HomeWarrantyYN","HorseAmenities","HorseYN","HoursDaysOfOperation","HoursDaysOfOperationDescription","Inclusions","IncomeIncludes","InsuranceExpense","InteriorFeatures","InternetAddressDisplayYN","InternetAutomatedValuationDisplayYN","InternetConsumerCommentYN","InternetEntireListingDisplayYN","IrrigationSource","IrrigationWaterRightsAcres","IrrigationWaterRightsYN","LaborInformation","LandLeaseAmount","LandLeaseAmountFrequency","LandLeaseExpirationDate","LandLeaseYN","Latitude","LaundryFeatures","LeasableArea","LeasableAreaUnits","LeaseAmount","LeaseAmountFrequency","LeaseAssignableYN","LeaseConsideredYN","LeaseExpiration","LeaseRenewalCompensation","LeaseRenewalOptionYN","LeaseTerm","Levels","License1","License2","License3","LicensesExpense","ListAOR","ListAgentAOR","ListAgentDesignation","ListAgentDirectPhone","ListAgentEmail","ListAgentFax","ListAgentFirstName","ListAgentFullName","ListAgentHomePhone","ListAgentKey","ListAgentKeyNumeric","ListAgentLastName","ListAgentMiddleName","ListAgentMlsId","ListAgentMobilePhone","ListAgentNamePrefix","ListAgentNameSuffix","ListAgentOfficePhone","ListAgentOfficePhoneExt","ListAgentPager","ListAgentPreferredPhone","ListAgentPreferredPhoneExt","ListAgentStateLicense","ListAgentTollFreePhone","ListAgentURL","ListAgentVoiceMail","ListAgentVoiceMailExt","ListOfficeAOR","ListOfficeEmail","ListOfficeFax","ListOfficeKey","ListOfficeKeyNumeric","ListOfficeMlsId","ListOfficeName","ListOfficePhone","ListOfficePhoneExt","ListOfficeURL","ListPrice","ListPriceLow","ListTeamKey","ListTeamKeyNumeric","ListTeamName","ListingAgreement","ListingContractDate","ListingId","ListingKey","ListingKeyNumeric","ListingService","ListingTerms","LivingArea","LivingAreaSource","LivingAreaUnits","LockBoxLocation","LockBoxSerialNumber","LockBoxType","Longitude","LotDimensionsSource","LotFeatures","LotSizeAcres","LotSizeArea","LotSizeDimensions","LotSizeSource","LotSizeSquareFeet","LotSizeUnits","MLSAreaMajor","MLSAreaMinor","MainLevelBathrooms","MainLevelBedrooms","MaintenanceExpense","MajorChangeTimestamp","MajorChangeType","Make","ManagerExpense","MapCoordinate","MapCoordinateSource","MapURL","MiddleOrJuniorSchool","MiddleOrJuniorSchoolDistrict","MlsStatus","MobileDimUnits","MobileHomeRemainsYN","MobileLength","MobileWidth","Model","ModificationTimestamp","NetOperatingIncome","NewConstructionYN","NewTaxesExpense","NumberOfBuildings","NumberOfFullTimeEmployees","NumberOfLots","NumberOfPads","NumberOfPartTimeEmployees","NumberOfSeparateElectricMeters","NumberOfSeparateGasMeters","NumberOfSeparateWaterMeters","NumberOfUnitsInCommunity","NumberOfUnitsLeased","NumberOfUnitsMoMo","NumberOfUnitsTotal","NumberOfUnitsVacant","OccupantName","OccupantPhone","OccupantType","OffMarketDate","OffMarketTimestamp","OnMarketDate","OnMarketTimestamp","OpenParkingSpaces","OpenParkingYN","OperatingExpense","OperatingExpenseIncludes","OriginalEntryTimestamp","OriginalListPrice","OriginatingSystemID","OriginatingSystemKey","OriginatingSystemName","OtherEquipment","OtherExpense","OtherParking","OtherStructures","OwnerName","OwnerPays","OwnerPhone","Ownership","OwnershipType","ParcelNumber","ParkManagerName","ParkManagerPhone","ParkName","ParkingFeatures","ParkingTotal","PastureArea","PatioAndPorchFeatures","PendingTimestamp","PestControlExpense","PetsAllowed","PhotosChangeTimestamp","PhotosCount","PoolExpense","PoolFeatures","PoolPrivateYN","Possession","PossibleUse","PostalCity","PostalCode","PostalCodePlus4","PowerProductionType","PreviousListPrice","PriceChangeTimestamp","PrivateOfficeRemarks","PrivateRemarks","ProfessionalManagementExpense","PropertyAttachedYN","PropertyCondition","PropertySubType","PropertyType","PublicRemarks","PublicSurveyRange","PublicSurveySection","PublicSurveyTownship","PurchaseContractDate","RVParkingDimensions","RangeArea","RentControlYN","RentIncludes","RoadFrontageType","RoadResponsibility","RoadSurfaceType","Roof","RoomType","RoomsTotal","SeatingCapacity","SecurityFeatures","SeniorCommunityYN","SerialU","SerialX","SerialXX","Sewer","ShowingAdvanceNotice","ShowingAttendedYN","ShowingContactName","ShowingContactPhone","ShowingContactPhoneExt","ShowingContactType","ShowingDays","ShowingEndTime","ShowingInstructions","ShowingRequirements","ShowingStartTime","SignOnPropertyYN","Skirt","SourceSystemID","SourceSystemKey","SourceSystemName","SpaFeatures","SpaYN","SpecialLicenses","SpecialListingConditions","StandardStatus","StateOrProvince","StateRegion","StatusChangeTimestamp","Stories","StoriesTotal","StreetAdditionalInfo","StreetDirPrefix","StreetDirSuffix","StreetName","StreetNumber","StreetNumberNumeric","StreetSuffix","StreetSuffixModifier","StructureType","SubAgencyCompensation","SubAgencyCompensationType","SubdivisionName","SuppliesExpense","SyndicateTo","SyndicationRemarks","TaxAnnualAmount","TaxAssessedValue","TaxBlock","TaxBookNumber","TaxLegalDescription","TaxLot","TaxMapNumber","TaxOtherAnnualAssessmentAmount","TaxParcelLetter","TaxStatusCurrent","TaxTract","TaxYear","TenantPays","Topography","TotalActualRent","Township","TransactionBrokerCompensation","TransactionBrokerCompensationType","TrashExpense","UnitNumber","UnitTypeType","UnitsFurnished","UniversalPropertyId","UniversalPropertySubId","UnparsedAddress","Utilities","VacancyAllowance","VacancyAllowanceRate","Vegetation","VideosChangeTimestamp","VideosCount","View","ViewYN","VirtualTourURLBranded","VirtualTourURLUnbranded","WalkScore","WaterBodyName","WaterSewerExpense","WaterSource","WaterfrontFeatures","WaterfrontYN","WindowFeatures","WithdrawnDate","WoodedArea","WorkmansCompensationExpense","YearBuilt","YearBuiltDetails","YearBuiltEffective","YearBuiltSource","YearEstablished","YearsCurrentOwner","Zoning","ZoningDescription"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","OriginatingSystem","BuyerAgent","BuyerOffice","CoBuyerAgent","CoBuyerOffice","CoListAgent","CoListOffice","ListAgent","ListOffice","BuyerTeam","ListTeam","SourceSystem","HistoryTransactional","Media","SocialMedia","OpenHouse"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.Property"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/PropertyUnitTypes('{UnitTypeKey}')/HistoryTransactional":{"parameters":[{"description":"key: UnitTypeKey","in":"path","name":"UnitTypeKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entities from related HistoryTransactional","tags":["PropertyUnitTypes"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangeType desc","ChangedByMemberID","ChangedByMemberID desc","ChangedByMemberKey","ChangedByMemberKey desc","ChangedByMemberKeyNumeric","ChangedByMemberKeyNumeric desc","ClassName","ClassName desc","FieldKey","FieldKey desc","FieldKeyNumeric","FieldKeyNumeric desc","FieldName","FieldName desc","HistoryTransactionalKey","HistoryTransactionalKey desc","HistoryTransactionalKeyNumeric","HistoryTransactionalKeyNumeric desc","ModificationTimestamp","ModificationTimestamp desc","NewValue","NewValue desc","OriginatingSystemHistoryKey","OriginatingSystemHistoryKey desc","OriginatingSystemID","OriginatingSystemID desc","OriginatingSystemName","OriginatingSystemName desc","PreviousValue","PreviousValue desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SourceSystemHistoryKey","SourceSystemHistoryKey desc","SourceSystemID","SourceSystemID desc","SourceSystemName","SourceSystemName desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ChangeType","ChangedByMemberID","ChangedByMemberKey","ChangedByMemberKeyNumeric","ClassName","FieldKey","FieldKeyNumeric","FieldName","HistoryTransactionalKey","HistoryTransactionalKeyNumeric","ModificationTimestamp","NewValue","OriginatingSystemHistoryKey","OriginatingSystemID","OriginatingSystemName","PreviousValue","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SourceSystemHistoryKey","SourceSystemID","SourceSystemName"]}}},{"name":"$expand","description":"Expand related entities, see [Expand](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionexpand)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["*","ChangedByMember","OriginatingSystem","SourceSystem"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of HistoryTransactional","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/SocialMedia":{"get":{"summary":"Get entities from SocialMedia","tags":["SocialMedia"],"parameters":[{"$ref":"#/components/parameters/top"},{"$ref":"#/components/parameters/skip"},{"$ref":"#/components/parameters/search"},{"name":"$filter","description":"Filter items by property values, see [Filtering](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionfilter)","in":"query","schema":{"type":"string"}},{"$ref":"#/components/parameters/count"},{"name":"$orderby","description":"Order items by property values, see [Sorting](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionorderby)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ClassName desc","ModificationTimestamp","ModificationTimestamp desc","ResourceName","ResourceName desc","ResourceRecordID","ResourceRecordID desc","ResourceRecordKey","ResourceRecordKey desc","ResourceRecordKeyNumeric","ResourceRecordKeyNumeric desc","SocialMediaKey","SocialMediaKey desc","SocialMediaKeyNumeric","SocialMediaKeyNumeric desc","SocialMediaType","SocialMediaType desc","SocialMediaUrlOrId","SocialMediaUrlOrId desc"]}}},{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SocialMediaKey","SocialMediaKeyNumeric","SocialMediaType","SocialMediaUrlOrId"]}}}],"responses":{"200":{"description":"Retrieved entities","content":{"application/json":{"schema":{"type":"object","title":"Collection of SocialMedia","properties":{"@odata.count":{"$ref":"#/components/schemas/count"},"value":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}}}}}}},"4XX":{"$ref":"#/components/responses/error"}}},"post":{"summary":"Add new entity to SocialMedia","tags":["SocialMedia"],"requestBody":{"description":"New entity","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia-create"}}}},"responses":{"201":{"description":"Created entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}}}},"4XX":{"$ref":"#/components/responses/error"}}}},"/SocialMedia('{SocialMediaKey}')":{"parameters":[{"description":"key: SocialMediaKey","in":"path","name":"SocialMediaKey","required":true,"schema":{"type":"string","maxLength":255,"nullable":true}}],"get":{"summary":"Get entity from SocialMedia by key","tags":["SocialMedia"],"parameters":[{"name":"$select","description":"Select properties to be returned, see [Select](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionselect)","in":"query","explode":false,"schema":{"type":"array","uniqueItems":true,"items":{"type":"string","enum":["ClassName","ModificationTimestamp","ResourceName","ResourceRecordID","ResourceRecordKey","ResourceRecordKeyNumeric","SocialMediaKey","SocialMediaKeyNumeric","SocialMediaType","SocialMediaUrlOrId"]}}}],"responses":{"200":{"description":"Retrieved entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}}}},"4XX":{"$ref":"#/components/responses/error"}}},"patch":{"summary":"Update entity in SocialMedia","tags":["SocialMedia"],"requestBody":{"description":"New property values","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia-update"}}}},"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}},"delete":{"summary":"Delete entity from SocialMedia","tags":["SocialMedia"],"responses":{"204":{"description":"Success"},"4XX":{"$ref":"#/components/responses/error"}}}},"/$batch":{"post":{"summary":"Send a group of requests","description":"Group multiple requests into a single request payload, see [Batch Requests](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_BatchRequests).\n\n*Please note that \"Try it out\" is not supported for this request.*","tags":["Batch Requests"],"requestBody":{"required":true,"description":"Batch request","content":{"multipart/mixed;boundary=request-separator":{"schema":{"type":"string"},"example":"--request-separator\nContent-Type: application/http\nContent-Transfer-Encoding: binary\n\nGET Property HTTP/1.1\nAccept: application/json\n\n\n--request-separator--"}}},"responses":{"200":{"description":"Batch response","content":{"multipart/mixed":{"schema":{"type":"string"},"example":"--response-separator\nContent-Type: application/http\n\nHTTP/1.1 200 OK\nContent-Type: application/json\n\n{...}\n--response-separator--"}}},"4XX":{"$ref":"#/components/responses/error"}}}}},"components":{"schemas":{"org.reso.metadata.Property":{"title":"Property","type":"object","properties":{"AboveGradeFinishedArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"AboveGradeFinishedAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"AboveGradeFinishedAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"AccessCode":{"type":"string","maxLength":25,"nullable":true},"AccessibilityFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.AccessibilityFeatures"}},"AdditionalParcelsDescription":{"type":"string","maxLength":255,"nullable":true},"AdditionalParcelsYN":{"type":"boolean","nullable":true},"AnchorsCoTenants":{"type":"string","maxLength":1024,"nullable":true},"Appliances":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Appliances"}},"ArchitecturalStyle":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ArchitecturalStyle"}},"AssociationAmenities":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.AssociationAmenities"}},"AssociationFee":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"AssociationFee2":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"AssociationFee2Frequency":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.FeeFrequency"}],"nullable":true},"AssociationFeeFrequency":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.FeeFrequency"}],"nullable":true},"AssociationFeeIncludes":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.AssociationFeeIncludes"}},"AssociationName":{"type":"string","maxLength":50,"nullable":true},"AssociationName2":{"type":"string","maxLength":50,"nullable":true},"AssociationPhone":{"type":"string","maxLength":16,"nullable":true},"AssociationPhone2":{"type":"string","maxLength":16,"nullable":true},"AssociationYN":{"type":"boolean","nullable":true},"AttachedGarageYN":{"type":"boolean","nullable":true},"AvailabilityDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"Basement":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Basement"}},"BasementYN":{"type":"boolean","nullable":true},"BathroomsFull":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsHalf":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsOneQuarter":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsPartial":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsThreeQuarter":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsTotalInteger":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BedroomsPossible":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BedroomsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BelowGradeFinishedArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"BelowGradeFinishedAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"BelowGradeFinishedAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"BodyType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BodyType"}},"BuilderModel":{"type":"string","maxLength":50,"nullable":true},"BuilderName":{"type":"string","maxLength":50,"nullable":true},"BuildingAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"BuildingAreaTotal":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"BuildingAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"BuildingFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BuildingFeatures"}},"BuildingName":{"type":"string","maxLength":50,"nullable":true},"BusinessName":{"type":"string","maxLength":255,"nullable":true},"BusinessType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BusinessType"}},"BuyerAgencyCompensation":{"type":"string","maxLength":25,"nullable":true},"BuyerAgencyCompensationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CompensationType"}],"nullable":true},"BuyerAgentAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"BuyerAgentDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BuyerAgentDesignation"}},"BuyerAgentDirectPhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentEmail":{"type":"string","maxLength":80,"nullable":true},"BuyerAgentFax":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"BuyerAgentFullName":{"type":"string","maxLength":150,"nullable":true},"BuyerAgentHomePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentKey":{"type":"string","maxLength":255,"nullable":true},"BuyerAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BuyerAgentLastName":{"type":"string","maxLength":50,"nullable":true},"BuyerAgentMiddleName":{"type":"string","maxLength":50,"nullable":true},"BuyerAgentMlsId":{"type":"string","maxLength":25,"nullable":true},"BuyerAgentMobilePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentNamePrefix":{"type":"string","maxLength":10,"nullable":true},"BuyerAgentNameSuffix":{"type":"string","maxLength":10,"nullable":true},"BuyerAgentOfficePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"BuyerAgentPager":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"BuyerAgentStateLicense":{"type":"string","maxLength":50,"nullable":true},"BuyerAgentTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentURL":{"type":"string","maxLength":8000,"nullable":true},"BuyerAgentVoiceMail":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"BuyerFinancing":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BuyerFinancing"}},"BuyerOfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"BuyerOfficeEmail":{"type":"string","maxLength":80,"nullable":true},"BuyerOfficeFax":{"type":"string","maxLength":16,"nullable":true},"BuyerOfficeKey":{"type":"string","maxLength":255,"nullable":true},"BuyerOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BuyerOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"BuyerOfficeName":{"type":"string","maxLength":255,"nullable":true},"BuyerOfficePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"BuyerOfficeURL":{"type":"string","maxLength":8000,"nullable":true},"BuyerTeamKey":{"type":"string","maxLength":255,"nullable":true},"BuyerTeamKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BuyerTeamName":{"type":"string","maxLength":50,"nullable":true},"CableTvExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CancellationDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"CapRate":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999.99,"minimum":-999.99,"nullable":true},"CarportSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CarportYN":{"type":"boolean","nullable":true},"CarrierRoute":{"type":"string","maxLength":9,"nullable":true},"City":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.City"}],"nullable":true},"CityRegion":{"type":"string","maxLength":150,"nullable":true},"CloseDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"ClosePrice":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CoBuyerAgentAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"CoBuyerAgentDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CoBuyerAgentDesignation"}},"CoBuyerAgentDirectPhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentEmail":{"type":"string","maxLength":80,"nullable":true},"CoBuyerAgentFax":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"CoBuyerAgentFullName":{"type":"string","maxLength":150,"nullable":true},"CoBuyerAgentHomePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentKey":{"type":"string","maxLength":255,"nullable":true},"CoBuyerAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CoBuyerAgentLastName":{"type":"string","maxLength":50,"nullable":true},"CoBuyerAgentMiddleName":{"type":"string","maxLength":50,"nullable":true},"CoBuyerAgentMlsId":{"type":"string","maxLength":25,"nullable":true},"CoBuyerAgentMobilePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentNamePrefix":{"type":"string","maxLength":10,"nullable":true},"CoBuyerAgentNameSuffix":{"type":"string","maxLength":10,"nullable":true},"CoBuyerAgentOfficePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoBuyerAgentPager":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoBuyerAgentStateLicense":{"type":"string","maxLength":50,"nullable":true},"CoBuyerAgentTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentURL":{"type":"string","maxLength":8000,"nullable":true},"CoBuyerAgentVoiceMail":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"CoBuyerOfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"CoBuyerOfficeEmail":{"type":"string","maxLength":80,"nullable":true},"CoBuyerOfficeFax":{"type":"string","maxLength":16,"nullable":true},"CoBuyerOfficeKey":{"type":"string","maxLength":255,"nullable":true},"CoBuyerOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CoBuyerOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"CoBuyerOfficeName":{"type":"string","maxLength":255,"nullable":true},"CoBuyerOfficePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoBuyerOfficeURL":{"type":"string","maxLength":8000,"nullable":true},"CoListAgentAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"CoListAgentDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CoListAgentDesignation"}},"CoListAgentDirectPhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentEmail":{"type":"string","maxLength":80,"nullable":true},"CoListAgentFax":{"type":"string","maxLength":16,"nullable":true},"CoListAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"CoListAgentFullName":{"type":"string","maxLength":150,"nullable":true},"CoListAgentHomePhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentKey":{"type":"string","maxLength":255,"nullable":true},"CoListAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CoListAgentLastName":{"type":"string","maxLength":50,"nullable":true},"CoListAgentMiddleName":{"type":"string","maxLength":50,"nullable":true},"CoListAgentMlsId":{"type":"string","maxLength":25,"nullable":true},"CoListAgentMobilePhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentNamePrefix":{"type":"string","maxLength":10,"nullable":true},"CoListAgentNameSuffix":{"type":"string","maxLength":10,"nullable":true},"CoListAgentOfficePhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoListAgentPager":{"type":"string","maxLength":16,"nullable":true},"CoListAgentPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoListAgentStateLicense":{"type":"string","maxLength":50,"nullable":true},"CoListAgentTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentURL":{"type":"string","maxLength":8000,"nullable":true},"CoListAgentVoiceMail":{"type":"string","maxLength":16,"nullable":true},"CoListAgentVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"CoListOfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"CoListOfficeEmail":{"type":"string","maxLength":80,"nullable":true},"CoListOfficeFax":{"type":"string","maxLength":16,"nullable":true},"CoListOfficeKey":{"type":"string","maxLength":255,"nullable":true},"CoListOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CoListOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"CoListOfficeName":{"type":"string","maxLength":255,"nullable":true},"CoListOfficePhone":{"type":"string","maxLength":16,"nullable":true},"CoListOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoListOfficeURL":{"type":"string","maxLength":8000,"nullable":true},"CommonInterest":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CommonInterest"}],"nullable":true},"CommonWalls":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CommonWalls"}},"CommunityFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CommunityFeatures"}},"Concessions":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Concessions"}],"nullable":true},"ConcessionsAmount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ConcessionsComments":{"type":"string","maxLength":200,"nullable":true},"ConstructionMaterials":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ConstructionMaterials"}},"ContinentRegion":{"type":"string","maxLength":150,"nullable":true},"Contingency":{"type":"string","maxLength":1024,"nullable":true},"ContingentDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"ContractStatusChangeDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"Cooling":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Cooling"}},"CoolingYN":{"type":"boolean","nullable":true},"CopyrightNotice":{"type":"string","maxLength":500,"nullable":true},"Country":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"CountryRegion":{"type":"string","maxLength":150,"nullable":true},"CountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"CoveredSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CropsIncludedYN":{"type":"boolean","nullable":true},"CrossStreet":{"type":"string","maxLength":50,"nullable":true},"CultivatedArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CumulativeDaysOnMarket":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CurrentFinancing":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CurrentFinancing"}},"CurrentUse":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CurrentUse"}},"DOH1":{"type":"string","maxLength":25,"nullable":true},"DOH2":{"type":"string","maxLength":25,"nullable":true},"DOH3":{"type":"string","maxLength":25,"nullable":true},"DaysOnMarket":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DevelopmentStatus":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.DevelopmentStatus"}},"DirectionFaces":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.DirectionFaces"}],"nullable":true},"Directions":{"type":"string","maxLength":1024,"nullable":true},"Disclaimer":{"type":"string","maxLength":500,"nullable":true},"Disclosures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Disclosures"}},"DistanceToBusComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToBusNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToBusUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToElectricComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToElectricNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToElectricUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToFreewayComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToFreewayNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToFreewayUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToGasComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToGasNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToGasUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToPhoneServiceComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToPhoneServiceNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToPhoneServiceUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToPlaceofWorshipComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToPlaceofWorshipNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToPlaceofWorshipUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToSchoolBusComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToSchoolBusNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToSchoolBusUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToSchoolsComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToSchoolsNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToSchoolsUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToSewerComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToSewerNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToSewerUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToShoppingComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToShoppingNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToShoppingUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToStreetComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToStreetNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToStreetUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToWaterComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToWaterNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToWaterUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DocumentsAvailable":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.DocumentsAvailable"}},"DocumentsChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"DocumentsCount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DoorFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.DoorFeatures"}},"DualVariableCompensationYN":{"type":"boolean","nullable":true},"Electric":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Electric"}},"ElectricExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"ElectricOnPropertyYN":{"type":"boolean","nullable":true},"ElementarySchool":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ElementarySchool"}],"nullable":true},"ElementarySchoolDistrict":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ElementarySchoolDistrict"}],"nullable":true},"Elevation":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ElevationUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"EntryLevel":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"EntryLocation":{"type":"string","maxLength":50,"nullable":true},"Exclusions":{"type":"string","maxLength":1024,"nullable":true},"ExistingLeaseType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ExistingLeaseType"}},"ExpirationDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"ExteriorFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ExteriorFeatures"}},"FarmCreditServiceInclYN":{"type":"boolean","nullable":true},"FarmLandAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"FarmLandAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"Fencing":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Fencing"}},"FinancialDataSource":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.FinancialDataSource"}},"FireplaceFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.FireplaceFeatures"}},"FireplaceYN":{"type":"boolean","nullable":true},"FireplacesTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Flooring":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Flooring"}},"FoundationArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"FoundationDetails":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.FoundationDetails"}},"FrontageLength":{"type":"string","maxLength":255,"nullable":true},"FrontageType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.FrontageType"}},"FuelExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"Furnished":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Furnished"}],"nullable":true},"FurnitureReplacementExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"GarageSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"GarageYN":{"type":"boolean","nullable":true},"GardenerExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"GrazingPermitsBlmYN":{"type":"boolean","nullable":true},"GrazingPermitsForestServiceYN":{"type":"boolean","nullable":true},"GrazingPermitsPrivateYN":{"type":"boolean","nullable":true},"GreenBuildingVerificationType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenBuildingVerificationType"}},"GreenEnergyEfficient":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenEnergyEfficient"}},"GreenEnergyGeneration":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenEnergyGeneration"}},"GreenIndoorAirQuality":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenIndoorAirQuality"}},"GreenLocation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenLocation"}},"GreenSustainability":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenSustainability"}},"GreenWaterConservation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenWaterConservation"}},"GrossIncome":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"GrossScheduledIncome":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"HabitableResidenceYN":{"type":"boolean","nullable":true},"Heating":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Heating"}},"HeatingYN":{"type":"boolean","nullable":true},"HighSchool":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.HighSchool"}],"nullable":true},"HighSchoolDistrict":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.HighSchoolDistrict"}],"nullable":true},"HomeWarrantyYN":{"type":"boolean","nullable":true},"HorseAmenities":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.HorseAmenities"}},"HorseYN":{"type":"boolean","nullable":true},"HoursDaysOfOperation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.HoursDaysOfOperation"}},"HoursDaysOfOperationDescription":{"type":"string","maxLength":255,"nullable":true},"Inclusions":{"type":"string","maxLength":1024,"nullable":true},"IncomeIncludes":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.IncomeIncludes"}},"InsuranceExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"InteriorFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.InteriorOrRoomFeatures"}},"InternetAddressDisplayYN":{"type":"boolean","nullable":true},"InternetAutomatedValuationDisplayYN":{"type":"boolean","nullable":true},"InternetConsumerCommentYN":{"type":"boolean","nullable":true},"InternetEntireListingDisplayYN":{"type":"boolean","nullable":true},"IrrigationSource":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.IrrigationSource"}},"IrrigationWaterRightsAcres":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.0001,"nullable":true},"IrrigationWaterRightsYN":{"type":"boolean","nullable":true},"LaborInformation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LaborInformation"}},"LandLeaseAmount":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LandLeaseAmountFrequency":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.FeeFrequency"}],"nullable":true},"LandLeaseExpirationDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"LandLeaseYN":{"type":"boolean","nullable":true},"Latitude":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":1e-8,"maximum":9999.99999999,"minimum":-9999.99999999,"nullable":true},"LaundryFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LaundryFeatures"}},"LeasableArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LeasableAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"LeaseAmount":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LeaseAmountFrequency":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.FeeFrequency"}],"nullable":true},"LeaseAssignableYN":{"type":"boolean","nullable":true},"LeaseConsideredYN":{"type":"boolean","nullable":true},"LeaseExpiration":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"LeaseRenewalCompensation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LeaseRenewalCompensation"}},"LeaseRenewalOptionYN":{"type":"boolean","nullable":true},"LeaseTerm":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LeaseTerm"}],"nullable":true},"Levels":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Levels"}},"License1":{"type":"string","maxLength":25,"nullable":true},"License2":{"type":"string","maxLength":25,"nullable":true},"License3":{"type":"string","maxLength":25,"nullable":true},"LicensesExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"ListAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"ListAgentAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"ListAgentDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ListAgentDesignation"}},"ListAgentDirectPhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentEmail":{"type":"string","maxLength":80,"nullable":true},"ListAgentFax":{"type":"string","maxLength":16,"nullable":true},"ListAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"ListAgentFullName":{"type":"string","maxLength":150,"nullable":true},"ListAgentHomePhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentKey":{"type":"string","maxLength":255,"nullable":true},"ListAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListAgentLastName":{"type":"string","maxLength":50,"nullable":true},"ListAgentMiddleName":{"type":"string","maxLength":50,"nullable":true},"ListAgentMlsId":{"type":"string","maxLength":25,"nullable":true},"ListAgentMobilePhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentNamePrefix":{"type":"string","maxLength":10,"nullable":true},"ListAgentNameSuffix":{"type":"string","maxLength":10,"nullable":true},"ListAgentOfficePhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"ListAgentPager":{"type":"string","maxLength":16,"nullable":true},"ListAgentPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"ListAgentStateLicense":{"type":"string","maxLength":50,"nullable":true},"ListAgentTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentURL":{"type":"string","maxLength":8000,"nullable":true},"ListAgentVoiceMail":{"type":"string","maxLength":16,"nullable":true},"ListAgentVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"ListOfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"ListOfficeEmail":{"type":"string","maxLength":80,"nullable":true},"ListOfficeFax":{"type":"string","maxLength":16,"nullable":true},"ListOfficeKey":{"type":"string","maxLength":255,"nullable":true},"ListOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"ListOfficeName":{"type":"string","maxLength":255,"nullable":true},"ListOfficePhone":{"type":"string","maxLength":16,"nullable":true},"ListOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"ListOfficeURL":{"type":"string","maxLength":8000,"nullable":true},"ListPrice":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"ListPriceLow":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"ListTeamKey":{"type":"string","maxLength":255,"nullable":true},"ListTeamKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListTeamName":{"type":"string","maxLength":50,"nullable":true},"ListingAgreement":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ListingAgreement"}],"nullable":true},"ListingContractDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingService":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ListingService"}],"nullable":true},"ListingTerms":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ListingTerms"}},"LivingArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LivingAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"LivingAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"LockBoxLocation":{"type":"string","maxLength":255,"nullable":true},"LockBoxSerialNumber":{"type":"string","maxLength":25,"nullable":true},"LockBoxType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LockBoxType"}},"Longitude":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":1e-8,"maximum":9999.99999999,"minimum":-9999.99999999,"nullable":true},"LotDimensionsSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LotDimensionsSource"}],"nullable":true},"LotFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LotFeatures"}},"LotSizeAcres":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.0001,"nullable":true},"LotSizeArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.0001,"nullable":true},"LotSizeDimensions":{"type":"string","maxLength":150,"nullable":true},"LotSizeSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LotSizeSource"}],"nullable":true},"LotSizeSquareFeet":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LotSizeUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LotSizeUnits"}],"nullable":true},"MLSAreaMajor":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MLSAreaMajor"}],"nullable":true},"MLSAreaMinor":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MLSAreaMinor"}],"nullable":true},"MainLevelBathrooms":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MainLevelBedrooms":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MaintenanceExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"MajorChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"MajorChangeType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ChangeType"}],"nullable":true},"Make":{"type":"string","maxLength":50,"nullable":true},"ManagerExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"MapCoordinate":{"type":"string","maxLength":25,"nullable":true},"MapCoordinateSource":{"type":"string","maxLength":25,"nullable":true},"MapURL":{"type":"string","maxLength":8000,"nullable":true},"MiddleOrJuniorSchool":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MiddleOrJuniorSchool"}],"nullable":true},"MiddleOrJuniorSchoolDistrict":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MiddleOrJuniorSchoolDistrict"}],"nullable":true},"MlsStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MlsStatus"}],"nullable":true},"MobileDimUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"MobileHomeRemainsYN":{"type":"boolean","nullable":true},"MobileLength":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MobileWidth":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Model":{"type":"string","maxLength":50,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NetOperatingIncome":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"NewConstructionYN":{"type":"boolean","nullable":true},"NewTaxesExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"NumberOfBuildings":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfFullTimeEmployees":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfLots":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfPads":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfPartTimeEmployees":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfSeparateElectricMeters":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfSeparateGasMeters":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfSeparateWaterMeters":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsInCommunity":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsLeased":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsMoMo":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsVacant":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OccupantName":{"type":"string","maxLength":50,"nullable":true},"OccupantPhone":{"type":"string","maxLength":16,"nullable":true},"OccupantType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OccupantType"}],"nullable":true},"OffMarketDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"OffMarketTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OnMarketDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"OnMarketTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OpenParkingSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"OpenParkingYN":{"type":"boolean","nullable":true},"OperatingExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"OperatingExpenseIncludes":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.OperatingExpenseIncludes"}},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalListPrice":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OtherEquipment":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.OtherEquipment"}},"OtherExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"OtherParking":{"type":"string","maxLength":1024,"nullable":true},"OtherStructures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.OtherStructures"}},"OwnerName":{"type":"string","maxLength":50,"nullable":true},"OwnerPays":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.OwnerPays"}},"OwnerPhone":{"type":"string","maxLength":16,"nullable":true},"Ownership":{"type":"string","maxLength":1024,"nullable":true},"OwnershipType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OwnershipType"}],"nullable":true},"ParcelNumber":{"type":"string","maxLength":50,"nullable":true},"ParkManagerName":{"type":"string","maxLength":50,"nullable":true},"ParkManagerPhone":{"type":"string","maxLength":16,"nullable":true},"ParkName":{"type":"string","maxLength":50,"nullable":true},"ParkingFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ParkingFeatures"}},"ParkingTotal":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PastureArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PatioAndPorchFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PatioAndPorchFeatures"}},"PendingTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PestControlExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PetsAllowed":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PetsAllowed"}},"PhotosChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PhotosCount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"PoolExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PoolFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PoolFeatures"}},"PoolPrivateYN":{"type":"boolean","nullable":true},"Possession":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Possession"}},"PossibleUse":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PossibleUse"}},"PostalCity":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PostalCity"}],"nullable":true},"PostalCode":{"type":"string","maxLength":10,"nullable":true},"PostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"PowerProductionType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PowerProductionType"}},"PreviousListPrice":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PriceChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PrivateOfficeRemarks":{"type":"string","maxLength":4000,"nullable":true},"PrivateRemarks":{"type":"string","maxLength":4000,"nullable":true},"ProfessionalManagementExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PropertyAttachedYN":{"type":"boolean","nullable":true},"PropertyCondition":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PropertyCondition"}},"PropertySubType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PropertySubType"}],"nullable":true},"PropertyType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PropertyType"}],"nullable":true},"PublicRemarks":{"type":"string","maxLength":4000,"nullable":true},"PublicSurveyRange":{"type":"string","maxLength":20,"nullable":true},"PublicSurveySection":{"type":"string","maxLength":20,"nullable":true},"PublicSurveyTownship":{"type":"string","maxLength":20,"nullable":true},"PurchaseContractDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"RVParkingDimensions":{"type":"string","maxLength":50,"nullable":true},"RangeArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"RentControlYN":{"type":"boolean","nullable":true},"RentIncludes":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RentIncludes"}},"RoadFrontageType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RoadFrontageType"}},"RoadResponsibility":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RoadResponsibility"}},"RoadSurfaceType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RoadSurfaceType"}},"Roof":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Roof"}},"RoomType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RoomType"}},"RoomsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SeatingCapacity":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SecurityFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SecurityFeatures"}},"SeniorCommunityYN":{"type":"boolean","nullable":true},"SerialU":{"type":"string","maxLength":25,"nullable":true},"SerialX":{"type":"string","maxLength":25,"nullable":true},"SerialXX":{"type":"string","maxLength":25,"nullable":true},"Sewer":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Sewer"}},"ShowingAdvanceNotice":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShowingAttendedYN":{"type":"boolean","nullable":true},"ShowingContactName":{"type":"string","maxLength":40,"nullable":true},"ShowingContactPhone":{"type":"string","maxLength":16,"nullable":true},"ShowingContactPhoneExt":{"type":"string","maxLength":10,"nullable":true},"ShowingContactType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ShowingContactType"}},"ShowingDays":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ShowingDays"}},"ShowingEndTime":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ShowingInstructions":{"type":"string","maxLength":4000,"nullable":true},"ShowingRequirements":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ShowingRequirements"}},"ShowingStartTime":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"SignOnPropertyYN":{"type":"boolean","nullable":true},"Skirt":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Skirt"}},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SpaFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SpaFeatures"}},"SpaYN":{"type":"boolean","nullable":true},"SpecialLicenses":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SpecialLicenses"}},"SpecialListingConditions":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SpecialListingConditions"}},"StandardStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StandardStatus"}],"nullable":true},"StateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"StateRegion":{"type":"string","maxLength":150,"nullable":true},"StatusChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"Stories":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"StoriesTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"StreetAdditionalInfo":{"type":"string","maxLength":50,"nullable":true},"StreetDirPrefix":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StreetDirection"}],"nullable":true},"StreetDirSuffix":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StreetDirection"}],"nullable":true},"StreetName":{"type":"string","maxLength":50,"nullable":true},"StreetNumber":{"type":"string","maxLength":25,"nullable":true},"StreetNumberNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"StreetSuffix":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StreetSuffix"}],"nullable":true},"StreetSuffixModifier":{"type":"string","maxLength":25,"nullable":true},"StructureType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.StructureType"}},"SubAgencyCompensation":{"type":"string","maxLength":25,"nullable":true},"SubAgencyCompensationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CompensationType"}],"nullable":true},"SubdivisionName":{"type":"string","maxLength":50,"nullable":true},"SuppliesExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"SyndicateTo":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SyndicateTo"}},"SyndicationRemarks":{"type":"string","maxLength":4000,"nullable":true},"TaxAnnualAmount":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"TaxAssessedValue":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TaxBlock":{"type":"string","maxLength":25,"nullable":true},"TaxBookNumber":{"type":"string","maxLength":25,"nullable":true},"TaxLegalDescription":{"type":"string","maxLength":6000,"nullable":true},"TaxLot":{"type":"string","maxLength":25,"nullable":true},"TaxMapNumber":{"type":"string","maxLength":25,"nullable":true},"TaxOtherAnnualAssessmentAmount":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"TaxParcelLetter":{"type":"string","maxLength":25,"nullable":true},"TaxStatusCurrent":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.TaxStatusCurrent"}},"TaxTract":{"type":"string","maxLength":25,"nullable":true},"TaxYear":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TenantPays":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.TenantPays"}},"Topography":{"type":"string","maxLength":255,"nullable":true},"TotalActualRent":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"Township":{"type":"string","maxLength":50,"nullable":true},"TransactionBrokerCompensation":{"type":"string","maxLength":25,"nullable":true},"TransactionBrokerCompensationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CompensationType"}],"nullable":true},"TrashExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"UnitNumber":{"type":"string","maxLength":25,"nullable":true},"UnitTypeType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.UnitTypeType"}},"UnitsFurnished":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.UnitsFurnished"}],"nullable":true},"UniversalPropertyId":{"type":"string","maxLength":128,"nullable":true},"UniversalPropertySubId":{"type":"string","maxLength":128,"nullable":true},"UnparsedAddress":{"type":"string","maxLength":255,"nullable":true},"Utilities":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Utilities"}},"VacancyAllowance":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"VacancyAllowanceRate":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999.99,"minimum":-999.99,"nullable":true},"Vegetation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Vegetation"}},"VideosChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"VideosCount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"View":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.View"}},"ViewYN":{"type":"boolean","nullable":true},"VirtualTourURLBranded":{"type":"string","maxLength":8000,"nullable":true},"VirtualTourURLUnbranded":{"type":"string","maxLength":8000,"nullable":true},"WalkScore":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"WaterBodyName":{"type":"string","maxLength":50,"nullable":true},"WaterSewerExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"WaterSource":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.WaterSource"}},"WaterfrontFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.WaterfrontFeatures"}},"WaterfrontYN":{"type":"boolean","nullable":true},"WindowFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.WindowFeatures"}},"WithdrawnDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"WoodedArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"WorkmansCompensationExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"YearBuilt":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"YearBuiltDetails":{"type":"string","maxLength":1024,"nullable":true},"YearBuiltEffective":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"YearBuiltSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.YearBuiltSource"}],"nullable":true},"YearEstablished":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"YearsCurrentOwner":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Zoning":{"type":"string","maxLength":25,"nullable":true},"ZoningDescription":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"BuyerAgent":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"BuyerOffice":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Office"}],"nullable":true},"CoBuyerAgent":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"CoBuyerOffice":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Office"}],"nullable":true},"CoListAgent":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"CoListOffice":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Office"}],"nullable":true},"ListAgent":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"ListOffice":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Office"}],"nullable":true},"BuyerTeam":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Teams"}],"nullable":true},"ListTeam":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Teams"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}},"Media@odata.count":{"$ref":"#/components/schemas/count"},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}},"SocialMedia@odata.count":{"$ref":"#/components/schemas/count"},"OpenHouse":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.OpenHouse"}},"OpenHouse@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.Property-create":{"title":"Property (for create)","type":"object","properties":{"AboveGradeFinishedArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"AboveGradeFinishedAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"AboveGradeFinishedAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"AccessCode":{"type":"string","maxLength":25,"nullable":true},"AccessibilityFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.AccessibilityFeatures"}},"AdditionalParcelsDescription":{"type":"string","maxLength":255,"nullable":true},"AdditionalParcelsYN":{"type":"boolean","nullable":true},"AnchorsCoTenants":{"type":"string","maxLength":1024,"nullable":true},"Appliances":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Appliances"}},"ArchitecturalStyle":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ArchitecturalStyle"}},"AssociationAmenities":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.AssociationAmenities"}},"AssociationFee":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"AssociationFee2":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"AssociationFee2Frequency":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.FeeFrequency"}],"nullable":true},"AssociationFeeFrequency":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.FeeFrequency"}],"nullable":true},"AssociationFeeIncludes":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.AssociationFeeIncludes"}},"AssociationName":{"type":"string","maxLength":50,"nullable":true},"AssociationName2":{"type":"string","maxLength":50,"nullable":true},"AssociationPhone":{"type":"string","maxLength":16,"nullable":true},"AssociationPhone2":{"type":"string","maxLength":16,"nullable":true},"AssociationYN":{"type":"boolean","nullable":true},"AttachedGarageYN":{"type":"boolean","nullable":true},"AvailabilityDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"Basement":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Basement"}},"BasementYN":{"type":"boolean","nullable":true},"BathroomsFull":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsHalf":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsOneQuarter":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsPartial":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsThreeQuarter":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsTotalInteger":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BedroomsPossible":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BedroomsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BelowGradeFinishedArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"BelowGradeFinishedAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"BelowGradeFinishedAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"BodyType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BodyType"}},"BuilderModel":{"type":"string","maxLength":50,"nullable":true},"BuilderName":{"type":"string","maxLength":50,"nullable":true},"BuildingAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"BuildingAreaTotal":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"BuildingAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"BuildingFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BuildingFeatures"}},"BuildingName":{"type":"string","maxLength":50,"nullable":true},"BusinessName":{"type":"string","maxLength":255,"nullable":true},"BusinessType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BusinessType"}},"BuyerAgencyCompensation":{"type":"string","maxLength":25,"nullable":true},"BuyerAgencyCompensationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CompensationType"}],"nullable":true},"BuyerAgentAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"BuyerAgentDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BuyerAgentDesignation"}},"BuyerAgentDirectPhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentEmail":{"type":"string","maxLength":80,"nullable":true},"BuyerAgentFax":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"BuyerAgentFullName":{"type":"string","maxLength":150,"nullable":true},"BuyerAgentHomePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentKey":{"type":"string","maxLength":255,"nullable":true},"BuyerAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BuyerAgentLastName":{"type":"string","maxLength":50,"nullable":true},"BuyerAgentMiddleName":{"type":"string","maxLength":50,"nullable":true},"BuyerAgentMlsId":{"type":"string","maxLength":25,"nullable":true},"BuyerAgentMobilePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentNamePrefix":{"type":"string","maxLength":10,"nullable":true},"BuyerAgentNameSuffix":{"type":"string","maxLength":10,"nullable":true},"BuyerAgentOfficePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"BuyerAgentPager":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"BuyerAgentStateLicense":{"type":"string","maxLength":50,"nullable":true},"BuyerAgentTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentURL":{"type":"string","maxLength":8000,"nullable":true},"BuyerAgentVoiceMail":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"BuyerFinancing":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BuyerFinancing"}},"BuyerOfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"BuyerOfficeEmail":{"type":"string","maxLength":80,"nullable":true},"BuyerOfficeFax":{"type":"string","maxLength":16,"nullable":true},"BuyerOfficeKey":{"type":"string","maxLength":255,"nullable":true},"BuyerOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BuyerOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"BuyerOfficeName":{"type":"string","maxLength":255,"nullable":true},"BuyerOfficePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"BuyerOfficeURL":{"type":"string","maxLength":8000,"nullable":true},"BuyerTeamKey":{"type":"string","maxLength":255,"nullable":true},"BuyerTeamKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BuyerTeamName":{"type":"string","maxLength":50,"nullable":true},"CableTvExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CancellationDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"CapRate":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999.99,"minimum":-999.99,"nullable":true},"CarportSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CarportYN":{"type":"boolean","nullable":true},"CarrierRoute":{"type":"string","maxLength":9,"nullable":true},"City":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.City"}],"nullable":true},"CityRegion":{"type":"string","maxLength":150,"nullable":true},"CloseDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"ClosePrice":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CoBuyerAgentAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"CoBuyerAgentDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CoBuyerAgentDesignation"}},"CoBuyerAgentDirectPhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentEmail":{"type":"string","maxLength":80,"nullable":true},"CoBuyerAgentFax":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"CoBuyerAgentFullName":{"type":"string","maxLength":150,"nullable":true},"CoBuyerAgentHomePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentKey":{"type":"string","maxLength":255,"nullable":true},"CoBuyerAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CoBuyerAgentLastName":{"type":"string","maxLength":50,"nullable":true},"CoBuyerAgentMiddleName":{"type":"string","maxLength":50,"nullable":true},"CoBuyerAgentMlsId":{"type":"string","maxLength":25,"nullable":true},"CoBuyerAgentMobilePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentNamePrefix":{"type":"string","maxLength":10,"nullable":true},"CoBuyerAgentNameSuffix":{"type":"string","maxLength":10,"nullable":true},"CoBuyerAgentOfficePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoBuyerAgentPager":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoBuyerAgentStateLicense":{"type":"string","maxLength":50,"nullable":true},"CoBuyerAgentTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentURL":{"type":"string","maxLength":8000,"nullable":true},"CoBuyerAgentVoiceMail":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"CoBuyerOfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"CoBuyerOfficeEmail":{"type":"string","maxLength":80,"nullable":true},"CoBuyerOfficeFax":{"type":"string","maxLength":16,"nullable":true},"CoBuyerOfficeKey":{"type":"string","maxLength":255,"nullable":true},"CoBuyerOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CoBuyerOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"CoBuyerOfficeName":{"type":"string","maxLength":255,"nullable":true},"CoBuyerOfficePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoBuyerOfficeURL":{"type":"string","maxLength":8000,"nullable":true},"CoListAgentAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"CoListAgentDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CoListAgentDesignation"}},"CoListAgentDirectPhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentEmail":{"type":"string","maxLength":80,"nullable":true},"CoListAgentFax":{"type":"string","maxLength":16,"nullable":true},"CoListAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"CoListAgentFullName":{"type":"string","maxLength":150,"nullable":true},"CoListAgentHomePhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentKey":{"type":"string","maxLength":255,"nullable":true},"CoListAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CoListAgentLastName":{"type":"string","maxLength":50,"nullable":true},"CoListAgentMiddleName":{"type":"string","maxLength":50,"nullable":true},"CoListAgentMlsId":{"type":"string","maxLength":25,"nullable":true},"CoListAgentMobilePhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentNamePrefix":{"type":"string","maxLength":10,"nullable":true},"CoListAgentNameSuffix":{"type":"string","maxLength":10,"nullable":true},"CoListAgentOfficePhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoListAgentPager":{"type":"string","maxLength":16,"nullable":true},"CoListAgentPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoListAgentStateLicense":{"type":"string","maxLength":50,"nullable":true},"CoListAgentTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentURL":{"type":"string","maxLength":8000,"nullable":true},"CoListAgentVoiceMail":{"type":"string","maxLength":16,"nullable":true},"CoListAgentVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"CoListOfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"CoListOfficeEmail":{"type":"string","maxLength":80,"nullable":true},"CoListOfficeFax":{"type":"string","maxLength":16,"nullable":true},"CoListOfficeKey":{"type":"string","maxLength":255,"nullable":true},"CoListOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CoListOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"CoListOfficeName":{"type":"string","maxLength":255,"nullable":true},"CoListOfficePhone":{"type":"string","maxLength":16,"nullable":true},"CoListOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoListOfficeURL":{"type":"string","maxLength":8000,"nullable":true},"CommonInterest":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CommonInterest"}],"nullable":true},"CommonWalls":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CommonWalls"}},"CommunityFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CommunityFeatures"}},"Concessions":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Concessions"}],"nullable":true},"ConcessionsAmount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ConcessionsComments":{"type":"string","maxLength":200,"nullable":true},"ConstructionMaterials":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ConstructionMaterials"}},"ContinentRegion":{"type":"string","maxLength":150,"nullable":true},"Contingency":{"type":"string","maxLength":1024,"nullable":true},"ContingentDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"ContractStatusChangeDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"Cooling":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Cooling"}},"CoolingYN":{"type":"boolean","nullable":true},"CopyrightNotice":{"type":"string","maxLength":500,"nullable":true},"Country":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"CountryRegion":{"type":"string","maxLength":150,"nullable":true},"CountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"CoveredSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CropsIncludedYN":{"type":"boolean","nullable":true},"CrossStreet":{"type":"string","maxLength":50,"nullable":true},"CultivatedArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CumulativeDaysOnMarket":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CurrentFinancing":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CurrentFinancing"}},"CurrentUse":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CurrentUse"}},"DOH1":{"type":"string","maxLength":25,"nullable":true},"DOH2":{"type":"string","maxLength":25,"nullable":true},"DOH3":{"type":"string","maxLength":25,"nullable":true},"DaysOnMarket":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DevelopmentStatus":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.DevelopmentStatus"}},"DirectionFaces":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.DirectionFaces"}],"nullable":true},"Directions":{"type":"string","maxLength":1024,"nullable":true},"Disclaimer":{"type":"string","maxLength":500,"nullable":true},"Disclosures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Disclosures"}},"DistanceToBusComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToBusNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToBusUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToElectricComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToElectricNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToElectricUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToFreewayComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToFreewayNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToFreewayUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToGasComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToGasNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToGasUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToPhoneServiceComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToPhoneServiceNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToPhoneServiceUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToPlaceofWorshipComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToPlaceofWorshipNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToPlaceofWorshipUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToSchoolBusComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToSchoolBusNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToSchoolBusUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToSchoolsComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToSchoolsNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToSchoolsUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToSewerComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToSewerNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToSewerUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToShoppingComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToShoppingNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToShoppingUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToStreetComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToStreetNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToStreetUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToWaterComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToWaterNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToWaterUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DocumentsAvailable":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.DocumentsAvailable"}},"DocumentsChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"DocumentsCount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DoorFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.DoorFeatures"}},"DualVariableCompensationYN":{"type":"boolean","nullable":true},"Electric":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Electric"}},"ElectricExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"ElectricOnPropertyYN":{"type":"boolean","nullable":true},"ElementarySchool":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ElementarySchool"}],"nullable":true},"ElementarySchoolDistrict":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ElementarySchoolDistrict"}],"nullable":true},"Elevation":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ElevationUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"EntryLevel":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"EntryLocation":{"type":"string","maxLength":50,"nullable":true},"Exclusions":{"type":"string","maxLength":1024,"nullable":true},"ExistingLeaseType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ExistingLeaseType"}},"ExpirationDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"ExteriorFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ExteriorFeatures"}},"FarmCreditServiceInclYN":{"type":"boolean","nullable":true},"FarmLandAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"FarmLandAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"Fencing":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Fencing"}},"FinancialDataSource":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.FinancialDataSource"}},"FireplaceFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.FireplaceFeatures"}},"FireplaceYN":{"type":"boolean","nullable":true},"FireplacesTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Flooring":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Flooring"}},"FoundationArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"FoundationDetails":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.FoundationDetails"}},"FrontageLength":{"type":"string","maxLength":255,"nullable":true},"FrontageType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.FrontageType"}},"FuelExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"Furnished":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Furnished"}],"nullable":true},"FurnitureReplacementExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"GarageSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"GarageYN":{"type":"boolean","nullable":true},"GardenerExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"GrazingPermitsBlmYN":{"type":"boolean","nullable":true},"GrazingPermitsForestServiceYN":{"type":"boolean","nullable":true},"GrazingPermitsPrivateYN":{"type":"boolean","nullable":true},"GreenBuildingVerificationType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenBuildingVerificationType"}},"GreenEnergyEfficient":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenEnergyEfficient"}},"GreenEnergyGeneration":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenEnergyGeneration"}},"GreenIndoorAirQuality":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenIndoorAirQuality"}},"GreenLocation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenLocation"}},"GreenSustainability":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenSustainability"}},"GreenWaterConservation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenWaterConservation"}},"GrossIncome":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"GrossScheduledIncome":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"HabitableResidenceYN":{"type":"boolean","nullable":true},"Heating":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Heating"}},"HeatingYN":{"type":"boolean","nullable":true},"HighSchool":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.HighSchool"}],"nullable":true},"HighSchoolDistrict":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.HighSchoolDistrict"}],"nullable":true},"HomeWarrantyYN":{"type":"boolean","nullable":true},"HorseAmenities":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.HorseAmenities"}},"HorseYN":{"type":"boolean","nullable":true},"HoursDaysOfOperation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.HoursDaysOfOperation"}},"HoursDaysOfOperationDescription":{"type":"string","maxLength":255,"nullable":true},"Inclusions":{"type":"string","maxLength":1024,"nullable":true},"IncomeIncludes":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.IncomeIncludes"}},"InsuranceExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"InteriorFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.InteriorOrRoomFeatures"}},"InternetAddressDisplayYN":{"type":"boolean","nullable":true},"InternetAutomatedValuationDisplayYN":{"type":"boolean","nullable":true},"InternetConsumerCommentYN":{"type":"boolean","nullable":true},"InternetEntireListingDisplayYN":{"type":"boolean","nullable":true},"IrrigationSource":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.IrrigationSource"}},"IrrigationWaterRightsAcres":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.0001,"nullable":true},"IrrigationWaterRightsYN":{"type":"boolean","nullable":true},"LaborInformation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LaborInformation"}},"LandLeaseAmount":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LandLeaseAmountFrequency":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.FeeFrequency"}],"nullable":true},"LandLeaseExpirationDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"LandLeaseYN":{"type":"boolean","nullable":true},"Latitude":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":1e-8,"maximum":9999.99999999,"minimum":-9999.99999999,"nullable":true},"LaundryFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LaundryFeatures"}},"LeasableArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LeasableAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"LeaseAmount":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LeaseAmountFrequency":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.FeeFrequency"}],"nullable":true},"LeaseAssignableYN":{"type":"boolean","nullable":true},"LeaseConsideredYN":{"type":"boolean","nullable":true},"LeaseExpiration":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"LeaseRenewalCompensation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LeaseRenewalCompensation"}},"LeaseRenewalOptionYN":{"type":"boolean","nullable":true},"LeaseTerm":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LeaseTerm"}],"nullable":true},"Levels":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Levels"}},"License1":{"type":"string","maxLength":25,"nullable":true},"License2":{"type":"string","maxLength":25,"nullable":true},"License3":{"type":"string","maxLength":25,"nullable":true},"LicensesExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"ListAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"ListAgentAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"ListAgentDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ListAgentDesignation"}},"ListAgentDirectPhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentEmail":{"type":"string","maxLength":80,"nullable":true},"ListAgentFax":{"type":"string","maxLength":16,"nullable":true},"ListAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"ListAgentFullName":{"type":"string","maxLength":150,"nullable":true},"ListAgentHomePhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentKey":{"type":"string","maxLength":255,"nullable":true},"ListAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListAgentLastName":{"type":"string","maxLength":50,"nullable":true},"ListAgentMiddleName":{"type":"string","maxLength":50,"nullable":true},"ListAgentMlsId":{"type":"string","maxLength":25,"nullable":true},"ListAgentMobilePhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentNamePrefix":{"type":"string","maxLength":10,"nullable":true},"ListAgentNameSuffix":{"type":"string","maxLength":10,"nullable":true},"ListAgentOfficePhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"ListAgentPager":{"type":"string","maxLength":16,"nullable":true},"ListAgentPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"ListAgentStateLicense":{"type":"string","maxLength":50,"nullable":true},"ListAgentTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentURL":{"type":"string","maxLength":8000,"nullable":true},"ListAgentVoiceMail":{"type":"string","maxLength":16,"nullable":true},"ListAgentVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"ListOfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"ListOfficeEmail":{"type":"string","maxLength":80,"nullable":true},"ListOfficeFax":{"type":"string","maxLength":16,"nullable":true},"ListOfficeKey":{"type":"string","maxLength":255,"nullable":true},"ListOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"ListOfficeName":{"type":"string","maxLength":255,"nullable":true},"ListOfficePhone":{"type":"string","maxLength":16,"nullable":true},"ListOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"ListOfficeURL":{"type":"string","maxLength":8000,"nullable":true},"ListPrice":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"ListPriceLow":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"ListTeamKey":{"type":"string","maxLength":255,"nullable":true},"ListTeamKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListTeamName":{"type":"string","maxLength":50,"nullable":true},"ListingAgreement":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ListingAgreement"}],"nullable":true},"ListingContractDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingService":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ListingService"}],"nullable":true},"ListingTerms":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ListingTerms"}},"LivingArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LivingAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"LivingAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"LockBoxLocation":{"type":"string","maxLength":255,"nullable":true},"LockBoxSerialNumber":{"type":"string","maxLength":25,"nullable":true},"LockBoxType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LockBoxType"}},"Longitude":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":1e-8,"maximum":9999.99999999,"minimum":-9999.99999999,"nullable":true},"LotDimensionsSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LotDimensionsSource"}],"nullable":true},"LotFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LotFeatures"}},"LotSizeAcres":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.0001,"nullable":true},"LotSizeArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.0001,"nullable":true},"LotSizeDimensions":{"type":"string","maxLength":150,"nullable":true},"LotSizeSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LotSizeSource"}],"nullable":true},"LotSizeSquareFeet":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LotSizeUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LotSizeUnits"}],"nullable":true},"MLSAreaMajor":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MLSAreaMajor"}],"nullable":true},"MLSAreaMinor":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MLSAreaMinor"}],"nullable":true},"MainLevelBathrooms":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MainLevelBedrooms":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MaintenanceExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"MajorChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"MajorChangeType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ChangeType"}],"nullable":true},"Make":{"type":"string","maxLength":50,"nullable":true},"ManagerExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"MapCoordinate":{"type":"string","maxLength":25,"nullable":true},"MapCoordinateSource":{"type":"string","maxLength":25,"nullable":true},"MapURL":{"type":"string","maxLength":8000,"nullable":true},"MiddleOrJuniorSchool":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MiddleOrJuniorSchool"}],"nullable":true},"MiddleOrJuniorSchoolDistrict":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MiddleOrJuniorSchoolDistrict"}],"nullable":true},"MlsStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MlsStatus"}],"nullable":true},"MobileDimUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"MobileHomeRemainsYN":{"type":"boolean","nullable":true},"MobileLength":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MobileWidth":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Model":{"type":"string","maxLength":50,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NetOperatingIncome":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"NewConstructionYN":{"type":"boolean","nullable":true},"NewTaxesExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"NumberOfBuildings":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfFullTimeEmployees":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfLots":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfPads":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfPartTimeEmployees":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfSeparateElectricMeters":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfSeparateGasMeters":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfSeparateWaterMeters":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsInCommunity":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsLeased":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsMoMo":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsVacant":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OccupantName":{"type":"string","maxLength":50,"nullable":true},"OccupantPhone":{"type":"string","maxLength":16,"nullable":true},"OccupantType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OccupantType"}],"nullable":true},"OffMarketDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"OffMarketTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OnMarketDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"OnMarketTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OpenParkingSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"OpenParkingYN":{"type":"boolean","nullable":true},"OperatingExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"OperatingExpenseIncludes":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.OperatingExpenseIncludes"}},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalListPrice":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OtherEquipment":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.OtherEquipment"}},"OtherExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"OtherParking":{"type":"string","maxLength":1024,"nullable":true},"OtherStructures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.OtherStructures"}},"OwnerName":{"type":"string","maxLength":50,"nullable":true},"OwnerPays":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.OwnerPays"}},"OwnerPhone":{"type":"string","maxLength":16,"nullable":true},"Ownership":{"type":"string","maxLength":1024,"nullable":true},"OwnershipType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OwnershipType"}],"nullable":true},"ParcelNumber":{"type":"string","maxLength":50,"nullable":true},"ParkManagerName":{"type":"string","maxLength":50,"nullable":true},"ParkManagerPhone":{"type":"string","maxLength":16,"nullable":true},"ParkName":{"type":"string","maxLength":50,"nullable":true},"ParkingFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ParkingFeatures"}},"ParkingTotal":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PastureArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PatioAndPorchFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PatioAndPorchFeatures"}},"PendingTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PestControlExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PetsAllowed":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PetsAllowed"}},"PhotosChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PhotosCount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"PoolExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PoolFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PoolFeatures"}},"PoolPrivateYN":{"type":"boolean","nullable":true},"Possession":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Possession"}},"PossibleUse":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PossibleUse"}},"PostalCity":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PostalCity"}],"nullable":true},"PostalCode":{"type":"string","maxLength":10,"nullable":true},"PostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"PowerProductionType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PowerProductionType"}},"PreviousListPrice":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PriceChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PrivateOfficeRemarks":{"type":"string","maxLength":4000,"nullable":true},"PrivateRemarks":{"type":"string","maxLength":4000,"nullable":true},"ProfessionalManagementExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PropertyAttachedYN":{"type":"boolean","nullable":true},"PropertyCondition":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PropertyCondition"}},"PropertySubType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PropertySubType"}],"nullable":true},"PropertyType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PropertyType"}],"nullable":true},"PublicRemarks":{"type":"string","maxLength":4000,"nullable":true},"PublicSurveyRange":{"type":"string","maxLength":20,"nullable":true},"PublicSurveySection":{"type":"string","maxLength":20,"nullable":true},"PublicSurveyTownship":{"type":"string","maxLength":20,"nullable":true},"PurchaseContractDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"RVParkingDimensions":{"type":"string","maxLength":50,"nullable":true},"RangeArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"RentControlYN":{"type":"boolean","nullable":true},"RentIncludes":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RentIncludes"}},"RoadFrontageType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RoadFrontageType"}},"RoadResponsibility":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RoadResponsibility"}},"RoadSurfaceType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RoadSurfaceType"}},"Roof":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Roof"}},"RoomType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RoomType"}},"RoomsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SeatingCapacity":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SecurityFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SecurityFeatures"}},"SeniorCommunityYN":{"type":"boolean","nullable":true},"SerialU":{"type":"string","maxLength":25,"nullable":true},"SerialX":{"type":"string","maxLength":25,"nullable":true},"SerialXX":{"type":"string","maxLength":25,"nullable":true},"Sewer":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Sewer"}},"ShowingAdvanceNotice":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShowingAttendedYN":{"type":"boolean","nullable":true},"ShowingContactName":{"type":"string","maxLength":40,"nullable":true},"ShowingContactPhone":{"type":"string","maxLength":16,"nullable":true},"ShowingContactPhoneExt":{"type":"string","maxLength":10,"nullable":true},"ShowingContactType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ShowingContactType"}},"ShowingDays":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ShowingDays"}},"ShowingEndTime":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ShowingInstructions":{"type":"string","maxLength":4000,"nullable":true},"ShowingRequirements":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ShowingRequirements"}},"ShowingStartTime":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"SignOnPropertyYN":{"type":"boolean","nullable":true},"Skirt":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Skirt"}},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SpaFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SpaFeatures"}},"SpaYN":{"type":"boolean","nullable":true},"SpecialLicenses":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SpecialLicenses"}},"SpecialListingConditions":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SpecialListingConditions"}},"StandardStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StandardStatus"}],"nullable":true},"StateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"StateRegion":{"type":"string","maxLength":150,"nullable":true},"StatusChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"Stories":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"StoriesTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"StreetAdditionalInfo":{"type":"string","maxLength":50,"nullable":true},"StreetDirPrefix":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StreetDirection"}],"nullable":true},"StreetDirSuffix":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StreetDirection"}],"nullable":true},"StreetName":{"type":"string","maxLength":50,"nullable":true},"StreetNumber":{"type":"string","maxLength":25,"nullable":true},"StreetNumberNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"StreetSuffix":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StreetSuffix"}],"nullable":true},"StreetSuffixModifier":{"type":"string","maxLength":25,"nullable":true},"StructureType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.StructureType"}},"SubAgencyCompensation":{"type":"string","maxLength":25,"nullable":true},"SubAgencyCompensationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CompensationType"}],"nullable":true},"SubdivisionName":{"type":"string","maxLength":50,"nullable":true},"SuppliesExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"SyndicateTo":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SyndicateTo"}},"SyndicationRemarks":{"type":"string","maxLength":4000,"nullable":true},"TaxAnnualAmount":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"TaxAssessedValue":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TaxBlock":{"type":"string","maxLength":25,"nullable":true},"TaxBookNumber":{"type":"string","maxLength":25,"nullable":true},"TaxLegalDescription":{"type":"string","maxLength":6000,"nullable":true},"TaxLot":{"type":"string","maxLength":25,"nullable":true},"TaxMapNumber":{"type":"string","maxLength":25,"nullable":true},"TaxOtherAnnualAssessmentAmount":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"TaxParcelLetter":{"type":"string","maxLength":25,"nullable":true},"TaxStatusCurrent":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.TaxStatusCurrent"}},"TaxTract":{"type":"string","maxLength":25,"nullable":true},"TaxYear":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TenantPays":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.TenantPays"}},"Topography":{"type":"string","maxLength":255,"nullable":true},"TotalActualRent":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"Township":{"type":"string","maxLength":50,"nullable":true},"TransactionBrokerCompensation":{"type":"string","maxLength":25,"nullable":true},"TransactionBrokerCompensationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CompensationType"}],"nullable":true},"TrashExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"UnitNumber":{"type":"string","maxLength":25,"nullable":true},"UnitTypeType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.UnitTypeType"}},"UnitsFurnished":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.UnitsFurnished"}],"nullable":true},"UniversalPropertyId":{"type":"string","maxLength":128,"nullable":true},"UniversalPropertySubId":{"type":"string","maxLength":128,"nullable":true},"UnparsedAddress":{"type":"string","maxLength":255,"nullable":true},"Utilities":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Utilities"}},"VacancyAllowance":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"VacancyAllowanceRate":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999.99,"minimum":-999.99,"nullable":true},"Vegetation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Vegetation"}},"VideosChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"VideosCount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"View":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.View"}},"ViewYN":{"type":"boolean","nullable":true},"VirtualTourURLBranded":{"type":"string","maxLength":8000,"nullable":true},"VirtualTourURLUnbranded":{"type":"string","maxLength":8000,"nullable":true},"WalkScore":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"WaterBodyName":{"type":"string","maxLength":50,"nullable":true},"WaterSewerExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"WaterSource":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.WaterSource"}},"WaterfrontFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.WaterfrontFeatures"}},"WaterfrontYN":{"type":"boolean","nullable":true},"WindowFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.WindowFeatures"}},"WithdrawnDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"WoodedArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"WorkmansCompensationExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"YearBuilt":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"YearBuiltDetails":{"type":"string","maxLength":1024,"nullable":true},"YearBuiltEffective":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"YearBuiltSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.YearBuiltSource"}],"nullable":true},"YearEstablished":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"YearsCurrentOwner":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Zoning":{"type":"string","maxLength":25,"nullable":true},"ZoningDescription":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"BuyerAgent":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"BuyerOffice":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Office-create"}],"nullable":true},"CoBuyerAgent":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"CoBuyerOffice":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Office-create"}],"nullable":true},"CoListAgent":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"CoListOffice":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Office-create"}],"nullable":true},"ListAgent":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"ListOffice":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Office-create"}],"nullable":true},"BuyerTeam":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Teams-create"}],"nullable":true},"ListTeam":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Teams-create"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media-create"}},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia-create"}},"OpenHouse":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.OpenHouse-create"}}},"required":["ListingKey"]},"org.reso.metadata.Property-update":{"title":"Property (for update)","type":"object","properties":{"AboveGradeFinishedArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"AboveGradeFinishedAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"AboveGradeFinishedAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"AccessCode":{"type":"string","maxLength":25,"nullable":true},"AccessibilityFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.AccessibilityFeatures"}},"AdditionalParcelsDescription":{"type":"string","maxLength":255,"nullable":true},"AdditionalParcelsYN":{"type":"boolean","nullable":true},"AnchorsCoTenants":{"type":"string","maxLength":1024,"nullable":true},"Appliances":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Appliances"}},"ArchitecturalStyle":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ArchitecturalStyle"}},"AssociationAmenities":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.AssociationAmenities"}},"AssociationFee":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"AssociationFee2":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"AssociationFee2Frequency":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.FeeFrequency"}],"nullable":true},"AssociationFeeFrequency":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.FeeFrequency"}],"nullable":true},"AssociationFeeIncludes":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.AssociationFeeIncludes"}},"AssociationName":{"type":"string","maxLength":50,"nullable":true},"AssociationName2":{"type":"string","maxLength":50,"nullable":true},"AssociationPhone":{"type":"string","maxLength":16,"nullable":true},"AssociationPhone2":{"type":"string","maxLength":16,"nullable":true},"AssociationYN":{"type":"boolean","nullable":true},"AttachedGarageYN":{"type":"boolean","nullable":true},"AvailabilityDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"Basement":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Basement"}},"BasementYN":{"type":"boolean","nullable":true},"BathroomsFull":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsHalf":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsOneQuarter":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsPartial":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsThreeQuarter":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BathroomsTotalInteger":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BedroomsPossible":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BedroomsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BelowGradeFinishedArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"BelowGradeFinishedAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"BelowGradeFinishedAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"BodyType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BodyType"}},"BuilderModel":{"type":"string","maxLength":50,"nullable":true},"BuilderName":{"type":"string","maxLength":50,"nullable":true},"BuildingAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"BuildingAreaTotal":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"BuildingAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"BuildingFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BuildingFeatures"}},"BuildingName":{"type":"string","maxLength":50,"nullable":true},"BusinessName":{"type":"string","maxLength":255,"nullable":true},"BusinessType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BusinessType"}},"BuyerAgencyCompensation":{"type":"string","maxLength":25,"nullable":true},"BuyerAgencyCompensationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CompensationType"}],"nullable":true},"BuyerAgentAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"BuyerAgentDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BuyerAgentDesignation"}},"BuyerAgentDirectPhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentEmail":{"type":"string","maxLength":80,"nullable":true},"BuyerAgentFax":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"BuyerAgentFullName":{"type":"string","maxLength":150,"nullable":true},"BuyerAgentHomePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentKey":{"type":"string","maxLength":255,"nullable":true},"BuyerAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BuyerAgentLastName":{"type":"string","maxLength":50,"nullable":true},"BuyerAgentMiddleName":{"type":"string","maxLength":50,"nullable":true},"BuyerAgentMlsId":{"type":"string","maxLength":25,"nullable":true},"BuyerAgentMobilePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentNamePrefix":{"type":"string","maxLength":10,"nullable":true},"BuyerAgentNameSuffix":{"type":"string","maxLength":10,"nullable":true},"BuyerAgentOfficePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"BuyerAgentPager":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"BuyerAgentStateLicense":{"type":"string","maxLength":50,"nullable":true},"BuyerAgentTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentURL":{"type":"string","maxLength":8000,"nullable":true},"BuyerAgentVoiceMail":{"type":"string","maxLength":16,"nullable":true},"BuyerAgentVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"BuyerFinancing":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.BuyerFinancing"}},"BuyerOfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"BuyerOfficeEmail":{"type":"string","maxLength":80,"nullable":true},"BuyerOfficeFax":{"type":"string","maxLength":16,"nullable":true},"BuyerOfficeKey":{"type":"string","maxLength":255,"nullable":true},"BuyerOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BuyerOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"BuyerOfficeName":{"type":"string","maxLength":255,"nullable":true},"BuyerOfficePhone":{"type":"string","maxLength":16,"nullable":true},"BuyerOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"BuyerOfficeURL":{"type":"string","maxLength":8000,"nullable":true},"BuyerTeamKey":{"type":"string","maxLength":255,"nullable":true},"BuyerTeamKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"BuyerTeamName":{"type":"string","maxLength":50,"nullable":true},"CableTvExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CancellationDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"CapRate":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999.99,"minimum":-999.99,"nullable":true},"CarportSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CarportYN":{"type":"boolean","nullable":true},"CarrierRoute":{"type":"string","maxLength":9,"nullable":true},"City":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.City"}],"nullable":true},"CityRegion":{"type":"string","maxLength":150,"nullable":true},"CloseDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"ClosePrice":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CoBuyerAgentAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"CoBuyerAgentDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CoBuyerAgentDesignation"}},"CoBuyerAgentDirectPhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentEmail":{"type":"string","maxLength":80,"nullable":true},"CoBuyerAgentFax":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"CoBuyerAgentFullName":{"type":"string","maxLength":150,"nullable":true},"CoBuyerAgentHomePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentKey":{"type":"string","maxLength":255,"nullable":true},"CoBuyerAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CoBuyerAgentLastName":{"type":"string","maxLength":50,"nullable":true},"CoBuyerAgentMiddleName":{"type":"string","maxLength":50,"nullable":true},"CoBuyerAgentMlsId":{"type":"string","maxLength":25,"nullable":true},"CoBuyerAgentMobilePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentNamePrefix":{"type":"string","maxLength":10,"nullable":true},"CoBuyerAgentNameSuffix":{"type":"string","maxLength":10,"nullable":true},"CoBuyerAgentOfficePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoBuyerAgentPager":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoBuyerAgentStateLicense":{"type":"string","maxLength":50,"nullable":true},"CoBuyerAgentTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentURL":{"type":"string","maxLength":8000,"nullable":true},"CoBuyerAgentVoiceMail":{"type":"string","maxLength":16,"nullable":true},"CoBuyerAgentVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"CoBuyerOfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"CoBuyerOfficeEmail":{"type":"string","maxLength":80,"nullable":true},"CoBuyerOfficeFax":{"type":"string","maxLength":16,"nullable":true},"CoBuyerOfficeKey":{"type":"string","maxLength":255,"nullable":true},"CoBuyerOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CoBuyerOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"CoBuyerOfficeName":{"type":"string","maxLength":255,"nullable":true},"CoBuyerOfficePhone":{"type":"string","maxLength":16,"nullable":true},"CoBuyerOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoBuyerOfficeURL":{"type":"string","maxLength":8000,"nullable":true},"CoListAgentAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"CoListAgentDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CoListAgentDesignation"}},"CoListAgentDirectPhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentEmail":{"type":"string","maxLength":80,"nullable":true},"CoListAgentFax":{"type":"string","maxLength":16,"nullable":true},"CoListAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"CoListAgentFullName":{"type":"string","maxLength":150,"nullable":true},"CoListAgentHomePhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentKey":{"type":"string","maxLength":255,"nullable":true},"CoListAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CoListAgentLastName":{"type":"string","maxLength":50,"nullable":true},"CoListAgentMiddleName":{"type":"string","maxLength":50,"nullable":true},"CoListAgentMlsId":{"type":"string","maxLength":25,"nullable":true},"CoListAgentMobilePhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentNamePrefix":{"type":"string","maxLength":10,"nullable":true},"CoListAgentNameSuffix":{"type":"string","maxLength":10,"nullable":true},"CoListAgentOfficePhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoListAgentPager":{"type":"string","maxLength":16,"nullable":true},"CoListAgentPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoListAgentStateLicense":{"type":"string","maxLength":50,"nullable":true},"CoListAgentTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"CoListAgentURL":{"type":"string","maxLength":8000,"nullable":true},"CoListAgentVoiceMail":{"type":"string","maxLength":16,"nullable":true},"CoListAgentVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"CoListOfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"CoListOfficeEmail":{"type":"string","maxLength":80,"nullable":true},"CoListOfficeFax":{"type":"string","maxLength":16,"nullable":true},"CoListOfficeKey":{"type":"string","maxLength":255,"nullable":true},"CoListOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CoListOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"CoListOfficeName":{"type":"string","maxLength":255,"nullable":true},"CoListOfficePhone":{"type":"string","maxLength":16,"nullable":true},"CoListOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"CoListOfficeURL":{"type":"string","maxLength":8000,"nullable":true},"CommonInterest":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CommonInterest"}],"nullable":true},"CommonWalls":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CommonWalls"}},"CommunityFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CommunityFeatures"}},"Concessions":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Concessions"}],"nullable":true},"ConcessionsAmount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ConcessionsComments":{"type":"string","maxLength":200,"nullable":true},"ConstructionMaterials":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ConstructionMaterials"}},"ContinentRegion":{"type":"string","maxLength":150,"nullable":true},"Contingency":{"type":"string","maxLength":1024,"nullable":true},"ContingentDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"ContractStatusChangeDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"Cooling":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Cooling"}},"CoolingYN":{"type":"boolean","nullable":true},"CopyrightNotice":{"type":"string","maxLength":500,"nullable":true},"Country":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"CountryRegion":{"type":"string","maxLength":150,"nullable":true},"CountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"CoveredSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CropsIncludedYN":{"type":"boolean","nullable":true},"CrossStreet":{"type":"string","maxLength":50,"nullable":true},"CultivatedArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"CumulativeDaysOnMarket":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"CurrentFinancing":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CurrentFinancing"}},"CurrentUse":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.CurrentUse"}},"DOH1":{"type":"string","maxLength":25,"nullable":true},"DOH2":{"type":"string","maxLength":25,"nullable":true},"DOH3":{"type":"string","maxLength":25,"nullable":true},"DaysOnMarket":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DevelopmentStatus":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.DevelopmentStatus"}},"DirectionFaces":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.DirectionFaces"}],"nullable":true},"Directions":{"type":"string","maxLength":1024,"nullable":true},"Disclaimer":{"type":"string","maxLength":500,"nullable":true},"Disclosures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Disclosures"}},"DistanceToBusComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToBusNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToBusUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToElectricComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToElectricNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToElectricUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToFreewayComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToFreewayNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToFreewayUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToGasComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToGasNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToGasUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToPhoneServiceComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToPhoneServiceNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToPhoneServiceUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToPlaceofWorshipComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToPlaceofWorshipNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToPlaceofWorshipUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToSchoolBusComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToSchoolBusNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToSchoolBusUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToSchoolsComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToSchoolsNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToSchoolsUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToSewerComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToSewerNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToSewerUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToShoppingComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToShoppingNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToShoppingUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToStreetComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToStreetNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToStreetUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DistanceToWaterComments":{"type":"string","maxLength":255,"nullable":true},"DistanceToWaterNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DistanceToWaterUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"DocumentsAvailable":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.DocumentsAvailable"}},"DocumentsChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"DocumentsCount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DoorFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.DoorFeatures"}},"DualVariableCompensationYN":{"type":"boolean","nullable":true},"Electric":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Electric"}},"ElectricExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"ElectricOnPropertyYN":{"type":"boolean","nullable":true},"ElementarySchool":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ElementarySchool"}],"nullable":true},"ElementarySchoolDistrict":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ElementarySchoolDistrict"}],"nullable":true},"Elevation":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ElevationUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"EntryLevel":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"EntryLocation":{"type":"string","maxLength":50,"nullable":true},"Exclusions":{"type":"string","maxLength":1024,"nullable":true},"ExistingLeaseType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ExistingLeaseType"}},"ExpirationDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"ExteriorFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ExteriorFeatures"}},"FarmCreditServiceInclYN":{"type":"boolean","nullable":true},"FarmLandAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"FarmLandAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"Fencing":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Fencing"}},"FinancialDataSource":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.FinancialDataSource"}},"FireplaceFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.FireplaceFeatures"}},"FireplaceYN":{"type":"boolean","nullable":true},"FireplacesTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Flooring":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Flooring"}},"FoundationArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"FoundationDetails":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.FoundationDetails"}},"FrontageLength":{"type":"string","maxLength":255,"nullable":true},"FrontageType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.FrontageType"}},"FuelExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"Furnished":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Furnished"}],"nullable":true},"FurnitureReplacementExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"GarageSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"GarageYN":{"type":"boolean","nullable":true},"GardenerExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"GrazingPermitsBlmYN":{"type":"boolean","nullable":true},"GrazingPermitsForestServiceYN":{"type":"boolean","nullable":true},"GrazingPermitsPrivateYN":{"type":"boolean","nullable":true},"GreenBuildingVerificationType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenBuildingVerificationType"}},"GreenEnergyEfficient":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenEnergyEfficient"}},"GreenEnergyGeneration":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenEnergyGeneration"}},"GreenIndoorAirQuality":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenIndoorAirQuality"}},"GreenLocation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenLocation"}},"GreenSustainability":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenSustainability"}},"GreenWaterConservation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenWaterConservation"}},"GrossIncome":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"GrossScheduledIncome":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"HabitableResidenceYN":{"type":"boolean","nullable":true},"Heating":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Heating"}},"HeatingYN":{"type":"boolean","nullable":true},"HighSchool":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.HighSchool"}],"nullable":true},"HighSchoolDistrict":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.HighSchoolDistrict"}],"nullable":true},"HomeWarrantyYN":{"type":"boolean","nullable":true},"HorseAmenities":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.HorseAmenities"}},"HorseYN":{"type":"boolean","nullable":true},"HoursDaysOfOperation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.HoursDaysOfOperation"}},"HoursDaysOfOperationDescription":{"type":"string","maxLength":255,"nullable":true},"Inclusions":{"type":"string","maxLength":1024,"nullable":true},"IncomeIncludes":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.IncomeIncludes"}},"InsuranceExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"InteriorFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.InteriorOrRoomFeatures"}},"InternetAddressDisplayYN":{"type":"boolean","nullable":true},"InternetAutomatedValuationDisplayYN":{"type":"boolean","nullable":true},"InternetConsumerCommentYN":{"type":"boolean","nullable":true},"InternetEntireListingDisplayYN":{"type":"boolean","nullable":true},"IrrigationSource":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.IrrigationSource"}},"IrrigationWaterRightsAcres":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.0001,"nullable":true},"IrrigationWaterRightsYN":{"type":"boolean","nullable":true},"LaborInformation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LaborInformation"}},"LandLeaseAmount":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LandLeaseAmountFrequency":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.FeeFrequency"}],"nullable":true},"LandLeaseExpirationDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"LandLeaseYN":{"type":"boolean","nullable":true},"Latitude":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":1e-8,"maximum":9999.99999999,"minimum":-9999.99999999,"nullable":true},"LaundryFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LaundryFeatures"}},"LeasableArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LeasableAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"LeaseAmount":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LeaseAmountFrequency":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.FeeFrequency"}],"nullable":true},"LeaseAssignableYN":{"type":"boolean","nullable":true},"LeaseConsideredYN":{"type":"boolean","nullable":true},"LeaseExpiration":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"LeaseRenewalCompensation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LeaseRenewalCompensation"}},"LeaseRenewalOptionYN":{"type":"boolean","nullable":true},"LeaseTerm":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LeaseTerm"}],"nullable":true},"Levels":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Levels"}},"License1":{"type":"string","maxLength":25,"nullable":true},"License2":{"type":"string","maxLength":25,"nullable":true},"License3":{"type":"string","maxLength":25,"nullable":true},"LicensesExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"ListAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"ListAgentAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"ListAgentDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ListAgentDesignation"}},"ListAgentDirectPhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentEmail":{"type":"string","maxLength":80,"nullable":true},"ListAgentFax":{"type":"string","maxLength":16,"nullable":true},"ListAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"ListAgentFullName":{"type":"string","maxLength":150,"nullable":true},"ListAgentHomePhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentKey":{"type":"string","maxLength":255,"nullable":true},"ListAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListAgentLastName":{"type":"string","maxLength":50,"nullable":true},"ListAgentMiddleName":{"type":"string","maxLength":50,"nullable":true},"ListAgentMlsId":{"type":"string","maxLength":25,"nullable":true},"ListAgentMobilePhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentNamePrefix":{"type":"string","maxLength":10,"nullable":true},"ListAgentNameSuffix":{"type":"string","maxLength":10,"nullable":true},"ListAgentOfficePhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"ListAgentPager":{"type":"string","maxLength":16,"nullable":true},"ListAgentPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"ListAgentStateLicense":{"type":"string","maxLength":50,"nullable":true},"ListAgentTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"ListAgentURL":{"type":"string","maxLength":8000,"nullable":true},"ListAgentVoiceMail":{"type":"string","maxLength":16,"nullable":true},"ListAgentVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"ListOfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"ListOfficeEmail":{"type":"string","maxLength":80,"nullable":true},"ListOfficeFax":{"type":"string","maxLength":16,"nullable":true},"ListOfficeKey":{"type":"string","maxLength":255,"nullable":true},"ListOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"ListOfficeName":{"type":"string","maxLength":255,"nullable":true},"ListOfficePhone":{"type":"string","maxLength":16,"nullable":true},"ListOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"ListOfficeURL":{"type":"string","maxLength":8000,"nullable":true},"ListPrice":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"ListPriceLow":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"ListTeamKey":{"type":"string","maxLength":255,"nullable":true},"ListTeamKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListTeamName":{"type":"string","maxLength":50,"nullable":true},"ListingAgreement":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ListingAgreement"}],"nullable":true},"ListingContractDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingService":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ListingService"}],"nullable":true},"ListingTerms":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ListingTerms"}},"LivingArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LivingAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"LivingAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"LockBoxLocation":{"type":"string","maxLength":255,"nullable":true},"LockBoxSerialNumber":{"type":"string","maxLength":25,"nullable":true},"LockBoxType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LockBoxType"}},"Longitude":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":1e-8,"maximum":9999.99999999,"minimum":-9999.99999999,"nullable":true},"LotDimensionsSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LotDimensionsSource"}],"nullable":true},"LotFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.LotFeatures"}},"LotSizeAcres":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.0001,"nullable":true},"LotSizeArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.0001,"nullable":true},"LotSizeDimensions":{"type":"string","maxLength":150,"nullable":true},"LotSizeSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LotSizeSource"}],"nullable":true},"LotSizeSquareFeet":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"LotSizeUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LotSizeUnits"}],"nullable":true},"MLSAreaMajor":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MLSAreaMajor"}],"nullable":true},"MLSAreaMinor":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MLSAreaMinor"}],"nullable":true},"MainLevelBathrooms":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MainLevelBedrooms":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MaintenanceExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"MajorChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"MajorChangeType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ChangeType"}],"nullable":true},"Make":{"type":"string","maxLength":50,"nullable":true},"ManagerExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"MapCoordinate":{"type":"string","maxLength":25,"nullable":true},"MapCoordinateSource":{"type":"string","maxLength":25,"nullable":true},"MapURL":{"type":"string","maxLength":8000,"nullable":true},"MiddleOrJuniorSchool":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MiddleOrJuniorSchool"}],"nullable":true},"MiddleOrJuniorSchoolDistrict":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MiddleOrJuniorSchoolDistrict"}],"nullable":true},"MlsStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MlsStatus"}],"nullable":true},"MobileDimUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"MobileHomeRemainsYN":{"type":"boolean","nullable":true},"MobileLength":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MobileWidth":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Model":{"type":"string","maxLength":50,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NetOperatingIncome":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"NewConstructionYN":{"type":"boolean","nullable":true},"NewTaxesExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"NumberOfBuildings":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfFullTimeEmployees":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfLots":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfPads":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfPartTimeEmployees":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfSeparateElectricMeters":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfSeparateGasMeters":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfSeparateWaterMeters":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsInCommunity":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsLeased":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsMoMo":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"NumberOfUnitsVacant":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OccupantName":{"type":"string","maxLength":50,"nullable":true},"OccupantPhone":{"type":"string","maxLength":16,"nullable":true},"OccupantType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OccupantType"}],"nullable":true},"OffMarketDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"OffMarketTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OnMarketDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"OnMarketTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OpenParkingSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"OpenParkingYN":{"type":"boolean","nullable":true},"OperatingExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"OperatingExpenseIncludes":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.OperatingExpenseIncludes"}},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalListPrice":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OtherEquipment":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.OtherEquipment"}},"OtherExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"OtherParking":{"type":"string","maxLength":1024,"nullable":true},"OtherStructures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.OtherStructures"}},"OwnerName":{"type":"string","maxLength":50,"nullable":true},"OwnerPays":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.OwnerPays"}},"OwnerPhone":{"type":"string","maxLength":16,"nullable":true},"Ownership":{"type":"string","maxLength":1024,"nullable":true},"OwnershipType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OwnershipType"}],"nullable":true},"ParcelNumber":{"type":"string","maxLength":50,"nullable":true},"ParkManagerName":{"type":"string","maxLength":50,"nullable":true},"ParkManagerPhone":{"type":"string","maxLength":16,"nullable":true},"ParkName":{"type":"string","maxLength":50,"nullable":true},"ParkingFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ParkingFeatures"}},"ParkingTotal":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PastureArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PatioAndPorchFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PatioAndPorchFeatures"}},"PendingTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PestControlExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PetsAllowed":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PetsAllowed"}},"PhotosChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PhotosCount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"PoolExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PoolFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PoolFeatures"}},"PoolPrivateYN":{"type":"boolean","nullable":true},"Possession":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Possession"}},"PossibleUse":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PossibleUse"}},"PostalCity":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PostalCity"}],"nullable":true},"PostalCode":{"type":"string","maxLength":10,"nullable":true},"PostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"PowerProductionType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PowerProductionType"}},"PreviousListPrice":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PriceChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PrivateOfficeRemarks":{"type":"string","maxLength":4000,"nullable":true},"PrivateRemarks":{"type":"string","maxLength":4000,"nullable":true},"ProfessionalManagementExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"PropertyAttachedYN":{"type":"boolean","nullable":true},"PropertyCondition":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.PropertyCondition"}},"PropertySubType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PropertySubType"}],"nullable":true},"PropertyType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PropertyType"}],"nullable":true},"PublicRemarks":{"type":"string","maxLength":4000,"nullable":true},"PublicSurveyRange":{"type":"string","maxLength":20,"nullable":true},"PublicSurveySection":{"type":"string","maxLength":20,"nullable":true},"PublicSurveyTownship":{"type":"string","maxLength":20,"nullable":true},"PurchaseContractDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"RVParkingDimensions":{"type":"string","maxLength":50,"nullable":true},"RangeArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"RentControlYN":{"type":"boolean","nullable":true},"RentIncludes":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RentIncludes"}},"RoadFrontageType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RoadFrontageType"}},"RoadResponsibility":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RoadResponsibility"}},"RoadSurfaceType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RoadSurfaceType"}},"Roof":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Roof"}},"RoomType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.RoomType"}},"RoomsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SeatingCapacity":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SecurityFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SecurityFeatures"}},"SeniorCommunityYN":{"type":"boolean","nullable":true},"SerialU":{"type":"string","maxLength":25,"nullable":true},"SerialX":{"type":"string","maxLength":25,"nullable":true},"SerialXX":{"type":"string","maxLength":25,"nullable":true},"Sewer":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Sewer"}},"ShowingAdvanceNotice":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShowingAttendedYN":{"type":"boolean","nullable":true},"ShowingContactName":{"type":"string","maxLength":40,"nullable":true},"ShowingContactPhone":{"type":"string","maxLength":16,"nullable":true},"ShowingContactPhoneExt":{"type":"string","maxLength":10,"nullable":true},"ShowingContactType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ShowingContactType"}},"ShowingDays":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ShowingDays"}},"ShowingEndTime":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ShowingInstructions":{"type":"string","maxLength":4000,"nullable":true},"ShowingRequirements":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ShowingRequirements"}},"ShowingStartTime":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"SignOnPropertyYN":{"type":"boolean","nullable":true},"Skirt":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Skirt"}},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SpaFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SpaFeatures"}},"SpaYN":{"type":"boolean","nullable":true},"SpecialLicenses":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SpecialLicenses"}},"SpecialListingConditions":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SpecialListingConditions"}},"StandardStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StandardStatus"}],"nullable":true},"StateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"StateRegion":{"type":"string","maxLength":150,"nullable":true},"StatusChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"Stories":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"StoriesTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"StreetAdditionalInfo":{"type":"string","maxLength":50,"nullable":true},"StreetDirPrefix":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StreetDirection"}],"nullable":true},"StreetDirSuffix":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StreetDirection"}],"nullable":true},"StreetName":{"type":"string","maxLength":50,"nullable":true},"StreetNumber":{"type":"string","maxLength":25,"nullable":true},"StreetNumberNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"StreetSuffix":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StreetSuffix"}],"nullable":true},"StreetSuffixModifier":{"type":"string","maxLength":25,"nullable":true},"StructureType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.StructureType"}},"SubAgencyCompensation":{"type":"string","maxLength":25,"nullable":true},"SubAgencyCompensationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CompensationType"}],"nullable":true},"SubdivisionName":{"type":"string","maxLength":50,"nullable":true},"SuppliesExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"SyndicateTo":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SyndicateTo"}},"SyndicationRemarks":{"type":"string","maxLength":4000,"nullable":true},"TaxAnnualAmount":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"TaxAssessedValue":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TaxBlock":{"type":"string","maxLength":25,"nullable":true},"TaxBookNumber":{"type":"string","maxLength":25,"nullable":true},"TaxLegalDescription":{"type":"string","maxLength":6000,"nullable":true},"TaxLot":{"type":"string","maxLength":25,"nullable":true},"TaxMapNumber":{"type":"string","maxLength":25,"nullable":true},"TaxOtherAnnualAssessmentAmount":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"TaxParcelLetter":{"type":"string","maxLength":25,"nullable":true},"TaxStatusCurrent":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.TaxStatusCurrent"}},"TaxTract":{"type":"string","maxLength":25,"nullable":true},"TaxYear":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TenantPays":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.TenantPays"}},"Topography":{"type":"string","maxLength":255,"nullable":true},"TotalActualRent":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"Township":{"type":"string","maxLength":50,"nullable":true},"TransactionBrokerCompensation":{"type":"string","maxLength":25,"nullable":true},"TransactionBrokerCompensationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CompensationType"}],"nullable":true},"TrashExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"UnitNumber":{"type":"string","maxLength":25,"nullable":true},"UnitTypeType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.UnitTypeType"}},"UnitsFurnished":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.UnitsFurnished"}],"nullable":true},"UniversalPropertyId":{"type":"string","maxLength":128,"nullable":true},"UniversalPropertySubId":{"type":"string","maxLength":128,"nullable":true},"UnparsedAddress":{"type":"string","maxLength":255,"nullable":true},"Utilities":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Utilities"}},"VacancyAllowance":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"VacancyAllowanceRate":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999.99,"minimum":-999.99,"nullable":true},"Vegetation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Vegetation"}},"VideosChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"VideosCount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"View":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.View"}},"ViewYN":{"type":"boolean","nullable":true},"VirtualTourURLBranded":{"type":"string","maxLength":8000,"nullable":true},"VirtualTourURLUnbranded":{"type":"string","maxLength":8000,"nullable":true},"WalkScore":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"WaterBodyName":{"type":"string","maxLength":50,"nullable":true},"WaterSewerExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"WaterSource":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.WaterSource"}},"WaterfrontFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.WaterfrontFeatures"}},"WaterfrontYN":{"type":"boolean","nullable":true},"WindowFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.WindowFeatures"}},"WithdrawnDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"WoodedArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"WorkmansCompensationExpense":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"YearBuilt":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"YearBuiltDetails":{"type":"string","maxLength":1024,"nullable":true},"YearBuiltEffective":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"YearBuiltSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.YearBuiltSource"}],"nullable":true},"YearEstablished":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"YearsCurrentOwner":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Zoning":{"type":"string","maxLength":25,"nullable":true},"ZoningDescription":{"type":"string","maxLength":255,"nullable":true}}},"org.reso.metadata.Member":{"title":"Member","type":"object","properties":{"JobTitle":{"type":"string","maxLength":50,"nullable":true},"LastLoginTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"MemberAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"MemberAORMlsId":{"type":"string","maxLength":25,"nullable":true},"MemberAORkey":{"type":"string","maxLength":255,"nullable":true},"MemberAORkeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MemberAddress1":{"type":"string","maxLength":50,"nullable":true},"MemberAddress2":{"type":"string","maxLength":50,"nullable":true},"MemberAssociationComments":{"type":"string","maxLength":500,"nullable":true},"MemberCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"MemberCity":{"type":"string","maxLength":50,"nullable":true},"MemberCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"MemberCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"MemberDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberDesignation"}},"MemberDirectPhone":{"type":"string","maxLength":16,"nullable":true},"MemberEmail":{"type":"string","maxLength":80,"nullable":true},"MemberFax":{"type":"string","maxLength":16,"nullable":true},"MemberFirstName":{"type":"string","maxLength":50,"nullable":true},"MemberFullName":{"type":"string","maxLength":150,"nullable":true},"MemberHomePhone":{"type":"string","maxLength":16,"nullable":true},"MemberIsAssistantTo":{"type":"string","maxLength":50,"nullable":true},"MemberKey":{"type":"string","maxLength":255,"nullable":true},"MemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MemberLanguages":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Languages"}},"MemberLastName":{"type":"string","maxLength":50,"nullable":true},"MemberLoginId":{"type":"string","maxLength":25,"nullable":true},"MemberMiddleName":{"type":"string","maxLength":50,"nullable":true},"MemberMlsAccessYN":{"type":"boolean","nullable":true},"MemberMlsId":{"type":"string","maxLength":25,"nullable":true},"MemberMlsSecurityClass":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberMlsSecurityClass"}],"nullable":true},"MemberMobilePhone":{"type":"string","maxLength":16,"nullable":true},"MemberNamePrefix":{"type":"string","maxLength":10,"nullable":true},"MemberNameSuffix":{"type":"string","maxLength":10,"nullable":true},"MemberNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"MemberNickname":{"type":"string","maxLength":50,"nullable":true},"MemberOfficePhone":{"type":"string","maxLength":16,"nullable":true},"MemberOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"MemberOtherPhoneType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberOtherPhoneType"}],"nullable":true},"MemberPager":{"type":"string","maxLength":16,"nullable":true},"MemberPassword":{"type":"string","maxLength":25,"nullable":true},"MemberPhoneTTYTDD":{"type":"string","maxLength":16,"nullable":true},"MemberPostalCode":{"type":"string","maxLength":10,"nullable":true},"MemberPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"MemberPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"MemberPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"MemberStateLicense":{"type":"string","maxLength":50,"nullable":true},"MemberStateLicenseState":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"MemberStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"MemberStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberStatus"}],"nullable":true},"MemberTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"MemberType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberType"}],"nullable":true},"MemberVoiceMail":{"type":"string","maxLength":16,"nullable":true},"MemberVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OfficeKey":{"type":"string","maxLength":255,"nullable":true},"OfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeName":{"type":"string","maxLength":255,"nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemMemberKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemMemberKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SyndicateTo":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SyndicateTo"}},"Office":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Office"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}},"Media@odata.count":{"$ref":"#/components/schemas/count"},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}},"SocialMedia@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.Member-create":{"title":"Member (for create)","type":"object","properties":{"JobTitle":{"type":"string","maxLength":50,"nullable":true},"LastLoginTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"MemberAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"MemberAORMlsId":{"type":"string","maxLength":25,"nullable":true},"MemberAORkey":{"type":"string","maxLength":255,"nullable":true},"MemberAORkeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MemberAddress1":{"type":"string","maxLength":50,"nullable":true},"MemberAddress2":{"type":"string","maxLength":50,"nullable":true},"MemberAssociationComments":{"type":"string","maxLength":500,"nullable":true},"MemberCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"MemberCity":{"type":"string","maxLength":50,"nullable":true},"MemberCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"MemberCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"MemberDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberDesignation"}},"MemberDirectPhone":{"type":"string","maxLength":16,"nullable":true},"MemberEmail":{"type":"string","maxLength":80,"nullable":true},"MemberFax":{"type":"string","maxLength":16,"nullable":true},"MemberFirstName":{"type":"string","maxLength":50,"nullable":true},"MemberFullName":{"type":"string","maxLength":150,"nullable":true},"MemberHomePhone":{"type":"string","maxLength":16,"nullable":true},"MemberIsAssistantTo":{"type":"string","maxLength":50,"nullable":true},"MemberKey":{"type":"string","maxLength":255,"nullable":true},"MemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MemberLanguages":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Languages"}},"MemberLastName":{"type":"string","maxLength":50,"nullable":true},"MemberLoginId":{"type":"string","maxLength":25,"nullable":true},"MemberMiddleName":{"type":"string","maxLength":50,"nullable":true},"MemberMlsAccessYN":{"type":"boolean","nullable":true},"MemberMlsId":{"type":"string","maxLength":25,"nullable":true},"MemberMlsSecurityClass":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberMlsSecurityClass"}],"nullable":true},"MemberMobilePhone":{"type":"string","maxLength":16,"nullable":true},"MemberNamePrefix":{"type":"string","maxLength":10,"nullable":true},"MemberNameSuffix":{"type":"string","maxLength":10,"nullable":true},"MemberNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"MemberNickname":{"type":"string","maxLength":50,"nullable":true},"MemberOfficePhone":{"type":"string","maxLength":16,"nullable":true},"MemberOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"MemberOtherPhoneType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberOtherPhoneType"}],"nullable":true},"MemberPager":{"type":"string","maxLength":16,"nullable":true},"MemberPassword":{"type":"string","maxLength":25,"nullable":true},"MemberPhoneTTYTDD":{"type":"string","maxLength":16,"nullable":true},"MemberPostalCode":{"type":"string","maxLength":10,"nullable":true},"MemberPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"MemberPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"MemberPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"MemberStateLicense":{"type":"string","maxLength":50,"nullable":true},"MemberStateLicenseState":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"MemberStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"MemberStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberStatus"}],"nullable":true},"MemberTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"MemberType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberType"}],"nullable":true},"MemberVoiceMail":{"type":"string","maxLength":16,"nullable":true},"MemberVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OfficeKey":{"type":"string","maxLength":255,"nullable":true},"OfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeName":{"type":"string","maxLength":255,"nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemMemberKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemMemberKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SyndicateTo":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SyndicateTo"}},"Office":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Office-create"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media-create"}},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia-create"}}},"required":["MemberKey"]},"org.reso.metadata.Member-update":{"title":"Member (for update)","type":"object","properties":{"JobTitle":{"type":"string","maxLength":50,"nullable":true},"LastLoginTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"MemberAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"MemberAORMlsId":{"type":"string","maxLength":25,"nullable":true},"MemberAORkey":{"type":"string","maxLength":255,"nullable":true},"MemberAORkeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MemberAddress1":{"type":"string","maxLength":50,"nullable":true},"MemberAddress2":{"type":"string","maxLength":50,"nullable":true},"MemberAssociationComments":{"type":"string","maxLength":500,"nullable":true},"MemberCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"MemberCity":{"type":"string","maxLength":50,"nullable":true},"MemberCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"MemberCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"MemberDesignation":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberDesignation"}},"MemberDirectPhone":{"type":"string","maxLength":16,"nullable":true},"MemberEmail":{"type":"string","maxLength":80,"nullable":true},"MemberFax":{"type":"string","maxLength":16,"nullable":true},"MemberFirstName":{"type":"string","maxLength":50,"nullable":true},"MemberFullName":{"type":"string","maxLength":150,"nullable":true},"MemberHomePhone":{"type":"string","maxLength":16,"nullable":true},"MemberIsAssistantTo":{"type":"string","maxLength":50,"nullable":true},"MemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MemberLanguages":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Languages"}},"MemberLastName":{"type":"string","maxLength":50,"nullable":true},"MemberLoginId":{"type":"string","maxLength":25,"nullable":true},"MemberMiddleName":{"type":"string","maxLength":50,"nullable":true},"MemberMlsAccessYN":{"type":"boolean","nullable":true},"MemberMlsId":{"type":"string","maxLength":25,"nullable":true},"MemberMlsSecurityClass":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberMlsSecurityClass"}],"nullable":true},"MemberMobilePhone":{"type":"string","maxLength":16,"nullable":true},"MemberNamePrefix":{"type":"string","maxLength":10,"nullable":true},"MemberNameSuffix":{"type":"string","maxLength":10,"nullable":true},"MemberNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"MemberNickname":{"type":"string","maxLength":50,"nullable":true},"MemberOfficePhone":{"type":"string","maxLength":16,"nullable":true},"MemberOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"MemberOtherPhoneType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberOtherPhoneType"}],"nullable":true},"MemberPager":{"type":"string","maxLength":16,"nullable":true},"MemberPassword":{"type":"string","maxLength":25,"nullable":true},"MemberPhoneTTYTDD":{"type":"string","maxLength":16,"nullable":true},"MemberPostalCode":{"type":"string","maxLength":10,"nullable":true},"MemberPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"MemberPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"MemberPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"MemberStateLicense":{"type":"string","maxLength":50,"nullable":true},"MemberStateLicenseState":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"MemberStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"MemberStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberStatus"}],"nullable":true},"MemberTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"MemberType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MemberType"}],"nullable":true},"MemberVoiceMail":{"type":"string","maxLength":16,"nullable":true},"MemberVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OfficeKey":{"type":"string","maxLength":255,"nullable":true},"OfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeName":{"type":"string","maxLength":255,"nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemMemberKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemMemberKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SyndicateTo":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SyndicateTo"}}}},"org.reso.metadata.Office":{"title":"Office","type":"object","properties":{"FranchiseAffiliation":{"type":"string","maxLength":50,"nullable":true},"IDXOfficeParticipationYN":{"type":"boolean","nullable":true},"MainOfficeKey":{"type":"string","maxLength":255,"nullable":true},"MainOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MainOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"OfficeAORMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeAORkey":{"type":"string","maxLength":255,"nullable":true},"OfficeAORkeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeAddress1":{"type":"string","maxLength":50,"nullable":true},"OfficeAddress2":{"type":"string","maxLength":50,"nullable":true},"OfficeAssociationComments":{"type":"string","maxLength":500,"nullable":true},"OfficeBranchType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OfficeBranchType"}],"nullable":true},"OfficeBrokerKey":{"type":"string","maxLength":255,"nullable":true},"OfficeBrokerKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeBrokerMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeCity":{"type":"string","maxLength":50,"nullable":true},"OfficeCorporateLicense":{"type":"string","maxLength":50,"nullable":true},"OfficeCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"OfficeEmail":{"type":"string","maxLength":80,"nullable":true},"OfficeFax":{"type":"string","maxLength":16,"nullable":true},"OfficeKey":{"type":"string","maxLength":255,"nullable":true},"OfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeManagerKey":{"type":"string","maxLength":255,"nullable":true},"OfficeManagerKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeManagerMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeName":{"type":"string","maxLength":255,"nullable":true},"OfficeNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"OfficePhone":{"type":"string","maxLength":16,"nullable":true},"OfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"OfficePostalCode":{"type":"string","maxLength":10,"nullable":true},"OfficePostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"OfficeStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OfficeStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OfficeStatus"}],"nullable":true},"OfficeType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OfficeType"}],"nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemOfficeKey":{"type":"string","maxLength":255,"nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SourceSystemOfficeKey":{"type":"string","maxLength":255,"nullable":true},"SyndicateAgentOption":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SyndicateAgentOption"}],"nullable":true},"SyndicateTo":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SyndicateTo"}},"MainOffice":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Office"}],"nullable":true},"OfficeBroker":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"OfficeManager":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}},"Media@odata.count":{"$ref":"#/components/schemas/count"},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}},"SocialMedia@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.Office-create":{"title":"Office (for create)","type":"object","properties":{"FranchiseAffiliation":{"type":"string","maxLength":50,"nullable":true},"IDXOfficeParticipationYN":{"type":"boolean","nullable":true},"MainOfficeKey":{"type":"string","maxLength":255,"nullable":true},"MainOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MainOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"OfficeAORMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeAORkey":{"type":"string","maxLength":255,"nullable":true},"OfficeAORkeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeAddress1":{"type":"string","maxLength":50,"nullable":true},"OfficeAddress2":{"type":"string","maxLength":50,"nullable":true},"OfficeAssociationComments":{"type":"string","maxLength":500,"nullable":true},"OfficeBranchType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OfficeBranchType"}],"nullable":true},"OfficeBrokerKey":{"type":"string","maxLength":255,"nullable":true},"OfficeBrokerKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeBrokerMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeCity":{"type":"string","maxLength":50,"nullable":true},"OfficeCorporateLicense":{"type":"string","maxLength":50,"nullable":true},"OfficeCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"OfficeEmail":{"type":"string","maxLength":80,"nullable":true},"OfficeFax":{"type":"string","maxLength":16,"nullable":true},"OfficeKey":{"type":"string","maxLength":255,"nullable":true},"OfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeManagerKey":{"type":"string","maxLength":255,"nullable":true},"OfficeManagerKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeManagerMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeName":{"type":"string","maxLength":255,"nullable":true},"OfficeNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"OfficePhone":{"type":"string","maxLength":16,"nullable":true},"OfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"OfficePostalCode":{"type":"string","maxLength":10,"nullable":true},"OfficePostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"OfficeStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OfficeStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OfficeStatus"}],"nullable":true},"OfficeType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OfficeType"}],"nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemOfficeKey":{"type":"string","maxLength":255,"nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SourceSystemOfficeKey":{"type":"string","maxLength":255,"nullable":true},"SyndicateAgentOption":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SyndicateAgentOption"}],"nullable":true},"SyndicateTo":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SyndicateTo"}},"MainOffice":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Office-create"}],"nullable":true},"OfficeBroker":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"OfficeManager":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media-create"}},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia-create"}}},"required":["OfficeKey"]},"org.reso.metadata.Office-update":{"title":"Office (for update)","type":"object","properties":{"FranchiseAffiliation":{"type":"string","maxLength":50,"nullable":true},"IDXOfficeParticipationYN":{"type":"boolean","nullable":true},"MainOfficeKey":{"type":"string","maxLength":255,"nullable":true},"MainOfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MainOfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OfficeAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"OfficeAORMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeAORkey":{"type":"string","maxLength":255,"nullable":true},"OfficeAORkeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeAddress1":{"type":"string","maxLength":50,"nullable":true},"OfficeAddress2":{"type":"string","maxLength":50,"nullable":true},"OfficeAssociationComments":{"type":"string","maxLength":500,"nullable":true},"OfficeBranchType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OfficeBranchType"}],"nullable":true},"OfficeBrokerKey":{"type":"string","maxLength":255,"nullable":true},"OfficeBrokerKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeBrokerMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeCity":{"type":"string","maxLength":50,"nullable":true},"OfficeCorporateLicense":{"type":"string","maxLength":50,"nullable":true},"OfficeCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"OfficeEmail":{"type":"string","maxLength":80,"nullable":true},"OfficeFax":{"type":"string","maxLength":16,"nullable":true},"OfficeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeManagerKey":{"type":"string","maxLength":255,"nullable":true},"OfficeManagerKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OfficeManagerMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeMlsId":{"type":"string","maxLength":25,"nullable":true},"OfficeName":{"type":"string","maxLength":255,"nullable":true},"OfficeNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"OfficePhone":{"type":"string","maxLength":16,"nullable":true},"OfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"OfficePostalCode":{"type":"string","maxLength":10,"nullable":true},"OfficePostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"OfficeStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OfficeStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OfficeStatus"}],"nullable":true},"OfficeType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OfficeType"}],"nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemOfficeKey":{"type":"string","maxLength":255,"nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SourceSystemOfficeKey":{"type":"string","maxLength":255,"nullable":true},"SyndicateAgentOption":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SyndicateAgentOption"}],"nullable":true},"SyndicateTo":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.SyndicateTo"}}}},"org.reso.metadata.Contacts":{"title":"Contacts","type":"object","properties":{"Anniversary":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"AssistantEmail":{"type":"string","maxLength":80,"nullable":true},"AssistantName":{"type":"string","maxLength":150,"nullable":true},"AssistantPhone":{"type":"string","maxLength":16,"nullable":true},"AssistantPhoneExt":{"type":"string","maxLength":10,"nullable":true},"Birthdate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"BusinessFax":{"type":"string","maxLength":16,"nullable":true},"Children":{"type":"string","maxLength":150,"nullable":true},"Company":{"type":"string","maxLength":50,"nullable":true},"ContactKey":{"type":"string","maxLength":255,"nullable":true},"ContactKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ContactLoginId":{"type":"string","maxLength":25,"nullable":true},"ContactPassword":{"type":"string","maxLength":25,"nullable":true},"ContactStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ContactStatus"}],"nullable":true},"ContactType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ContactType"}},"Department":{"type":"string","maxLength":50,"nullable":true},"DirectPhone":{"type":"string","maxLength":16,"nullable":true},"Email":{"type":"string","maxLength":80,"nullable":true},"Email2":{"type":"string","maxLength":80,"nullable":true},"Email3":{"type":"string","maxLength":80,"nullable":true},"FirstName":{"type":"string","maxLength":50,"nullable":true},"FullName":{"type":"string","maxLength":150,"nullable":true},"HomeAddress1":{"type":"string","maxLength":50,"nullable":true},"HomeAddress2":{"type":"string","maxLength":50,"nullable":true},"HomeCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"HomeCity":{"type":"string","maxLength":50,"nullable":true},"HomeCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"HomeCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"HomeFax":{"type":"string","maxLength":16,"nullable":true},"HomePhone":{"type":"string","maxLength":16,"nullable":true},"HomePostalCode":{"type":"string","maxLength":10,"nullable":true},"HomePostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"HomeStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"JobTitle":{"type":"string","maxLength":50,"nullable":true},"Language":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Languages"}},"LastName":{"type":"string","maxLength":50,"nullable":true},"LeadSource":{"type":"string","maxLength":150,"nullable":true},"MiddleName":{"type":"string","maxLength":50,"nullable":true},"MobilePhone":{"type":"string","maxLength":16,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NamePrefix":{"type":"string","maxLength":10,"nullable":true},"NameSuffix":{"type":"string","maxLength":10,"nullable":true},"Nickname":{"type":"string","maxLength":50,"nullable":true},"Notes":{"type":"string","maxLength":1024,"nullable":true},"OfficePhone":{"type":"string","maxLength":16,"nullable":true},"OfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemContactKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OtherAddress1":{"type":"string","maxLength":50,"nullable":true},"OtherAddress2":{"type":"string","maxLength":50,"nullable":true},"OtherCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"OtherCity":{"type":"string","maxLength":50,"nullable":true},"OtherCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"OtherCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"OtherPhoneType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OtherPhoneType"}],"nullable":true},"OtherPostalCode":{"type":"string","maxLength":10,"nullable":true},"OtherPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"OtherStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OwnerMemberID":{"type":"string","maxLength":25,"nullable":true},"OwnerMemberKey":{"type":"string","maxLength":255,"nullable":true},"OwnerMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Pager":{"type":"string","maxLength":16,"nullable":true},"PhoneTTYTDD":{"type":"string","maxLength":16,"nullable":true},"PreferredAddress":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PreferredAddress"}],"nullable":true},"PreferredPhone":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PreferredPhone"}],"nullable":true},"ReferredBy":{"type":"string","maxLength":150,"nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SourceSystemContactKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SpousePartnerName":{"type":"string","maxLength":150,"nullable":true},"TollFreePhone":{"type":"string","maxLength":16,"nullable":true},"VoiceMail":{"type":"string","maxLength":16,"nullable":true},"VoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"WorkAddress1":{"type":"string","maxLength":50,"nullable":true},"WorkAddress2":{"type":"string","maxLength":50,"nullable":true},"WorkCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"WorkCity":{"type":"string","maxLength":50,"nullable":true},"WorkCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"WorkCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"WorkPostalCode":{"type":"string","maxLength":10,"nullable":true},"WorkPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"WorkStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"OwnerMember":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}},"Media@odata.count":{"$ref":"#/components/schemas/count"},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}},"SocialMedia@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.Contacts-create":{"title":"Contacts (for create)","type":"object","properties":{"Anniversary":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"AssistantEmail":{"type":"string","maxLength":80,"nullable":true},"AssistantName":{"type":"string","maxLength":150,"nullable":true},"AssistantPhone":{"type":"string","maxLength":16,"nullable":true},"AssistantPhoneExt":{"type":"string","maxLength":10,"nullable":true},"Birthdate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"BusinessFax":{"type":"string","maxLength":16,"nullable":true},"Children":{"type":"string","maxLength":150,"nullable":true},"Company":{"type":"string","maxLength":50,"nullable":true},"ContactKey":{"type":"string","maxLength":255,"nullable":true},"ContactKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ContactLoginId":{"type":"string","maxLength":25,"nullable":true},"ContactPassword":{"type":"string","maxLength":25,"nullable":true},"ContactStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ContactStatus"}],"nullable":true},"ContactType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ContactType"}},"Department":{"type":"string","maxLength":50,"nullable":true},"DirectPhone":{"type":"string","maxLength":16,"nullable":true},"Email":{"type":"string","maxLength":80,"nullable":true},"Email2":{"type":"string","maxLength":80,"nullable":true},"Email3":{"type":"string","maxLength":80,"nullable":true},"FirstName":{"type":"string","maxLength":50,"nullable":true},"FullName":{"type":"string","maxLength":150,"nullable":true},"HomeAddress1":{"type":"string","maxLength":50,"nullable":true},"HomeAddress2":{"type":"string","maxLength":50,"nullable":true},"HomeCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"HomeCity":{"type":"string","maxLength":50,"nullable":true},"HomeCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"HomeCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"HomeFax":{"type":"string","maxLength":16,"nullable":true},"HomePhone":{"type":"string","maxLength":16,"nullable":true},"HomePostalCode":{"type":"string","maxLength":10,"nullable":true},"HomePostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"HomeStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"JobTitle":{"type":"string","maxLength":50,"nullable":true},"Language":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Languages"}},"LastName":{"type":"string","maxLength":50,"nullable":true},"LeadSource":{"type":"string","maxLength":150,"nullable":true},"MiddleName":{"type":"string","maxLength":50,"nullable":true},"MobilePhone":{"type":"string","maxLength":16,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NamePrefix":{"type":"string","maxLength":10,"nullable":true},"NameSuffix":{"type":"string","maxLength":10,"nullable":true},"Nickname":{"type":"string","maxLength":50,"nullable":true},"Notes":{"type":"string","maxLength":1024,"nullable":true},"OfficePhone":{"type":"string","maxLength":16,"nullable":true},"OfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemContactKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OtherAddress1":{"type":"string","maxLength":50,"nullable":true},"OtherAddress2":{"type":"string","maxLength":50,"nullable":true},"OtherCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"OtherCity":{"type":"string","maxLength":50,"nullable":true},"OtherCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"OtherCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"OtherPhoneType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OtherPhoneType"}],"nullable":true},"OtherPostalCode":{"type":"string","maxLength":10,"nullable":true},"OtherPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"OtherStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OwnerMemberID":{"type":"string","maxLength":25,"nullable":true},"OwnerMemberKey":{"type":"string","maxLength":255,"nullable":true},"OwnerMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Pager":{"type":"string","maxLength":16,"nullable":true},"PhoneTTYTDD":{"type":"string","maxLength":16,"nullable":true},"PreferredAddress":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PreferredAddress"}],"nullable":true},"PreferredPhone":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PreferredPhone"}],"nullable":true},"ReferredBy":{"type":"string","maxLength":150,"nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SourceSystemContactKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SpousePartnerName":{"type":"string","maxLength":150,"nullable":true},"TollFreePhone":{"type":"string","maxLength":16,"nullable":true},"VoiceMail":{"type":"string","maxLength":16,"nullable":true},"VoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"WorkAddress1":{"type":"string","maxLength":50,"nullable":true},"WorkAddress2":{"type":"string","maxLength":50,"nullable":true},"WorkCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"WorkCity":{"type":"string","maxLength":50,"nullable":true},"WorkCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"WorkCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"WorkPostalCode":{"type":"string","maxLength":10,"nullable":true},"WorkPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"WorkStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"OwnerMember":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media-create"}},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia-create"}}},"required":["ContactKey"]},"org.reso.metadata.Contacts-update":{"title":"Contacts (for update)","type":"object","properties":{"Anniversary":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"AssistantEmail":{"type":"string","maxLength":80,"nullable":true},"AssistantName":{"type":"string","maxLength":150,"nullable":true},"AssistantPhone":{"type":"string","maxLength":16,"nullable":true},"AssistantPhoneExt":{"type":"string","maxLength":10,"nullable":true},"Birthdate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"BusinessFax":{"type":"string","maxLength":16,"nullable":true},"Children":{"type":"string","maxLength":150,"nullable":true},"Company":{"type":"string","maxLength":50,"nullable":true},"ContactKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ContactLoginId":{"type":"string","maxLength":25,"nullable":true},"ContactPassword":{"type":"string","maxLength":25,"nullable":true},"ContactStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ContactStatus"}],"nullable":true},"ContactType":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.ContactType"}},"Department":{"type":"string","maxLength":50,"nullable":true},"DirectPhone":{"type":"string","maxLength":16,"nullable":true},"Email":{"type":"string","maxLength":80,"nullable":true},"Email2":{"type":"string","maxLength":80,"nullable":true},"Email3":{"type":"string","maxLength":80,"nullable":true},"FirstName":{"type":"string","maxLength":50,"nullable":true},"FullName":{"type":"string","maxLength":150,"nullable":true},"HomeAddress1":{"type":"string","maxLength":50,"nullable":true},"HomeAddress2":{"type":"string","maxLength":50,"nullable":true},"HomeCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"HomeCity":{"type":"string","maxLength":50,"nullable":true},"HomeCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"HomeCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"HomeFax":{"type":"string","maxLength":16,"nullable":true},"HomePhone":{"type":"string","maxLength":16,"nullable":true},"HomePostalCode":{"type":"string","maxLength":10,"nullable":true},"HomePostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"HomeStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"JobTitle":{"type":"string","maxLength":50,"nullable":true},"Language":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Languages"}},"LastName":{"type":"string","maxLength":50,"nullable":true},"LeadSource":{"type":"string","maxLength":150,"nullable":true},"MiddleName":{"type":"string","maxLength":50,"nullable":true},"MobilePhone":{"type":"string","maxLength":16,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NamePrefix":{"type":"string","maxLength":10,"nullable":true},"NameSuffix":{"type":"string","maxLength":10,"nullable":true},"Nickname":{"type":"string","maxLength":50,"nullable":true},"Notes":{"type":"string","maxLength":1024,"nullable":true},"OfficePhone":{"type":"string","maxLength":16,"nullable":true},"OfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemContactKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OtherAddress1":{"type":"string","maxLength":50,"nullable":true},"OtherAddress2":{"type":"string","maxLength":50,"nullable":true},"OtherCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"OtherCity":{"type":"string","maxLength":50,"nullable":true},"OtherCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"OtherCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"OtherPhoneType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OtherPhoneType"}],"nullable":true},"OtherPostalCode":{"type":"string","maxLength":10,"nullable":true},"OtherPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"OtherStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OwnerMemberID":{"type":"string","maxLength":25,"nullable":true},"OwnerMemberKey":{"type":"string","maxLength":255,"nullable":true},"OwnerMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Pager":{"type":"string","maxLength":16,"nullable":true},"PhoneTTYTDD":{"type":"string","maxLength":16,"nullable":true},"PreferredAddress":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PreferredAddress"}],"nullable":true},"PreferredPhone":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PreferredPhone"}],"nullable":true},"ReferredBy":{"type":"string","maxLength":150,"nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SourceSystemContactKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SpousePartnerName":{"type":"string","maxLength":150,"nullable":true},"TollFreePhone":{"type":"string","maxLength":16,"nullable":true},"VoiceMail":{"type":"string","maxLength":16,"nullable":true},"VoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"WorkAddress1":{"type":"string","maxLength":50,"nullable":true},"WorkAddress2":{"type":"string","maxLength":50,"nullable":true},"WorkCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"WorkCity":{"type":"string","maxLength":50,"nullable":true},"WorkCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"WorkCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"WorkPostalCode":{"type":"string","maxLength":10,"nullable":true},"WorkPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"WorkStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true}}},"org.reso.metadata.Media":{"title":"Media","type":"object","properties":{"ChangedByMemberID":{"type":"string","maxLength":25,"nullable":true},"ChangedByMemberKey":{"type":"string","maxLength":255,"nullable":true},"ChangedByMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ImageHeight":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ImageOf":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ImageOf"}],"nullable":true},"ImageSizeDescription":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ImageSizeDescription"}],"nullable":true},"ImageWidth":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"LongDescription":{"type":"string","maxLength":1024,"nullable":true},"MediaCategory":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MediaCategory"}],"nullable":true},"MediaHTML":{"type":"string","maxLength":8500,"nullable":true},"MediaKey":{"type":"string","maxLength":255,"nullable":true},"MediaKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MediaModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"MediaObjectID":{"type":"string","maxLength":255,"nullable":true},"MediaStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MediaStatus"}],"nullable":true},"MediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MediaType"}],"nullable":true},"MediaURL":{"type":"string","maxLength":8000,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"Order":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemMediaKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"Permission":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Permission"}},"PreferredPhotoYN":{"type":"boolean","nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShortDescription":{"type":"string","maxLength":50,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemMediaKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true}}},"org.reso.metadata.Media-create":{"title":"Media (for create)","type":"object","properties":{"ChangedByMemberID":{"type":"string","maxLength":25,"nullable":true},"ChangedByMemberKey":{"type":"string","maxLength":255,"nullable":true},"ChangedByMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ImageHeight":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ImageOf":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ImageOf"}],"nullable":true},"ImageSizeDescription":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ImageSizeDescription"}],"nullable":true},"ImageWidth":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"LongDescription":{"type":"string","maxLength":1024,"nullable":true},"MediaCategory":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MediaCategory"}],"nullable":true},"MediaHTML":{"type":"string","maxLength":8500,"nullable":true},"MediaKey":{"type":"string","maxLength":255,"nullable":true},"MediaKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MediaModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"MediaObjectID":{"type":"string","maxLength":255,"nullable":true},"MediaStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MediaStatus"}],"nullable":true},"MediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MediaType"}],"nullable":true},"MediaURL":{"type":"string","maxLength":8000,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"Order":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemMediaKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"Permission":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Permission"}},"PreferredPhotoYN":{"type":"boolean","nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShortDescription":{"type":"string","maxLength":50,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemMediaKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true}},"required":["MediaKey"]},"org.reso.metadata.Media-update":{"title":"Media (for update)","type":"object","properties":{"ChangedByMemberID":{"type":"string","maxLength":25,"nullable":true},"ChangedByMemberKey":{"type":"string","maxLength":255,"nullable":true},"ChangedByMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ImageHeight":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ImageOf":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ImageOf"}],"nullable":true},"ImageSizeDescription":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ImageSizeDescription"}],"nullable":true},"ImageWidth":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"LongDescription":{"type":"string","maxLength":1024,"nullable":true},"MediaCategory":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MediaCategory"}],"nullable":true},"MediaHTML":{"type":"string","maxLength":8500,"nullable":true},"MediaKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MediaModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"MediaObjectID":{"type":"string","maxLength":255,"nullable":true},"MediaStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MediaStatus"}],"nullable":true},"MediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.MediaType"}],"nullable":true},"MediaURL":{"type":"string","maxLength":8000,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"Order":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemMediaKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"Permission":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.Permission"}},"PreferredPhotoYN":{"type":"boolean","nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShortDescription":{"type":"string","maxLength":50,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemMediaKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true}}},"org.reso.metadata.HistoryTransactional":{"title":"HistoryTransactional","type":"object","properties":{"ChangeType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ChangeType"}],"nullable":true},"ChangedByMemberID":{"type":"string","maxLength":25,"nullable":true},"ChangedByMemberKey":{"type":"string","maxLength":255,"nullable":true},"ChangedByMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ClassName":{"type":"string","maxLength":255,"nullable":true},"FieldKey":{"type":"string","maxLength":255,"nullable":true},"FieldKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"FieldName":{"type":"string","maxLength":255,"nullable":true},"HistoryTransactionalKey":{"type":"string","maxLength":255,"nullable":true},"HistoryTransactionalKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NewValue":{"type":"string","maxLength":8000,"nullable":true},"OriginatingSystemHistoryKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"PreviousValue":{"type":"string","maxLength":8000,"nullable":true},"ResourceName":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SourceSystemHistoryKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ChangedByMember":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true}}},"org.reso.metadata.HistoryTransactional-create":{"title":"HistoryTransactional (for create)","type":"object","properties":{"ChangeType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ChangeType"}],"nullable":true},"ChangedByMemberID":{"type":"string","maxLength":25,"nullable":true},"ChangedByMemberKey":{"type":"string","maxLength":255,"nullable":true},"ChangedByMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ClassName":{"type":"string","maxLength":255,"nullable":true},"FieldKey":{"type":"string","maxLength":255,"nullable":true},"FieldKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"FieldName":{"type":"string","maxLength":255,"nullable":true},"HistoryTransactionalKey":{"type":"string","maxLength":255,"nullable":true},"HistoryTransactionalKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NewValue":{"type":"string","maxLength":8000,"nullable":true},"OriginatingSystemHistoryKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"PreviousValue":{"type":"string","maxLength":8000,"nullable":true},"ResourceName":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SourceSystemHistoryKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ChangedByMember":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true}},"required":["HistoryTransactionalKey"]},"org.reso.metadata.HistoryTransactional-update":{"title":"HistoryTransactional (for update)","type":"object","properties":{"ChangeType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ChangeType"}],"nullable":true},"ChangedByMemberID":{"type":"string","maxLength":25,"nullable":true},"ChangedByMemberKey":{"type":"string","maxLength":255,"nullable":true},"ChangedByMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ClassName":{"type":"string","maxLength":255,"nullable":true},"FieldKey":{"type":"string","maxLength":255,"nullable":true},"FieldKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"FieldName":{"type":"string","maxLength":255,"nullable":true},"HistoryTransactionalKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NewValue":{"type":"string","maxLength":8000,"nullable":true},"OriginatingSystemHistoryKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"PreviousValue":{"type":"string","maxLength":8000,"nullable":true},"ResourceName":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SourceSystemHistoryKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true}}},"org.reso.metadata.ContactListings":{"title":"ContactListings","type":"object","properties":{"AgentNotesUnreadYN":{"type":"boolean","nullable":true},"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ContactKey":{"type":"string","maxLength":255,"nullable":true},"ContactKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ContactListingPreference":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ContactListingPreference"}],"nullable":true},"ContactListingsKey":{"type":"string","maxLength":255,"nullable":true},"ContactListingsKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ContactLoginId":{"type":"string","maxLength":25,"nullable":true},"ContactNotesUnreadYN":{"type":"boolean","nullable":true},"DirectEmailYN":{"type":"boolean","nullable":true},"LastAgentNoteTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"LastContactNoteTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ListingSentTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ListingViewedYN":{"type":"boolean","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PortalLastVisitedTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"Contact":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Contacts"}],"nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property"}],"nullable":true}}},"org.reso.metadata.ContactListings-create":{"title":"ContactListings (for create)","type":"object","properties":{"AgentNotesUnreadYN":{"type":"boolean","nullable":true},"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ContactKey":{"type":"string","maxLength":255,"nullable":true},"ContactKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ContactListingPreference":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ContactListingPreference"}],"nullable":true},"ContactListingsKey":{"type":"string","maxLength":255,"nullable":true},"ContactListingsKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ContactLoginId":{"type":"string","maxLength":25,"nullable":true},"ContactNotesUnreadYN":{"type":"boolean","nullable":true},"DirectEmailYN":{"type":"boolean","nullable":true},"LastAgentNoteTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"LastContactNoteTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ListingSentTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ListingViewedYN":{"type":"boolean","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PortalLastVisitedTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"Contact":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Contacts-create"}],"nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property-create"}],"nullable":true}},"required":["ContactListingsKey"]},"org.reso.metadata.ContactListings-update":{"title":"ContactListings (for update)","type":"object","properties":{"AgentNotesUnreadYN":{"type":"boolean","nullable":true},"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ContactKey":{"type":"string","maxLength":255,"nullable":true},"ContactKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ContactListingPreference":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ContactListingPreference"}],"nullable":true},"ContactListingsKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ContactLoginId":{"type":"string","maxLength":25,"nullable":true},"ContactNotesUnreadYN":{"type":"boolean","nullable":true},"DirectEmailYN":{"type":"boolean","nullable":true},"LastAgentNoteTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"LastContactNoteTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ListingSentTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ListingViewedYN":{"type":"boolean","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PortalLastVisitedTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true}}},"org.reso.metadata.InternetTracking":{"title":"InternetTracking","type":"object","properties":{"ActorCity":{"type":"string","maxLength":50,"nullable":true},"ActorEmail":{"type":"string","maxLength":80,"nullable":true},"ActorID":{"type":"string","maxLength":25,"nullable":true},"ActorIP":{"type":"string","maxLength":39,"nullable":true},"ActorKey":{"type":"string","maxLength":255,"nullable":true},"ActorKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ActorLatitude":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":1e-8,"maximum":9999.99999999,"minimum":-9999.99999999,"nullable":true},"ActorLongitude":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":1e-8,"maximum":9999.99999999,"minimum":-9999.99999999,"nullable":true},"ActorOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"ActorOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ActorPhone":{"type":"string","maxLength":16,"nullable":true},"ActorPhoneExt":{"type":"string","maxLength":10,"nullable":true},"ActorPostalCode":{"type":"string","maxLength":10,"nullable":true},"ActorPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"ActorRegion":{"type":"string","maxLength":150,"nullable":true},"ActorSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"ActorSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ActorStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"ActorType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ActorType"}],"nullable":true},"ColorDepth":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DeviceType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.DeviceType"}],"nullable":true},"EventDescription":{"type":"string","maxLength":1024,"nullable":true},"EventKey":{"type":"string","maxLength":255,"nullable":true},"EventKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"EventLabel":{"type":"string","maxLength":50,"nullable":true},"EventOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"EventOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"EventSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"EventSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"EventTarget":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.EventTarget"}],"nullable":true},"EventTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"EventType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.EventType"}],"nullable":true},"ObjectID":{"type":"string","maxLength":255,"nullable":true},"ObjectIdType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ObjectIdType"}],"nullable":true},"ObjectKey":{"type":"string","maxLength":255,"nullable":true},"ObjectKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ObjectOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"ObjectOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ObjectSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"ObjectSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ObjectType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ObjectType"}],"nullable":true},"ObjectURL":{"type":"string","maxLength":8000,"nullable":true},"OriginatingSystemActorKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemEventKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemObjectKey":{"type":"string","maxLength":255,"nullable":true},"ReferringURL":{"type":"string","maxLength":8000,"nullable":true},"ScreenHeight":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ScreenWidth":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SessionID":{"type":"string","maxLength":255,"nullable":true},"SourceSystemActorKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemEventKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemObjectKey":{"type":"string","maxLength":255,"nullable":true},"TimeZoneOffset":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UserAgent":{"type":"string","maxLength":255,"nullable":true},"ActorOriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"ActorSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"EventOriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"EventSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"ObjectOriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"ObjectSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true}}},"org.reso.metadata.InternetTracking-create":{"title":"InternetTracking (for create)","type":"object","properties":{"ActorCity":{"type":"string","maxLength":50,"nullable":true},"ActorEmail":{"type":"string","maxLength":80,"nullable":true},"ActorID":{"type":"string","maxLength":25,"nullable":true},"ActorIP":{"type":"string","maxLength":39,"nullable":true},"ActorKey":{"type":"string","maxLength":255,"nullable":true},"ActorKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ActorLatitude":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":1e-8,"maximum":9999.99999999,"minimum":-9999.99999999,"nullable":true},"ActorLongitude":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":1e-8,"maximum":9999.99999999,"minimum":-9999.99999999,"nullable":true},"ActorOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"ActorOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ActorPhone":{"type":"string","maxLength":16,"nullable":true},"ActorPhoneExt":{"type":"string","maxLength":10,"nullable":true},"ActorPostalCode":{"type":"string","maxLength":10,"nullable":true},"ActorPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"ActorRegion":{"type":"string","maxLength":150,"nullable":true},"ActorSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"ActorSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ActorStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"ActorType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ActorType"}],"nullable":true},"ColorDepth":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DeviceType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.DeviceType"}],"nullable":true},"EventDescription":{"type":"string","maxLength":1024,"nullable":true},"EventKey":{"type":"string","maxLength":255,"nullable":true},"EventKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"EventLabel":{"type":"string","maxLength":50,"nullable":true},"EventOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"EventOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"EventSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"EventSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"EventTarget":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.EventTarget"}],"nullable":true},"EventTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"EventType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.EventType"}],"nullable":true},"ObjectID":{"type":"string","maxLength":255,"nullable":true},"ObjectIdType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ObjectIdType"}],"nullable":true},"ObjectKey":{"type":"string","maxLength":255,"nullable":true},"ObjectKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ObjectOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"ObjectOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ObjectSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"ObjectSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ObjectType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ObjectType"}],"nullable":true},"ObjectURL":{"type":"string","maxLength":8000,"nullable":true},"OriginatingSystemActorKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemEventKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemObjectKey":{"type":"string","maxLength":255,"nullable":true},"ReferringURL":{"type":"string","maxLength":8000,"nullable":true},"ScreenHeight":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ScreenWidth":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SessionID":{"type":"string","maxLength":255,"nullable":true},"SourceSystemActorKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemEventKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemObjectKey":{"type":"string","maxLength":255,"nullable":true},"TimeZoneOffset":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UserAgent":{"type":"string","maxLength":255,"nullable":true},"ActorOriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"ActorSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"EventOriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"EventSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"ObjectOriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"ObjectSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true}},"required":["EventKey"]},"org.reso.metadata.InternetTracking-update":{"title":"InternetTracking (for update)","type":"object","properties":{"ActorCity":{"type":"string","maxLength":50,"nullable":true},"ActorEmail":{"type":"string","maxLength":80,"nullable":true},"ActorID":{"type":"string","maxLength":25,"nullable":true},"ActorIP":{"type":"string","maxLength":39,"nullable":true},"ActorKey":{"type":"string","maxLength":255,"nullable":true},"ActorKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ActorLatitude":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":1e-8,"maximum":9999.99999999,"minimum":-9999.99999999,"nullable":true},"ActorLongitude":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":1e-8,"maximum":9999.99999999,"minimum":-9999.99999999,"nullable":true},"ActorOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"ActorOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ActorPhone":{"type":"string","maxLength":16,"nullable":true},"ActorPhoneExt":{"type":"string","maxLength":10,"nullable":true},"ActorPostalCode":{"type":"string","maxLength":10,"nullable":true},"ActorPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"ActorRegion":{"type":"string","maxLength":150,"nullable":true},"ActorSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"ActorSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ActorStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"ActorType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ActorType"}],"nullable":true},"ColorDepth":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DeviceType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.DeviceType"}],"nullable":true},"EventDescription":{"type":"string","maxLength":1024,"nullable":true},"EventKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"EventLabel":{"type":"string","maxLength":50,"nullable":true},"EventOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"EventOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"EventSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"EventSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"EventTarget":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.EventTarget"}],"nullable":true},"EventTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"EventType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.EventType"}],"nullable":true},"ObjectID":{"type":"string","maxLength":255,"nullable":true},"ObjectIdType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ObjectIdType"}],"nullable":true},"ObjectKey":{"type":"string","maxLength":255,"nullable":true},"ObjectKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ObjectOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"ObjectOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ObjectSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"ObjectSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ObjectType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ObjectType"}],"nullable":true},"ObjectURL":{"type":"string","maxLength":8000,"nullable":true},"OriginatingSystemActorKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemEventKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemObjectKey":{"type":"string","maxLength":255,"nullable":true},"ReferringURL":{"type":"string","maxLength":8000,"nullable":true},"ScreenHeight":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ScreenWidth":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SessionID":{"type":"string","maxLength":255,"nullable":true},"SourceSystemActorKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemEventKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemObjectKey":{"type":"string","maxLength":255,"nullable":true},"TimeZoneOffset":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UserAgent":{"type":"string","maxLength":255,"nullable":true}}},"org.reso.metadata.SavedSearch":{"title":"SavedSearch","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"MemberKey":{"type":"string","maxLength":255,"nullable":true},"MemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MemberMlsId":{"type":"string","maxLength":25,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemMemberKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemMemberName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"SavedSearchDescription":{"type":"string","maxLength":4000,"nullable":true},"SavedSearchKey":{"type":"string","maxLength":255,"nullable":true},"SavedSearchKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SavedSearchName":{"type":"string","maxLength":255,"nullable":true},"SavedSearchType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SavedSearchType"}],"nullable":true},"SearchQuery":{"type":"string","maxLength":8000,"nullable":true},"SearchQueryExceptionDetails":{"type":"string","maxLength":255,"nullable":true},"SearchQueryExceptions":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SearchQueryExceptions"}],"nullable":true},"SearchQueryHumanReadable":{"type":"string","maxLength":255,"nullable":true},"SearchQueryType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SearchQueryType"}],"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"Member":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true}}},"org.reso.metadata.SavedSearch-create":{"title":"SavedSearch (for create)","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"MemberKey":{"type":"string","maxLength":255,"nullable":true},"MemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MemberMlsId":{"type":"string","maxLength":25,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemMemberKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemMemberName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"SavedSearchDescription":{"type":"string","maxLength":4000,"nullable":true},"SavedSearchKey":{"type":"string","maxLength":255,"nullable":true},"SavedSearchKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SavedSearchName":{"type":"string","maxLength":255,"nullable":true},"SavedSearchType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SavedSearchType"}],"nullable":true},"SearchQuery":{"type":"string","maxLength":8000,"nullable":true},"SearchQueryExceptionDetails":{"type":"string","maxLength":255,"nullable":true},"SearchQueryExceptions":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SearchQueryExceptions"}],"nullable":true},"SearchQueryHumanReadable":{"type":"string","maxLength":255,"nullable":true},"SearchQueryType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SearchQueryType"}],"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"Member":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true}},"required":["SavedSearchKey"]},"org.reso.metadata.SavedSearch-update":{"title":"SavedSearch (for update)","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"MemberKey":{"type":"string","maxLength":255,"nullable":true},"MemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MemberMlsId":{"type":"string","maxLength":25,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemMemberKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemMemberName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"SavedSearchDescription":{"type":"string","maxLength":4000,"nullable":true},"SavedSearchKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SavedSearchName":{"type":"string","maxLength":255,"nullable":true},"SavedSearchType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SavedSearchType"}],"nullable":true},"SearchQuery":{"type":"string","maxLength":8000,"nullable":true},"SearchQueryExceptionDetails":{"type":"string","maxLength":255,"nullable":true},"SearchQueryExceptions":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SearchQueryExceptions"}],"nullable":true},"SearchQueryHumanReadable":{"type":"string","maxLength":255,"nullable":true},"SearchQueryType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SearchQueryType"}],"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true}}},"org.reso.metadata.OpenHouse":{"title":"OpenHouse","type":"object","properties":{"AppointmentRequiredYN":{"type":"boolean","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OpenHouseAttendedBy":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Attended"}],"nullable":true},"OpenHouseDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"OpenHouseEndTime":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OpenHouseId":{"type":"string","maxLength":255,"nullable":true},"OpenHouseKey":{"type":"string","maxLength":255,"nullable":true},"OpenHouseKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OpenHouseRemarks":{"type":"string","maxLength":500,"nullable":true},"OpenHouseStartTime":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OpenHouseStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OpenHouseStatus"}],"nullable":true},"OpenHouseType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OpenHouseType"}],"nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"Refreshments":{"type":"string","maxLength":255,"nullable":true},"ShowingAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"ShowingAgentKey":{"type":"string","maxLength":255,"nullable":true},"ShowingAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShowingAgentLastName":{"type":"string","maxLength":50,"nullable":true},"ShowingAgentMlsID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"ShowingAgent":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}},"Media@odata.count":{"$ref":"#/components/schemas/count"},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}},"SocialMedia@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.OpenHouse-create":{"title":"OpenHouse (for create)","type":"object","properties":{"AppointmentRequiredYN":{"type":"boolean","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OpenHouseAttendedBy":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Attended"}],"nullable":true},"OpenHouseDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"OpenHouseEndTime":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OpenHouseId":{"type":"string","maxLength":255,"nullable":true},"OpenHouseKey":{"type":"string","maxLength":255,"nullable":true},"OpenHouseKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OpenHouseRemarks":{"type":"string","maxLength":500,"nullable":true},"OpenHouseStartTime":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OpenHouseStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OpenHouseStatus"}],"nullable":true},"OpenHouseType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OpenHouseType"}],"nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"Refreshments":{"type":"string","maxLength":255,"nullable":true},"ShowingAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"ShowingAgentKey":{"type":"string","maxLength":255,"nullable":true},"ShowingAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShowingAgentLastName":{"type":"string","maxLength":50,"nullable":true},"ShowingAgentMlsID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property-create"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"ShowingAgent":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media-create"}},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia-create"}}},"required":["OpenHouseKey"]},"org.reso.metadata.OpenHouse-update":{"title":"OpenHouse (for update)","type":"object","properties":{"AppointmentRequiredYN":{"type":"boolean","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OpenHouseAttendedBy":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Attended"}],"nullable":true},"OpenHouseDate":{"type":"string","format":"date","example":"2017-04-13","nullable":true},"OpenHouseEndTime":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OpenHouseId":{"type":"string","maxLength":255,"nullable":true},"OpenHouseKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OpenHouseRemarks":{"type":"string","maxLength":500,"nullable":true},"OpenHouseStartTime":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OpenHouseStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OpenHouseStatus"}],"nullable":true},"OpenHouseType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OpenHouseType"}],"nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"Refreshments":{"type":"string","maxLength":255,"nullable":true},"ShowingAgentFirstName":{"type":"string","maxLength":50,"nullable":true},"ShowingAgentKey":{"type":"string","maxLength":255,"nullable":true},"ShowingAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShowingAgentLastName":{"type":"string","maxLength":50,"nullable":true},"ShowingAgentMlsID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true}}},"org.reso.metadata.Prospecting":{"title":"Prospecting","type":"object","properties":{"ActiveYN":{"type":"boolean","nullable":true},"BccEmailList":{"type":"string","maxLength":1024,"nullable":true},"BccMeYN":{"type":"boolean","nullable":true},"CcEmailList":{"type":"string","maxLength":1024,"nullable":true},"ClientActivatedYN":{"type":"boolean","nullable":true},"ConciergeNotificationsYN":{"type":"boolean","nullable":true},"ConciergeYN":{"type":"boolean","nullable":true},"ContactKey":{"type":"string","maxLength":255,"nullable":true},"ContactKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DailySchedule":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.DailySchedule"}},"DisplayTemplateID":{"type":"string","maxLength":25,"nullable":true},"Language":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Languages"}],"nullable":true},"LastNewChangedTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"LastViewedTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"MessageNew":{"type":"string","maxLength":4000,"nullable":true},"MessageRevise":{"type":"string","maxLength":4000,"nullable":true},"MessageUpdate":{"type":"string","maxLength":4000,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NextSendTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OwnerMemberID":{"type":"string","maxLength":25,"nullable":true},"OwnerMemberKey":{"type":"string","maxLength":255,"nullable":true},"OwnerMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ProspectingKey":{"type":"string","maxLength":255,"nullable":true},"ProspectingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ReasonActiveOrDisabled":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ReasonActiveOrDisabled"}],"nullable":true},"SavedSearchKey":{"type":"string","maxLength":255,"nullable":true},"SavedSearchKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ScheduleType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ScheduleType"}],"nullable":true},"Subject":{"type":"string","maxLength":255,"nullable":true},"ToEmailList":{"type":"string","maxLength":1024,"nullable":true},"Contact":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Contacts"}],"nullable":true},"OwnerMember":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"SavedSearch":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.SavedSearch"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}},"Media@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.Prospecting-create":{"title":"Prospecting (for create)","type":"object","properties":{"ActiveYN":{"type":"boolean","nullable":true},"BccEmailList":{"type":"string","maxLength":1024,"nullable":true},"BccMeYN":{"type":"boolean","nullable":true},"CcEmailList":{"type":"string","maxLength":1024,"nullable":true},"ClientActivatedYN":{"type":"boolean","nullable":true},"ConciergeNotificationsYN":{"type":"boolean","nullable":true},"ConciergeYN":{"type":"boolean","nullable":true},"ContactKey":{"type":"string","maxLength":255,"nullable":true},"ContactKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DailySchedule":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.DailySchedule"}},"DisplayTemplateID":{"type":"string","maxLength":25,"nullable":true},"Language":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Languages"}],"nullable":true},"LastNewChangedTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"LastViewedTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"MessageNew":{"type":"string","maxLength":4000,"nullable":true},"MessageRevise":{"type":"string","maxLength":4000,"nullable":true},"MessageUpdate":{"type":"string","maxLength":4000,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NextSendTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OwnerMemberID":{"type":"string","maxLength":25,"nullable":true},"OwnerMemberKey":{"type":"string","maxLength":255,"nullable":true},"OwnerMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ProspectingKey":{"type":"string","maxLength":255,"nullable":true},"ProspectingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ReasonActiveOrDisabled":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ReasonActiveOrDisabled"}],"nullable":true},"SavedSearchKey":{"type":"string","maxLength":255,"nullable":true},"SavedSearchKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ScheduleType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ScheduleType"}],"nullable":true},"Subject":{"type":"string","maxLength":255,"nullable":true},"ToEmailList":{"type":"string","maxLength":1024,"nullable":true},"Contact":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Contacts-create"}],"nullable":true},"OwnerMember":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"SavedSearch":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.SavedSearch-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media-create"}}},"required":["ProspectingKey"]},"org.reso.metadata.Prospecting-update":{"title":"Prospecting (for update)","type":"object","properties":{"ActiveYN":{"type":"boolean","nullable":true},"BccEmailList":{"type":"string","maxLength":1024,"nullable":true},"BccMeYN":{"type":"boolean","nullable":true},"CcEmailList":{"type":"string","maxLength":1024,"nullable":true},"ClientActivatedYN":{"type":"boolean","nullable":true},"ConciergeNotificationsYN":{"type":"boolean","nullable":true},"ConciergeYN":{"type":"boolean","nullable":true},"ContactKey":{"type":"string","maxLength":255,"nullable":true},"ContactKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"DailySchedule":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.DailySchedule"}},"DisplayTemplateID":{"type":"string","maxLength":25,"nullable":true},"Language":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Languages"}],"nullable":true},"LastNewChangedTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"LastViewedTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"MessageNew":{"type":"string","maxLength":4000,"nullable":true},"MessageRevise":{"type":"string","maxLength":4000,"nullable":true},"MessageUpdate":{"type":"string","maxLength":4000,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NextSendTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OwnerMemberID":{"type":"string","maxLength":25,"nullable":true},"OwnerMemberKey":{"type":"string","maxLength":255,"nullable":true},"OwnerMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ProspectingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ReasonActiveOrDisabled":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ReasonActiveOrDisabled"}],"nullable":true},"SavedSearchKey":{"type":"string","maxLength":255,"nullable":true},"SavedSearchKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ScheduleType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ScheduleType"}],"nullable":true},"Subject":{"type":"string","maxLength":255,"nullable":true},"ToEmailList":{"type":"string","maxLength":1024,"nullable":true}}},"org.reso.metadata.Queue":{"title":"Queue","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemQueueKey":{"type":"string","maxLength":255,"nullable":true},"QueueTransactionKey":{"type":"string","maxLength":255,"nullable":true},"QueueTransactionKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"QueueTransactionType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.QueueTransactionType"}],"nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SourceSystemQueueKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true}}},"org.reso.metadata.Queue-create":{"title":"Queue (for create)","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemQueueKey":{"type":"string","maxLength":255,"nullable":true},"QueueTransactionKey":{"type":"string","maxLength":255,"nullable":true},"QueueTransactionKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"QueueTransactionType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.QueueTransactionType"}],"nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SourceSystemQueueKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true}},"required":["QueueTransactionKey"]},"org.reso.metadata.Queue-update":{"title":"Queue (for update)","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemQueueKey":{"type":"string","maxLength":255,"nullable":true},"QueueTransactionKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"QueueTransactionType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.QueueTransactionType"}],"nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"SourceSystemQueueKey":{"type":"string","maxLength":255,"nullable":true}}},"org.reso.metadata.Rules":{"title":"Rules","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"FieldKey":{"type":"string","maxLength":255,"nullable":true},"FieldKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"FieldName":{"type":"string","maxLength":255,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemRuleKey":{"type":"string","maxLength":255,"nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"RuleAction":{"type":"string","maxLength":8000,"nullable":true},"RuleDescription":{"type":"string","maxLength":8000,"nullable":true},"RuleEnabledYN":{"type":"boolean","nullable":true},"RuleErrorText":{"type":"string","maxLength":8000,"nullable":true},"RuleExpression":{"type":"string","maxLength":8000,"nullable":true},"RuleFormat":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.RuleFormat"}],"nullable":true},"RuleHelpText":{"type":"string","maxLength":8000,"nullable":true},"RuleKey":{"type":"string","maxLength":255,"nullable":true},"RuleKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"RuleName":{"type":"string","maxLength":255,"nullable":true},"RuleOrder":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"RuleType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.RuleType"}],"nullable":true},"RuleVersion":{"type":"string","maxLength":255,"nullable":true},"RuleWarningText":{"type":"string","maxLength":8000,"nullable":true},"SourceSystemHistoryKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.Rules-create":{"title":"Rules (for create)","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"FieldKey":{"type":"string","maxLength":255,"nullable":true},"FieldKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"FieldName":{"type":"string","maxLength":255,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemRuleKey":{"type":"string","maxLength":255,"nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"RuleAction":{"type":"string","maxLength":8000,"nullable":true},"RuleDescription":{"type":"string","maxLength":8000,"nullable":true},"RuleEnabledYN":{"type":"boolean","nullable":true},"RuleErrorText":{"type":"string","maxLength":8000,"nullable":true},"RuleExpression":{"type":"string","maxLength":8000,"nullable":true},"RuleFormat":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.RuleFormat"}],"nullable":true},"RuleHelpText":{"type":"string","maxLength":8000,"nullable":true},"RuleKey":{"type":"string","maxLength":255,"nullable":true},"RuleKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"RuleName":{"type":"string","maxLength":255,"nullable":true},"RuleOrder":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"RuleType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.RuleType"}],"nullable":true},"RuleVersion":{"type":"string","maxLength":255,"nullable":true},"RuleWarningText":{"type":"string","maxLength":8000,"nullable":true},"SourceSystemHistoryKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}}},"required":["RuleKey"]},"org.reso.metadata.Rules-update":{"title":"Rules (for update)","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"FieldKey":{"type":"string","maxLength":255,"nullable":true},"FieldKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"FieldName":{"type":"string","maxLength":255,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemRuleKey":{"type":"string","maxLength":255,"nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"RuleAction":{"type":"string","maxLength":8000,"nullable":true},"RuleDescription":{"type":"string","maxLength":8000,"nullable":true},"RuleEnabledYN":{"type":"boolean","nullable":true},"RuleErrorText":{"type":"string","maxLength":8000,"nullable":true},"RuleExpression":{"type":"string","maxLength":8000,"nullable":true},"RuleFormat":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.RuleFormat"}],"nullable":true},"RuleHelpText":{"type":"string","maxLength":8000,"nullable":true},"RuleKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"RuleName":{"type":"string","maxLength":255,"nullable":true},"RuleOrder":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"RuleType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.RuleType"}],"nullable":true},"RuleVersion":{"type":"string","maxLength":255,"nullable":true},"RuleWarningText":{"type":"string","maxLength":8000,"nullable":true},"SourceSystemHistoryKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true}}},"org.reso.metadata.Teams":{"title":"Teams","type":"object","properties":{"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"TeamAddress1":{"type":"string","maxLength":50,"nullable":true},"TeamAddress2":{"type":"string","maxLength":50,"nullable":true},"TeamCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"TeamCity":{"type":"string","maxLength":50,"nullable":true},"TeamCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"TeamCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"TeamDescription":{"type":"string","maxLength":1024,"nullable":true},"TeamDirectPhone":{"type":"string","maxLength":16,"nullable":true},"TeamEmail":{"type":"string","maxLength":80,"nullable":true},"TeamFax":{"type":"string","maxLength":16,"nullable":true},"TeamKey":{"type":"string","maxLength":255,"nullable":true},"TeamKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TeamLeadKey":{"type":"string","maxLength":255,"nullable":true},"TeamLeadKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TeamLeadLoginId":{"type":"string","maxLength":25,"nullable":true},"TeamLeadMlsId":{"type":"string","maxLength":25,"nullable":true},"TeamLeadNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"TeamLeadStateLicense":{"type":"string","maxLength":50,"nullable":true},"TeamLeadStateLicenseState":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"TeamMobilePhone":{"type":"string","maxLength":16,"nullable":true},"TeamName":{"type":"string","maxLength":50,"nullable":true},"TeamOfficePhone":{"type":"string","maxLength":16,"nullable":true},"TeamOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"TeamPostalCode":{"type":"string","maxLength":10,"nullable":true},"TeamPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"TeamPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"TeamPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"TeamStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"TeamStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.TeamStatus"}],"nullable":true},"TeamTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"TeamVoiceMail":{"type":"string","maxLength":16,"nullable":true},"TeamVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"TeamLead":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}},"Media@odata.count":{"$ref":"#/components/schemas/count"},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}},"SocialMedia@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.Teams-create":{"title":"Teams (for create)","type":"object","properties":{"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"TeamAddress1":{"type":"string","maxLength":50,"nullable":true},"TeamAddress2":{"type":"string","maxLength":50,"nullable":true},"TeamCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"TeamCity":{"type":"string","maxLength":50,"nullable":true},"TeamCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"TeamCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"TeamDescription":{"type":"string","maxLength":1024,"nullable":true},"TeamDirectPhone":{"type":"string","maxLength":16,"nullable":true},"TeamEmail":{"type":"string","maxLength":80,"nullable":true},"TeamFax":{"type":"string","maxLength":16,"nullable":true},"TeamKey":{"type":"string","maxLength":255,"nullable":true},"TeamKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TeamLeadKey":{"type":"string","maxLength":255,"nullable":true},"TeamLeadKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TeamLeadLoginId":{"type":"string","maxLength":25,"nullable":true},"TeamLeadMlsId":{"type":"string","maxLength":25,"nullable":true},"TeamLeadNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"TeamLeadStateLicense":{"type":"string","maxLength":50,"nullable":true},"TeamLeadStateLicenseState":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"TeamMobilePhone":{"type":"string","maxLength":16,"nullable":true},"TeamName":{"type":"string","maxLength":50,"nullable":true},"TeamOfficePhone":{"type":"string","maxLength":16,"nullable":true},"TeamOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"TeamPostalCode":{"type":"string","maxLength":10,"nullable":true},"TeamPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"TeamPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"TeamPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"TeamStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"TeamStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.TeamStatus"}],"nullable":true},"TeamTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"TeamVoiceMail":{"type":"string","maxLength":16,"nullable":true},"TeamVoiceMailExt":{"type":"string","maxLength":10,"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"TeamLead":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media-create"}},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia-create"}}},"required":["TeamKey"]},"org.reso.metadata.Teams-update":{"title":"Teams (for update)","type":"object","properties":{"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"TeamAddress1":{"type":"string","maxLength":50,"nullable":true},"TeamAddress2":{"type":"string","maxLength":50,"nullable":true},"TeamCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"TeamCity":{"type":"string","maxLength":50,"nullable":true},"TeamCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"TeamCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"TeamDescription":{"type":"string","maxLength":1024,"nullable":true},"TeamDirectPhone":{"type":"string","maxLength":16,"nullable":true},"TeamEmail":{"type":"string","maxLength":80,"nullable":true},"TeamFax":{"type":"string","maxLength":16,"nullable":true},"TeamKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TeamLeadKey":{"type":"string","maxLength":255,"nullable":true},"TeamLeadKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TeamLeadLoginId":{"type":"string","maxLength":25,"nullable":true},"TeamLeadMlsId":{"type":"string","maxLength":25,"nullable":true},"TeamLeadNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"TeamLeadStateLicense":{"type":"string","maxLength":50,"nullable":true},"TeamLeadStateLicenseState":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"TeamMobilePhone":{"type":"string","maxLength":16,"nullable":true},"TeamName":{"type":"string","maxLength":50,"nullable":true},"TeamOfficePhone":{"type":"string","maxLength":16,"nullable":true},"TeamOfficePhoneExt":{"type":"string","maxLength":10,"nullable":true},"TeamPostalCode":{"type":"string","maxLength":10,"nullable":true},"TeamPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"TeamPreferredPhone":{"type":"string","maxLength":16,"nullable":true},"TeamPreferredPhoneExt":{"type":"string","maxLength":10,"nullable":true},"TeamStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"TeamStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.TeamStatus"}],"nullable":true},"TeamTollFreePhone":{"type":"string","maxLength":16,"nullable":true},"TeamVoiceMail":{"type":"string","maxLength":16,"nullable":true},"TeamVoiceMailExt":{"type":"string","maxLength":10,"nullable":true}}},"org.reso.metadata.Showing":{"title":"Showing","type":"object","properties":{"AgentOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"AgentOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"AgentSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"AgentSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"ListingOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ListingSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"ListingSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemAgentKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemListingKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemShowingKey":{"type":"string","maxLength":255,"nullable":true},"ShowingAgentKey":{"type":"string","maxLength":255,"nullable":true},"ShowingAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShowingAgentMlsID":{"type":"string","maxLength":25,"nullable":true},"ShowingEndTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ShowingId":{"type":"string","maxLength":255,"nullable":true},"ShowingKey":{"type":"string","maxLength":255,"nullable":true},"ShowingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShowingOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"ShowingOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ShowingRequestedTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ShowingSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"ShowingSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ShowingStartTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"SourceSystemAgentKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemListingKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemShowingKey":{"type":"string","maxLength":255,"nullable":true},"AgentOriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"AgentSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"ShowingAgent":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property"}],"nullable":true},"ListingOriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"ListingSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"ShowingOriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"ShowingSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}},"Media@odata.count":{"$ref":"#/components/schemas/count"},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}},"SocialMedia@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.Showing-create":{"title":"Showing (for create)","type":"object","properties":{"AgentOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"AgentOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"AgentSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"AgentSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"ListingOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ListingSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"ListingSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemAgentKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemListingKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemShowingKey":{"type":"string","maxLength":255,"nullable":true},"ShowingAgentKey":{"type":"string","maxLength":255,"nullable":true},"ShowingAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShowingAgentMlsID":{"type":"string","maxLength":25,"nullable":true},"ShowingEndTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ShowingId":{"type":"string","maxLength":255,"nullable":true},"ShowingKey":{"type":"string","maxLength":255,"nullable":true},"ShowingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShowingOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"ShowingOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ShowingRequestedTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ShowingSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"ShowingSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ShowingStartTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"SourceSystemAgentKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemListingKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemShowingKey":{"type":"string","maxLength":255,"nullable":true},"AgentOriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"AgentSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"ShowingAgent":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property-create"}],"nullable":true},"ListingOriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"ListingSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"ShowingOriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"ShowingSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media-create"}},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia-create"}}},"required":["ShowingKey"]},"org.reso.metadata.Showing-update":{"title":"Showing (for update)","type":"object","properties":{"AgentOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"AgentOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"AgentSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"AgentSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"ListingOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ListingSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"ListingSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemAgentKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemListingKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemShowingKey":{"type":"string","maxLength":255,"nullable":true},"ShowingAgentKey":{"type":"string","maxLength":255,"nullable":true},"ShowingAgentKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShowingAgentMlsID":{"type":"string","maxLength":25,"nullable":true},"ShowingEndTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ShowingId":{"type":"string","maxLength":255,"nullable":true},"ShowingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ShowingOriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"ShowingOriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"ShowingRequestedTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ShowingSourceSystemID":{"type":"string","maxLength":25,"nullable":true},"ShowingSourceSystemName":{"type":"string","maxLength":255,"nullable":true},"ShowingStartTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"SourceSystemAgentKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemListingKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemShowingKey":{"type":"string","maxLength":255,"nullable":true}}},"org.reso.metadata.TeamMembers":{"title":"TeamMembers","type":"object","properties":{"MemberKey":{"type":"string","maxLength":255,"nullable":true},"MemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MemberLoginId":{"type":"string","maxLength":25,"nullable":true},"MemberMlsId":{"type":"string","maxLength":25,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"TeamImpersonationLevel":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.TeamImpersonationLevel"}],"nullable":true},"TeamKey":{"type":"string","maxLength":255,"nullable":true},"TeamKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TeamMemberKey":{"type":"string","maxLength":255,"nullable":true},"TeamMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TeamMemberNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"TeamMemberStateLicense":{"type":"string","maxLength":50,"nullable":true},"TeamMemberType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.TeamMemberType"}],"nullable":true},"Member":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.TeamMembers-create":{"title":"TeamMembers (for create)","type":"object","properties":{"MemberKey":{"type":"string","maxLength":255,"nullable":true},"MemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MemberLoginId":{"type":"string","maxLength":25,"nullable":true},"MemberMlsId":{"type":"string","maxLength":25,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"TeamImpersonationLevel":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.TeamImpersonationLevel"}],"nullable":true},"TeamKey":{"type":"string","maxLength":255,"nullable":true},"TeamKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TeamMemberKey":{"type":"string","maxLength":255,"nullable":true},"TeamMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TeamMemberNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"TeamMemberStateLicense":{"type":"string","maxLength":50,"nullable":true},"TeamMemberType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.TeamMemberType"}],"nullable":true},"Member":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"OriginatingSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"SourceSystem":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.OUID-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}}},"required":["TeamMemberKey"]},"org.reso.metadata.TeamMembers-update":{"title":"TeamMembers (for update)","type":"object","properties":{"MemberKey":{"type":"string","maxLength":255,"nullable":true},"MemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"MemberLoginId":{"type":"string","maxLength":25,"nullable":true},"MemberMlsId":{"type":"string","maxLength":25,"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OriginatingSystemID":{"type":"string","maxLength":25,"nullable":true},"OriginatingSystemKey":{"type":"string","maxLength":255,"nullable":true},"OriginatingSystemName":{"type":"string","maxLength":255,"nullable":true},"SourceSystemID":{"type":"string","maxLength":25,"nullable":true},"SourceSystemKey":{"type":"string","maxLength":255,"nullable":true},"SourceSystemName":{"type":"string","maxLength":255,"nullable":true},"TeamImpersonationLevel":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.TeamImpersonationLevel"}],"nullable":true},"TeamKey":{"type":"string","maxLength":255,"nullable":true},"TeamKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TeamMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"TeamMemberNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"TeamMemberStateLicense":{"type":"string","maxLength":50,"nullable":true},"TeamMemberType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.TeamMemberType"}],"nullable":true}}},"org.reso.metadata.OUID":{"title":"OUID","type":"object","properties":{"ChangedByMemberID":{"type":"string","maxLength":25,"nullable":true},"ChangedByMemberKey":{"type":"string","maxLength":255,"nullable":true},"ChangedByMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OrganizationAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"OrganizationAddress1":{"type":"string","maxLength":50,"nullable":true},"OrganizationAddress2":{"type":"string","maxLength":50,"nullable":true},"OrganizationAorOuid":{"type":"string","maxLength":25,"nullable":true},"OrganizationAorOuidKey":{"type":"string","maxLength":255,"nullable":true},"OrganizationAorOuidKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OrganizationCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"OrganizationCity":{"type":"string","maxLength":50,"nullable":true},"OrganizationComments":{"type":"string","maxLength":500,"nullable":true},"OrganizationContactEmail":{"type":"string","maxLength":80,"nullable":true},"OrganizationContactFax":{"type":"string","maxLength":16,"nullable":true},"OrganizationContactFirstName":{"type":"string","maxLength":50,"nullable":true},"OrganizationContactFullName":{"type":"string","maxLength":150,"nullable":true},"OrganizationContactJobTitle":{"type":"string","maxLength":50,"nullable":true},"OrganizationContactLastName":{"type":"string","maxLength":50,"nullable":true},"OrganizationContactMiddleName":{"type":"string","maxLength":50,"nullable":true},"OrganizationContactNamePrefix":{"type":"string","maxLength":10,"nullable":true},"OrganizationContactNameSuffix":{"type":"string","maxLength":10,"nullable":true},"OrganizationContactPhone":{"type":"string","maxLength":16,"nullable":true},"OrganizationContactPhoneExt":{"type":"string","maxLength":10,"nullable":true},"OrganizationCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"OrganizationCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"OrganizationMemberCount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OrganizationMlsCode":{"type":"string","maxLength":25,"nullable":true},"OrganizationMlsVendorName":{"type":"string","maxLength":255,"nullable":true},"OrganizationMlsVendorOuid":{"type":"string","maxLength":25,"nullable":true},"OrganizationName":{"type":"string","maxLength":255,"nullable":true},"OrganizationNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"OrganizationPostalCode":{"type":"string","maxLength":10,"nullable":true},"OrganizationPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"OrganizationSocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"OrganizationStateLicense":{"type":"string","maxLength":50,"nullable":true},"OrganizationStateLicenseState":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OrganizationStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OrganizationStatus":{"type":"boolean","nullable":true},"OrganizationStatusChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OrganizationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OrganizationType"}],"nullable":true},"OrganizationUniqueId":{"type":"string","maxLength":25,"nullable":true},"OrganizationUniqueIdKey":{"type":"string","maxLength":255,"nullable":true},"OrganizationUniqueIdKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ChangedByMember":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media"}},"Media@odata.count":{"$ref":"#/components/schemas/count"},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia"}},"SocialMedia@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.OUID-create":{"title":"OUID (for create)","type":"object","properties":{"ChangedByMemberID":{"type":"string","maxLength":25,"nullable":true},"ChangedByMemberKey":{"type":"string","maxLength":255,"nullable":true},"ChangedByMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OrganizationAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"OrganizationAddress1":{"type":"string","maxLength":50,"nullable":true},"OrganizationAddress2":{"type":"string","maxLength":50,"nullable":true},"OrganizationAorOuid":{"type":"string","maxLength":25,"nullable":true},"OrganizationAorOuidKey":{"type":"string","maxLength":255,"nullable":true},"OrganizationAorOuidKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OrganizationCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"OrganizationCity":{"type":"string","maxLength":50,"nullable":true},"OrganizationComments":{"type":"string","maxLength":500,"nullable":true},"OrganizationContactEmail":{"type":"string","maxLength":80,"nullable":true},"OrganizationContactFax":{"type":"string","maxLength":16,"nullable":true},"OrganizationContactFirstName":{"type":"string","maxLength":50,"nullable":true},"OrganizationContactFullName":{"type":"string","maxLength":150,"nullable":true},"OrganizationContactJobTitle":{"type":"string","maxLength":50,"nullable":true},"OrganizationContactLastName":{"type":"string","maxLength":50,"nullable":true},"OrganizationContactMiddleName":{"type":"string","maxLength":50,"nullable":true},"OrganizationContactNamePrefix":{"type":"string","maxLength":10,"nullable":true},"OrganizationContactNameSuffix":{"type":"string","maxLength":10,"nullable":true},"OrganizationContactPhone":{"type":"string","maxLength":16,"nullable":true},"OrganizationContactPhoneExt":{"type":"string","maxLength":10,"nullable":true},"OrganizationCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"OrganizationCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"OrganizationMemberCount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OrganizationMlsCode":{"type":"string","maxLength":25,"nullable":true},"OrganizationMlsVendorName":{"type":"string","maxLength":255,"nullable":true},"OrganizationMlsVendorOuid":{"type":"string","maxLength":25,"nullable":true},"OrganizationName":{"type":"string","maxLength":255,"nullable":true},"OrganizationNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"OrganizationPostalCode":{"type":"string","maxLength":10,"nullable":true},"OrganizationPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"OrganizationSocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"OrganizationStateLicense":{"type":"string","maxLength":50,"nullable":true},"OrganizationStateLicenseState":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OrganizationStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OrganizationStatus":{"type":"boolean","nullable":true},"OrganizationStatusChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OrganizationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OrganizationType"}],"nullable":true},"OrganizationUniqueId":{"type":"string","maxLength":25,"nullable":true},"OrganizationUniqueIdKey":{"type":"string","maxLength":255,"nullable":true},"OrganizationUniqueIdKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ChangedByMember":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Member-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}},"Media":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.Media-create"}},"SocialMedia":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.SocialMedia-create"}}},"required":["OrganizationUniqueIdKey"]},"org.reso.metadata.OUID-update":{"title":"OUID (for update)","type":"object","properties":{"ChangedByMemberID":{"type":"string","maxLength":25,"nullable":true},"ChangedByMemberKey":{"type":"string","maxLength":255,"nullable":true},"ChangedByMemberKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OrganizationAOR":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AOR"}],"nullable":true},"OrganizationAddress1":{"type":"string","maxLength":50,"nullable":true},"OrganizationAddress2":{"type":"string","maxLength":50,"nullable":true},"OrganizationAorOuid":{"type":"string","maxLength":25,"nullable":true},"OrganizationAorOuidKey":{"type":"string","maxLength":255,"nullable":true},"OrganizationAorOuidKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OrganizationCarrierRoute":{"type":"string","maxLength":9,"nullable":true},"OrganizationCity":{"type":"string","maxLength":50,"nullable":true},"OrganizationComments":{"type":"string","maxLength":500,"nullable":true},"OrganizationContactEmail":{"type":"string","maxLength":80,"nullable":true},"OrganizationContactFax":{"type":"string","maxLength":16,"nullable":true},"OrganizationContactFirstName":{"type":"string","maxLength":50,"nullable":true},"OrganizationContactFullName":{"type":"string","maxLength":150,"nullable":true},"OrganizationContactJobTitle":{"type":"string","maxLength":50,"nullable":true},"OrganizationContactLastName":{"type":"string","maxLength":50,"nullable":true},"OrganizationContactMiddleName":{"type":"string","maxLength":50,"nullable":true},"OrganizationContactNamePrefix":{"type":"string","maxLength":10,"nullable":true},"OrganizationContactNameSuffix":{"type":"string","maxLength":10,"nullable":true},"OrganizationContactPhone":{"type":"string","maxLength":16,"nullable":true},"OrganizationContactPhoneExt":{"type":"string","maxLength":10,"nullable":true},"OrganizationCountry":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.Country"}],"nullable":true},"OrganizationCountyOrParish":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.CountyOrParish"}],"nullable":true},"OrganizationMemberCount":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OrganizationMlsCode":{"type":"string","maxLength":25,"nullable":true},"OrganizationMlsVendorName":{"type":"string","maxLength":255,"nullable":true},"OrganizationMlsVendorOuid":{"type":"string","maxLength":25,"nullable":true},"OrganizationName":{"type":"string","maxLength":255,"nullable":true},"OrganizationNationalAssociationId":{"type":"string","maxLength":25,"nullable":true},"OrganizationPostalCode":{"type":"string","maxLength":10,"nullable":true},"OrganizationPostalCodePlus4":{"type":"string","maxLength":4,"nullable":true},"OrganizationSocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"OrganizationStateLicense":{"type":"string","maxLength":50,"nullable":true},"OrganizationStateLicenseState":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OrganizationStateOrProvince":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.StateOrProvince"}],"nullable":true},"OrganizationStatus":{"type":"boolean","nullable":true},"OrganizationStatusChangeTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OrganizationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OrganizationType"}],"nullable":true},"OrganizationUniqueId":{"type":"string","maxLength":25,"nullable":true},"OrganizationUniqueIdKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OriginalEntryTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true}}},"org.reso.metadata.ContactListingNotes":{"title":"ContactListingNotes","type":"object","properties":{"ContactKey":{"type":"string","maxLength":255,"nullable":true},"ContactKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ContactListingNotesKey":{"type":"string","maxLength":255,"nullable":true},"ContactListingNotesKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NoteContents":{"type":"string","maxLength":500,"nullable":true},"NotedBy":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.NotedBy"}],"nullable":true},"Contact":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Contacts"}],"nullable":true}}},"org.reso.metadata.ContactListingNotes-create":{"title":"ContactListingNotes (for create)","type":"object","properties":{"ContactKey":{"type":"string","maxLength":255,"nullable":true},"ContactKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ContactListingNotesKey":{"type":"string","maxLength":255,"nullable":true},"ContactListingNotesKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NoteContents":{"type":"string","maxLength":500,"nullable":true},"NotedBy":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.NotedBy"}],"nullable":true},"Contact":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Contacts-create"}],"nullable":true}},"required":["ContactKey"]},"org.reso.metadata.ContactListingNotes-update":{"title":"ContactListingNotes (for update)","type":"object","properties":{"ContactKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ContactListingNotesKey":{"type":"string","maxLength":255,"nullable":true},"ContactListingNotesKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"NoteContents":{"type":"string","maxLength":500,"nullable":true},"NotedBy":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.NotedBy"}],"nullable":true}}},"org.reso.metadata.OtherPhone":{"title":"OtherPhone","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OtherPhoneExt":{"type":"string","maxLength":10,"nullable":true},"OtherPhoneKey":{"type":"string","maxLength":255,"nullable":true},"OtherPhoneKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OtherPhoneNumber":{"type":"string","maxLength":16,"nullable":true},"OtherPhoneType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OtherPhoneType"}],"nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true}}},"org.reso.metadata.OtherPhone-create":{"title":"OtherPhone (for create)","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OtherPhoneExt":{"type":"string","maxLength":10,"nullable":true},"OtherPhoneKey":{"type":"string","maxLength":255,"nullable":true},"OtherPhoneKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OtherPhoneNumber":{"type":"string","maxLength":16,"nullable":true},"OtherPhoneType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OtherPhoneType"}],"nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true}},"required":["OtherPhoneKey"]},"org.reso.metadata.OtherPhone-update":{"title":"OtherPhone (for update)","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"OtherPhoneExt":{"type":"string","maxLength":10,"nullable":true},"OtherPhoneKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"OtherPhoneNumber":{"type":"string","maxLength":16,"nullable":true},"OtherPhoneType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.OtherPhoneType"}],"nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true}}},"org.reso.metadata.PropertyGreenVerification":{"title":"PropertyGreenVerification","type":"object","properties":{"GreenBuildingVerificationKey":{"type":"string","maxLength":255,"nullable":true},"GreenBuildingVerificationKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"GreenBuildingVerificationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenBuildingVerificationType"}],"nullable":true},"GreenVerificationBody":{"type":"string","maxLength":50,"nullable":true},"GreenVerificationMetric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"GreenVerificationRating":{"type":"string","maxLength":50,"nullable":true},"GreenVerificationSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenVerificationSource"}],"nullable":true},"GreenVerificationStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenVerificationStatus"}],"nullable":true},"GreenVerificationURL":{"type":"string","maxLength":8000,"nullable":true},"GreenVerificationVersion":{"type":"string","maxLength":25,"nullable":true},"GreenVerificationYear":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.PropertyGreenVerification-create":{"title":"PropertyGreenVerification (for create)","type":"object","properties":{"GreenBuildingVerificationKey":{"type":"string","maxLength":255,"nullable":true},"GreenBuildingVerificationKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"GreenBuildingVerificationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenBuildingVerificationType"}],"nullable":true},"GreenVerificationBody":{"type":"string","maxLength":50,"nullable":true},"GreenVerificationMetric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"GreenVerificationRating":{"type":"string","maxLength":50,"nullable":true},"GreenVerificationSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenVerificationSource"}],"nullable":true},"GreenVerificationStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenVerificationStatus"}],"nullable":true},"GreenVerificationURL":{"type":"string","maxLength":8000,"nullable":true},"GreenVerificationVersion":{"type":"string","maxLength":25,"nullable":true},"GreenVerificationYear":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}}},"required":["GreenBuildingVerificationKey"]},"org.reso.metadata.PropertyGreenVerification-update":{"title":"PropertyGreenVerification (for update)","type":"object","properties":{"GreenBuildingVerificationKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"GreenBuildingVerificationType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenBuildingVerificationType"}],"nullable":true},"GreenVerificationBody":{"type":"string","maxLength":50,"nullable":true},"GreenVerificationMetric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"GreenVerificationRating":{"type":"string","maxLength":50,"nullable":true},"GreenVerificationSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenVerificationSource"}],"nullable":true},"GreenVerificationStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.GreenVerificationStatus"}],"nullable":true},"GreenVerificationURL":{"type":"string","maxLength":8000,"nullable":true},"GreenVerificationVersion":{"type":"string","maxLength":25,"nullable":true},"GreenVerificationYear":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true}}},"org.reso.metadata.PropertyPowerProduction":{"title":"PropertyPowerProduction","type":"object","properties":{"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PowerProductionAnnual":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"PowerProductionAnnualStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PowerProductionAnnualStatus"}],"nullable":true},"PowerProductionKey":{"type":"string","maxLength":255,"nullable":true},"PowerProductionKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"PowerProductionSize":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999.99,"minimum":-999.99,"nullable":true},"PowerProductionType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PowerProductionType"}],"nullable":true},"PowerProductionYearInstall":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.PropertyPowerProduction-create":{"title":"PropertyPowerProduction (for create)","type":"object","properties":{"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PowerProductionAnnual":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"PowerProductionAnnualStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PowerProductionAnnualStatus"}],"nullable":true},"PowerProductionKey":{"type":"string","maxLength":255,"nullable":true},"PowerProductionKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"PowerProductionSize":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999.99,"minimum":-999.99,"nullable":true},"PowerProductionType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PowerProductionType"}],"nullable":true},"PowerProductionYearInstall":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}}},"required":["PowerProductionKey"]},"org.reso.metadata.PropertyPowerProduction-update":{"title":"PropertyPowerProduction (for update)","type":"object","properties":{"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"PowerProductionAnnual":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"PowerProductionAnnualStatus":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PowerProductionAnnualStatus"}],"nullable":true},"PowerProductionKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"PowerProductionSize":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999.99,"minimum":-999.99,"nullable":true},"PowerProductionType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.PowerProductionType"}],"nullable":true},"PowerProductionYearInstall":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true}}},"org.reso.metadata.PropertyRooms":{"title":"PropertyRooms","type":"object","properties":{"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"RoomArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"RoomAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"RoomAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"RoomDescription":{"type":"string","maxLength":1024,"nullable":true},"RoomDimensions":{"type":"string","maxLength":50,"nullable":true},"RoomFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.InteriorOrRoomFeatures"}},"RoomKey":{"type":"string","maxLength":255,"nullable":true},"RoomKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"RoomLength":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"RoomLengthWidthUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"RoomType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.RoomType"}],"nullable":true},"RoomWidth":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.PropertyRooms-create":{"title":"PropertyRooms (for create)","type":"object","properties":{"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"RoomArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"RoomAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"RoomAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"RoomDescription":{"type":"string","maxLength":1024,"nullable":true},"RoomDimensions":{"type":"string","maxLength":50,"nullable":true},"RoomFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.InteriorOrRoomFeatures"}},"RoomKey":{"type":"string","maxLength":255,"nullable":true},"RoomKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"RoomLength":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"RoomLengthWidthUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"RoomType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.RoomType"}],"nullable":true},"RoomWidth":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}}},"required":["RoomKey"]},"org.reso.metadata.PropertyRooms-update":{"title":"PropertyRooms (for update)","type":"object","properties":{"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"RoomArea":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"RoomAreaSource":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaSource"}],"nullable":true},"RoomAreaUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.AreaUnits"}],"nullable":true},"RoomDescription":{"type":"string","maxLength":1024,"nullable":true},"RoomDimensions":{"type":"string","maxLength":50,"nullable":true},"RoomFeatures":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.enums.InteriorOrRoomFeatures"}},"RoomKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"RoomLength":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"RoomLengthWidthUnits":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.LinearUnits"}],"nullable":true},"RoomType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.RoomType"}],"nullable":true},"RoomWidth":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true}}},"org.reso.metadata.PropertyUnitTypes":{"title":"PropertyUnitTypes","type":"object","properties":{"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"UnitTypeActualRent":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"UnitTypeBathsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UnitTypeBedsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UnitTypeDescription":{"type":"string","maxLength":1024,"nullable":true},"UnitTypeFurnished":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.UnitTypeFurnished"}],"nullable":true},"UnitTypeGarageAttachedYN":{"type":"boolean","nullable":true},"UnitTypeGarageSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"UnitTypeKey":{"type":"string","maxLength":255,"nullable":true},"UnitTypeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UnitTypeProForma":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UnitTypeTotalRent":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"UnitTypeType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.UnitTypeType"}],"nullable":true},"UnitTypeUnitsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional"}},"HistoryTransactional@odata.count":{"$ref":"#/components/schemas/count"}}},"org.reso.metadata.PropertyUnitTypes-create":{"title":"PropertyUnitTypes (for create)","type":"object","properties":{"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"UnitTypeActualRent":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"UnitTypeBathsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UnitTypeBedsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UnitTypeDescription":{"type":"string","maxLength":1024,"nullable":true},"UnitTypeFurnished":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.UnitTypeFurnished"}],"nullable":true},"UnitTypeGarageAttachedYN":{"type":"boolean","nullable":true},"UnitTypeGarageSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"UnitTypeKey":{"type":"string","maxLength":255,"nullable":true},"UnitTypeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UnitTypeProForma":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UnitTypeTotalRent":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"UnitTypeType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.UnitTypeType"}],"nullable":true},"UnitTypeUnitsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"Listing":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.Property-create"}],"nullable":true},"HistoryTransactional":{"type":"array","items":{"$ref":"#/components/schemas/org.reso.metadata.HistoryTransactional-create"}}},"required":["UnitTypeKey"]},"org.reso.metadata.PropertyUnitTypes-update":{"title":"PropertyUnitTypes (for update)","type":"object","properties":{"ListingId":{"type":"string","maxLength":255,"nullable":true},"ListingKey":{"type":"string","maxLength":255,"nullable":true},"ListingKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"UnitTypeActualRent":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"UnitTypeBathsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UnitTypeBedsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UnitTypeDescription":{"type":"string","maxLength":1024,"nullable":true},"UnitTypeFurnished":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.UnitTypeFurnished"}],"nullable":true},"UnitTypeGarageAttachedYN":{"type":"boolean","nullable":true},"UnitTypeGarageSpaces":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"UnitTypeKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UnitTypeProForma":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"UnitTypeTotalRent":{"anyOf":[{"type":"number"},{"type":"string"}],"format":"decimal","example":0,"multipleOf":0.01,"maximum":999999999999.99,"minimum":-999999999999.99,"nullable":true},"UnitTypeType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.UnitTypeType"}],"nullable":true},"UnitTypeUnitsTotal":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true}}},"org.reso.metadata.SocialMedia":{"title":"SocialMedia","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SocialMediaKey":{"type":"string","maxLength":255,"nullable":true},"SocialMediaKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SocialMediaUrlOrId":{"type":"string","maxLength":8000,"nullable":true}}},"org.reso.metadata.SocialMedia-create":{"title":"SocialMedia (for create)","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SocialMediaKey":{"type":"string","maxLength":255,"nullable":true},"SocialMediaKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SocialMediaUrlOrId":{"type":"string","maxLength":8000,"nullable":true}},"required":["SocialMediaKey"]},"org.reso.metadata.SocialMedia-update":{"title":"SocialMedia (for update)","type":"object","properties":{"ClassName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ClassName"}],"nullable":true},"ModificationTimestamp":{"type":"string","format":"date-time","example":"2017-04-13T15:51:04.000000000000000000000000000Z","nullable":true},"ResourceName":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.ResourceName"}],"nullable":true},"ResourceRecordID":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKey":{"type":"string","maxLength":255,"nullable":true},"ResourceRecordKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SocialMediaKeyNumeric":{"anyOf":[{"type":"integer"},{"type":"string"}],"format":"int64","example":"42","nullable":true},"SocialMediaType":{"anyOf":[{"$ref":"#/components/schemas/org.reso.metadata.enums.SocialMediaType"}],"nullable":true},"SocialMediaUrlOrId":{"type":"string","maxLength":8000,"nullable":true}}},"org.reso.metadata.enums.AreaSource":{"type":"string","title":"AreaSource","enum":["Appraiser","Assessor","Builder","Estimated","Other","Owner","Plans","PublicRecords","SeeRemarks"]},"org.reso.metadata.enums.AreaUnits":{"type":"string","title":"AreaUnits","enum":["SquareFeet","SquareMeters"]},"org.reso.metadata.enums.AccessibilityFeatures":{"type":"string","title":"AccessibilityFeatures","enum":["AccessibleApproachWithRamp","AccessibleBedroom","AccessibleCentralLivingArea","AccessibleClosets","AccessibleCommonArea","AccessibleDoors","AccessibleElectricalAndEnvironmentalControls","AccessibleElevatorInstalled","AccessibleEntrance","AccessibleForHearingImpairment","AccessibleFullBath","AccessibleHallways","AccessibleKitchen","AccessibleKitchenAppliances","AccessibleStairway","AccessibleWasherDryer","AdaptableBathroomWalls","AdaptableForElevator","CeilingTrack","CentralLivingArea","CommonArea","CustomizedWheelchairAccessible","ElectronicEnvironmentalControls","EnhancedAccessible","ExteriorWheelchairLift","GripAccessibleFeatures","ReinforcedFloors","SafeEmergencyEgressFromHome","SmartTechnology","StairLift","StandbyGenerator","TherapeuticWhirlpool","Visitable","VisitorBathroom","WalkerAccessibleStairs"]},"org.reso.metadata.enums.Appliances":{"type":"string","title":"Appliances","enum":["BarFridge","BuiltInElectricOven","BuiltInElectricRange","BuiltInFreezer","BuiltInGasOven","BuiltInGasRange","BuiltInRange","BuiltInRefrigerator","ConvectionOven","Cooktop","Dishwasher","Disposal","DoubleOven","DownDraft","Dryer","ElectricCooktop","ElectricOven","ElectricRange","ElectricWaterHeater","EnergyStarQualifiedAppliances","EnergyStarQualifiedDishwasher","EnergyStarQualifiedDryer","EnergyStarQualifiedFreezer","EnergyStarQualifiedRefrigerator","EnergyStarQualifiedWasher","EnergyStarQualifiedWaterHeater","ExhaustFan","FreeStandingElectricOven","FreeStandingElectricRange","FreeStandingFreezer","FreeStandingGasOven","FreeStandingGasRange","FreeStandingRange","FreeStandingRefrigerator","Freezer","GasCooktop","GasOven","GasRange","GasWaterHeater","Humidifier","IceMaker","IndoorGrill","InductionCooktop","InstantHotWater","Microwave","None","Other","Oven","PlumbedForIceMaker","PortableDishwasher","PropaneCooktop","Range","RangeHood","Refrigerator","SelfCleaningOven","SolarHotWater","StainlessSteelAppliances","TanklessWaterHeater","TrashCompactor","VentedExhaustFan","WarmingDrawer","Washer","WasherDryer","WasherDryerStacked","WaterHeater","WaterPurifier","WaterPurifierOwned","WaterPurifierRented","WaterSoftener","WaterSoftenerOwned","WaterSoftenerRented","WineCooler","WineRefrigerator"]},"org.reso.metadata.enums.ArchitecturalStyle":{"type":"string","title":"ArchitecturalStyle","enum":["SampleArchitecturalStyleEnumValue"]},"org.reso.metadata.enums.AssociationAmenities":{"type":"string","title":"AssociationAmenities","enum":["AirportRunway","Barbecue","BasketballCourt","BeachAccess","BeachRights","BilliardRoom","BoatDock","Boating","BoatSlip","Cabana","CableTv","CarWashArea","Clubhouse","CoinLaundry","Concierge","DayCare","DogPark","DryDock","Electricity","Elevators","ExerciseCourse","FitnessCenter","GameCourtExterior","GameCourtInterior","GameRoom","Gas","Gated","GolfCourse","HotWater","IndoorPool","Insurance","JoggingPath","Landscaping","Laundry","MaidService","Maintenance","MaintenanceGrounds","MaintenanceStructure","Management","Marina","MeetingRoom","None","Other","Park","Parking","PartyRoom","PicnicArea","Playground","PondSeasonal","PondYearRound","Pool","PoweredBoatsAllowed","Racquetball","RecreationFacilities","RecreationRoom","RoofDeck","RvBoatStorage","RvParking","Sauna","Security","ServiceElevators","ShuffleboardCourt","SkiAccessible","SnowRemoval","SpaHotTub","SportCourt","Stables","Storage","StreamSeasonal","StreamYearRound","Taxes","TennisCourts","Trails","Trash","Water","WorkshopArea"]},"org.reso.metadata.enums.FeeFrequency":{"type":"string","title":"FeeFrequency","enum":["Annually","BiMonthly","BiWeekly","Daily","Monthly","OneTime","Quarterly","Seasonal","SemiAnnually","SemiMonthly","Weekly"]},"org.reso.metadata.enums.AssociationFeeIncludes":{"type":"string","title":"AssociationFeeIncludes","enum":["CableTv","EarthquakeInsurance","Electricity","Gas","Insurance","Internet","MaintenanceGrounds","MaintenanceStructure","PestControl","Security","Sewer","SnowRemoval","Trash","Utilities","Water"]},"org.reso.metadata.enums.Basement":{"type":"string","title":"Basement","enum":["Apartment","BathStubbed","Block","Concrete","CrawlSpace","Daylight","DirtFloor","ExteriorEntry","Finished","FrenchDrain","Full","InteriorEntry","None","Other","Partial","PartiallyFinished","StorageSpace","SumpPump","Unfinished","WalkOutAccess","WalkUpAccess"]},"org.reso.metadata.enums.BodyType":{"type":"string","title":"BodyType","enum":["DoubleWide","Expando","Other","QuadWide","SeeRemarks","SingleWide","TripleWide"]},"org.reso.metadata.enums.BuildingFeatures":{"type":"string","title":"BuildingFeatures","enum":["SampleBuildingFeaturesEnumValue"]},"org.reso.metadata.enums.BusinessType":{"type":"string","title":"BusinessType","enum":["Accounting","AdministrativeAndSupport","Advertising","Agriculture","AnimalGrooming","Appliances","AquariumSupplies","ArtsAndEntertainment","Athletic","AutoBody","AutoDealer","AutoGlass","AutoParts","AutoRentLease","AutoRepairSpecialty","AutoService","AutoStereoAlarm","AutoTires","AutoWrecking","Bakery","BarberBeauty","BarTavernLounge","BedAndBreakfast","BooksCardsStationary","Butcher","Cabinets","CandyCookie","CarpetTile","CarWash","ChildCare","Church","Clothing","Commercial","Computer","ConstructionContractor","Convalescent","ConvenienceStore","DanceStudio","Decorator","DeliCatering","Dental","Distribution","Doughnut","Drugstore","DryCleaner","EducationSchool","Electronics","Employment","Farm","FastFood","Financial","Fitness","FloristNursery","FoodAndBeverage","ForestReserve","Franchise","Furniture","GasStation","GiftShop","Grocery","Hardware","HealthFood","HealthServices","Hobby","HomeCleaner","Hospitality","HotelMotel","IceCreamFrozenYogurt","Industrial","Jewelry","Landscaping","Laundromat","LiquorStore","Locksmith","Manufacturing","Medical","Mixed","MobileTrailerPark","Music","NursingHome","OfficeSupply","Other","Paints","Parking","PetStore","Photographer","Pizza","Printing","ProfessionalOffice","ProfessionalService","RealEstate","Recreation","Rental","Residential","Restaurant","Retail","SaddleryHarness","SportingGoods","Storage","Toys","Transportation","Travel","Upholstery","Utility","Variety","Video","Wallpaper","Warehouse","Wholesale"]},"org.reso.metadata.enums.CompensationType":{"type":"string","title":"CompensationType","enum":["Dollars","Other","Percent","SeeRemarks"]},"org.reso.metadata.enums.AOR":{"type":"string","title":"AOR","enum":["SampleAOREnumValue"]},"org.reso.metadata.enums.BuyerAgentDesignation":{"type":"string","title":"BuyerAgentDesignation","enum":["AccreditedBuyersRepresentative","AccreditedLandConsultant","AtHomeWithDiversity","CertifiedCommercialInvestmentMember","CertifiedDistressedPropertyExpert","CertifiedInternationalPropertySpecialist","CertifiedPropertyManager","CertifiedRealEstateBrokerageManager","CertifiedRealEstateTeamSpecialist","CertifiedResidentialSpecialist","CounselorOfRealEstate","ePRO","GeneralAccreditedAppraiser","GraduateRealtorInstitute","MilitaryRelocationProfessional","NARsGreenDesignation","PerformanceManagementNetwork","PricingStrategyAdvisor","RealEstateNegotiationExpert","RealtorAssociationCertifiedExecutive","ResidentialAccreditedAppraiser","ResortAndSecondHomePropertySpecialist","SellerRepresentativeSpecialist","SeniorsRealEstateSpecialist","ShortSalesAndForeclosureResource","SocietyOfIndustrialAndOfficeRealtors","TransnationalReferralCertification"]},"org.reso.metadata.enums.BuyerFinancing":{"type":"string","title":"BuyerFinancing","enum":["Assumed","Cash","Contract","Conventional","FHA","FHA203b","FHA203k","Other","Private","SellerFinancing","TrustDeed","USDA","VA"]},"org.reso.metadata.enums.City":{"type":"string","title":"City","enum":["SampleCityEnumValue"]},"org.reso.metadata.enums.CoBuyerAgentDesignation":{"type":"string","title":"CoBuyerAgentDesignation","enum":["AccreditedBuyersRepresentative","AccreditedLandConsultant","AtHomeWithDiversity","CertifiedCommercialInvestmentMember","CertifiedDistressedPropertyExpert","CertifiedInternationalPropertySpecialist","CertifiedPropertyManager","CertifiedRealEstateBrokerageManager","CertifiedRealEstateTeamSpecialist","CertifiedResidentialSpecialist","CounselorOfRealEstate","ePRO","GeneralAccreditedAppraiser","GraduateRealtorInstitute","MilitaryRelocationProfessional","NARsGreenDesignation","PerformanceManagementNetwork","PricingStrategyAdvisor","RealEstateNegotiationExpert","RealtorAssociationCertifiedExecutive","ResidentialAccreditedAppraiser","ResortAndSecondHomePropertySpecialist","SellerRepresentativeSpecialist","SeniorsRealEstateSpecialist","ShortSalesAndForeclosureResource","SocietyOfIndustrialAndOfficeRealtors","TransnationalReferralCertification"]},"org.reso.metadata.enums.CoListAgentDesignation":{"type":"string","title":"CoListAgentDesignation","enum":["AccreditedBuyersRepresentative","AccreditedLandConsultant","AtHomeWithDiversity","CertifiedCommercialInvestmentMember","CertifiedDistressedPropertyExpert","CertifiedInternationalPropertySpecialist","CertifiedPropertyManager","CertifiedRealEstateBrokerageManager","CertifiedRealEstateTeamSpecialist","CertifiedResidentialSpecialist","CounselorOfRealEstate","ePRO","GeneralAccreditedAppraiser","GraduateRealtorInstitute","MilitaryRelocationProfessional","NARsGreenDesignation","PerformanceManagementNetwork","PricingStrategyAdvisor","RealEstateNegotiationExpert","RealtorAssociationCertifiedExecutive","ResidentialAccreditedAppraiser","ResortAndSecondHomePropertySpecialist","SellerRepresentativeSpecialist","SeniorsRealEstateSpecialist","ShortSalesAndForeclosureResource","SocietyOfIndustrialAndOfficeRealtors","TransnationalReferralCertification"]},"org.reso.metadata.enums.CommonInterest":{"type":"string","title":"CommonInterest","enum":["CommunityApartment","Condominium","None","PlannedDevelopment","StockCooperative","Timeshare"]},"org.reso.metadata.enums.CommonWalls":{"type":"string","title":"CommonWalls","enum":["EndUnit","NoCommonWalls","NoOneAbove","NoOneBelow","OneCommonWall","TwoOrMoreCommonWalls"]},"org.reso.metadata.enums.CommunityFeatures":{"type":"string","title":"CommunityFeatures","enum":["AirportRunway","Clubhouse","Curbs","Fishing","FitnessCenter","Gated","Golf","Lake","None","Other","Park","Playground","Pool","Racquetball","Restaurant","Sidewalks","Stables","StreetLights","Suburban","TennisCourts"]},"org.reso.metadata.enums.Concessions":{"type":"string","title":"Concessions","enum":["CallListingAgent","No","Yes"]},"org.reso.metadata.enums.ConstructionMaterials":{"type":"string","title":"ConstructionMaterials","enum":["Adobe","AluminumSiding","Asbestos","Asphalt","AtticCrawlHatchwaysInsulated","BattsInsulation","Block","BlownInInsulation","BoardAndBattenSiding","Brick","BrickVeneer","Cedar","CementSiding","Clapboard","Concrete","DuctsProfessionallyAirSealed","ExteriorDuctWorkIsInsulated","FiberCement","FiberglassSiding","FoamInsulation","Frame","Glass","HardiplankType","IcatRecessedLighting","InsulatedConcreteForms","LapSiding","Log","LogSiding","LowVocInsulation","Masonite","MetalSiding","NaturalBuilding","Other","Plaster","RadiantBarrier","RammedEarth","RecycledBioBasedInsulation","RedwoodSiding","SeeRemarks","ShakeSiding","ShingleSiding","SlumpBlock","SprayFoamInsulation","SteelSiding","Stone","StoneVeneer","Straw","Stucco","SyntheticStucco","Unknown","VerticalSiding","VinylSiding","WoodSiding"]},"org.reso.metadata.enums.Cooling":{"type":"string","title":"Cooling","enum":["AtticFan","CeilingFans","CentralAir","Dual","Ductless","Electric","EnergyStarQualifiedEquipment","EvaporativeCooling","ExhaustFan","Gas","Geothermal","HeatPump","HumidityControl","MultiUnits","None","Other","RoofTurbines","SeparateMeters","VariesByUnit","WallUnits","WallWindowUnits","WholeHouseFan","WindowUnits","Zoned"]},"org.reso.metadata.enums.Country":{"type":"string","title":"Country","enum":["AD","AE","AF","AG","AI","AL","AM","AN","AO","AQ","AR","AS","AT","AU","AW","AX","AZ","BA","BB","BD","BE","BF","BG","BH","BI","BJ","BL","BM","BN","BO","BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD","CF","CG","CH","CI","CK","CL","CM","CN","CO","CR","CU","CV","CX","CY","CZ","DE","DJ","DK","DM","DO","DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ","FK","FM","FO","FR","GA","GB","GD","GE","GF","GG","GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT","GU","GW","GY","HK","HM","HN","HR","HT","HU","ID","IE","IL","IM","IN","IO","IQ","IR","IS","IT","JE","JM","JO","JP","KE","KG","KH","KI","KM","KN","KP","KR","KW","KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT","LU","LV","LY","MA","MC","MD","ME","MF","MG","MH","MK","ML","MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV","MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI","NL","NP","NR","NU","NZ","OM","OT","PA","PE","PF","PG","PH","PK","PL","PM","PN","PR","PS","PT","PW","PY","QA","RE","RO","RS","RU","RW","SA","SB","SC","SD","SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO","SR","ST","SV","SY","SZ","TC","TD","TF","TG","TH","TJ","TK","TL","TM","TN","TO","TR","TT","TV","TW","TZ","UA","UG","UM","US","UY","UZ","VA","VC","VE","VG","VI","VN","VU","WF","WS","YE","YT","ZA","ZM","ZW"]},"org.reso.metadata.enums.CountyOrParish":{"type":"string","title":"CountyOrParish","enum":["SampleCountyOrParishEnumValue"]},"org.reso.metadata.enums.CurrentFinancing":{"type":"string","title":"CurrentFinancing","enum":["Assumable","Contract","Conventional","FHA","FHA203b","FHA203k","LeasedRenewables","None","Other","PowerPurchaseAgreement","Private","PropertyAssessedCleanEnergy","TrustDeed","USDA","VA"]},"org.reso.metadata.enums.CurrentUse":{"type":"string","title":"CurrentUse","enum":["Agricultural","Automotive","Cattle","Commercial","Dairy","Farm","Fishery","Grazing","HighwayTouristService","Horses","Hunting","Industrial","Investment","Livestock","ManufacturedHome","MedicalDental","MiniStorage","MixedUse","MultiFamily","Nursery","Office","Orchard","Other","Pasture","PlaceOfWorship","Plantable","Poultry","Ranch","Recreational","Residential","Retail","RowCrops","SeeRemarks","SingleFamily","Subdivision","Timber","TreeFarm","Unimproved","Vacant","Vineyard","Warehouse"]},"org.reso.metadata.enums.DevelopmentStatus":{"type":"string","title":"DevelopmentStatus","enum":["Completed","FinishedLots","Other","Proposed","RawLand","RoughGrade","SeeRemarks","SitePlanApproved","SitePlanFiled","UnderConstruction"]},"org.reso.metadata.enums.DirectionFaces":{"type":"string","title":"DirectionFaces","enum":["East","North","Northeast","Northwest","South","Southeast","Southwest","West"]},"org.reso.metadata.enums.Disclosures":{"type":"string","title":"Disclosures","enum":["SampleDisclosuresEnumValue"]},"org.reso.metadata.enums.LinearUnits":{"type":"string","title":"LinearUnits","enum":["Feet","Meters"]},"org.reso.metadata.enums.DocumentsAvailable":{"type":"string","title":"DocumentsAvailable","enum":["SampleDocumentsAvailableEnumValue"]},"org.reso.metadata.enums.DoorFeatures":{"type":"string","title":"DoorFeatures","enum":["EnergyStarQualifiedDoors","FrenchDoors","MirroredClosetDoors","SlidingDoors","StormDoors"]},"org.reso.metadata.enums.Electric":{"type":"string","title":"Electric","enum":["Amps100","Amps150","Amps200OrMore","CircuitBreakers","EnergyStorageDevice","Fuses","Generator","NetMeter","PhotovoltaicsSellerOwned","PhotovoltaicsThirdPartyOwned","PreWiredForRenewables","ReadyForRenewables","Underground","Volts220","Volts220ForSpa","Volts220InGarage","Volts220InKitchen","Volts220InLanudry","Volts220InWorkshop","Volts440","WindTurbineSellerOwned","WindTurbineThirdPartyOwned"]},"org.reso.metadata.enums.ElementarySchool":{"type":"string","title":"ElementarySchool","enum":["SampleElementarySchoolEnumValue"]},"org.reso.metadata.enums.ElementarySchoolDistrict":{"type":"string","title":"ElementarySchoolDistrict","enum":["SampleElementarySchoolDistrictEnumValue"]},"org.reso.metadata.enums.ExistingLeaseType":{"type":"string","title":"ExistingLeaseType","enum":["AbsoluteNet","CpiAdjustment","EscalationClause","Gross","GroundLease","Net","Nn","Nnn","Oral"]},"org.reso.metadata.enums.ExteriorFeatures":{"type":"string","title":"ExteriorFeatures","enum":["Awnings","Balcony","Barbecue","BasketballCourt","BoatSlip","BuiltInBarbecue","Courtyard","CoveredCourtyard","Dock","DogRun","ElectricGrill","FirePit","Garden","GasGrill","GrayWaterSystem","Kennel","Lighting","MistingSystem","None","Other","OutdoorGrill","OutdoorKitchen","OutdoorShower","PermeablePaving","Playground","PrivateEntrance","PrivateYard","RainBarrelCisterns","RainGutters","RvHookup","Storage","TennisCourts","UncoveredCourtyard"]},"org.reso.metadata.enums.Fencing":{"type":"string","title":"Fencing","enum":["BackYard","BarbedWire","Block","Brick","ChainLink","CrossFenced","Electric","Fenced","FrontYard","Full","Gate","Invisible","Masonry","None","Other","Partial","PartialCross","Perimeter","Pipe","Privacy","Security","SeeRemarks","SlumpStone","SplitRail","Stone","Vinyl","Wire","Wood","WroughtIron"]},"org.reso.metadata.enums.FinancialDataSource":{"type":"string","title":"FinancialDataSource","enum":["Accountant","Owner","PropertyManager"]},"org.reso.metadata.enums.FireplaceFeatures":{"type":"string","title":"FireplaceFeatures","enum":["Basement","Bath","Bedroom","BlowerFan","Circulating","Decorative","Den","DiningRoom","DoubleSided","Electric","EpaCertifiedWoodStove","EpaQualifiedFireplace","FactoryBuilt","FamilyRoom","FirePit","FreeStanding","Gas","GasLog","GasStarter","GlassDoors","GreatRoom","Heatilator","Insert","Kitchen","Library","LivingRoom","Masonry","MasterBedroom","Metal","None","Other","Outside","PelletStove","Propane","RaisedHearth","RecreationRoom","SealedCombustion","SeeRemarks","SeeThrough","Stone","Ventless","WoodBurning","WoodBurningStove","ZeroClearance"]},"org.reso.metadata.enums.Flooring":{"type":"string","title":"Flooring","enum":["Adobe","Bamboo","Brick","Carpet","CeramicTile","Clay","Combination","Concrete","Cork","CriGreenLabelPlusCertifiedCarpet","Dirt","FloorscoreCertifiedFlooring","FscOrSfiCertifiedSourceHardwood","Granite","Hardwood","Laminate","Linoleum","Marble","None","Other","PaintedStained","Parquet","Pavers","ReclaimedWood","SeeRemarks","SimulatedWood","Slate","Softwood","Stamped","Stone","Sustainable","Terrazzo","Tile","Varies","Vinyl","Wood"]},"org.reso.metadata.enums.FoundationDetails":{"type":"string","title":"FoundationDetails","enum":["Block","BrickMortar","Combination","ConcretePerimeter","None","Other","Permanent","PillarPostPier","Raised","SeeRemarks","Slab","Stone"]},"org.reso.metadata.enums.FrontageType":{"type":"string","title":"FrontageType","enum":["BayHarbor","GolfCourse","LagoonEstuary","Lakefront","Oceanfront","Other","River","SeeRemarks","Waterfront"]},"org.reso.metadata.enums.Furnished":{"type":"string","title":"Furnished","enum":["Furnished","Negotiable","Partially","Unfurnished"]},"org.reso.metadata.enums.GreenBuildingVerificationType":{"type":"string","title":"GreenBuildingVerificationType","enum":["CertifiedPassiveHouse","EnergyStarCertifiedHomes","Enerphit","HersIndexScore","HomeEnergyScore","HomeEnergyUpgradeCertificateOfEnergyEfficiencyImprovements","HomeEnergyUpgradeCertificateOfEnergyEfficiencyPerformance","HomePerformanceWithEnergyStar","IndoorAirplus","LeedForHomes","LivingBuildingChallenge","NgbsNewConstruction","NgbsSmallProjectsRemodel","NgbsWholeHomeRemodel","PhiusPlus","Watersense","ZeroEnergyReadyHome"]},"org.reso.metadata.enums.GreenEnergyEfficient":{"type":"string","title":"GreenEnergyEfficient","enum":["Appliances","Construction","Doors","ExposureShade","Hvac","Incentives","Insulation","Lighting","Roof","Thermostat","WaterHeater","Windows"]},"org.reso.metadata.enums.GreenEnergyGeneration":{"type":"string","title":"GreenEnergyGeneration","enum":["Solar","Wind"]},"org.reso.metadata.enums.GreenIndoorAirQuality":{"type":"string","title":"GreenIndoorAirQuality","enum":["ContaminantControl","IntegratedPestManagement","MoistureControl","Ventilation"]},"org.reso.metadata.enums.GreenLocation":{"type":"string","title":"GreenLocation","enum":["SampleGreenLocationEnumValue"]},"org.reso.metadata.enums.GreenSustainability":{"type":"string","title":"GreenSustainability","enum":["ConservingMethods","OnsiteRecyclingCenter","RecyclableMaterials","RecycledMaterials","RegionallySourcedMaterials","RenewableMaterials","SalvagedMaterials"]},"org.reso.metadata.enums.GreenWaterConservation":{"type":"string","title":"GreenWaterConservation","enum":["EfficientHotWaterDistribution","GrayWaterSystem","GreenInfrastructure","LowFlowFixtures","WaterRecycling","WaterSmartLandscaping"]},"org.reso.metadata.enums.Heating":{"type":"string","title":"Heating","enum":["ActiveSolar","Baseboard","Ceiling","Central","Coal","CoalStove","Ductless","Electric","EnergyStarAccaRsiQualifiedInstallation","EnergyStarQualifiedEquipment","ExhaustFan","FireplaceInsert","Fireplaces","FloorFurnace","ForcedAir","Geothermal","Gravity","HeatPump","HotWater","HumidityControl","Kerosene","NaturalGas","None","Oil","Other","PassiveSolar","PelletStove","Propane","PropaneStove","Radiant","RadiantCeiling","RadiantFloor","SeeRemarks","SeparateMeters","Solar","SpaceHeater","Steam","VariesByUnit","WallFurnace","Wood","WoodStove","Zoned"]},"org.reso.metadata.enums.HighSchool":{"type":"string","title":"HighSchool","enum":["SampleHighSchoolEnumValue"]},"org.reso.metadata.enums.HighSchoolDistrict":{"type":"string","title":"HighSchoolDistrict","enum":["SampleHighSchoolDistrictEnumValue"]},"org.reso.metadata.enums.HorseAmenities":{"type":"string","title":"HorseAmenities","enum":["Arena","Barn","BoardingFacilities","Corrals","HayStorage","None","Other","Paddocks","PalpationChute","Pasture","RidingTrail","RoundPen","SeeRemarks","ShavingBin","Stables","TackRoom","TrailerStorage","WashRack"]},"org.reso.metadata.enums.HoursDaysOfOperation":{"type":"string","title":"HoursDaysOfOperation","enum":["EveningsOnly","Open24Hours","Open7Days","Open8HoursDay","OpenLessThan8HoursDay","OpenMondayFriday","OpenOver8HoursDay","OpenSaturday","OpenSunday"]},"org.reso.metadata.enums.IncomeIncludes":{"type":"string","title":"IncomeIncludes","enum":["Laundry","Parking","Recreation","RentOnly","RvStorage","Storage"]},"org.reso.metadata.enums.InteriorOrRoomFeatures":{"type":"string","title":"InteriorOrRoomFeatures","enum":["Bar","BeamedCeilings","Bidet","Bookcases","BreakfastBar","BuiltInFeatures","CathedralCeilings","CedarClosets","CeilingFans","CentralVacuum","Chandelier","CofferedCeilings","CrownMolding","DoubleVanity","DryBar","Dumbwaiter","EatInKitchen","Elevator","EntranceFoyer","GraniteCounters","HighCeilings","HighSpeedInternet","HisAndHersClosets","InLawFloorplan","KitchenIsland","LaminateCounters","LowFlowPlumbingFixtures","MasterDownstairs","NaturalWoodwork","OpenFloorplan","Other","Pantry","RecessedLighting","Sauna","SeeRemarks","SmartHome","SmartThermostat","SoakingTub","SolarTubes","SoundSystem","StoneCounters","Storage","TileCounters","TrackLighting","TrayCeilings","VaultedCeilings","WalkInClosets","WaterSenseFixtures","WetBar","WiredForData","WiredForSound"]},"org.reso.metadata.enums.IrrigationSource":{"type":"string","title":"IrrigationSource","enum":["SampleIrrigationSourceEnumValue"]},"org.reso.metadata.enums.LaborInformation":{"type":"string","title":"LaborInformation","enum":["EmployeeLicenseRequired","NonUnion","Union"]},"org.reso.metadata.enums.LaundryFeatures":{"type":"string","title":"LaundryFeatures","enum":["CommonArea","ElectricDryerHookup","GasDryerHookup","InBasement","InBathroom","InCarport","InGarage","InHall","InKitchen","Inside","InUnit","LaundryChute","LaundryCloset","LaundryRoom","LowerLevel","MainLevel","MultipleLocations","None","Other","Outside","SeeRemarks","Sink","UpperLevel","WasherHookup"]},"org.reso.metadata.enums.LeaseRenewalCompensation":{"type":"string","title":"LeaseRenewalCompensation","enum":["CallListingAgent","CallListingOffice","CommissionPaidOnTenantPurchase","NoRenewalCommission","RenewalCommissionPaid"]},"org.reso.metadata.enums.LeaseTerm":{"type":"string","title":"LeaseTerm","enum":["MonthToMonth","Negotiable","None","Other","RenewalOption","ShortTermLease","SixMonths","TwelveMonths","TwentyFourMonths","Weekly"]},"org.reso.metadata.enums.Levels":{"type":"string","title":"Levels","enum":["MultiSplit","One","OneAndOneHalf","ThreeOrMore","Two"]},"org.reso.metadata.enums.ListAgentDesignation":{"type":"string","title":"ListAgentDesignation","enum":["AccreditedBuyersRepresentative","AccreditedLandConsultant","AtHomeWithDiversity","CertifiedCommercialInvestmentMember","CertifiedDistressedPropertyExpert","CertifiedInternationalPropertySpecialist","CertifiedPropertyManager","CertifiedRealEstateBrokerageManager","CertifiedRealEstateTeamSpecialist","CertifiedResidentialSpecialist","CounselorOfRealEstate","ePRO","GeneralAccreditedAppraiser","GraduateRealtorInstitute","MilitaryRelocationProfessional","NARsGreenDesignation","PerformanceManagementNetwork","PricingStrategyAdvisor","RealEstateNegotiationExpert","RealtorAssociationCertifiedExecutive","ResidentialAccreditedAppraiser","ResortAndSecondHomePropertySpecialist","SellerRepresentativeSpecialist","SeniorsRealEstateSpecialist","ShortSalesAndForeclosureResource","SocietyOfIndustrialAndOfficeRealtors","TransnationalReferralCertification"]},"org.reso.metadata.enums.ListingAgreement":{"type":"string","title":"ListingAgreement","enum":["ExclusiveAgency","ExclusiveRightToLease","ExclusiveRightToSell","ExclusiveRightWithException","Net","Open","Probate"]},"org.reso.metadata.enums.ListingService":{"type":"string","title":"ListingService","enum":["EntryOnly","FullService","LimitedService"]},"org.reso.metadata.enums.ListingTerms":{"type":"string","title":"ListingTerms","enum":["AllInclusiveTrustDeed","Assumable","Cash","Contract","Conventional","Exchange1031","ExistingBonds","FHA","LandUseFee","LeaseBack","LeaseOption","LeasePurchase","LienRelease","OwnerMayCarry","OwnerPayPoints","OwnerWillCarry","PrivateFinancingAvailable","RelocationProperty","SellerEquityShare","SpecialFunding","Submit","Trade","TrustConveyance","TrustDeed","UsdaLoan","VaLoan"]},"org.reso.metadata.enums.LockBoxType":{"type":"string","title":"LockBoxType","enum":["CallListingOffice","CallSellerDirect","Combo","None","Other","SeeRemarks","Sentrilock","Supra"]},"org.reso.metadata.enums.LotDimensionsSource":{"type":"string","title":"LotDimensionsSource","enum":["Appraiser","Assessor","Builder","Estimated","GisCalculated","Measured","Other","Owner","PublicRecords","SeeRemarks","Survey"]},"org.reso.metadata.enums.LotFeatures":{"type":"string","title":"LotFeatures","enum":["Agricultural","BackYard","Bluff","CityLot","Cleared","CloseToClubhouse","CornerLot","CornersMarked","CulDeSac","DesertBack","DesertFront","Farm","FewTrees","FlagLot","FrontYard","Garden","GentleSloping","Greenbelt","InteriorLot","IrregularLot","Landscaped","Level","ManyTrees","Meadow","NativePlants","NearGolfCourse","NearPublicTransit","OnGolfCourse","OpenLot","Orchards","Other","Pasture","Paved","PieShapedLot","Private","RectangularLot","RockOutcropping","RollingSlope","Secluded","SeeRemarks","Sloped","SlopedDown","SlopedUp","SplitPossible","SprinklersInFront","SprinklersInRear","SteepSlope","Subdivided","Views","Waterfall","Waterfront","Wetlands","Wooded","ZeroLotLine"]},"org.reso.metadata.enums.LotSizeSource":{"type":"string","title":"LotSizeSource","enum":["Appraiser","Assessor","Builder","Estimated","Other","Owner","Plans","PublicRecords","SeeRemarks"]},"org.reso.metadata.enums.LotSizeUnits":{"type":"string","title":"LotSizeUnits","enum":["Acres","SquareFeet","SquareMeters"]},"org.reso.metadata.enums.MLSAreaMajor":{"type":"string","title":"MLSAreaMajor","enum":["SampleMLSAreaMajorEnumValue"]},"org.reso.metadata.enums.MLSAreaMinor":{"type":"string","title":"MLSAreaMinor","enum":["SampleMLSAreaMinorEnumValue"]},"org.reso.metadata.enums.ChangeType":{"type":"string","title":"ChangeType","enum":["Active","ActiveUnderContract","BackOnMarket","Canceled","Closed","Deleted","Expired","Hold","NewListing","Pending","PriceChange","Withdrawn"]},"org.reso.metadata.enums.MiddleOrJuniorSchool":{"type":"string","title":"MiddleOrJuniorSchool","enum":["SampleMiddleOrJuniorSchoolEnumValue"]},"org.reso.metadata.enums.MiddleOrJuniorSchoolDistrict":{"type":"string","title":"MiddleOrJuniorSchoolDistrict","enum":["SampleMiddleOrJuniorSchoolDistrictEnumValue"]},"org.reso.metadata.enums.MlsStatus":{"type":"string","title":"MlsStatus","enum":["SampleMlsStatusEnumValue"]},"org.reso.metadata.enums.OccupantType":{"type":"string","title":"OccupantType","enum":["Owner","Tenant","Vacant"]},"org.reso.metadata.enums.OperatingExpenseIncludes":{"type":"string","title":"OperatingExpenseIncludes","enum":["Accounting","Advertising","Association","CableTv","CapitalImprovements","Depreciation","EquipmentRental","Fuel","FurnitureReplacement","Gardener","Insurance","Legal","Licenses","Maintenance","MaintenanceGrounds","MaintenanceStructure","Manager","MortgageLoans","NewTax","Other","Parking","PestControl","PoolSpa","ProfessionalManagement","Security","SnowRemoval","Staff","Supplies","Trash","Utilities","VacancyAllowance","WaterSewer","WorkmansCompensation"]},"org.reso.metadata.enums.OtherEquipment":{"type":"string","title":"OtherEquipment","enum":["AirPurifier","CallListingAgent","Compressor","DcWellPump","Dehumidifier","FarmEquipment","FuelTanks","Generator","HomeTheater","Intercom","IrrigationEquipment","ListAvailable","LivestockEquipment","Negotiable","None","OrchardEquipment","Other","RotaryAntenna","SatelliteDish","TvAntenna","VariesByUnit"]},"org.reso.metadata.enums.OtherStructures":{"type":"string","title":"OtherStructures","enum":["AirplaneHangar","Arena","Barns","BoatHouse","Cabana","Caves","Corrals","CoveredArena","Garages","Gazebo","GrainStorage","Greenhouse","GuestHouse","KennelDogRun","MobileHome","None","Other","Outbuilding","OutdoorKitchen","PackingShed","Pergola","PoolHouse","PoultryCoop","Residence","RvBoatStorage","SecondGarage","SecondResidence","SeeRemarks","Sheds","Stables","Storage","TennisCourts","Workshop"]},"org.reso.metadata.enums.OwnerPays":{"type":"string","title":"OwnerPays","enum":["AllUtilities","AssociationFees","CableTv","CommonAreaMaintenance","Electricity","ExteriorMaintenance","Gas","GroundsCare","HotWater","HvacMaintenance","Insurance","JanitorialService","Management","None","Other","OtherTax","ParkingFee","PestControl","PoolMaintenance","Repairs","RoofMaintenance","Security","SeeRemarks","Sewer","SnowRemoval","Taxes","Telephone","TrashCollection","Water"]},"org.reso.metadata.enums.OwnershipType":{"type":"string","title":"OwnershipType","enum":["Corporation","Llc","Partnership","SoleProprietor"]},"org.reso.metadata.enums.ParkingFeatures":{"type":"string","title":"ParkingFeatures","enum":["AdditionalParking","Aggregate","AlleyAccess","Asphalt","Assigned","Attached","AttachedCarport","Basement","Boat","Carport","CircularDriveway","Common","CommunityStructure","Concrete","ConvertedGarage","Covered","Deck","Deeded","Detached","DetachedCarport","DirectAccess","DriveThrough","Driveway","ElectricGate","ElectricVehicleChargingStations","Enclosed","Garage","GarageDoorOpener","GarageFacesFront","GarageFacesRear","GarageFacesSide","Gated","GolfCartGarage","Gravel","Guest","HeatedGarage","InsideEntrance","KitchenLevel","Leased","Lighted","NoGarage","None","OffSite","OffStreet","OnSite","OnStreet","Open","Other","Outside","Oversized","ParkingLot","ParkingPad","Paved","PaverBlock","PermitRequired","Private","RvAccessParking","RvCarport","RvGarage","RvGated","Secured","SeeRemarks","SharedDriveway","SideBySide","Storage","Tandem","Unassigned","Underground","Unpaved","Valet","VariesByUnit","WorkshopInGarage"]},"org.reso.metadata.enums.PatioAndPorchFeatures":{"type":"string","title":"PatioAndPorchFeatures","enum":["Awnings","Covered","Deck","Enclosed","FrontPorch","GlassEnclosed","None","Other","Patio","Porch","RearPorch","Screened","SeeRemarks","SidePorch","Terrace","WrapAround"]},"org.reso.metadata.enums.PetsAllowed":{"type":"string","title":"PetsAllowed","enum":["BreedRestrictions","Call","CatsOk","DogsOk","No","NumberLimit","SizeLimit","Yes"]},"org.reso.metadata.enums.PoolFeatures":{"type":"string","title":"PoolFeatures","enum":["AboveGround","Association","BlackBottom","Cabana","Community","DivingBoard","ElectricHeat","EnergyStarQualifiedPoolPump","Fenced","Fiberglass","Filtered","GasHeat","Gunite","Heated","Indoor","Infinity","InGround","Lap","Liner","None","Other","OutdoorPool","PoolCover","PoolSpaCombo","PoolSweep","Private","SaltWater","ScreenEnclosure","SeeRemarks","SolarCover","SolarHeat","Sport","Tile","Vinyl","Waterfall"]},"org.reso.metadata.enums.Possession":{"type":"string","title":"Possession","enum":["CloseOfEscrow","ClosePlus1Day","ClosePlus2Days","ClosePlus30Days","ClosePlus3Days","ClosePlus3To5Days","Negotiable","Other","RentalAgreement","SeeRemarks","SellerRentBack","SubjectToTenantRights"]},"org.reso.metadata.enums.PossibleUse":{"type":"string","title":"PossibleUse","enum":["Agricultural","Cattle","Commercial","Dairy","Development","Farm","Fishery","Grazing","HighwayTouristService","Horses","Hunting","Industrial","Investment","Livestock","ManufacturedHome","MiniStorage","MultiFamily","Orchard","Other","Pasture","PlaceOfWorship","Poultry","Ranch","Recreational","Residential","Retail","SeeRemarks","SingleFamily","Subdevelopment","Timber","Unimproved","Vacant","Warehouse"]},"org.reso.metadata.enums.PostalCity":{"type":"string","title":"PostalCity","enum":["SamplePostalCityEnumValue"]},"org.reso.metadata.enums.PowerProductionType":{"type":"string","title":"PowerProductionType","enum":["Photovoltaics","Wind"]},"org.reso.metadata.enums.PropertyCondition":{"type":"string","title":"PropertyCondition","enum":["Fixer","NewConstruction","UnderConstruction","UpdatedRemodeled"]},"org.reso.metadata.enums.PropertySubType":{"type":"string","title":"PropertySubType","enum":["Agriculture","Apartment","BoatSlip","Business","Cabin","Condominium","DeededParking","Duplex","Farm","HotelMotel","Industrial","ManufacturedHome","ManufacturedOnLand","MixedUse","MobileHome","MultiFamily","Office","OwnYourOwn","Quadruplex","Ranch","Retail","SingleFamilyResidence","StockCooperative","Timeshare","Townhouse","Triplex","UnimprovedLand","Warehouse"]},"org.reso.metadata.enums.PropertyType":{"type":"string","title":"PropertyType","enum":["BusinessOpportunity","CommercialLease","CommercialSale","Farm","Land","ManufacturedInPark","Residential","ResidentialIncome","ResidentialLease"]},"org.reso.metadata.enums.RentIncludes":{"type":"string","title":"RentIncludes","enum":["AllUtilities","CableTv","Electricity","Gardener","Gas","Internet","Management","None","Other","SeeRemarks","Sewer","TrashCollection","Water"]},"org.reso.metadata.enums.RoadFrontageType":{"type":"string","title":"RoadFrontageType","enum":["Alley","CityStreet","CountyRoad","Easement","Freeway","Highway","Interstate","None","Other","PrivateRoad","SeeRemarks","StateRoad","Unimproved"]},"org.reso.metadata.enums.RoadResponsibility":{"type":"string","title":"RoadResponsibility","enum":["PrivateMaintainedRoad","PublicMaintainedRoad","RoadMaintenanceAgreement"]},"org.reso.metadata.enums.RoadSurfaceType":{"type":"string","title":"RoadSurfaceType","enum":["AlleyPaved","Asphalt","ChipAndSeal","Concrete","Dirt","Gravel","None","Other","Paved","SeeRemarks","Unimproved"]},"org.reso.metadata.enums.Roof":{"type":"string","title":"Roof","enum":["Aluminum","AsbestosShingle","Asphalt","Bahama","Barrel","Bituthene","BuiltUp","Composition","Concrete","Copper","Elastomeric","Fiberglass","Flat","FlatTile","Foam","GreenRoof","Mansard","Membrane","Metal","Mixed","None","Other","RolledHotMop","Rubber","SeeRemarks","Shake","Shingle","Slate","SpanishTile","Stone","Synthetic","TarGravel","Tile","Wood"]},"org.reso.metadata.enums.RoomType":{"type":"string","title":"RoomType","enum":["Basement","Bathroom","Bathroom1","Bathroom2","Bathroom3","Bathroom4","Bathroom5","Bedroom","Bedroom1","Bedroom2","Bedroom3","Bedroom4","Bedroom5","BonusRoom","Den","DiningRoom","ExerciseRoom","FamilyRoom","GameRoom","GreatRoom","Gym","Kitchen","Laundry","Library","LivingRoom","Loft","MasterBathroom","MasterBedroom","MediaRoom","Office","Sauna","UtilityRoom","Workshop"]},"org.reso.metadata.enums.SecurityFeatures":{"type":"string","title":"SecurityFeatures","enum":["BuildingSecurity","CarbonMonoxideDetectors","ClosedCircuitCameras","FireAlarm","FireEscape","FireSprinklerSystem","Firewalls","GatedCommunity","GatedWithGuard","KeyCardEntry","Other","PanicAlarm","Prewired","SecuredGarageParking","SecurityFence","SecurityGate","SecurityGuard","SecurityLights","SecurityService","SecuritySystem","SecuritySystemLeased","SecuritySystemOwned","SeeRemarks","SmokeDetectors","TwentyFourHourSecurity","VariesByUnit","WindowBars","WindowBarsWithQuickRelease"]},"org.reso.metadata.enums.Sewer":{"type":"string","title":"Sewer","enum":["AerobicSeptic","Cesspool","EngineeredSeptic","HoldingTank","MoundSeptic","None","Other","PercTestOnFile","PercTestRequired","PrivateSewer","PublicSewer","SepticNeeded","SepticTank","SharedSeptic","Unknown"]},"org.reso.metadata.enums.ShowingContactType":{"type":"string","title":"ShowingContactType","enum":["Agent","Occupant","Owner","PropertyManager"]},"org.reso.metadata.enums.ShowingDays":{"type":"string","title":"ShowingDays","enum":["SampleShowingDaysEnumValue"]},"org.reso.metadata.enums.ShowingRequirements":{"type":"string","title":"ShowingRequirements","enum":["AppointmentOnly","CallListingAgent","CallListingOffice","CallManager","CallOwner","CallTenant","CombinationLockBox","DaySleeper","DoNotShow","EmailListingAgent","KeyInOffice","Lockbox","NoLockbox","NoSign","Occupied","PetsOnPremises","RestrictedHours","SecuritySystem","SeeRemarks","ShowingService","TextListingAgent","ToBeBuilt","TwentyFourHourNotice","UnderConstruction"]},"org.reso.metadata.enums.Skirt":{"type":"string","title":"Skirt","enum":["Aluminum","Block","Brick","Combination","Concrete","Fiberglass","Frame","Glass","Masonite","Metal","None","Other","Steel","Stone","Stucco","Synthetic","Unknown","Vinyl","Wood"]},"org.reso.metadata.enums.SpaFeatures":{"type":"string","title":"SpaFeatures","enum":["AboveGround","Bath","Community","Fiberglass","Gunite","Heated","InGround","None","Private","SeeRemarks"]},"org.reso.metadata.enums.SpecialLicenses":{"type":"string","title":"SpecialLicenses","enum":["BeerWine","ClassH","Entertainment","Franchise","Gambling","Liquor","Liquor5YearsOrLess","Liquor5YearsOrMore","LiquorOffSale","LiquorOnSale","None","Other","Professional"]},"org.reso.metadata.enums.SpecialListingConditions":{"type":"string","title":"SpecialListingConditions","enum":["Auction","BankruptcyProperty","HudOwned","InForeclosure","NoticeOfDefault","ProbateListing","RealEstateOwned","ShortSale","Standard","ThirdPartyApproval"]},"org.reso.metadata.enums.StandardStatus":{"type":"string","title":"StandardStatus","enum":["Active","ActiveUnderContract","Canceled","Closed","ComingSoon","Delete","Expired","Hold","Incomplete","Pending","Withdrawn"]},"org.reso.metadata.enums.StateOrProvince":{"type":"string","title":"StateOrProvince","enum":["AB","AK","AL","AR","AZ","BC","CA","CO","CT","DC","DE","FL","GA","HI","IA","ID","IL","IN","KS","KY","LA","MA","MB","MD","ME","MI","MN","MO","MS","MT","NB","NC","ND","NE","NF","NH","NJ","NM","NS","NT","NU","NV","NY","OH","OK","ON","OR","PA","PE","QC","RI","SC","SD","SK","TN","TX","UT","VA","VI","VT","WA","WI","WV","WY","YT"]},"org.reso.metadata.enums.StreetDirection":{"type":"string","title":"StreetDirection","enum":["E","N","NE","NW","S","SE","SW","W"]},"org.reso.metadata.enums.StreetSuffix":{"type":"string","title":"StreetSuffix","enum":["SampleStreetSuffixEnumValue"]},"org.reso.metadata.enums.StructureType":{"type":"string","title":"StructureType","enum":["Cabin","Dock","Duplex","Flex","HotelMotel","House","Industrial","ManufacturedHouse","MixedUse","MultiFamily","None","Office","Quadruplex","Retail","Townhouse","Triplex","Warehouse"]},"org.reso.metadata.enums.SyndicateTo":{"type":"string","title":"SyndicateTo","enum":["HomesDotCom","Listhub","RealtorDotCom","ZillowTrulia"]},"org.reso.metadata.enums.TaxStatusCurrent":{"type":"string","title":"TaxStatusCurrent","enum":["Personal","PersonalAndReal","Real"]},"org.reso.metadata.enums.TenantPays":{"type":"string","title":"TenantPays","enum":["AllUtilities","AssociationFees","CableTv","CommonAreaMaintenance","Electricity","ExteriorMaintenance","Gas","GroundsCare","HotWater","HvacMaintenance","Insurance","JanitorialService","Management","None","Other","OtherTax","ParkingFee","PestControl","PoolMaintenance","Repairs","Roof","Security","SeeRemarks","Sewer","SnowRemoval","Taxes","Telephone","TrashCollection","Water"]},"org.reso.metadata.enums.UnitTypeType":{"type":"string","title":"UnitTypeType","enum":["Apartments","Efficiency","FourBedroomOrMore","Loft","ManagersUnit","OneBedroom","Penthouse","Studio","ThreeBedroom","TwoBedroom"]},"org.reso.metadata.enums.UnitsFurnished":{"type":"string","title":"UnitsFurnished","enum":["AllUnits","None","VariesByUnit"]},"org.reso.metadata.enums.Utilities":{"type":"string","title":"Utilities","enum":["CableAvailable","CableConnected","CableNotAvailable","ElectricityAvailable","ElectricityConnected","ElectricityNotAvailable","NaturalGasAvailable","NaturalGasConnected","NaturalGasNotAvailable","None","Other","PhoneAvailable","PhoneConnected","PhoneNotAvailable","Propane","SeeRemarks","SewerAvailable","SewerConnected","SewerNotAvailable","UndergroundUtilities","WaterAvailable","WaterConnected","WaterNotAvailable"]},"org.reso.metadata.enums.Vegetation":{"type":"string","title":"Vegetation","enum":["Brush","Cleared","Crops","Grassed","HeavilyWooded","NaturalState","Other","PartiallyWooded","SeeRemarks","Wooded"]},"org.reso.metadata.enums.View":{"type":"string","title":"View","enum":["Bay","Beach","Bridges","Canal","Canyon","City","CityLights","CreekStream","Desert","Downtown","Forest","Garden","GolfCourse","Hills","Lake","Marina","Meadow","Mountains","Neighborhood","None","Ocean","Orchard","Other","Panoramic","ParkGreenbelt","Pasture","Pond","Pool","Ridge","River","Rural","SeeRemarks","Skyline","Territorial","TreesWoods","Valley","Vineyard","Water"]},"org.reso.metadata.enums.WaterSource":{"type":"string","title":"WaterSource","enum":["Cistern","None","Other","Private","Public","SeeRemarks","SharedWell","Spring","Well"]},"org.reso.metadata.enums.WaterfrontFeatures":{"type":"string","title":"WaterfrontFeatures","enum":["BeachAccess","BeachFront","CanalAccess","CanalFront","Creek","Lagoon","Lake","LakeFront","LakePrivileges","NavigableWater","OceanAccess","OceanFront","Pond","RiverAccess","RiverFront","Seawall","Stream","Waterfront"]},"org.reso.metadata.enums.WindowFeatures":{"type":"string","title":"WindowFeatures","enum":["AluminumFrames","BayWindows","Blinds","DisplayWindows","DoublePaneWindows","Drapes","EnergyStarQualifiedWindows","GardenWindows","InsulatedWindows","LowEmissivityWindows","PlantationShutters","Screens","Shutters","Skylights","SolarScreens","StormWindows","TintedWindows","TriplePaneWindows","WindowCoverings","WindowTreatments","WoodFrames"]},"org.reso.metadata.enums.YearBuiltSource":{"type":"string","title":"YearBuiltSource","enum":["Appraiser","Assessor","Builder","Estimated","Other","Owner","PublicRecords","SeeRemarks"]},"org.reso.metadata.enums.MemberDesignation":{"type":"string","title":"MemberDesignation","enum":["AccreditedBuyersRepresentative","AccreditedLandConsultant","AtHomeWithDiversity","CertifiedCommercialInvestmentMember","CertifiedDistressedPropertyExpert","CertifiedInternationalPropertySpecialist","CertifiedPropertyManager","CertifiedRealEstateBrokerageManager","CertifiedRealEstateTeamSpecialist","CertifiedResidentialSpecialist","CounselorOfRealEstate","ePRO","GeneralAccreditedAppraiser","GraduateRealtorInstitute","MilitaryRelocationProfessional","NARsGreenDesignation","PerformanceManagementNetwork","PricingStrategyAdvisor","RealEstateNegotiationExpert","RealtorAssociationCertifiedExecutive","ResidentialAccreditedAppraiser","ResortAndSecondHomePropertySpecialist","SellerRepresentativeSpecialist","SeniorsRealEstateSpecialist","ShortSalesAndForeclosureResource","SocietyOfIndustrialAndOfficeRealtors","TransnationalReferralCertification"]},"org.reso.metadata.enums.Languages":{"type":"string","title":"Languages","enum":["Abkhazian","Afar","Afrikaans","Albanian","AmericanSignLanguage","Amharic","Arabic","Aramaic","Armenian","Assamese","AssyrianNeoAramaic","Avestan","Aymara","Azerbaijani","Bambara","Bashkir","Basque","Bengali","Bihari","Bikol","Bislama","Bosnian","BrazilianPortuguese","Bulgarian","Burmese","Byelorussian","Cambodian","Cantonese","CapeVerdeanCreole","Catalan","Cebuano","Chamorro","Chechen","Chinese","Chuukese","Chuvash","Cornish","Corsican","Croatian","Czech","Danish","Dari","Dioula","Dutch","Dzongkha","English","Esperanto","Estonian","Faroese","Farsi","Fiji","Finnish","Flemish","French","Frisian","Galician","Georgian","German","Greek","Greenlandic","Guarani","Gujarati","HaitianCreole","Hausa","Hebrew","Herero","Hiligaynon","Hindi","HiriMotu","Hmong","Hungarian","Iban","Icelandic","Igbo","Ilocano","Indonesian","Interlingua","Inuktitut","Inupiak","Irish","Italian","Japanese","Javanese","Kannada","Kashmiri","Kazakh","KIche","Kichwa","Kikuyu","Kinyarwanda","Kirghiz","Kirundi","Komi","Korean","Kpelle","Kru","Kurdish","Lao","Latin","Latvian","Lingala","Lithuanian","Luxemburgish","Macedonian","Malagasy","Malay","Malayalam","Maltese","Mandarin","Maninka","ManxGaelic","Maori","Marathi","Marshallese","Moldovan","Mongolian","Nauru","Navajo","Ndebele","Ndonga","Nepali","Norwegian","Nyanja","Occitan","Oriya","Oromo","Ossetian","Pali","Pangasinan","Papiamento","Pashto","Polish","Portuguese","Punjabi","Quechua","Romanian","Romany","Russian","Sami","Samoan","Sangho","Sanskrit","Sardinian","ScotsGaelic","Serbian","SerboCroatian","Sesotho","Setswana","Shan","Shona","Sindhi","Sinhalese","Siswati","Slovak","Slovenian","Somali","SouthernNdebele","Spanish","Sundanese","Swahili","Swedish","Syriac","Tagalog","Tahitian","Tajik","Tamil","Tatar","Telugu","Thai","Tibetan","Tigrinya","Tongan","Tsonga","Turkish","Turkmen","Twi","Uigur","Ukrainian","Urdu","Uzbek","Vietnamese","Volapuk","Welsh","Wolof","Xhosa","Yiddish","Yoruba","Zhuang","Zulu"]},"org.reso.metadata.enums.MemberMlsSecurityClass":{"type":"string","title":"MemberMlsSecurityClass","enum":["SampleMemberMlsSecurityClassEnumValue"]},"org.reso.metadata.enums.MemberOtherPhoneType":{"type":"string","title":"MemberOtherPhoneType","enum":["Direct","Fax","First","Home","Mobile","Modem","Office","Pager","Preferred","Second","Sms","Third","TollFree","Voicemail"]},"org.reso.metadata.enums.MemberStatus":{"type":"string","title":"MemberStatus","enum":["Active","Inactive"]},"org.reso.metadata.enums.MemberType":{"type":"string","title":"MemberType","enum":["Assistant","AssociationStaff","DesignatedRealtorAppraiser","DesignatedRealtorParticipant","LicensedAssistant","MlsOnlyAppraiser","MlsOnlyBroker","MlsOnlySalesperson","MlsStaff","NonMemberVendor","OfficeManager","RealtorAppraiser","RealtorSalesperson","UnlicensedAssistant"]},"org.reso.metadata.enums.SocialMediaType":{"type":"string","title":"SocialMediaType","enum":["Blog","Digg","Facebook","FacebookMessenger","Googleplus","iMessage","Instagram","Linkedin","Pinterest","Reddit","Slack","Snapchat","Stumbleupon","Tumblr","Twitter","Website","Youtube"]},"org.reso.metadata.enums.OfficeBranchType":{"type":"string","title":"OfficeBranchType","enum":["Branch","Main","StandAlone"]},"org.reso.metadata.enums.OfficeStatus":{"type":"string","title":"OfficeStatus","enum":["Active","Inactive"]},"org.reso.metadata.enums.OfficeType":{"type":"string","title":"OfficeType","enum":["Affiliate","Appraiser","Association","Mls","MlsOnlyBranch","MlsOnlyFirm","MlsOnlyOffice","NonMemberVendor","RealtorBranchOffice","RealtorFirm","RealtorOffice"]},"org.reso.metadata.enums.SyndicateAgentOption":{"type":"string","title":"SyndicateAgentOption","enum":["SampleSyndicateAgentOptionEnumValue"]},"org.reso.metadata.enums.ContactStatus":{"type":"string","title":"ContactStatus","enum":["Active","Deleted","Inactive","OnVacation"]},"org.reso.metadata.enums.ContactType":{"type":"string","title":"ContactType","enum":["Business","Family","Friend","Lead","Prospect","ReadyToBuy"]},"org.reso.metadata.enums.OtherPhoneType":{"type":"string","title":"OtherPhoneType","enum":["Direct","Fax","First","Home","Mobile","Modem","Office","Pager","Preferred","Second","Sms","Third","TollFree","Voicemail"]},"org.reso.metadata.enums.PreferredAddress":{"type":"string","title":"PreferredAddress","enum":["Home","Other","Work"]},"org.reso.metadata.enums.PreferredPhone":{"type":"string","title":"PreferredPhone","enum":["Direct","Home","Mobile","Office","Other","TollFree","Voicemail"]},"org.reso.metadata.enums.ClassName":{"type":"string","title":"ClassName","enum":["BusinessOpportunity","CommercialLease","CommercialSale","Contacts","CrossProperty","Farm","HistoryTransactional","Land","ManufacturedInPark","Media","Member","Office","OpenHouse","Residential","ResidentialIncome","ResidentialLease","SavedSearch"]},"org.reso.metadata.enums.ImageOf":{"type":"string","title":"ImageOf","enum":["AerialView","Atrium","Attic","BackOfStructure","Balcony","Bar","Barn","Basement","Bathroom","Bedroom","BonusRoom","BreakfastArea","Closet","Community","Courtyard","Deck","Den","DiningArea","DiningRoom","Dock","Entry","ExerciseRoom","FamilyRoom","Fence","Fireplace","FloorPlan","FrontOfStructure","GameRoom","Garage","Garden","GolfCourse","GreatRoom","GuestQuarters","Gym","HobbyRoom","Inlaw","Kitchen","Lake","Laundry","Library","LivingRoom","LoadingDock","Lobby","Loft","Lot","MasterBathroom","MasterBedroom","MediaRoom","MudRoom","Nursery","Office","Other","OutBuildings","Pantry","Parking","Patio","Pier","PlatMap","Pond","Pool","Reception","RecreationRoom","Sauna","Showroom","SideOfStructure","SittingRoom","Spa","Stable","Storage","Studio","Study","SunRoom","View","Waterfront","WineCellar","Workshop","Yard"]},"org.reso.metadata.enums.ImageSizeDescription":{"type":"string","title":"ImageSizeDescription","enum":["SampleImageSizeDescriptionEnumValue"]},"org.reso.metadata.enums.MediaCategory":{"type":"string","title":"MediaCategory","enum":["AgentPhoto","BrandedVirtualTour","Document","FloorPlan","OfficeLogo","OfficePhoto","Photo","UnbrandedVirtualTour","Video"]},"org.reso.metadata.enums.MediaStatus":{"type":"string","title":"MediaStatus","enum":["SampleMediaStatusEnumValue"]},"org.reso.metadata.enums.MediaType":{"type":"string","title":"MediaType","enum":["Doc","Docx","Gif","Jpeg","Mov","Mp4","Mpeg","Pdf","Png","Quicktime","Rtf","Tiff","Txt","Wmv","Xls","Xlsx"]},"org.reso.metadata.enums.Permission":{"type":"string","title":"Permission","enum":["AgentOnly","FirmOnly","Idx","OfficeOnly","Private","Public","Vow"]},"org.reso.metadata.enums.ResourceName":{"type":"string","title":"ResourceName","enum":["Contacts","Member","Office","Property"]},"org.reso.metadata.enums.ContactListingPreference":{"type":"string","title":"ContactListingPreference","enum":["Discard","Favorite","Possibility"]},"org.reso.metadata.enums.ActorType":{"type":"string","title":"ActorType","enum":["Agent","Bot","Client","Consumer","Unknown"]},"org.reso.metadata.enums.DeviceType":{"type":"string","title":"DeviceType","enum":["Desktop","Mobile","Tablet","Unknown","Wearable"]},"org.reso.metadata.enums.EventTarget":{"type":"string","title":"EventTarget","enum":["Agent","Broker","Digg","Email","Facebook","FacebookMessenger","Googleplus","Imessage","Instagram","Linkedin","Pinterest","Reddit","Slack","Sms","Snapchat","Stumbleupon","Tumblr","Twitter","Youtube"]},"org.reso.metadata.enums.EventType":{"type":"string","title":"EventType","enum":["ClickedOnEmailAddress","ClickedOnPhoneNumber","ClickToPrimaryHostedSite","Comments","DetailedView","Discard","DrivingDirections","ExitDetailedView","Favorited","Maybe","NonDetailedView","ObjectModified","PhotoGallery","Printed","PropertyVideos","Search","Share","SubmissionOfLeadForm","VirtualTour"]},"org.reso.metadata.enums.ObjectIdType":{"type":"string","title":"ObjectIdType","enum":["Listingid","Listingkey","Listingkeynumeric","Openhouseid","Openhousekey","Openhousekeynumeric","Parcelnumber","Puid","Savedsearchkey","Savedsearchkeynumeric","Unique"]},"org.reso.metadata.enums.ObjectType":{"type":"string","title":"ObjectType","enum":["Document","Listing","OpenHouse","Photo","Property","SavedSearch","VirtualTour"]},"org.reso.metadata.enums.SavedSearchType":{"type":"string","title":"SavedSearchType","enum":["SampleSavedSearchTypeEnumValue"]},"org.reso.metadata.enums.SearchQueryExceptions":{"type":"string","title":"SearchQueryExceptions","enum":["SampleSearchQueryExceptionsEnumValue"]},"org.reso.metadata.enums.SearchQueryType":{"type":"string","title":"SearchQueryType","enum":["DMQL2","OdataFilter"]},"org.reso.metadata.enums.Attended":{"type":"string","title":"Attended","enum":["Agent","Seller","Unattended"]},"org.reso.metadata.enums.OpenHouseStatus":{"type":"string","title":"OpenHouseStatus","enum":["Active","Canceled","Ended"]},"org.reso.metadata.enums.OpenHouseType":{"type":"string","title":"OpenHouseType","enum":["Broker","Office","Public"]},"org.reso.metadata.enums.DailySchedule":{"type":"string","title":"DailySchedule","enum":["FridayAM","FridayPM","MondayAM","MondayPM","None","SaturdayAM","SaturdayPM","SundayAM","SundayPM","ThursdayAM","ThursdayPM","TuesdayAM","TuesdayPM","WednesdayAM","WednesdayPM"]},"org.reso.metadata.enums.ReasonActiveOrDisabled":{"type":"string","title":"ReasonActiveOrDisabled","enum":["AgentDisabled","ClientDisabled","ConciergeNotification","FinalIgnoredWarning","Ignored","InitialIgnoredWarning","Invalid","NoListingsFound","NoListingsFoundWarning","NoOneToSendTo","OverLimit","ReActivated","Revised","SearchFailing","WelcomeEmailIgnored","WelcomeEmailIgnoredWarning"]},"org.reso.metadata.enums.ScheduleType":{"type":"string","title":"ScheduleType","enum":["ASAP","Daily","Monthly"]},"org.reso.metadata.enums.QueueTransactionType":{"type":"string","title":"QueueTransactionType","enum":["Add","Change","Delete"]},"org.reso.metadata.enums.RuleFormat":{"type":"string","title":"RuleFormat","enum":["Javascript","OdataFilter","REBR","RetsValidation"]},"org.reso.metadata.enums.RuleType":{"type":"string","title":"RuleType","enum":["SampleRuleTypeEnumValue"]},"org.reso.metadata.enums.TeamStatus":{"type":"string","title":"TeamStatus","enum":["Active","Inactive"]},"org.reso.metadata.enums.TeamImpersonationLevel":{"type":"string","title":"TeamImpersonationLevel","enum":["SampleTeamImpersonationLevelEnumValue"]},"org.reso.metadata.enums.TeamMemberType":{"type":"string","title":"TeamMemberType","enum":["AdministrationAssistant","BuyerAgent","LeadManager","ListingAgent","MarketingAssistant","OperationsManager","TeamLead","TeamMember","TransactionCoordinator"]},"org.reso.metadata.enums.OrganizationType":{"type":"string","title":"OrganizationType","enum":["SampleOrganizationTypeEnumValue"]},"org.reso.metadata.enums.NotedBy":{"type":"string","title":"NotedBy","enum":["Agent","Contact"]},"org.reso.metadata.enums.GreenVerificationSource":{"type":"string","title":"GreenVerificationSource","enum":["Administrator","Assessor","Builder","ContractorOrInstaller","Other","Owner","ProgramSponsor","ProgramVerifier","PublicRecords","SeeRemarks"]},"org.reso.metadata.enums.GreenVerificationStatus":{"type":"string","title":"GreenVerificationStatus","enum":["Complete","InProcess"]},"org.reso.metadata.enums.PowerProductionAnnualStatus":{"type":"string","title":"PowerProductionAnnualStatus","enum":["Actual","Estimated","PartiallyEstimated"]},"org.reso.metadata.enums.UnitTypeFurnished":{"type":"string","title":"UnitTypeFurnished","enum":["SampleUnitTypeFurnishedEnumValue"]},"count":{"anyOf":[{"type":"number"},{"type":"string"}],"description":"The number of entities in the collection. Available when using the [$count](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptioncount) query option."},"error":{"type":"object","required":["error"],"properties":{"error":{"type":"object","required":["code","message"],"properties":{"code":{"type":"string"},"message":{"type":"string"},"target":{"type":"string"},"details":{"type":"array","items":{"type":"object","required":["code","message"],"properties":{"code":{"type":"string"},"message":{"type":"string"},"target":{"type":"string"}}}},"innererror":{"type":"object","description":"The structure of this object is service-specific"}}}}}},"parameters":{"top":{"name":"$top","in":"query","description":"Show only the first n items, see [Paging - Top](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptiontop)","schema":{"type":"integer","minimum":0},"example":50},"skip":{"name":"$skip","in":"query","description":"Skip the first n items, see [Paging - Skip](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionskip)","schema":{"type":"integer","minimum":0}},"count":{"name":"$count","in":"query","description":"Include count of items, see [Count](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptioncount)","schema":{"type":"boolean"}},"search":{"name":"$search","in":"query","description":"Search items by search phrases, see [Searching](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html#sec_SystemQueryOptionsearch)","schema":{"type":"string"}}},"responses":{"error":{"description":"Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/error"}}}}}}}
\ No newline at end of file
diff --git a/src/main/resources/RESODataDictionary-1.7.metadata-report.json b/src/main/resources/RESODataDictionary-1.7.metadata-report.json
new file mode 100644
index 00000000..e6af2482
--- /dev/null
+++ b/src/main/resources/RESODataDictionary-1.7.metadata-report.json
@@ -0,0 +1,21199 @@
+{
+ "description": "RESO Data Dictionary Metadata Report",
+ "version": "1.7",
+ "generatedOn": "20201110151125443",
+ "fields": [
+ {
+ "resourceName": "Property",
+ "fieldName": "AboveGradeFinishedArea",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AboveGradeFinishedAreaSource",
+ "type": "org.reso.metadata.enums.AreaSource"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AboveGradeFinishedAreaUnits",
+ "type": "org.reso.metadata.enums.AreaUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AccessCode",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AccessibilityFeatures",
+ "type": "org.reso.metadata.enums.AccessibilityFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AdditionalParcelsDescription",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AdditionalParcelsYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AnchorsCoTenants",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Appliances",
+ "type": "org.reso.metadata.enums.Appliances"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ArchitecturalStyle",
+ "type": "org.reso.metadata.enums.ArchitecturalStyle"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AssociationAmenities",
+ "type": "org.reso.metadata.enums.AssociationAmenities"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AssociationFee",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AssociationFee2",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AssociationFee2Frequency",
+ "type": "org.reso.metadata.enums.FeeFrequency"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AssociationFeeFrequency",
+ "type": "org.reso.metadata.enums.FeeFrequency"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AssociationFeeIncludes",
+ "type": "org.reso.metadata.enums.AssociationFeeIncludes"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AssociationName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AssociationName2",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AssociationPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AssociationPhone2",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AssociationYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AttachedGarageYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "AvailabilityDate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Basement",
+ "type": "org.reso.metadata.enums.Basement"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BasementYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BathroomsFull",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BathroomsHalf",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BathroomsOneQuarter",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BathroomsPartial",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BathroomsThreeQuarter",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BathroomsTotalInteger",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BedroomsPossible",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BedroomsTotal",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BelowGradeFinishedArea",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BelowGradeFinishedAreaSource",
+ "type": "org.reso.metadata.enums.AreaSource"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BelowGradeFinishedAreaUnits",
+ "type": "org.reso.metadata.enums.AreaUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BodyType",
+ "type": "org.reso.metadata.enums.BodyType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuilderModel",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuilderName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuildingAreaSource",
+ "type": "org.reso.metadata.enums.AreaSource"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuildingAreaTotal",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuildingAreaUnits",
+ "type": "org.reso.metadata.enums.AreaUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuildingFeatures",
+ "type": "org.reso.metadata.enums.BuildingFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuildingName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BusinessName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BusinessType",
+ "type": "org.reso.metadata.enums.BusinessType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgencyCompensation",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgencyCompensationType",
+ "type": "org.reso.metadata.enums.CompensationType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentAOR",
+ "type": "org.reso.metadata.enums.AOR"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentDesignation",
+ "type": "org.reso.metadata.enums.BuyerAgentDesignation"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentDirectPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentFirstName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentFullName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentHomePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentLastName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentMiddleName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentMobilePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentNamePrefix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentNameSuffix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentOfficePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentOfficePhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentPager",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentPreferredPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentPreferredPhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentStateLicense",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentTollFreePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentURL",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentVoiceMail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerAgentVoiceMailExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerFinancing",
+ "type": "org.reso.metadata.enums.BuyerFinancing"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerOfficeAOR",
+ "type": "org.reso.metadata.enums.AOR"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerOfficeEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerOfficeFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerOfficeKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerOfficeKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerOfficeMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerOfficeName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerOfficePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerOfficePhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerOfficeURL",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerTeamKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerTeamKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "BuyerTeamName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CableTvExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CancellationDate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CapRate",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CarportSpaces",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CarportYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CarrierRoute",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "City",
+ "type": "org.reso.metadata.enums.City"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CityRegion",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CloseDate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ClosePrice",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentAOR",
+ "type": "org.reso.metadata.enums.AOR"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentDesignation",
+ "type": "org.reso.metadata.enums.CoBuyerAgentDesignation"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentDirectPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentFirstName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentFullName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentHomePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentLastName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentMiddleName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentMobilePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentNamePrefix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentNameSuffix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentOfficePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentOfficePhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentPager",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentPreferredPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentPreferredPhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentStateLicense",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentTollFreePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentURL",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentVoiceMail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerAgentVoiceMailExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerOfficeAOR",
+ "type": "org.reso.metadata.enums.AOR"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerOfficeEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerOfficeFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerOfficeKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerOfficeKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerOfficeMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerOfficeName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerOfficePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerOfficePhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoBuyerOfficeURL",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentAOR",
+ "type": "org.reso.metadata.enums.AOR"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentDesignation",
+ "type": "org.reso.metadata.enums.CoListAgentDesignation"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentDirectPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentFirstName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentFullName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentHomePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentLastName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentMiddleName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentMobilePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentNamePrefix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentNameSuffix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentOfficePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentOfficePhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentPager",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentPreferredPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentPreferredPhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentStateLicense",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentTollFreePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentURL",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentVoiceMail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListAgentVoiceMailExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListOfficeAOR",
+ "type": "org.reso.metadata.enums.AOR"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListOfficeEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListOfficeFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListOfficeKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListOfficeKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListOfficeMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListOfficeName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListOfficePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListOfficePhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoListOfficeURL",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CommonInterest",
+ "type": "org.reso.metadata.enums.CommonInterest"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CommonWalls",
+ "type": "org.reso.metadata.enums.CommonWalls"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CommunityFeatures",
+ "type": "org.reso.metadata.enums.CommunityFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Concessions",
+ "type": "org.reso.metadata.enums.Concessions"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ConcessionsAmount",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ConcessionsComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ConstructionMaterials",
+ "type": "org.reso.metadata.enums.ConstructionMaterials"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ContinentRegion",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Contingency",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ContingentDate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ContractStatusChangeDate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Cooling",
+ "type": "org.reso.metadata.enums.Cooling"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoolingYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CopyrightNotice",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Country",
+ "type": "org.reso.metadata.enums.Country"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CountryRegion",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CountyOrParish",
+ "type": "org.reso.metadata.enums.CountyOrParish"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CoveredSpaces",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CropsIncludedYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CrossStreet",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CultivatedArea",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CumulativeDaysOnMarket",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CurrentFinancing",
+ "type": "org.reso.metadata.enums.CurrentFinancing"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "CurrentUse",
+ "type": "org.reso.metadata.enums.CurrentUse"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DOH1",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DOH2",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DOH3",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DaysOnMarket",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DevelopmentStatus",
+ "type": "org.reso.metadata.enums.DevelopmentStatus"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DirectionFaces",
+ "type": "org.reso.metadata.enums.DirectionFaces"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Directions",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Disclaimer",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Disclosures",
+ "type": "org.reso.metadata.enums.Disclosures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToBusComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToBusNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToBusUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToElectricComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToElectricNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToElectricUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToFreewayComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToFreewayNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToFreewayUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToGasComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToGasNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToGasUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToPhoneServiceComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToPhoneServiceNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToPhoneServiceUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToPlaceofWorshipComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToPlaceofWorshipNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToPlaceofWorshipUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToSchoolBusComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToSchoolBusNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToSchoolBusUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToSchoolsComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToSchoolsNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToSchoolsUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToSewerComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToSewerNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToSewerUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToShoppingComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToShoppingNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToShoppingUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToStreetComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToStreetNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToStreetUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToWaterComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToWaterNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DistanceToWaterUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DocumentsAvailable",
+ "type": "org.reso.metadata.enums.DocumentsAvailable"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DocumentsChangeTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DocumentsCount",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DoorFeatures",
+ "type": "org.reso.metadata.enums.DoorFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "DualVariableCompensationYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Electric",
+ "type": "org.reso.metadata.enums.Electric"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ElectricExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ElectricOnPropertyYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ElementarySchool",
+ "type": "org.reso.metadata.enums.ElementarySchool"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ElementarySchoolDistrict",
+ "type": "org.reso.metadata.enums.ElementarySchoolDistrict"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Elevation",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ElevationUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "EntryLevel",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "EntryLocation",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Exclusions",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ExistingLeaseType",
+ "type": "org.reso.metadata.enums.ExistingLeaseType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ExpirationDate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ExteriorFeatures",
+ "type": "org.reso.metadata.enums.ExteriorFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "FarmCreditServiceInclYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "FarmLandAreaSource",
+ "type": "org.reso.metadata.enums.AreaSource"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "FarmLandAreaUnits",
+ "type": "org.reso.metadata.enums.AreaUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Fencing",
+ "type": "org.reso.metadata.enums.Fencing"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "FinancialDataSource",
+ "type": "org.reso.metadata.enums.FinancialDataSource"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "FireplaceFeatures",
+ "type": "org.reso.metadata.enums.FireplaceFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "FireplaceYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "FireplacesTotal",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Flooring",
+ "type": "org.reso.metadata.enums.Flooring"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "FoundationArea",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "FoundationDetails",
+ "type": "org.reso.metadata.enums.FoundationDetails"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "FrontageLength",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "FrontageType",
+ "type": "org.reso.metadata.enums.FrontageType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "FuelExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Furnished",
+ "type": "org.reso.metadata.enums.Furnished"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "FurnitureReplacementExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GarageSpaces",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GarageYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GardenerExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GrazingPermitsBlmYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GrazingPermitsForestServiceYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GrazingPermitsPrivateYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GreenBuildingVerificationType",
+ "type": "org.reso.metadata.enums.GreenBuildingVerificationType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GreenEnergyEfficient",
+ "type": "org.reso.metadata.enums.GreenEnergyEfficient"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GreenEnergyGeneration",
+ "type": "org.reso.metadata.enums.GreenEnergyGeneration"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GreenIndoorAirQuality",
+ "type": "org.reso.metadata.enums.GreenIndoorAirQuality"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GreenLocation",
+ "type": "org.reso.metadata.enums.GreenLocation"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GreenSustainability",
+ "type": "org.reso.metadata.enums.GreenSustainability"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GreenWaterConservation",
+ "type": "org.reso.metadata.enums.GreenWaterConservation"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GrossIncome",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "GrossScheduledIncome",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "HabitableResidenceYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Heating",
+ "type": "org.reso.metadata.enums.Heating"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "HeatingYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "HighSchool",
+ "type": "org.reso.metadata.enums.HighSchool"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "HighSchoolDistrict",
+ "type": "org.reso.metadata.enums.HighSchoolDistrict"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "HomeWarrantyYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "HorseAmenities",
+ "type": "org.reso.metadata.enums.HorseAmenities"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "HorseYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "HoursDaysOfOperation",
+ "type": "org.reso.metadata.enums.HoursDaysOfOperation"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "HoursDaysOfOperationDescription",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Inclusions",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "IncomeIncludes",
+ "type": "org.reso.metadata.enums.IncomeIncludes"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "InsuranceExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "InteriorFeatures",
+ "type": "org.reso.metadata.enums.InteriorOrRoomFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "InternetAddressDisplayYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "InternetAutomatedValuationDisplayYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "InternetConsumerCommentYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "InternetEntireListingDisplayYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "IrrigationSource",
+ "type": "org.reso.metadata.enums.IrrigationSource"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "IrrigationWaterRightsAcres",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "IrrigationWaterRightsYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LaborInformation",
+ "type": "org.reso.metadata.enums.LaborInformation"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LandLeaseAmount",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LandLeaseAmountFrequency",
+ "type": "org.reso.metadata.enums.FeeFrequency"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LandLeaseExpirationDate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LandLeaseYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Latitude",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LaundryFeatures",
+ "type": "org.reso.metadata.enums.LaundryFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LeasableArea",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LeasableAreaUnits",
+ "type": "org.reso.metadata.enums.AreaUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LeaseAmount",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LeaseAmountFrequency",
+ "type": "org.reso.metadata.enums.FeeFrequency"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LeaseAssignableYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LeaseConsideredYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LeaseExpiration",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LeaseRenewalCompensation",
+ "type": "org.reso.metadata.enums.LeaseRenewalCompensation"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LeaseRenewalOptionYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LeaseTerm",
+ "type": "org.reso.metadata.enums.LeaseTerm"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Levels",
+ "type": "org.reso.metadata.enums.Levels"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "License1",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "License2",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "License3",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LicensesExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAOR",
+ "type": "org.reso.metadata.enums.AOR"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentAOR",
+ "type": "org.reso.metadata.enums.AOR"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentDesignation",
+ "type": "org.reso.metadata.enums.ListAgentDesignation"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentDirectPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentFirstName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentFullName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentHomePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentLastName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentMiddleName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentMobilePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentNamePrefix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentNameSuffix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentOfficePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentOfficePhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentPager",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentPreferredPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentPreferredPhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentStateLicense",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentTollFreePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentURL",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentVoiceMail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListAgentVoiceMailExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListOfficeAOR",
+ "type": "org.reso.metadata.enums.AOR"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListOfficeEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListOfficeFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListOfficeKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListOfficeKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListOfficeMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListOfficeName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListOfficePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListOfficePhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListOfficeURL",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListPrice",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListPriceLow",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListTeamKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListTeamKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListTeamName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListingAgreement",
+ "type": "org.reso.metadata.enums.ListingAgreement"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListingContractDate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListingId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListingKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListingService",
+ "type": "org.reso.metadata.enums.ListingService"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ListingTerms",
+ "type": "org.reso.metadata.enums.ListingTerms"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LivingArea",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LivingAreaSource",
+ "type": "org.reso.metadata.enums.AreaSource"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LivingAreaUnits",
+ "type": "org.reso.metadata.enums.AreaUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LockBoxLocation",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LockBoxSerialNumber",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LockBoxType",
+ "type": "org.reso.metadata.enums.LockBoxType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Longitude",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LotDimensionsSource",
+ "type": "org.reso.metadata.enums.LotDimensionsSource"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LotFeatures",
+ "type": "org.reso.metadata.enums.LotFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LotSizeAcres",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LotSizeArea",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LotSizeDimensions",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LotSizeSource",
+ "type": "org.reso.metadata.enums.LotSizeSource"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LotSizeSquareFeet",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "LotSizeUnits",
+ "type": "org.reso.metadata.enums.LotSizeUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MLSAreaMajor",
+ "type": "org.reso.metadata.enums.MLSAreaMajor"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MLSAreaMinor",
+ "type": "org.reso.metadata.enums.MLSAreaMinor"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MainLevelBathrooms",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MainLevelBedrooms",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MaintenanceExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MajorChangeTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MajorChangeType",
+ "type": "org.reso.metadata.enums.ChangeType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Make",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ManagerExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MapCoordinate",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MapCoordinateSource",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MapURL",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MiddleOrJuniorSchool",
+ "type": "org.reso.metadata.enums.MiddleOrJuniorSchool"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MiddleOrJuniorSchoolDistrict",
+ "type": "org.reso.metadata.enums.MiddleOrJuniorSchoolDistrict"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MlsStatus",
+ "type": "org.reso.metadata.enums.MlsStatus"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MobileDimUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MobileHomeRemainsYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MobileLength",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "MobileWidth",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Model",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NetOperatingIncome",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NewConstructionYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NewTaxesExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NumberOfBuildings",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NumberOfFullTimeEmployees",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NumberOfLots",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NumberOfPads",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NumberOfPartTimeEmployees",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NumberOfSeparateElectricMeters",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NumberOfSeparateGasMeters",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NumberOfSeparateWaterMeters",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NumberOfUnitsInCommunity",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NumberOfUnitsLeased",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NumberOfUnitsMoMo",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NumberOfUnitsTotal",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "NumberOfUnitsVacant",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OccupantName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OccupantPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OccupantType",
+ "type": "org.reso.metadata.enums.OccupantType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OffMarketDate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OffMarketTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OnMarketDate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OnMarketTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OpenParkingSpaces",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OpenParkingYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OperatingExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OperatingExpenseIncludes",
+ "type": "org.reso.metadata.enums.OperatingExpenseIncludes"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OriginalEntryTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OriginalListPrice",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OriginatingSystemKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OtherEquipment",
+ "type": "org.reso.metadata.enums.OtherEquipment"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OtherExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OtherParking",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OtherStructures",
+ "type": "org.reso.metadata.enums.OtherStructures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OwnerName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OwnerPays",
+ "type": "org.reso.metadata.enums.OwnerPays"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OwnerPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Ownership",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "OwnershipType",
+ "type": "org.reso.metadata.enums.OwnershipType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ParcelNumber",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ParkManagerName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ParkManagerPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ParkName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ParkingFeatures",
+ "type": "org.reso.metadata.enums.ParkingFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ParkingTotal",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PastureArea",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PatioAndPorchFeatures",
+ "type": "org.reso.metadata.enums.PatioAndPorchFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PendingTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PestControlExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PetsAllowed",
+ "type": "org.reso.metadata.enums.PetsAllowed"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PhotosChangeTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PhotosCount",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PoolExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PoolFeatures",
+ "type": "org.reso.metadata.enums.PoolFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PoolPrivateYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Possession",
+ "type": "org.reso.metadata.enums.Possession"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PossibleUse",
+ "type": "org.reso.metadata.enums.PossibleUse"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PostalCity",
+ "type": "org.reso.metadata.enums.PostalCity"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PostalCode",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PostalCodePlus4",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PowerProductionType",
+ "type": "org.reso.metadata.enums.PowerProductionType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PreviousListPrice",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PriceChangeTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PrivateOfficeRemarks",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PrivateRemarks",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ProfessionalManagementExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PropertyAttachedYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PropertyCondition",
+ "type": "org.reso.metadata.enums.PropertyCondition"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PropertySubType",
+ "type": "org.reso.metadata.enums.PropertySubType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PropertyType",
+ "type": "org.reso.metadata.enums.PropertyType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PublicRemarks",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PublicSurveyRange",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PublicSurveySection",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PublicSurveyTownship",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "PurchaseContractDate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "RVParkingDimensions",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "RangeArea",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "RentControlYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "RentIncludes",
+ "type": "org.reso.metadata.enums.RentIncludes"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "RoadFrontageType",
+ "type": "org.reso.metadata.enums.RoadFrontageType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "RoadResponsibility",
+ "type": "org.reso.metadata.enums.RoadResponsibility"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "RoadSurfaceType",
+ "type": "org.reso.metadata.enums.RoadSurfaceType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Roof",
+ "type": "org.reso.metadata.enums.Roof"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "RoomType",
+ "type": "org.reso.metadata.enums.RoomType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "RoomsTotal",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SeatingCapacity",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SecurityFeatures",
+ "type": "org.reso.metadata.enums.SecurityFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SeniorCommunityYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SerialU",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SerialX",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SerialXX",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Sewer",
+ "type": "org.reso.metadata.enums.Sewer"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ShowingAdvanceNotice",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ShowingAttendedYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ShowingContactName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ShowingContactPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ShowingContactPhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ShowingContactType",
+ "type": "org.reso.metadata.enums.ShowingContactType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ShowingDays",
+ "type": "org.reso.metadata.enums.ShowingDays"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ShowingEndTime",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ShowingInstructions",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ShowingRequirements",
+ "type": "org.reso.metadata.enums.ShowingRequirements"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ShowingStartTime",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SignOnPropertyYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Skirt",
+ "type": "org.reso.metadata.enums.Skirt"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SourceSystemKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SpaFeatures",
+ "type": "org.reso.metadata.enums.SpaFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SpaYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SpecialLicenses",
+ "type": "org.reso.metadata.enums.SpecialLicenses"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SpecialListingConditions",
+ "type": "org.reso.metadata.enums.SpecialListingConditions"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StandardStatus",
+ "type": "org.reso.metadata.enums.StandardStatus"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StateOrProvince",
+ "type": "org.reso.metadata.enums.StateOrProvince"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StateRegion",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StatusChangeTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Stories",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StoriesTotal",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StreetAdditionalInfo",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StreetDirPrefix",
+ "type": "org.reso.metadata.enums.StreetDirection"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StreetDirSuffix",
+ "type": "org.reso.metadata.enums.StreetDirection"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StreetName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StreetNumber",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StreetNumberNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StreetSuffix",
+ "type": "org.reso.metadata.enums.StreetSuffix"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StreetSuffixModifier",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "StructureType",
+ "type": "org.reso.metadata.enums.StructureType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SubAgencyCompensation",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SubAgencyCompensationType",
+ "type": "org.reso.metadata.enums.CompensationType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SubdivisionName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SuppliesExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SyndicateTo",
+ "type": "org.reso.metadata.enums.SyndicateTo"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "SyndicationRemarks",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TaxAnnualAmount",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TaxAssessedValue",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TaxBlock",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TaxBookNumber",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TaxLegalDescription",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TaxLot",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TaxMapNumber",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TaxOtherAnnualAssessmentAmount",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TaxParcelLetter",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TaxStatusCurrent",
+ "type": "org.reso.metadata.enums.TaxStatusCurrent"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TaxTract",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TaxYear",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TenantPays",
+ "type": "org.reso.metadata.enums.TenantPays"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Topography",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TotalActualRent",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Township",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TransactionBrokerCompensation",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TransactionBrokerCompensationType",
+ "type": "org.reso.metadata.enums.CompensationType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "TrashExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "UnitNumber",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "UnitTypeType",
+ "type": "org.reso.metadata.enums.UnitTypeType"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "UnitsFurnished",
+ "type": "org.reso.metadata.enums.UnitsFurnished"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "UniversalPropertyId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "UniversalPropertySubId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "UnparsedAddress",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Utilities",
+ "type": "org.reso.metadata.enums.Utilities"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "VacancyAllowance",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "VacancyAllowanceRate",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Vegetation",
+ "type": "org.reso.metadata.enums.Vegetation"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "VideosChangeTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "VideosCount",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "View",
+ "type": "org.reso.metadata.enums.View"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ViewYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "VirtualTourURLBranded",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "VirtualTourURLUnbranded",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "WalkScore",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "WaterBodyName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "WaterSewerExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "WaterSource",
+ "type": "org.reso.metadata.enums.WaterSource"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "WaterfrontFeatures",
+ "type": "org.reso.metadata.enums.WaterfrontFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "WaterfrontYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "WindowFeatures",
+ "type": "org.reso.metadata.enums.WindowFeatures"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "WithdrawnDate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "WoodedArea",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "WorkmansCompensationExpense",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "YearBuilt",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "YearBuiltDetails",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "YearBuiltEffective",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "YearBuiltSource",
+ "type": "org.reso.metadata.enums.YearBuiltSource"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "YearEstablished",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "YearsCurrentOwner",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "Zoning",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Property",
+ "fieldName": "ZoningDescription",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "JobTitle",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "LastLoginTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberAOR",
+ "type": "org.reso.metadata.enums.AOR"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberAORMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberAORkey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberAORkeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberAddress1",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberAddress2",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberAssociationComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberCarrierRoute",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberCity",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberCountry",
+ "type": "org.reso.metadata.enums.Country"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberCountyOrParish",
+ "type": "org.reso.metadata.enums.CountyOrParish"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberDesignation",
+ "type": "org.reso.metadata.enums.MemberDesignation"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberDirectPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberFirstName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberFullName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberHomePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberIsAssistantTo",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberLanguages",
+ "type": "org.reso.metadata.enums.Languages"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberLastName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberLoginId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberMiddleName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberMlsAccessYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberMlsSecurityClass",
+ "type": "org.reso.metadata.enums.MemberMlsSecurityClass"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberMobilePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberNamePrefix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberNameSuffix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberNationalAssociationId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberNickname",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberOfficePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberOfficePhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberOtherPhoneType",
+ "type": "org.reso.metadata.enums.MemberOtherPhoneType"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberPager",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberPassword",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberPhoneTTYTDD",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberPostalCode",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberPostalCodePlus4",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberPreferredPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberPreferredPhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberStateLicense",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberStateLicenseState",
+ "type": "org.reso.metadata.enums.StateOrProvince"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberStateOrProvince",
+ "type": "org.reso.metadata.enums.StateOrProvince"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberStatus",
+ "type": "org.reso.metadata.enums.MemberStatus"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberTollFreePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberType",
+ "type": "org.reso.metadata.enums.MemberType"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberVoiceMail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "MemberVoiceMailExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "OfficeKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "OfficeKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "OfficeMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "OfficeName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "OriginalEntryTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "OriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "OriginatingSystemMemberKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "OriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "SocialMediaType",
+ "type": "org.reso.metadata.enums.SocialMediaType"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "SourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "SourceSystemMemberKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "SourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Member",
+ "fieldName": "SyndicateTo",
+ "type": "org.reso.metadata.enums.SyndicateTo"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "FranchiseAffiliation",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "IDXOfficeParticipationYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "MainOfficeKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "MainOfficeKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "MainOfficeMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeAOR",
+ "type": "org.reso.metadata.enums.AOR"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeAORMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeAORkey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeAORkeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeAddress1",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeAddress2",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeAssociationComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeBranchType",
+ "type": "org.reso.metadata.enums.OfficeBranchType"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeBrokerKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeBrokerKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeBrokerMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeCity",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeCorporateLicense",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeCountyOrParish",
+ "type": "org.reso.metadata.enums.CountyOrParish"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeManagerKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeManagerKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeManagerMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeNationalAssociationId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficePhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficePostalCode",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficePostalCodePlus4",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeStateOrProvince",
+ "type": "org.reso.metadata.enums.StateOrProvince"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeStatus",
+ "type": "org.reso.metadata.enums.OfficeStatus"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OfficeType",
+ "type": "org.reso.metadata.enums.OfficeType"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OriginalEntryTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "OriginatingSystemOfficeKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "SocialMediaType",
+ "type": "org.reso.metadata.enums.SocialMediaType"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "SourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "SourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "SourceSystemOfficeKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "SyndicateAgentOption",
+ "type": "org.reso.metadata.enums.SyndicateAgentOption"
+ },
+ {
+ "resourceName": "Office",
+ "fieldName": "SyndicateTo",
+ "type": "org.reso.metadata.enums.SyndicateTo"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "Anniversary",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "AssistantEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "AssistantName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "AssistantPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "AssistantPhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "Birthdate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "BusinessFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "Children",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "Company",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "ContactKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "ContactKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "ContactLoginId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "ContactPassword",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "ContactStatus",
+ "type": "org.reso.metadata.enums.ContactStatus"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "ContactType",
+ "type": "org.reso.metadata.enums.ContactType"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "Department",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "DirectPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "Email",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "Email2",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "Email3",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "FirstName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "FullName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "HomeAddress1",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "HomeAddress2",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "HomeCarrierRoute",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "HomeCity",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "HomeCountry",
+ "type": "org.reso.metadata.enums.Country"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "HomeCountyOrParish",
+ "type": "org.reso.metadata.enums.CountyOrParish"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "HomeFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "HomePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "HomePostalCode",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "HomePostalCodePlus4",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "HomeStateOrProvince",
+ "type": "org.reso.metadata.enums.StateOrProvince"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "JobTitle",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "Language",
+ "type": "org.reso.metadata.enums.Languages"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "LastName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "LeadSource",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "MiddleName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "MobilePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "NamePrefix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "NameSuffix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "Nickname",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "Notes",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OfficePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OfficePhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OriginalEntryTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OriginatingSystemContactKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OtherAddress1",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OtherAddress2",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OtherCarrierRoute",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OtherCity",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OtherCountry",
+ "type": "org.reso.metadata.enums.Country"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OtherCountyOrParish",
+ "type": "org.reso.metadata.enums.CountyOrParish"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OtherPhoneType",
+ "type": "org.reso.metadata.enums.OtherPhoneType"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OtherPostalCode",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OtherPostalCodePlus4",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OtherStateOrProvince",
+ "type": "org.reso.metadata.enums.StateOrProvince"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OwnerMemberID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OwnerMemberKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "OwnerMemberKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "Pager",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "PhoneTTYTDD",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "PreferredAddress",
+ "type": "org.reso.metadata.enums.PreferredAddress"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "PreferredPhone",
+ "type": "org.reso.metadata.enums.PreferredPhone"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "ReferredBy",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "SocialMediaType",
+ "type": "org.reso.metadata.enums.SocialMediaType"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "SourceSystemContactKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "SourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "SourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "SpousePartnerName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "TollFreePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "VoiceMail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "VoiceMailExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "WorkAddress1",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "WorkAddress2",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "WorkCarrierRoute",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "WorkCity",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "WorkCountry",
+ "type": "org.reso.metadata.enums.Country"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "WorkCountyOrParish",
+ "type": "org.reso.metadata.enums.CountyOrParish"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "WorkPostalCode",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "WorkPostalCodePlus4",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Contacts",
+ "fieldName": "WorkStateOrProvince",
+ "type": "org.reso.metadata.enums.StateOrProvince"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ChangedByMemberID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ChangedByMemberKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ChangedByMemberKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ClassName",
+ "type": "org.reso.metadata.enums.ClassName"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ImageHeight",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ImageOf",
+ "type": "org.reso.metadata.enums.ImageOf"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ImageSizeDescription",
+ "type": "org.reso.metadata.enums.ImageSizeDescription"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ImageWidth",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "LongDescription",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "MediaCategory",
+ "type": "org.reso.metadata.enums.MediaCategory"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "MediaHTML",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "MediaKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "MediaKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "MediaModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "MediaObjectID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "MediaStatus",
+ "type": "org.reso.metadata.enums.MediaStatus"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "MediaType",
+ "type": "org.reso.metadata.enums.MediaType"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "MediaURL",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "Order",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "OriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "OriginatingSystemMediaKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "OriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "Permission",
+ "type": "org.reso.metadata.enums.Permission"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "PreferredPhotoYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ResourceName",
+ "type": "org.reso.metadata.enums.ResourceName"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ResourceRecordID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ResourceRecordKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ResourceRecordKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "ShortDescription",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "SourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "SourceSystemMediaKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Media",
+ "fieldName": "SourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "ChangeType",
+ "type": "org.reso.metadata.enums.ChangeType"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "ChangedByMemberID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "ChangedByMemberKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "ChangedByMemberKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "ClassName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "FieldKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "FieldKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "FieldName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "HistoryTransactionalKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "HistoryTransactionalKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "NewValue",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "OriginatingSystemHistoryKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "OriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "OriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "PreviousValue",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "ResourceName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "ResourceRecordID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "ResourceRecordKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "ResourceRecordKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "SourceSystemHistoryKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "SourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "HistoryTransactional",
+ "fieldName": "SourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "AgentNotesUnreadYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ClassName",
+ "type": "org.reso.metadata.enums.ClassName"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ContactKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ContactKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ContactListingPreference",
+ "type": "org.reso.metadata.enums.ContactListingPreference"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ContactListingsKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ContactListingsKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ContactLoginId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ContactNotesUnreadYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "DirectEmailYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "LastAgentNoteTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "LastContactNoteTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ListingId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ListingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ListingKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ListingModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ListingSentTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ListingViewedYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "PortalLastVisitedTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "ContactListings",
+ "fieldName": "ResourceName",
+ "type": "org.reso.metadata.enums.ResourceName"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorCity",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorIP",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorLatitude",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorLongitude",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorOriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorOriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorPhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorPostalCode",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorPostalCodePlus4",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorRegion",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorSourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorSourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorStateOrProvince",
+ "type": "org.reso.metadata.enums.StateOrProvince"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ActorType",
+ "type": "org.reso.metadata.enums.ActorType"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ColorDepth",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "DeviceType",
+ "type": "org.reso.metadata.enums.DeviceType"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "EventDescription",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "EventKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "EventKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "EventLabel",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "EventOriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "EventOriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "EventSourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "EventSourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "EventTarget",
+ "type": "org.reso.metadata.enums.EventTarget"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "EventTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "EventType",
+ "type": "org.reso.metadata.enums.EventType"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ObjectID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ObjectIdType",
+ "type": "org.reso.metadata.enums.ObjectIdType"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ObjectKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ObjectKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ObjectOriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ObjectOriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ObjectSourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ObjectSourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ObjectType",
+ "type": "org.reso.metadata.enums.ObjectType"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ObjectURL",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "OriginatingSystemActorKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "OriginatingSystemEventKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "OriginatingSystemObjectKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ReferringURL",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ScreenHeight",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "ScreenWidth",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "SessionID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "SourceSystemActorKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "SourceSystemEventKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "SourceSystemObjectKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "TimeZoneOffset",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "InternetTracking",
+ "fieldName": "UserAgent",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "ClassName",
+ "type": "org.reso.metadata.enums.ClassName"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "MemberKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "MemberKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "MemberMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "OriginalEntryTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "OriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "OriginatingSystemKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "OriginatingSystemMemberKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "OriginatingSystemMemberName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "OriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "ResourceName",
+ "type": "org.reso.metadata.enums.ResourceName"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "SavedSearchDescription",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "SavedSearchKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "SavedSearchKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "SavedSearchName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "SavedSearchType",
+ "type": "org.reso.metadata.enums.SavedSearchType"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "SearchQuery",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "SearchQueryExceptionDetails",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "SearchQueryExceptions",
+ "type": "org.reso.metadata.enums.SearchQueryExceptions"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "SearchQueryHumanReadable",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "SearchQueryType",
+ "type": "org.reso.metadata.enums.SearchQueryType"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "SourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "SourceSystemKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SavedSearch",
+ "fieldName": "SourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "AppointmentRequiredYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "ListingId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "ListingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "ListingKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OpenHouseAttendedBy",
+ "type": "org.reso.metadata.enums.Attended"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OpenHouseDate",
+ "type": "Edm.Date"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OpenHouseEndTime",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OpenHouseId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OpenHouseKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OpenHouseKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OpenHouseRemarks",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OpenHouseStartTime",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OpenHouseStatus",
+ "type": "org.reso.metadata.enums.OpenHouseStatus"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OpenHouseType",
+ "type": "org.reso.metadata.enums.OpenHouseType"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OriginalEntryTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OriginatingSystemKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "OriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "Refreshments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "ShowingAgentFirstName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "ShowingAgentKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "ShowingAgentKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "ShowingAgentLastName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "ShowingAgentMlsID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "SourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "SourceSystemKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OpenHouse",
+ "fieldName": "SourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "ActiveYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "BccEmailList",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "BccMeYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "CcEmailList",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "ClientActivatedYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "ConciergeNotificationsYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "ConciergeYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "ContactKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "ContactKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "DailySchedule",
+ "type": "org.reso.metadata.enums.DailySchedule"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "DisplayTemplateID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "Language",
+ "type": "org.reso.metadata.enums.Languages"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "LastNewChangedTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "LastViewedTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "MessageNew",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "MessageRevise",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "MessageUpdate",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "NextSendTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "OwnerMemberID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "OwnerMemberKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "OwnerMemberKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "ProspectingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "ProspectingKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "ReasonActiveOrDisabled",
+ "type": "org.reso.metadata.enums.ReasonActiveOrDisabled"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "SavedSearchKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "SavedSearchKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "ScheduleType",
+ "type": "org.reso.metadata.enums.ScheduleType"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "Subject",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Prospecting",
+ "fieldName": "ToEmailList",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "ClassName",
+ "type": "org.reso.metadata.enums.ClassName"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "OriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "OriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "OriginatingSystemQueueKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "QueueTransactionKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "QueueTransactionKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "QueueTransactionType",
+ "type": "org.reso.metadata.enums.QueueTransactionType"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "ResourceName",
+ "type": "org.reso.metadata.enums.ResourceName"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "ResourceRecordID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "ResourceRecordKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "ResourceRecordKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "SourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "SourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Queue",
+ "fieldName": "SourceSystemQueueKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "ClassName",
+ "type": "org.reso.metadata.enums.ClassName"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "FieldKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "FieldKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "FieldName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "OriginalEntryTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "OriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "OriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "OriginatingSystemRuleKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "ResourceName",
+ "type": "org.reso.metadata.enums.ResourceName"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleAction",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleDescription",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleEnabledYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleErrorText",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleExpression",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleFormat",
+ "type": "org.reso.metadata.enums.RuleFormat"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleHelpText",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleOrder",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleType",
+ "type": "org.reso.metadata.enums.RuleType"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleVersion",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "RuleWarningText",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "SourceSystemHistoryKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "SourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Rules",
+ "fieldName": "SourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "OriginalEntryTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "OriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "OriginatingSystemKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "OriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "SocialMediaType",
+ "type": "org.reso.metadata.enums.SocialMediaType"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "SourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "SourceSystemKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "SourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamAddress1",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamAddress2",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamCarrierRoute",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamCity",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamCountry",
+ "type": "org.reso.metadata.enums.Country"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamCountyOrParish",
+ "type": "org.reso.metadata.enums.CountyOrParish"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamDescription",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamDirectPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamLeadKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamLeadKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamLeadLoginId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamLeadMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamLeadNationalAssociationId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamLeadStateLicense",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamLeadStateLicenseState",
+ "type": "org.reso.metadata.enums.StateOrProvince"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamMobilePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamOfficePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamOfficePhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamPostalCode",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamPostalCodePlus4",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamPreferredPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamPreferredPhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamStateOrProvince",
+ "type": "org.reso.metadata.enums.StateOrProvince"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamStatus",
+ "type": "org.reso.metadata.enums.TeamStatus"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamTollFreePhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamVoiceMail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Teams",
+ "fieldName": "TeamVoiceMailExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "AgentOriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "AgentOriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "AgentSourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "AgentSourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ListingId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ListingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ListingKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ListingOriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ListingOriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ListingSourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ListingSourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "OriginalEntryTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "OriginatingSystemAgentKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "OriginatingSystemListingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "OriginatingSystemShowingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ShowingAgentKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ShowingAgentKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ShowingAgentMlsID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ShowingEndTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ShowingId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ShowingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ShowingKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ShowingOriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ShowingOriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ShowingRequestedTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ShowingSourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ShowingSourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "ShowingStartTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "SourceSystemAgentKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "SourceSystemListingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "Showing",
+ "fieldName": "SourceSystemShowingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "MemberKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "MemberKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "MemberLoginId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "MemberMlsId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "OriginalEntryTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "OriginatingSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "OriginatingSystemKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "OriginatingSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "SourceSystemID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "SourceSystemKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "SourceSystemName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "TeamImpersonationLevel",
+ "type": "org.reso.metadata.enums.TeamImpersonationLevel"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "TeamKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "TeamKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "TeamMemberKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "TeamMemberKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "TeamMemberNationalAssociationId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "TeamMemberStateLicense",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "TeamMembers",
+ "fieldName": "TeamMemberType",
+ "type": "org.reso.metadata.enums.TeamMemberType"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "ChangedByMemberID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "ChangedByMemberKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "ChangedByMemberKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationAOR",
+ "type": "org.reso.metadata.enums.AOR"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationAddress1",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationAddress2",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationAorOuid",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationAorOuidKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationAorOuidKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationCarrierRoute",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationCity",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationComments",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationContactEmail",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationContactFax",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationContactFirstName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationContactFullName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationContactJobTitle",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationContactLastName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationContactMiddleName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationContactNamePrefix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationContactNameSuffix",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationContactPhone",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationContactPhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationCountry",
+ "type": "org.reso.metadata.enums.Country"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationCountyOrParish",
+ "type": "org.reso.metadata.enums.CountyOrParish"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationMemberCount",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationMlsCode",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationMlsVendorName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationMlsVendorOuid",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationName",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationNationalAssociationId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationPostalCode",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationPostalCodePlus4",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationSocialMediaType",
+ "type": "org.reso.metadata.enums.SocialMediaType"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationStateLicense",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationStateLicenseState",
+ "type": "org.reso.metadata.enums.StateOrProvince"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationStateOrProvince",
+ "type": "org.reso.metadata.enums.StateOrProvince"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationStatus",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationStatusChangeTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationType",
+ "type": "org.reso.metadata.enums.OrganizationType"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationUniqueId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationUniqueIdKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OrganizationUniqueIdKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "OUID",
+ "fieldName": "OriginalEntryTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "ContactListingNotes",
+ "fieldName": "ContactKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "ContactListingNotes",
+ "fieldName": "ContactKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "ContactListingNotes",
+ "fieldName": "ContactListingNotesKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "ContactListingNotes",
+ "fieldName": "ContactListingNotesKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "ContactListingNotes",
+ "fieldName": "ListingId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "ContactListingNotes",
+ "fieldName": "ListingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "ContactListingNotes",
+ "fieldName": "ListingKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "ContactListingNotes",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "ContactListingNotes",
+ "fieldName": "NoteContents",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "ContactListingNotes",
+ "fieldName": "NotedBy",
+ "type": "org.reso.metadata.enums.NotedBy"
+ },
+ {
+ "resourceName": "OtherPhone",
+ "fieldName": "ClassName",
+ "type": "org.reso.metadata.enums.ClassName"
+ },
+ {
+ "resourceName": "OtherPhone",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "OtherPhone",
+ "fieldName": "OtherPhoneExt",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OtherPhone",
+ "fieldName": "OtherPhoneKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OtherPhone",
+ "fieldName": "OtherPhoneKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "OtherPhone",
+ "fieldName": "OtherPhoneNumber",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OtherPhone",
+ "fieldName": "OtherPhoneType",
+ "type": "org.reso.metadata.enums.OtherPhoneType"
+ },
+ {
+ "resourceName": "OtherPhone",
+ "fieldName": "ResourceName",
+ "type": "org.reso.metadata.enums.ResourceName"
+ },
+ {
+ "resourceName": "OtherPhone",
+ "fieldName": "ResourceRecordID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OtherPhone",
+ "fieldName": "ResourceRecordKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "OtherPhone",
+ "fieldName": "ResourceRecordKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "GreenBuildingVerificationKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "GreenBuildingVerificationKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "GreenBuildingVerificationType",
+ "type": "org.reso.metadata.enums.GreenBuildingVerificationType"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "GreenVerificationBody",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "GreenVerificationMetric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "GreenVerificationRating",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "GreenVerificationSource",
+ "type": "org.reso.metadata.enums.GreenVerificationSource"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "GreenVerificationStatus",
+ "type": "org.reso.metadata.enums.GreenVerificationStatus"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "GreenVerificationURL",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "GreenVerificationVersion",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "GreenVerificationYear",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "ListingId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "ListingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "ListingKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyGreenVerification",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "PropertyPowerProduction",
+ "fieldName": "ListingId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyPowerProduction",
+ "fieldName": "ListingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyPowerProduction",
+ "fieldName": "ListingKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyPowerProduction",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "PropertyPowerProduction",
+ "fieldName": "PowerProductionAnnual",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyPowerProduction",
+ "fieldName": "PowerProductionAnnualStatus",
+ "type": "org.reso.metadata.enums.PowerProductionAnnualStatus"
+ },
+ {
+ "resourceName": "PropertyPowerProduction",
+ "fieldName": "PowerProductionKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyPowerProduction",
+ "fieldName": "PowerProductionKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyPowerProduction",
+ "fieldName": "PowerProductionSize",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "PropertyPowerProduction",
+ "fieldName": "PowerProductionType",
+ "type": "org.reso.metadata.enums.PowerProductionType"
+ },
+ {
+ "resourceName": "PropertyPowerProduction",
+ "fieldName": "PowerProductionYearInstall",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "ListingId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "ListingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "ListingKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "RoomArea",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "RoomAreaSource",
+ "type": "org.reso.metadata.enums.AreaSource"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "RoomAreaUnits",
+ "type": "org.reso.metadata.enums.AreaUnits"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "RoomDescription",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "RoomDimensions",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "RoomFeatures",
+ "type": "org.reso.metadata.enums.InteriorOrRoomFeatures"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "RoomKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "RoomKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "RoomLength",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "RoomLengthWidthUnits",
+ "type": "org.reso.metadata.enums.LinearUnits"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "RoomType",
+ "type": "org.reso.metadata.enums.RoomType"
+ },
+ {
+ "resourceName": "PropertyRooms",
+ "fieldName": "RoomWidth",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "ListingId",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "ListingKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "ListingKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "UnitTypeActualRent",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "UnitTypeBathsTotal",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "UnitTypeBedsTotal",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "UnitTypeDescription",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "UnitTypeFurnished",
+ "type": "org.reso.metadata.enums.UnitTypeFurnished"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "UnitTypeGarageAttachedYN",
+ "type": "Edm.Boolean"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "UnitTypeGarageSpaces",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "UnitTypeKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "UnitTypeKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "UnitTypeProForma",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "UnitTypeTotalRent",
+ "type": "Edm.Decimal"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "UnitTypeType",
+ "type": "org.reso.metadata.enums.UnitTypeType"
+ },
+ {
+ "resourceName": "PropertyUnitTypes",
+ "fieldName": "UnitTypeUnitsTotal",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "SocialMedia",
+ "fieldName": "ClassName",
+ "type": "org.reso.metadata.enums.ClassName"
+ },
+ {
+ "resourceName": "SocialMedia",
+ "fieldName": "ModificationTimestamp",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "resourceName": "SocialMedia",
+ "fieldName": "ResourceName",
+ "type": "org.reso.metadata.enums.ResourceName"
+ },
+ {
+ "resourceName": "SocialMedia",
+ "fieldName": "ResourceRecordID",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SocialMedia",
+ "fieldName": "ResourceRecordKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SocialMedia",
+ "fieldName": "ResourceRecordKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "SocialMedia",
+ "fieldName": "SocialMediaKey",
+ "type": "Edm.String"
+ },
+ {
+ "resourceName": "SocialMedia",
+ "fieldName": "SocialMediaKeyNumeric",
+ "type": "Edm.Int64"
+ },
+ {
+ "resourceName": "SocialMedia",
+ "fieldName": "SocialMediaType",
+ "type": "org.reso.metadata.enums.SocialMediaType"
+ },
+ {
+ "resourceName": "SocialMedia",
+ "fieldName": "SocialMediaUrlOrId",
+ "type": "Edm.String"
+ }
+ ],
+ "lookups": [
+ {
+ "lookupName": "org.reso.metadata.enums.AreaSource",
+ "lookupValue": "Appraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AreaSource",
+ "lookupValue": "Assessor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AreaSource",
+ "lookupValue": "Builder",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AreaSource",
+ "lookupValue": "Estimated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AreaSource",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AreaSource",
+ "lookupValue": "Owner",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AreaSource",
+ "lookupValue": "Plans",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AreaSource",
+ "lookupValue": "PublicRecords",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AreaSource",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AreaUnits",
+ "lookupValue": "SquareFeet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AreaUnits",
+ "lookupValue": "SquareMeters",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleApproachWithRamp",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleBedroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleCentralLivingArea",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleClosets",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleCommonArea",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleDoors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleElectricalAndEnvironmentalControls",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleElevatorInstalled",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleEntrance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleForHearingImpairment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleFullBath",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleHallways",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleKitchen",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleKitchenAppliances",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleStairway",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AccessibleWasherDryer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AdaptableBathroomWalls",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "AdaptableForElevator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "CeilingTrack",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "CentralLivingArea",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "CommonArea",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "CustomizedWheelchairAccessible",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "ElectronicEnvironmentalControls",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "EnhancedAccessible",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "ExteriorWheelchairLift",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "GripAccessibleFeatures",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "ReinforcedFloors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "SafeEmergencyEgressFromHome",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "SmartTechnology",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "StairLift",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "StandbyGenerator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "TherapeuticWhirlpool",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "Visitable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "VisitorBathroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AccessibilityFeatures",
+ "lookupValue": "WalkerAccessibleStairs",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "BarFridge",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "BuiltInElectricOven",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "BuiltInElectricRange",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "BuiltInFreezer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "BuiltInGasOven",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "BuiltInGasRange",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "BuiltInRange",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "BuiltInRefrigerator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "ConvectionOven",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "Cooktop",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "Dishwasher",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "Disposal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "DoubleOven",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "DownDraft",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "Dryer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "ElectricCooktop",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "ElectricOven",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "ElectricRange",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "ElectricWaterHeater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "EnergyStarQualifiedAppliances",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "EnergyStarQualifiedDishwasher",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "EnergyStarQualifiedDryer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "EnergyStarQualifiedFreezer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "EnergyStarQualifiedRefrigerator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "EnergyStarQualifiedWasher",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "EnergyStarQualifiedWaterHeater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "ExhaustFan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "FreeStandingElectricOven",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "FreeStandingElectricRange",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "FreeStandingFreezer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "FreeStandingGasOven",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "FreeStandingGasRange",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "FreeStandingRange",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "FreeStandingRefrigerator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "Freezer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "GasCooktop",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "GasOven",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "GasRange",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "GasWaterHeater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "Humidifier",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "IceMaker",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "IndoorGrill",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "InductionCooktop",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "InstantHotWater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "Microwave",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "Oven",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "PlumbedForIceMaker",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "PortableDishwasher",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "PropaneCooktop",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "Range",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "RangeHood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "Refrigerator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "SelfCleaningOven",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "SolarHotWater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "StainlessSteelAppliances",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "TanklessWaterHeater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "TrashCompactor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "VentedExhaustFan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "WarmingDrawer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "Washer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "WasherDryer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "WasherDryerStacked",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "WaterHeater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "WaterPurifier",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "WaterPurifierOwned",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "WaterPurifierRented",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "WaterSoftener",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "WaterSoftenerOwned",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "WaterSoftenerRented",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "WineCooler",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Appliances",
+ "lookupValue": "WineRefrigerator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ArchitecturalStyle",
+ "lookupValue": "SampleArchitecturalStyleEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "AirportRunway",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Barbecue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "BasketballCourt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "BeachAccess",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "BeachRights",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "BilliardRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "BoatDock",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Boating",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "BoatSlip",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Cabana",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "CableTv",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "CarWashArea",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Clubhouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "CoinLaundry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Concierge",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "DayCare",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "DogPark",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "DryDock",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Electricity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Elevators",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "ExerciseCourse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "FitnessCenter",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "GameCourtExterior",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "GameCourtInterior",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "GameRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Gas",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Gated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "GolfCourse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "HotWater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "IndoorPool",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Insurance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "JoggingPath",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Landscaping",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Laundry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "MaidService",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Maintenance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "MaintenanceGrounds",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "MaintenanceStructure",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Management",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Marina",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "MeetingRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Park",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Parking",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "PartyRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "PicnicArea",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Playground",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "PondSeasonal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "PondYearRound",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Pool",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "PoweredBoatsAllowed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Racquetball",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "RecreationFacilities",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "RecreationRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "RoofDeck",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "RvBoatStorage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "RvParking",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Sauna",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Security",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "ServiceElevators",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "ShuffleboardCourt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "SkiAccessible",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "SnowRemoval",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "SpaHotTub",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "SportCourt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Stables",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Storage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "StreamSeasonal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "StreamYearRound",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Taxes",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "TennisCourts",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Trails",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Trash",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "Water",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationAmenities",
+ "lookupValue": "WorkshopArea",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FeeFrequency",
+ "lookupValue": "Annually",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FeeFrequency",
+ "lookupValue": "BiMonthly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FeeFrequency",
+ "lookupValue": "BiWeekly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FeeFrequency",
+ "lookupValue": "Daily",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FeeFrequency",
+ "lookupValue": "Monthly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FeeFrequency",
+ "lookupValue": "OneTime",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FeeFrequency",
+ "lookupValue": "Quarterly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FeeFrequency",
+ "lookupValue": "Seasonal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FeeFrequency",
+ "lookupValue": "SemiAnnually",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FeeFrequency",
+ "lookupValue": "SemiMonthly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FeeFrequency",
+ "lookupValue": "Weekly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "CableTv",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "EarthquakeInsurance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "Electricity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "Gas",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "Insurance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "Internet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "MaintenanceGrounds",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "MaintenanceStructure",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "PestControl",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "Security",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "Sewer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "SnowRemoval",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "Trash",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "Utilities",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AssociationFeeIncludes",
+ "lookupValue": "Water",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "Apartment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "BathStubbed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "Block",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "Concrete",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "CrawlSpace",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "Daylight",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "DirtFloor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "ExteriorEntry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "Finished",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "FrenchDrain",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "Full",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "InteriorEntry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "Partial",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "PartiallyFinished",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "StorageSpace",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "SumpPump",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "Unfinished",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "WalkOutAccess",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Basement",
+ "lookupValue": "WalkUpAccess",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BodyType",
+ "lookupValue": "DoubleWide",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BodyType",
+ "lookupValue": "Expando",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BodyType",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BodyType",
+ "lookupValue": "QuadWide",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BodyType",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BodyType",
+ "lookupValue": "SingleWide",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BodyType",
+ "lookupValue": "TripleWide",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuildingFeatures",
+ "lookupValue": "SampleBuildingFeaturesEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Accounting",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "AdministrativeAndSupport",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Advertising",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Agriculture",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "AnimalGrooming",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Appliances",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "AquariumSupplies",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "ArtsAndEntertainment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Athletic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "AutoBody",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "AutoDealer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "AutoGlass",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "AutoParts",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "AutoRentLease",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "AutoRepairSpecialty",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "AutoService",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "AutoStereoAlarm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "AutoTires",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "AutoWrecking",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Bakery",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "BarberBeauty",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "BarTavernLounge",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "BedAndBreakfast",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "BooksCardsStationary",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Butcher",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Cabinets",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "CandyCookie",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "CarpetTile",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "CarWash",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "ChildCare",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Church",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Clothing",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Commercial",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Computer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "ConstructionContractor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Convalescent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "ConvenienceStore",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "DanceStudio",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Decorator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "DeliCatering",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Dental",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Distribution",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Doughnut",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Drugstore",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "DryCleaner",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "EducationSchool",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Electronics",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Employment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Farm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "FastFood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Financial",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Fitness",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "FloristNursery",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "FoodAndBeverage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "ForestReserve",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Franchise",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Furniture",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "GasStation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "GiftShop",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Grocery",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Hardware",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "HealthFood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "HealthServices",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Hobby",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "HomeCleaner",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Hospitality",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "HotelMotel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "IceCreamFrozenYogurt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Industrial",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Jewelry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Landscaping",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Laundromat",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "LiquorStore",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Locksmith",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Manufacturing",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Medical",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Mixed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "MobileTrailerPark",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Music",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "NursingHome",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "OfficeSupply",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Paints",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Parking",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "PetStore",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Photographer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Pizza",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Printing",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "ProfessionalOffice",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "ProfessionalService",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "RealEstate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Recreation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Rental",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Residential",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Restaurant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Retail",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "SaddleryHarness",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "SportingGoods",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Storage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Toys",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Transportation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Travel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Upholstery",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Utility",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Variety",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Video",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Wallpaper",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Warehouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BusinessType",
+ "lookupValue": "Wholesale",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CompensationType",
+ "lookupValue": "Dollars",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CompensationType",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CompensationType",
+ "lookupValue": "Percent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CompensationType",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.AOR",
+ "lookupValue": "SampleAOREnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "AccreditedBuyersRepresentative",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "AccreditedLandConsultant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "AtHomeWithDiversity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "CertifiedCommercialInvestmentMember",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "CertifiedDistressedPropertyExpert",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "CertifiedInternationalPropertySpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "CertifiedPropertyManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "CertifiedRealEstateBrokerageManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "CertifiedRealEstateTeamSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "CertifiedResidentialSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "CounselorOfRealEstate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "ePRO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "GeneralAccreditedAppraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "GraduateRealtorInstitute",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "MilitaryRelocationProfessional",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "NARsGreenDesignation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "PerformanceManagementNetwork",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "PricingStrategyAdvisor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "RealEstateNegotiationExpert",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "RealtorAssociationCertifiedExecutive",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "ResidentialAccreditedAppraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "ResortAndSecondHomePropertySpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "SellerRepresentativeSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "SeniorsRealEstateSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "ShortSalesAndForeclosureResource",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "SocietyOfIndustrialAndOfficeRealtors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerAgentDesignation",
+ "lookupValue": "TransnationalReferralCertification",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerFinancing",
+ "lookupValue": "Assumed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerFinancing",
+ "lookupValue": "Cash",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerFinancing",
+ "lookupValue": "Contract",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerFinancing",
+ "lookupValue": "Conventional",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerFinancing",
+ "lookupValue": "FHA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerFinancing",
+ "lookupValue": "FHA203b",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerFinancing",
+ "lookupValue": "FHA203k",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerFinancing",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerFinancing",
+ "lookupValue": "Private",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerFinancing",
+ "lookupValue": "SellerFinancing",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerFinancing",
+ "lookupValue": "TrustDeed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerFinancing",
+ "lookupValue": "USDA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.BuyerFinancing",
+ "lookupValue": "VA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.City",
+ "lookupValue": "SampleCityEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "AccreditedBuyersRepresentative",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "AccreditedLandConsultant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "AtHomeWithDiversity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "CertifiedCommercialInvestmentMember",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "CertifiedDistressedPropertyExpert",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "CertifiedInternationalPropertySpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "CertifiedPropertyManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "CertifiedRealEstateBrokerageManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "CertifiedRealEstateTeamSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "CertifiedResidentialSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "CounselorOfRealEstate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "ePRO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "GeneralAccreditedAppraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "GraduateRealtorInstitute",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "MilitaryRelocationProfessional",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "NARsGreenDesignation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "PerformanceManagementNetwork",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "PricingStrategyAdvisor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "RealEstateNegotiationExpert",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "RealtorAssociationCertifiedExecutive",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "ResidentialAccreditedAppraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "ResortAndSecondHomePropertySpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "SellerRepresentativeSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "SeniorsRealEstateSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "ShortSalesAndForeclosureResource",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "SocietyOfIndustrialAndOfficeRealtors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoBuyerAgentDesignation",
+ "lookupValue": "TransnationalReferralCertification",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "AccreditedBuyersRepresentative",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "AccreditedLandConsultant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "AtHomeWithDiversity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "CertifiedCommercialInvestmentMember",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "CertifiedDistressedPropertyExpert",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "CertifiedInternationalPropertySpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "CertifiedPropertyManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "CertifiedRealEstateBrokerageManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "CertifiedRealEstateTeamSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "CertifiedResidentialSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "CounselorOfRealEstate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "ePRO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "GeneralAccreditedAppraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "GraduateRealtorInstitute",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "MilitaryRelocationProfessional",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "NARsGreenDesignation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "PerformanceManagementNetwork",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "PricingStrategyAdvisor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "RealEstateNegotiationExpert",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "RealtorAssociationCertifiedExecutive",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "ResidentialAccreditedAppraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "ResortAndSecondHomePropertySpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "SellerRepresentativeSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "SeniorsRealEstateSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "ShortSalesAndForeclosureResource",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "SocietyOfIndustrialAndOfficeRealtors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CoListAgentDesignation",
+ "lookupValue": "TransnationalReferralCertification",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommonInterest",
+ "lookupValue": "CommunityApartment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommonInterest",
+ "lookupValue": "Condominium",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommonInterest",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommonInterest",
+ "lookupValue": "PlannedDevelopment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommonInterest",
+ "lookupValue": "StockCooperative",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommonInterest",
+ "lookupValue": "Timeshare",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommonWalls",
+ "lookupValue": "EndUnit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommonWalls",
+ "lookupValue": "NoCommonWalls",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommonWalls",
+ "lookupValue": "NoOneAbove",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommonWalls",
+ "lookupValue": "NoOneBelow",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommonWalls",
+ "lookupValue": "OneCommonWall",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommonWalls",
+ "lookupValue": "TwoOrMoreCommonWalls",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "AirportRunway",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Clubhouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Curbs",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Fishing",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "FitnessCenter",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Gated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Golf",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Lake",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Park",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Playground",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Pool",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Racquetball",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Restaurant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Sidewalks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Stables",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "StreetLights",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "Suburban",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CommunityFeatures",
+ "lookupValue": "TennisCourts",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Concessions",
+ "lookupValue": "CallListingAgent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Concessions",
+ "lookupValue": "No",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Concessions",
+ "lookupValue": "Yes",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Adobe",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "AluminumSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Asbestos",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Asphalt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "AtticCrawlHatchwaysInsulated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "BattsInsulation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Block",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "BlownInInsulation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "BoardAndBattenSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Brick",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "BrickVeneer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Cedar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "CementSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Clapboard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Concrete",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "DuctsProfessionallyAirSealed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "ExteriorDuctWorkIsInsulated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "FiberCement",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "FiberglassSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "FoamInsulation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Frame",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Glass",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "HardiplankType",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "IcatRecessedLighting",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "InsulatedConcreteForms",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "LapSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Log",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "LogSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "LowVocInsulation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Masonite",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "MetalSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "NaturalBuilding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Plaster",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "RadiantBarrier",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "RammedEarth",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "RecycledBioBasedInsulation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "RedwoodSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "ShakeSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "ShingleSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "SlumpBlock",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "SprayFoamInsulation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "SteelSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Stone",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "StoneVeneer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Straw",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Stucco",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "SyntheticStucco",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "Unknown",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "VerticalSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "VinylSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ConstructionMaterials",
+ "lookupValue": "WoodSiding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "AtticFan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "CeilingFans",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "CentralAir",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "Dual",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "Ductless",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "Electric",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "EnergyStarQualifiedEquipment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "EvaporativeCooling",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "ExhaustFan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "Gas",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "Geothermal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "HeatPump",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "HumidityControl",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "MultiUnits",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "RoofTurbines",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "SeparateMeters",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "VariesByUnit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "WallUnits",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "WallWindowUnits",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "WholeHouseFan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "WindowUnits",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Cooling",
+ "lookupValue": "Zoned",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AD",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AF",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AG",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AL",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AQ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AS",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AU",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AW",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AX",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "AZ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BB",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BD",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BF",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BG",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BH",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BJ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BL",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BS",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BV",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BW",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BY",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "BZ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CC",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CD",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CF",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CG",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CH",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CK",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CL",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CU",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CV",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CX",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CY",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "CZ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "DE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "DJ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "DK",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "DM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "DO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "DZ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "EC",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "EE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "EG",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "EH",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "ER",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "ES",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "ET",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "FI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "FJ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "FK",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "FM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "FO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "FR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GB",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GD",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GF",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GG",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GH",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GL",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GP",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GQ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GS",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GU",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GW",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "GY",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "HK",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "HM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "HN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "HR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "HT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "HU",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "ID",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "IE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "IL",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "IM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "IN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "IO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "IQ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "IR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "IS",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "IT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "JE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "JM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "JO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "JP",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "KE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "KG",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "KH",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "KI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "KM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "KN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "KP",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "KR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "KW",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "KY",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "KZ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "LA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "LB",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "LC",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "LI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "LK",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "LR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "LS",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "LT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "LU",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "LV",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "LY",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MC",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MD",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "ME",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MF",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MG",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MH",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MK",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "ML",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MP",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MQ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MS",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MU",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MV",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MW",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MX",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MY",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "MZ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "NA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "NC",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "NE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "NF",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "NG",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "NI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "NL",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "NP",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "NR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "NU",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "NZ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "OM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "OT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PF",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PG",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PH",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PK",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PL",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PS",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PW",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "PY",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "QA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "RE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "RO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "RS",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "RU",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "RW",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SB",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SC",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SD",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SG",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SH",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SJ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SK",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SL",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "ST",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SV",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SY",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "SZ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TC",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TD",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TF",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TG",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TH",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TJ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TK",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TL",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TV",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TW",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "TZ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "UA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "UG",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "UM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "US",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "UY",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "UZ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "VA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "VC",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "VE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "VG",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "VI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "VN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "VU",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "WF",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "WS",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "YE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "YT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "ZA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "ZM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Country",
+ "lookupValue": "ZW",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CountyOrParish",
+ "lookupValue": "SampleCountyOrParishEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "Assumable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "Contract",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "Conventional",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "FHA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "FHA203b",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "FHA203k",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "LeasedRenewables",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "PowerPurchaseAgreement",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "Private",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "PropertyAssessedCleanEnergy",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "TrustDeed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "USDA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentFinancing",
+ "lookupValue": "VA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Agricultural",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Automotive",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Cattle",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Commercial",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Dairy",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Farm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Fishery",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Grazing",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "HighwayTouristService",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Horses",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Hunting",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Industrial",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Investment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Livestock",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "ManufacturedHome",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "MedicalDental",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "MiniStorage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "MixedUse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "MultiFamily",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Nursery",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Office",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Orchard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Pasture",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "PlaceOfWorship",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Plantable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Poultry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Ranch",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Recreational",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Residential",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Retail",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "RowCrops",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "SingleFamily",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Subdivision",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Timber",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "TreeFarm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Unimproved",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Vacant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Vineyard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.CurrentUse",
+ "lookupValue": "Warehouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DevelopmentStatus",
+ "lookupValue": "Completed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DevelopmentStatus",
+ "lookupValue": "FinishedLots",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DevelopmentStatus",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DevelopmentStatus",
+ "lookupValue": "Proposed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DevelopmentStatus",
+ "lookupValue": "RawLand",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DevelopmentStatus",
+ "lookupValue": "RoughGrade",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DevelopmentStatus",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DevelopmentStatus",
+ "lookupValue": "SitePlanApproved",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DevelopmentStatus",
+ "lookupValue": "SitePlanFiled",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DevelopmentStatus",
+ "lookupValue": "UnderConstruction",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DirectionFaces",
+ "lookupValue": "East",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DirectionFaces",
+ "lookupValue": "North",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DirectionFaces",
+ "lookupValue": "Northeast",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DirectionFaces",
+ "lookupValue": "Northwest",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DirectionFaces",
+ "lookupValue": "South",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DirectionFaces",
+ "lookupValue": "Southeast",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DirectionFaces",
+ "lookupValue": "Southwest",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DirectionFaces",
+ "lookupValue": "West",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Disclosures",
+ "lookupValue": "SampleDisclosuresEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LinearUnits",
+ "lookupValue": "Feet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LinearUnits",
+ "lookupValue": "Meters",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DocumentsAvailable",
+ "lookupValue": "SampleDocumentsAvailableEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DoorFeatures",
+ "lookupValue": "EnergyStarQualifiedDoors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DoorFeatures",
+ "lookupValue": "FrenchDoors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DoorFeatures",
+ "lookupValue": "MirroredClosetDoors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DoorFeatures",
+ "lookupValue": "SlidingDoors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DoorFeatures",
+ "lookupValue": "StormDoors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "Amps100",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "Amps150",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "Amps200OrMore",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "CircuitBreakers",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "EnergyStorageDevice",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "Fuses",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "Generator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "NetMeter",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "PhotovoltaicsSellerOwned",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "PhotovoltaicsThirdPartyOwned",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "PreWiredForRenewables",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "ReadyForRenewables",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "Underground",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "Volts220",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "Volts220ForSpa",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "Volts220InGarage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "Volts220InKitchen",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "Volts220InLanudry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "Volts220InWorkshop",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "Volts440",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "WindTurbineSellerOwned",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Electric",
+ "lookupValue": "WindTurbineThirdPartyOwned",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ElementarySchool",
+ "lookupValue": "SampleElementarySchoolEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ElementarySchoolDistrict",
+ "lookupValue": "SampleElementarySchoolDistrictEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExistingLeaseType",
+ "lookupValue": "AbsoluteNet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExistingLeaseType",
+ "lookupValue": "CpiAdjustment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExistingLeaseType",
+ "lookupValue": "EscalationClause",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExistingLeaseType",
+ "lookupValue": "Gross",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExistingLeaseType",
+ "lookupValue": "GroundLease",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExistingLeaseType",
+ "lookupValue": "Net",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExistingLeaseType",
+ "lookupValue": "Nn",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExistingLeaseType",
+ "lookupValue": "Nnn",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExistingLeaseType",
+ "lookupValue": "Oral",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "Awnings",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "Balcony",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "Barbecue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "BasketballCourt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "BoatSlip",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "BuiltInBarbecue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "Courtyard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "CoveredCourtyard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "Dock",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "DogRun",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "ElectricGrill",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "FirePit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "Garden",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "GasGrill",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "GrayWaterSystem",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "Kennel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "Lighting",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "MistingSystem",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "OutdoorGrill",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "OutdoorKitchen",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "OutdoorShower",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "PermeablePaving",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "Playground",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "PrivateEntrance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "PrivateYard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "RainBarrelCisterns",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "RainGutters",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "RvHookup",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "Storage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "TennisCourts",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ExteriorFeatures",
+ "lookupValue": "UncoveredCourtyard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "BackYard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "BarbedWire",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Block",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Brick",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "ChainLink",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "CrossFenced",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Electric",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Fenced",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "FrontYard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Full",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Gate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Invisible",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Masonry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Partial",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "PartialCross",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Perimeter",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Pipe",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Privacy",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Security",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "SlumpStone",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "SplitRail",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Stone",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Vinyl",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Wire",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "Wood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Fencing",
+ "lookupValue": "WroughtIron",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FinancialDataSource",
+ "lookupValue": "Accountant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FinancialDataSource",
+ "lookupValue": "Owner",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FinancialDataSource",
+ "lookupValue": "PropertyManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Basement",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Bath",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Bedroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "BlowerFan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Circulating",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Decorative",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Den",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "DiningRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "DoubleSided",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Electric",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "EpaCertifiedWoodStove",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "EpaQualifiedFireplace",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "FactoryBuilt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "FamilyRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "FirePit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "FreeStanding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Gas",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "GasLog",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "GasStarter",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "GlassDoors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "GreatRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Heatilator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Insert",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Kitchen",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Library",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "LivingRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Masonry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "MasterBedroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Metal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Outside",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "PelletStove",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Propane",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "RaisedHearth",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "RecreationRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "SealedCombustion",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "SeeThrough",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Stone",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "Ventless",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "WoodBurning",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "WoodBurningStove",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FireplaceFeatures",
+ "lookupValue": "ZeroClearance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Adobe",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Bamboo",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Brick",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Carpet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "CeramicTile",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Clay",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Combination",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Concrete",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Cork",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "CriGreenLabelPlusCertifiedCarpet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Dirt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "FloorscoreCertifiedFlooring",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "FscOrSfiCertifiedSourceHardwood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Granite",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Hardwood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Laminate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Linoleum",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Marble",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "PaintedStained",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Parquet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Pavers",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "ReclaimedWood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "SimulatedWood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Slate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Softwood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Stamped",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Stone",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Sustainable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Terrazzo",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Tile",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Varies",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Vinyl",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Flooring",
+ "lookupValue": "Wood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FoundationDetails",
+ "lookupValue": "Block",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FoundationDetails",
+ "lookupValue": "BrickMortar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FoundationDetails",
+ "lookupValue": "Combination",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FoundationDetails",
+ "lookupValue": "ConcretePerimeter",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FoundationDetails",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FoundationDetails",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FoundationDetails",
+ "lookupValue": "Permanent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FoundationDetails",
+ "lookupValue": "PillarPostPier",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FoundationDetails",
+ "lookupValue": "Raised",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FoundationDetails",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FoundationDetails",
+ "lookupValue": "Slab",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FoundationDetails",
+ "lookupValue": "Stone",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FrontageType",
+ "lookupValue": "BayHarbor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FrontageType",
+ "lookupValue": "GolfCourse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FrontageType",
+ "lookupValue": "LagoonEstuary",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FrontageType",
+ "lookupValue": "Lakefront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FrontageType",
+ "lookupValue": "Oceanfront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FrontageType",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FrontageType",
+ "lookupValue": "River",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FrontageType",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.FrontageType",
+ "lookupValue": "Waterfront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Furnished",
+ "lookupValue": "Furnished",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Furnished",
+ "lookupValue": "Negotiable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Furnished",
+ "lookupValue": "Partially",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Furnished",
+ "lookupValue": "Unfurnished",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "CertifiedPassiveHouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "EnergyStarCertifiedHomes",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "Enerphit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "HersIndexScore",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "HomeEnergyScore",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "HomeEnergyUpgradeCertificateOfEnergyEfficiencyImprovements",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "HomeEnergyUpgradeCertificateOfEnergyEfficiencyPerformance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "HomePerformanceWithEnergyStar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "IndoorAirplus",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "LeedForHomes",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "LivingBuildingChallenge",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "NgbsNewConstruction",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "NgbsSmallProjectsRemodel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "NgbsWholeHomeRemodel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "PhiusPlus",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "Watersense",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenBuildingVerificationType",
+ "lookupValue": "ZeroEnergyReadyHome",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyEfficient",
+ "lookupValue": "Appliances",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyEfficient",
+ "lookupValue": "Construction",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyEfficient",
+ "lookupValue": "Doors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyEfficient",
+ "lookupValue": "ExposureShade",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyEfficient",
+ "lookupValue": "Hvac",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyEfficient",
+ "lookupValue": "Incentives",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyEfficient",
+ "lookupValue": "Insulation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyEfficient",
+ "lookupValue": "Lighting",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyEfficient",
+ "lookupValue": "Roof",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyEfficient",
+ "lookupValue": "Thermostat",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyEfficient",
+ "lookupValue": "WaterHeater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyEfficient",
+ "lookupValue": "Windows",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyGeneration",
+ "lookupValue": "Solar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenEnergyGeneration",
+ "lookupValue": "Wind",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenIndoorAirQuality",
+ "lookupValue": "ContaminantControl",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenIndoorAirQuality",
+ "lookupValue": "IntegratedPestManagement",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenIndoorAirQuality",
+ "lookupValue": "MoistureControl",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenIndoorAirQuality",
+ "lookupValue": "Ventilation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenLocation",
+ "lookupValue": "SampleGreenLocationEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenSustainability",
+ "lookupValue": "ConservingMethods",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenSustainability",
+ "lookupValue": "OnsiteRecyclingCenter",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenSustainability",
+ "lookupValue": "RecyclableMaterials",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenSustainability",
+ "lookupValue": "RecycledMaterials",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenSustainability",
+ "lookupValue": "RegionallySourcedMaterials",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenSustainability",
+ "lookupValue": "RenewableMaterials",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenSustainability",
+ "lookupValue": "SalvagedMaterials",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenWaterConservation",
+ "lookupValue": "EfficientHotWaterDistribution",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenWaterConservation",
+ "lookupValue": "GrayWaterSystem",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenWaterConservation",
+ "lookupValue": "GreenInfrastructure",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenWaterConservation",
+ "lookupValue": "LowFlowFixtures",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenWaterConservation",
+ "lookupValue": "WaterRecycling",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenWaterConservation",
+ "lookupValue": "WaterSmartLandscaping",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "ActiveSolar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Baseboard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Ceiling",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Central",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Coal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "CoalStove",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Ductless",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Electric",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "EnergyStarAccaRsiQualifiedInstallation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "EnergyStarQualifiedEquipment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "ExhaustFan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "FireplaceInsert",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Fireplaces",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "FloorFurnace",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "ForcedAir",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Geothermal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Gravity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "HeatPump",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "HotWater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "HumidityControl",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Kerosene",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "NaturalGas",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Oil",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "PassiveSolar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "PelletStove",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Propane",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "PropaneStove",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Radiant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "RadiantCeiling",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "RadiantFloor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "SeparateMeters",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Solar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "SpaceHeater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Steam",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "VariesByUnit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "WallFurnace",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Wood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "WoodStove",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Heating",
+ "lookupValue": "Zoned",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HighSchool",
+ "lookupValue": "SampleHighSchoolEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HighSchoolDistrict",
+ "lookupValue": "SampleHighSchoolDistrictEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "Arena",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "Barn",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "BoardingFacilities",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "Corrals",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "HayStorage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "Paddocks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "PalpationChute",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "Pasture",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "RidingTrail",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "RoundPen",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "ShavingBin",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "Stables",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "TackRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "TrailerStorage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HorseAmenities",
+ "lookupValue": "WashRack",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HoursDaysOfOperation",
+ "lookupValue": "EveningsOnly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HoursDaysOfOperation",
+ "lookupValue": "Open24Hours",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HoursDaysOfOperation",
+ "lookupValue": "Open7Days",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HoursDaysOfOperation",
+ "lookupValue": "Open8HoursDay",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HoursDaysOfOperation",
+ "lookupValue": "OpenLessThan8HoursDay",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HoursDaysOfOperation",
+ "lookupValue": "OpenMondayFriday",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HoursDaysOfOperation",
+ "lookupValue": "OpenOver8HoursDay",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HoursDaysOfOperation",
+ "lookupValue": "OpenSaturday",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.HoursDaysOfOperation",
+ "lookupValue": "OpenSunday",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.IncomeIncludes",
+ "lookupValue": "Laundry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.IncomeIncludes",
+ "lookupValue": "Parking",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.IncomeIncludes",
+ "lookupValue": "Recreation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.IncomeIncludes",
+ "lookupValue": "RentOnly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.IncomeIncludes",
+ "lookupValue": "RvStorage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.IncomeIncludes",
+ "lookupValue": "Storage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "Bar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "BeamedCeilings",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "Bidet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "Bookcases",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "BreakfastBar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "BuiltInFeatures",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "CathedralCeilings",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "CedarClosets",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "CeilingFans",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "CentralVacuum",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "Chandelier",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "CofferedCeilings",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "CrownMolding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "DoubleVanity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "DryBar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "Dumbwaiter",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "EatInKitchen",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "Elevator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "EntranceFoyer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "GraniteCounters",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "HighCeilings",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "HighSpeedInternet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "HisAndHersClosets",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "InLawFloorplan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "KitchenIsland",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "LaminateCounters",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "LowFlowPlumbingFixtures",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "MasterDownstairs",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "NaturalWoodwork",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "OpenFloorplan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "Pantry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "RecessedLighting",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "Sauna",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "SmartHome",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "SmartThermostat",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "SoakingTub",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "SolarTubes",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "SoundSystem",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "StoneCounters",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "Storage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "TileCounters",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "TrackLighting",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "TrayCeilings",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "VaultedCeilings",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "WalkInClosets",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "WaterSenseFixtures",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "WetBar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "WiredForData",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.InteriorOrRoomFeatures",
+ "lookupValue": "WiredForSound",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.IrrigationSource",
+ "lookupValue": "SampleIrrigationSourceEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaborInformation",
+ "lookupValue": "EmployeeLicenseRequired",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaborInformation",
+ "lookupValue": "NonUnion",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaborInformation",
+ "lookupValue": "Union",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "CommonArea",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "ElectricDryerHookup",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "GasDryerHookup",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "InBasement",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "InBathroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "InCarport",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "InGarage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "InHall",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "InKitchen",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "Inside",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "InUnit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "LaundryChute",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "LaundryCloset",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "LaundryRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "LowerLevel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "MainLevel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "MultipleLocations",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "Outside",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "Sink",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "UpperLevel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LaundryFeatures",
+ "lookupValue": "WasherHookup",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseRenewalCompensation",
+ "lookupValue": "CallListingAgent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseRenewalCompensation",
+ "lookupValue": "CallListingOffice",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseRenewalCompensation",
+ "lookupValue": "CommissionPaidOnTenantPurchase",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseRenewalCompensation",
+ "lookupValue": "NoRenewalCommission",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseRenewalCompensation",
+ "lookupValue": "RenewalCommissionPaid",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseTerm",
+ "lookupValue": "MonthToMonth",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseTerm",
+ "lookupValue": "Negotiable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseTerm",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseTerm",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseTerm",
+ "lookupValue": "RenewalOption",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseTerm",
+ "lookupValue": "ShortTermLease",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseTerm",
+ "lookupValue": "SixMonths",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseTerm",
+ "lookupValue": "TwelveMonths",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseTerm",
+ "lookupValue": "TwentyFourMonths",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LeaseTerm",
+ "lookupValue": "Weekly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Levels",
+ "lookupValue": "MultiSplit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Levels",
+ "lookupValue": "One",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Levels",
+ "lookupValue": "OneAndOneHalf",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Levels",
+ "lookupValue": "ThreeOrMore",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Levels",
+ "lookupValue": "Two",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "AccreditedBuyersRepresentative",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "AccreditedLandConsultant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "AtHomeWithDiversity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "CertifiedCommercialInvestmentMember",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "CertifiedDistressedPropertyExpert",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "CertifiedInternationalPropertySpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "CertifiedPropertyManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "CertifiedRealEstateBrokerageManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "CertifiedRealEstateTeamSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "CertifiedResidentialSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "CounselorOfRealEstate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "ePRO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "GeneralAccreditedAppraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "GraduateRealtorInstitute",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "MilitaryRelocationProfessional",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "NARsGreenDesignation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "PerformanceManagementNetwork",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "PricingStrategyAdvisor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "RealEstateNegotiationExpert",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "RealtorAssociationCertifiedExecutive",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "ResidentialAccreditedAppraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "ResortAndSecondHomePropertySpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "SellerRepresentativeSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "SeniorsRealEstateSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "ShortSalesAndForeclosureResource",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "SocietyOfIndustrialAndOfficeRealtors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListAgentDesignation",
+ "lookupValue": "TransnationalReferralCertification",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingAgreement",
+ "lookupValue": "ExclusiveAgency",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingAgreement",
+ "lookupValue": "ExclusiveRightToLease",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingAgreement",
+ "lookupValue": "ExclusiveRightToSell",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingAgreement",
+ "lookupValue": "ExclusiveRightWithException",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingAgreement",
+ "lookupValue": "Net",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingAgreement",
+ "lookupValue": "Open",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingAgreement",
+ "lookupValue": "Probate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingService",
+ "lookupValue": "EntryOnly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingService",
+ "lookupValue": "FullService",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingService",
+ "lookupValue": "LimitedService",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "AllInclusiveTrustDeed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "Assumable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "Cash",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "Contract",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "Conventional",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "Exchange1031",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "ExistingBonds",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "FHA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "LandUseFee",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "LeaseBack",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "LeaseOption",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "LeasePurchase",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "LienRelease",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "OwnerMayCarry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "OwnerPayPoints",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "OwnerWillCarry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "PrivateFinancingAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "RelocationProperty",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "SellerEquityShare",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "SpecialFunding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "Submit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "Trade",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "TrustConveyance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "TrustDeed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "UsdaLoan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ListingTerms",
+ "lookupValue": "VaLoan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LockBoxType",
+ "lookupValue": "CallListingOffice",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LockBoxType",
+ "lookupValue": "CallSellerDirect",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LockBoxType",
+ "lookupValue": "Combo",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LockBoxType",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LockBoxType",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LockBoxType",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LockBoxType",
+ "lookupValue": "Sentrilock",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LockBoxType",
+ "lookupValue": "Supra",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotDimensionsSource",
+ "lookupValue": "Appraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotDimensionsSource",
+ "lookupValue": "Assessor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotDimensionsSource",
+ "lookupValue": "Builder",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotDimensionsSource",
+ "lookupValue": "Estimated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotDimensionsSource",
+ "lookupValue": "GisCalculated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotDimensionsSource",
+ "lookupValue": "Measured",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotDimensionsSource",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotDimensionsSource",
+ "lookupValue": "Owner",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotDimensionsSource",
+ "lookupValue": "PublicRecords",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotDimensionsSource",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotDimensionsSource",
+ "lookupValue": "Survey",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Agricultural",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "BackYard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Bluff",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "CityLot",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Cleared",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "CloseToClubhouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "CornerLot",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "CornersMarked",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "CulDeSac",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "DesertBack",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "DesertFront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Farm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "FewTrees",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "FlagLot",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "FrontYard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Garden",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "GentleSloping",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Greenbelt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "InteriorLot",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "IrregularLot",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Landscaped",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Level",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "ManyTrees",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Meadow",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "NativePlants",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "NearGolfCourse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "NearPublicTransit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "OnGolfCourse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "OpenLot",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Orchards",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Pasture",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Paved",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "PieShapedLot",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Private",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "RectangularLot",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "RockOutcropping",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "RollingSlope",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Secluded",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Sloped",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "SlopedDown",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "SlopedUp",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "SplitPossible",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "SprinklersInFront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "SprinklersInRear",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "SteepSlope",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Subdivided",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Views",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Waterfall",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Waterfront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Wetlands",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "Wooded",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotFeatures",
+ "lookupValue": "ZeroLotLine",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotSizeSource",
+ "lookupValue": "Appraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotSizeSource",
+ "lookupValue": "Assessor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotSizeSource",
+ "lookupValue": "Builder",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotSizeSource",
+ "lookupValue": "Estimated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotSizeSource",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotSizeSource",
+ "lookupValue": "Owner",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotSizeSource",
+ "lookupValue": "Plans",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotSizeSource",
+ "lookupValue": "PublicRecords",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotSizeSource",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotSizeUnits",
+ "lookupValue": "Acres",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotSizeUnits",
+ "lookupValue": "SquareFeet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.LotSizeUnits",
+ "lookupValue": "SquareMeters",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MLSAreaMajor",
+ "lookupValue": "SampleMLSAreaMajorEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MLSAreaMinor",
+ "lookupValue": "SampleMLSAreaMinorEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ChangeType",
+ "lookupValue": "Active",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ChangeType",
+ "lookupValue": "ActiveUnderContract",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ChangeType",
+ "lookupValue": "BackOnMarket",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ChangeType",
+ "lookupValue": "Canceled",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ChangeType",
+ "lookupValue": "Closed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ChangeType",
+ "lookupValue": "Deleted",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ChangeType",
+ "lookupValue": "Expired",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ChangeType",
+ "lookupValue": "Hold",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ChangeType",
+ "lookupValue": "NewListing",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ChangeType",
+ "lookupValue": "Pending",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ChangeType",
+ "lookupValue": "PriceChange",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ChangeType",
+ "lookupValue": "Withdrawn",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MiddleOrJuniorSchool",
+ "lookupValue": "SampleMiddleOrJuniorSchoolEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MiddleOrJuniorSchoolDistrict",
+ "lookupValue": "SampleMiddleOrJuniorSchoolDistrictEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MlsStatus",
+ "lookupValue": "SampleMlsStatusEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OccupantType",
+ "lookupValue": "Owner",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OccupantType",
+ "lookupValue": "Tenant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OccupantType",
+ "lookupValue": "Vacant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Accounting",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Advertising",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Association",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "CableTv",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "CapitalImprovements",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Depreciation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "EquipmentRental",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Fuel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "FurnitureReplacement",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Gardener",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Insurance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Legal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Licenses",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Maintenance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "MaintenanceGrounds",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "MaintenanceStructure",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Manager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "MortgageLoans",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "NewTax",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Parking",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "PestControl",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "PoolSpa",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "ProfessionalManagement",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Security",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "SnowRemoval",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Staff",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Supplies",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Trash",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "Utilities",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "VacancyAllowance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "WaterSewer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OperatingExpenseIncludes",
+ "lookupValue": "WorkmansCompensation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "AirPurifier",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "CallListingAgent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "Compressor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "DcWellPump",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "Dehumidifier",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "FarmEquipment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "FuelTanks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "Generator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "HomeTheater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "Intercom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "IrrigationEquipment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "ListAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "LivestockEquipment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "Negotiable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "OrchardEquipment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "RotaryAntenna",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "SatelliteDish",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "TvAntenna",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherEquipment",
+ "lookupValue": "VariesByUnit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "AirplaneHangar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Arena",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Barns",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "BoatHouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Cabana",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Caves",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Corrals",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "CoveredArena",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Garages",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Gazebo",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "GrainStorage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Greenhouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "GuestHouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "KennelDogRun",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "MobileHome",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Outbuilding",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "OutdoorKitchen",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "PackingShed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Pergola",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "PoolHouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "PoultryCoop",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Residence",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "RvBoatStorage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "SecondGarage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "SecondResidence",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Sheds",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Stables",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Storage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "TennisCourts",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherStructures",
+ "lookupValue": "Workshop",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "AllUtilities",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "AssociationFees",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "CableTv",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "CommonAreaMaintenance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "Electricity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "ExteriorMaintenance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "Gas",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "GroundsCare",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "HotWater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "HvacMaintenance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "Insurance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "JanitorialService",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "Management",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "OtherTax",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "ParkingFee",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "PestControl",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "PoolMaintenance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "Repairs",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "RoofMaintenance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "Security",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "Sewer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "SnowRemoval",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "Taxes",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "Telephone",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "TrashCollection",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnerPays",
+ "lookupValue": "Water",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnershipType",
+ "lookupValue": "Corporation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnershipType",
+ "lookupValue": "Llc",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnershipType",
+ "lookupValue": "Partnership",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OwnershipType",
+ "lookupValue": "SoleProprietor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "AdditionalParking",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Aggregate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "AlleyAccess",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Asphalt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Assigned",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Attached",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "AttachedCarport",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Basement",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Boat",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Carport",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "CircularDriveway",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Common",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "CommunityStructure",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Concrete",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "ConvertedGarage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Covered",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Deck",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Deeded",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Detached",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "DetachedCarport",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "DirectAccess",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "DriveThrough",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Driveway",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "ElectricGate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "ElectricVehicleChargingStations",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Enclosed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Garage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "GarageDoorOpener",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "GarageFacesFront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "GarageFacesRear",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "GarageFacesSide",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Gated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "GolfCartGarage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Gravel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Guest",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "HeatedGarage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "InsideEntrance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "KitchenLevel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Leased",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Lighted",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "NoGarage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "OffSite",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "OffStreet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "OnSite",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "OnStreet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Open",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Outside",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Oversized",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "ParkingLot",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "ParkingPad",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Paved",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "PaverBlock",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "PermitRequired",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Private",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "RvAccessParking",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "RvCarport",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "RvGarage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "RvGated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Secured",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "SharedDriveway",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "SideBySide",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Storage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Tandem",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Unassigned",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Underground",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Unpaved",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "Valet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "VariesByUnit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ParkingFeatures",
+ "lookupValue": "WorkshopInGarage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "Awnings",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "Covered",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "Deck",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "Enclosed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "FrontPorch",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "GlassEnclosed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "Patio",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "Porch",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "RearPorch",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "Screened",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "SidePorch",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "Terrace",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PatioAndPorchFeatures",
+ "lookupValue": "WrapAround",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PetsAllowed",
+ "lookupValue": "BreedRestrictions",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PetsAllowed",
+ "lookupValue": "Call",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PetsAllowed",
+ "lookupValue": "CatsOk",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PetsAllowed",
+ "lookupValue": "DogsOk",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PetsAllowed",
+ "lookupValue": "No",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PetsAllowed",
+ "lookupValue": "NumberLimit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PetsAllowed",
+ "lookupValue": "SizeLimit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PetsAllowed",
+ "lookupValue": "Yes",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "AboveGround",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Association",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "BlackBottom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Cabana",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Community",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "DivingBoard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "ElectricHeat",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "EnergyStarQualifiedPoolPump",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Fenced",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Fiberglass",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Filtered",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "GasHeat",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Gunite",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Heated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Indoor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Infinity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "InGround",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Lap",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Liner",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "OutdoorPool",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "PoolCover",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "PoolSpaCombo",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "PoolSweep",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Private",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "SaltWater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "ScreenEnclosure",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "SolarCover",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "SolarHeat",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Sport",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Tile",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Vinyl",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PoolFeatures",
+ "lookupValue": "Waterfall",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Possession",
+ "lookupValue": "CloseOfEscrow",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Possession",
+ "lookupValue": "ClosePlus1Day",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Possession",
+ "lookupValue": "ClosePlus2Days",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Possession",
+ "lookupValue": "ClosePlus30Days",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Possession",
+ "lookupValue": "ClosePlus3Days",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Possession",
+ "lookupValue": "ClosePlus3To5Days",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Possession",
+ "lookupValue": "Negotiable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Possession",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Possession",
+ "lookupValue": "RentalAgreement",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Possession",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Possession",
+ "lookupValue": "SellerRentBack",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Possession",
+ "lookupValue": "SubjectToTenantRights",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Agricultural",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Cattle",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Commercial",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Dairy",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Development",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Farm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Fishery",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Grazing",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "HighwayTouristService",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Horses",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Hunting",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Industrial",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Investment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Livestock",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "ManufacturedHome",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "MiniStorage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "MultiFamily",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Orchard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Pasture",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "PlaceOfWorship",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Poultry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Ranch",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Recreational",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Residential",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Retail",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "SingleFamily",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Subdevelopment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Timber",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Unimproved",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Vacant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PossibleUse",
+ "lookupValue": "Warehouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PostalCity",
+ "lookupValue": "SamplePostalCityEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PowerProductionType",
+ "lookupValue": "Photovoltaics",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PowerProductionType",
+ "lookupValue": "Wind",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertyCondition",
+ "lookupValue": "Fixer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertyCondition",
+ "lookupValue": "NewConstruction",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertyCondition",
+ "lookupValue": "UnderConstruction",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertyCondition",
+ "lookupValue": "UpdatedRemodeled",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Agriculture",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Apartment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "BoatSlip",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Business",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Cabin",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Condominium",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "DeededParking",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Duplex",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Farm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "HotelMotel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Industrial",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "ManufacturedHome",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "ManufacturedOnLand",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "MixedUse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "MobileHome",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "MultiFamily",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Office",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "OwnYourOwn",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Quadruplex",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Ranch",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Retail",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "SingleFamilyResidence",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "StockCooperative",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Timeshare",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Townhouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Triplex",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "UnimprovedLand",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertySubType",
+ "lookupValue": "Warehouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertyType",
+ "lookupValue": "BusinessOpportunity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertyType",
+ "lookupValue": "CommercialLease",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertyType",
+ "lookupValue": "CommercialSale",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertyType",
+ "lookupValue": "Farm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertyType",
+ "lookupValue": "Land",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertyType",
+ "lookupValue": "ManufacturedInPark",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertyType",
+ "lookupValue": "Residential",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertyType",
+ "lookupValue": "ResidentialIncome",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PropertyType",
+ "lookupValue": "ResidentialLease",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RentIncludes",
+ "lookupValue": "AllUtilities",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RentIncludes",
+ "lookupValue": "CableTv",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RentIncludes",
+ "lookupValue": "Electricity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RentIncludes",
+ "lookupValue": "Gardener",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RentIncludes",
+ "lookupValue": "Gas",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RentIncludes",
+ "lookupValue": "Internet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RentIncludes",
+ "lookupValue": "Management",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RentIncludes",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RentIncludes",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RentIncludes",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RentIncludes",
+ "lookupValue": "Sewer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RentIncludes",
+ "lookupValue": "TrashCollection",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RentIncludes",
+ "lookupValue": "Water",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadFrontageType",
+ "lookupValue": "Alley",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadFrontageType",
+ "lookupValue": "CityStreet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadFrontageType",
+ "lookupValue": "CountyRoad",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadFrontageType",
+ "lookupValue": "Easement",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadFrontageType",
+ "lookupValue": "Freeway",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadFrontageType",
+ "lookupValue": "Highway",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadFrontageType",
+ "lookupValue": "Interstate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadFrontageType",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadFrontageType",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadFrontageType",
+ "lookupValue": "PrivateRoad",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadFrontageType",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadFrontageType",
+ "lookupValue": "StateRoad",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadFrontageType",
+ "lookupValue": "Unimproved",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadResponsibility",
+ "lookupValue": "PrivateMaintainedRoad",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadResponsibility",
+ "lookupValue": "PublicMaintainedRoad",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadResponsibility",
+ "lookupValue": "RoadMaintenanceAgreement",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadSurfaceType",
+ "lookupValue": "AlleyPaved",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadSurfaceType",
+ "lookupValue": "Asphalt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadSurfaceType",
+ "lookupValue": "ChipAndSeal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadSurfaceType",
+ "lookupValue": "Concrete",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadSurfaceType",
+ "lookupValue": "Dirt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadSurfaceType",
+ "lookupValue": "Gravel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadSurfaceType",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadSurfaceType",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadSurfaceType",
+ "lookupValue": "Paved",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadSurfaceType",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoadSurfaceType",
+ "lookupValue": "Unimproved",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Aluminum",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "AsbestosShingle",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Asphalt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Bahama",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Barrel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Bituthene",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "BuiltUp",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Composition",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Concrete",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Copper",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Elastomeric",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Fiberglass",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Flat",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "FlatTile",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Foam",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "GreenRoof",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Mansard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Membrane",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Metal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Mixed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "RolledHotMop",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Rubber",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Shake",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Shingle",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Slate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "SpanishTile",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Stone",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Synthetic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "TarGravel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Tile",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Roof",
+ "lookupValue": "Wood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Basement",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Bathroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Bathroom1",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Bathroom2",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Bathroom3",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Bathroom4",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Bathroom5",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Bedroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Bedroom1",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Bedroom2",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Bedroom3",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Bedroom4",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Bedroom5",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "BonusRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Den",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "DiningRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "ExerciseRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "FamilyRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "GameRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "GreatRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Gym",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Kitchen",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Laundry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Library",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "LivingRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Loft",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "MasterBathroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "MasterBedroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "MediaRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Office",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Sauna",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "UtilityRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RoomType",
+ "lookupValue": "Workshop",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "BuildingSecurity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "CarbonMonoxideDetectors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "ClosedCircuitCameras",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "FireAlarm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "FireEscape",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "FireSprinklerSystem",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "Firewalls",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "GatedCommunity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "GatedWithGuard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "KeyCardEntry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "PanicAlarm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "Prewired",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "SecuredGarageParking",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "SecurityFence",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "SecurityGate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "SecurityGuard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "SecurityLights",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "SecurityService",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "SecuritySystem",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "SecuritySystemLeased",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "SecuritySystemOwned",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "SmokeDetectors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "TwentyFourHourSecurity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "VariesByUnit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "WindowBars",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SecurityFeatures",
+ "lookupValue": "WindowBarsWithQuickRelease",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "AerobicSeptic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "Cesspool",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "EngineeredSeptic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "HoldingTank",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "MoundSeptic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "PercTestOnFile",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "PercTestRequired",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "PrivateSewer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "PublicSewer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "SepticNeeded",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "SepticTank",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "SharedSeptic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Sewer",
+ "lookupValue": "Unknown",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingContactType",
+ "lookupValue": "Agent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingContactType",
+ "lookupValue": "Occupant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingContactType",
+ "lookupValue": "Owner",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingContactType",
+ "lookupValue": "PropertyManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingDays",
+ "lookupValue": "SampleShowingDaysEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "AppointmentOnly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "CallListingAgent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "CallListingOffice",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "CallManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "CallOwner",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "CallTenant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "CombinationLockBox",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "DaySleeper",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "DoNotShow",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "EmailListingAgent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "KeyInOffice",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "Lockbox",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "NoLockbox",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "NoSign",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "Occupied",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "PetsOnPremises",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "RestrictedHours",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "SecuritySystem",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "ShowingService",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "TextListingAgent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "ToBeBuilt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "TwentyFourHourNotice",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ShowingRequirements",
+ "lookupValue": "UnderConstruction",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Aluminum",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Block",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Brick",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Combination",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Concrete",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Fiberglass",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Frame",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Glass",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Masonite",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Metal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Steel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Stone",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Stucco",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Synthetic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Unknown",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Vinyl",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Skirt",
+ "lookupValue": "Wood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpaFeatures",
+ "lookupValue": "AboveGround",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpaFeatures",
+ "lookupValue": "Bath",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpaFeatures",
+ "lookupValue": "Community",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpaFeatures",
+ "lookupValue": "Fiberglass",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpaFeatures",
+ "lookupValue": "Gunite",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpaFeatures",
+ "lookupValue": "Heated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpaFeatures",
+ "lookupValue": "InGround",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpaFeatures",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpaFeatures",
+ "lookupValue": "Private",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpaFeatures",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialLicenses",
+ "lookupValue": "BeerWine",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialLicenses",
+ "lookupValue": "ClassH",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialLicenses",
+ "lookupValue": "Entertainment",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialLicenses",
+ "lookupValue": "Franchise",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialLicenses",
+ "lookupValue": "Gambling",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialLicenses",
+ "lookupValue": "Liquor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialLicenses",
+ "lookupValue": "Liquor5YearsOrLess",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialLicenses",
+ "lookupValue": "Liquor5YearsOrMore",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialLicenses",
+ "lookupValue": "LiquorOffSale",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialLicenses",
+ "lookupValue": "LiquorOnSale",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialLicenses",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialLicenses",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialLicenses",
+ "lookupValue": "Professional",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialListingConditions",
+ "lookupValue": "Auction",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialListingConditions",
+ "lookupValue": "BankruptcyProperty",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialListingConditions",
+ "lookupValue": "HudOwned",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialListingConditions",
+ "lookupValue": "InForeclosure",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialListingConditions",
+ "lookupValue": "NoticeOfDefault",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialListingConditions",
+ "lookupValue": "ProbateListing",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialListingConditions",
+ "lookupValue": "RealEstateOwned",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialListingConditions",
+ "lookupValue": "ShortSale",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialListingConditions",
+ "lookupValue": "Standard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SpecialListingConditions",
+ "lookupValue": "ThirdPartyApproval",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StandardStatus",
+ "lookupValue": "Active",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StandardStatus",
+ "lookupValue": "ActiveUnderContract",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StandardStatus",
+ "lookupValue": "Canceled",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StandardStatus",
+ "lookupValue": "Closed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StandardStatus",
+ "lookupValue": "ComingSoon",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StandardStatus",
+ "lookupValue": "Delete",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StandardStatus",
+ "lookupValue": "Expired",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StandardStatus",
+ "lookupValue": "Hold",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StandardStatus",
+ "lookupValue": "Incomplete",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StandardStatus",
+ "lookupValue": "Pending",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StandardStatus",
+ "lookupValue": "Withdrawn",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "AB",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "AK",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "AL",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "AR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "AZ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "BC",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "CA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "CO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "CT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "DC",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "DE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "FL",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "GA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "HI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "IA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "ID",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "IL",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "IN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "KS",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "KY",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "LA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "MA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "MB",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "MD",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "ME",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "MI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "MN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "MO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "MS",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "MT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "NB",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "NC",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "ND",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "NE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "NF",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "NH",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "NJ",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "NM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "NS",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "NT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "NU",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "NV",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "NY",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "OH",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "OK",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "ON",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "OR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "PA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "PE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "QC",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "RI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "SC",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "SD",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "SK",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "TN",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "TX",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "UT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "VA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "VI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "VT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "WA",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "WI",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "WV",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "WY",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StateOrProvince",
+ "lookupValue": "YT",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StreetDirection",
+ "lookupValue": "E",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StreetDirection",
+ "lookupValue": "N",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StreetDirection",
+ "lookupValue": "NE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StreetDirection",
+ "lookupValue": "NW",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StreetDirection",
+ "lookupValue": "S",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StreetDirection",
+ "lookupValue": "SE",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StreetDirection",
+ "lookupValue": "SW",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StreetDirection",
+ "lookupValue": "W",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StreetSuffix",
+ "lookupValue": "SampleStreetSuffixEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "Cabin",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "Dock",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "Duplex",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "Flex",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "HotelMotel",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "House",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "Industrial",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "ManufacturedHouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "MixedUse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "MultiFamily",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "Office",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "Quadruplex",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "Retail",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "Townhouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "Triplex",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.StructureType",
+ "lookupValue": "Warehouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SyndicateTo",
+ "lookupValue": "HomesDotCom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SyndicateTo",
+ "lookupValue": "Listhub",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SyndicateTo",
+ "lookupValue": "RealtorDotCom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SyndicateTo",
+ "lookupValue": "ZillowTrulia",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TaxStatusCurrent",
+ "lookupValue": "Personal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TaxStatusCurrent",
+ "lookupValue": "PersonalAndReal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TaxStatusCurrent",
+ "lookupValue": "Real",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "AllUtilities",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "AssociationFees",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "CableTv",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "CommonAreaMaintenance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "Electricity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "ExteriorMaintenance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "Gas",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "GroundsCare",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "HotWater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "HvacMaintenance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "Insurance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "JanitorialService",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "Management",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "OtherTax",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "ParkingFee",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "PestControl",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "PoolMaintenance",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "Repairs",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "Roof",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "Security",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "Sewer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "SnowRemoval",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "Taxes",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "Telephone",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "TrashCollection",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TenantPays",
+ "lookupValue": "Water",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitTypeType",
+ "lookupValue": "Apartments",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitTypeType",
+ "lookupValue": "Efficiency",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitTypeType",
+ "lookupValue": "FourBedroomOrMore",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitTypeType",
+ "lookupValue": "Loft",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitTypeType",
+ "lookupValue": "ManagersUnit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitTypeType",
+ "lookupValue": "OneBedroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitTypeType",
+ "lookupValue": "Penthouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitTypeType",
+ "lookupValue": "Studio",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitTypeType",
+ "lookupValue": "ThreeBedroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitTypeType",
+ "lookupValue": "TwoBedroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitsFurnished",
+ "lookupValue": "AllUnits",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitsFurnished",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitsFurnished",
+ "lookupValue": "VariesByUnit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "CableAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "CableConnected",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "CableNotAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "ElectricityAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "ElectricityConnected",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "ElectricityNotAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "NaturalGasAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "NaturalGasConnected",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "NaturalGasNotAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "PhoneAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "PhoneConnected",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "PhoneNotAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "Propane",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "SewerAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "SewerConnected",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "SewerNotAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "UndergroundUtilities",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "WaterAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "WaterConnected",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Utilities",
+ "lookupValue": "WaterNotAvailable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Vegetation",
+ "lookupValue": "Brush",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Vegetation",
+ "lookupValue": "Cleared",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Vegetation",
+ "lookupValue": "Crops",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Vegetation",
+ "lookupValue": "Grassed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Vegetation",
+ "lookupValue": "HeavilyWooded",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Vegetation",
+ "lookupValue": "NaturalState",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Vegetation",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Vegetation",
+ "lookupValue": "PartiallyWooded",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Vegetation",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Vegetation",
+ "lookupValue": "Wooded",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Bay",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Beach",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Bridges",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Canal",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Canyon",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "City",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "CityLights",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "CreekStream",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Desert",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Downtown",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Forest",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Garden",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "GolfCourse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Hills",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Lake",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Marina",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Meadow",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Mountains",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Neighborhood",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Ocean",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Orchard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Panoramic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "ParkGreenbelt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Pasture",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Pond",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Pool",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Ridge",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "River",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Rural",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Skyline",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Territorial",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "TreesWoods",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Valley",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Vineyard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.View",
+ "lookupValue": "Water",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterSource",
+ "lookupValue": "Cistern",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterSource",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterSource",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterSource",
+ "lookupValue": "Private",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterSource",
+ "lookupValue": "Public",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterSource",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterSource",
+ "lookupValue": "SharedWell",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterSource",
+ "lookupValue": "Spring",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterSource",
+ "lookupValue": "Well",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "BeachAccess",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "BeachFront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "CanalAccess",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "CanalFront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "Creek",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "Lagoon",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "Lake",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "LakeFront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "LakePrivileges",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "NavigableWater",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "OceanAccess",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "OceanFront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "Pond",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "RiverAccess",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "RiverFront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "Seawall",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "Stream",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WaterfrontFeatures",
+ "lookupValue": "Waterfront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "AluminumFrames",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "BayWindows",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "Blinds",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "DisplayWindows",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "DoublePaneWindows",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "Drapes",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "EnergyStarQualifiedWindows",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "GardenWindows",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "InsulatedWindows",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "LowEmissivityWindows",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "PlantationShutters",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "Screens",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "Shutters",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "Skylights",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "SolarScreens",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "StormWindows",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "TintedWindows",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "TriplePaneWindows",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "WindowCoverings",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "WindowTreatments",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.WindowFeatures",
+ "lookupValue": "WoodFrames",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.YearBuiltSource",
+ "lookupValue": "Appraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.YearBuiltSource",
+ "lookupValue": "Assessor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.YearBuiltSource",
+ "lookupValue": "Builder",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.YearBuiltSource",
+ "lookupValue": "Estimated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.YearBuiltSource",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.YearBuiltSource",
+ "lookupValue": "Owner",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.YearBuiltSource",
+ "lookupValue": "PublicRecords",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.YearBuiltSource",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "AccreditedBuyersRepresentative",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "AccreditedLandConsultant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "AtHomeWithDiversity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "CertifiedCommercialInvestmentMember",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "CertifiedDistressedPropertyExpert",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "CertifiedInternationalPropertySpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "CertifiedPropertyManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "CertifiedRealEstateBrokerageManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "CertifiedRealEstateTeamSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "CertifiedResidentialSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "CounselorOfRealEstate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "ePRO",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "GeneralAccreditedAppraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "GraduateRealtorInstitute",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "MilitaryRelocationProfessional",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "NARsGreenDesignation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "PerformanceManagementNetwork",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "PricingStrategyAdvisor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "RealEstateNegotiationExpert",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "RealtorAssociationCertifiedExecutive",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "ResidentialAccreditedAppraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "ResortAndSecondHomePropertySpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "SellerRepresentativeSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "SeniorsRealEstateSpecialist",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "ShortSalesAndForeclosureResource",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "SocietyOfIndustrialAndOfficeRealtors",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberDesignation",
+ "lookupValue": "TransnationalReferralCertification",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Abkhazian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Afar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Afrikaans",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Albanian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "AmericanSignLanguage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Amharic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Arabic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Aramaic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Armenian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Assamese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "AssyrianNeoAramaic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Avestan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Aymara",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Azerbaijani",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Bambara",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Bashkir",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Basque",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Bengali",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Bihari",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Bikol",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Bislama",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Bosnian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "BrazilianPortuguese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Bulgarian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Burmese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Byelorussian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Cambodian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Cantonese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "CapeVerdeanCreole",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Catalan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Cebuano",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Chamorro",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Chechen",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Chinese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Chuukese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Chuvash",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Cornish",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Corsican",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Croatian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Czech",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Danish",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Dari",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Dioula",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Dutch",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Dzongkha",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "English",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Esperanto",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Estonian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Faroese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Farsi",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Fiji",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Finnish",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Flemish",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "French",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Frisian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Galician",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Georgian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "German",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Greek",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Greenlandic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Guarani",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Gujarati",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "HaitianCreole",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Hausa",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Hebrew",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Herero",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Hiligaynon",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Hindi",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "HiriMotu",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Hmong",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Hungarian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Iban",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Icelandic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Igbo",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Ilocano",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Indonesian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Interlingua",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Inuktitut",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Inupiak",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Irish",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Italian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Japanese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Javanese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Kannada",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Kashmiri",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Kazakh",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "KIche",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Kichwa",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Kikuyu",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Kinyarwanda",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Kirghiz",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Kirundi",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Komi",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Korean",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Kpelle",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Kru",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Kurdish",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Lao",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Latin",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Latvian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Lingala",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Lithuanian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Luxemburgish",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Macedonian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Malagasy",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Malay",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Malayalam",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Maltese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Mandarin",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Maninka",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "ManxGaelic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Maori",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Marathi",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Marshallese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Moldovan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Mongolian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Nauru",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Navajo",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Ndebele",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Ndonga",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Nepali",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Norwegian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Norwegian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Nyanja",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Occitan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Oriya",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Oromo",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Ossetian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Pali",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Pangasinan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Papiamento",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Pashto",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Polish",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Portuguese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Punjabi",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Quechua",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Romanian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Romany",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Russian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Sami",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Samoan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Sangho",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Sanskrit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Sardinian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "ScotsGaelic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Serbian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "SerboCroatian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Sesotho",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Setswana",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Shan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Shona",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Sindhi",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Sinhalese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Siswati",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Slovak",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Slovenian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Somali",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "SouthernNdebele",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Spanish",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Sundanese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Swahili",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Swedish",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Syriac",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Tagalog",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Tahitian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Tajik",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Tamil",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Tatar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Telugu",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Thai",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Tibetan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Tigrinya",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Tongan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Tsonga",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Turkish",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Turkmen",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Twi",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Uigur",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Ukrainian",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Urdu",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Uzbek",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Vietnamese",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Volapuk",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Welsh",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Wolof",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Xhosa",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Yiddish",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Yoruba",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Zhuang",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Languages",
+ "lookupValue": "Zulu",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberMlsSecurityClass",
+ "lookupValue": "SampleMemberMlsSecurityClassEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "Direct",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "Fax",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "First",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "Home",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "Mobile",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "Modem",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "Office",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "Pager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "Preferred",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "Second",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "Sms",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "Third",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "TollFree",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberOtherPhoneType",
+ "lookupValue": "Voicemail",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberStatus",
+ "lookupValue": "Active",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberStatus",
+ "lookupValue": "Inactive",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "Assistant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "AssociationStaff",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "DesignatedRealtorAppraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "DesignatedRealtorParticipant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "LicensedAssistant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "MlsOnlyAppraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "MlsOnlyBroker",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "MlsOnlySalesperson",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "MlsStaff",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "NonMemberVendor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "OfficeManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "RealtorAppraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "RealtorSalesperson",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MemberType",
+ "lookupValue": "UnlicensedAssistant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Blog",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Digg",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Facebook",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "FacebookMessenger",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Googleplus",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "iMessage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Instagram",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Linkedin",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Pinterest",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Reddit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Slack",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Snapchat",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Stumbleupon",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Tumblr",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Twitter",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Website",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SocialMediaType",
+ "lookupValue": "Youtube",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeBranchType",
+ "lookupValue": "Branch",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeBranchType",
+ "lookupValue": "Main",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeBranchType",
+ "lookupValue": "StandAlone",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeStatus",
+ "lookupValue": "Active",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeStatus",
+ "lookupValue": "Inactive",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeType",
+ "lookupValue": "Affiliate",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeType",
+ "lookupValue": "Appraiser",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeType",
+ "lookupValue": "Association",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeType",
+ "lookupValue": "Mls",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeType",
+ "lookupValue": "MlsOnlyBranch",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeType",
+ "lookupValue": "MlsOnlyFirm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeType",
+ "lookupValue": "MlsOnlyOffice",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeType",
+ "lookupValue": "NonMemberVendor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeType",
+ "lookupValue": "RealtorBranchOffice",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeType",
+ "lookupValue": "RealtorFirm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OfficeType",
+ "lookupValue": "RealtorOffice",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SyndicateAgentOption",
+ "lookupValue": "SampleSyndicateAgentOptionEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ContactStatus",
+ "lookupValue": "Active",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ContactStatus",
+ "lookupValue": "Deleted",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ContactStatus",
+ "lookupValue": "Inactive",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ContactStatus",
+ "lookupValue": "OnVacation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ContactType",
+ "lookupValue": "Business",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ContactType",
+ "lookupValue": "Family",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ContactType",
+ "lookupValue": "Friend",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ContactType",
+ "lookupValue": "Lead",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ContactType",
+ "lookupValue": "Prospect",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ContactType",
+ "lookupValue": "ReadyToBuy",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "Direct",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "Fax",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "First",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "Home",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "Mobile",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "Modem",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "Office",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "Pager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "Preferred",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "Second",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "Sms",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "Third",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "TollFree",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OtherPhoneType",
+ "lookupValue": "Voicemail",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PreferredAddress",
+ "lookupValue": "Home",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PreferredAddress",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PreferredAddress",
+ "lookupValue": "Work",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PreferredPhone",
+ "lookupValue": "Direct",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PreferredPhone",
+ "lookupValue": "Home",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PreferredPhone",
+ "lookupValue": "Mobile",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PreferredPhone",
+ "lookupValue": "Office",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PreferredPhone",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PreferredPhone",
+ "lookupValue": "TollFree",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PreferredPhone",
+ "lookupValue": "Voicemail",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "BusinessOpportunity",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "CommercialLease",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "CommercialSale",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "Contacts",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "CrossProperty",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "Farm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "HistoryTransactional",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "Land",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "ManufacturedInPark",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "Media",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "Member",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "Office",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "OpenHouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "Residential",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "ResidentialIncome",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "ResidentialLease",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ClassName",
+ "lookupValue": "SavedSearch",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "AerialView",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Atrium",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Attic",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "BackOfStructure",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Balcony",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Bar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Barn",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Basement",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Bathroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Bedroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "BonusRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "BreakfastArea",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Closet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Community",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Courtyard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Deck",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Den",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "DiningArea",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "DiningRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Dock",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Entry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "ExerciseRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "FamilyRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Fence",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Fireplace",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "FloorPlan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "FrontOfStructure",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "GameRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Garage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Garden",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "GolfCourse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "GreatRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "GuestQuarters",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Gym",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "HobbyRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Inlaw",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Kitchen",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Lake",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Laundry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Library",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "LivingRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "LoadingDock",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Lobby",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Loft",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Lot",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "MasterBathroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "MasterBedroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "MediaRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "MudRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Nursery",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Office",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "OutBuildings",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Pantry",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Parking",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Patio",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Pier",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "PlatMap",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Pond",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Pool",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Reception",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "RecreationRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Sauna",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Showroom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "SideOfStructure",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "SittingRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Spa",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Stable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Storage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Studio",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Study",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "SunRoom",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "View",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Waterfront",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "WineCellar",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Workshop",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageOf",
+ "lookupValue": "Yard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ImageSizeDescription",
+ "lookupValue": "SampleImageSizeDescriptionEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaCategory",
+ "lookupValue": "AgentPhoto",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaCategory",
+ "lookupValue": "BrandedVirtualTour",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaCategory",
+ "lookupValue": "Document",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaCategory",
+ "lookupValue": "FloorPlan",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaCategory",
+ "lookupValue": "OfficeLogo",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaCategory",
+ "lookupValue": "OfficePhoto",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaCategory",
+ "lookupValue": "Photo",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaCategory",
+ "lookupValue": "UnbrandedVirtualTour",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaCategory",
+ "lookupValue": "Video",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaStatus",
+ "lookupValue": "SampleMediaStatusEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Doc",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Docx",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Gif",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Jpeg",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Mov",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Mp4",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Mpeg",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Pdf",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Png",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Quicktime",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Rtf",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Tiff",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Txt",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Wmv",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Xls",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.MediaType",
+ "lookupValue": "Xlsx",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Permission",
+ "lookupValue": "AgentOnly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Permission",
+ "lookupValue": "FirmOnly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Permission",
+ "lookupValue": "Idx",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Permission",
+ "lookupValue": "OfficeOnly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Permission",
+ "lookupValue": "Private",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Permission",
+ "lookupValue": "Public",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Permission",
+ "lookupValue": "Vow",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ResourceName",
+ "lookupValue": "Contacts",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ResourceName",
+ "lookupValue": "Member",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ResourceName",
+ "lookupValue": "Office",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ResourceName",
+ "lookupValue": "Property",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ContactListingPreference",
+ "lookupValue": "Discard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ContactListingPreference",
+ "lookupValue": "Favorite",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ContactListingPreference",
+ "lookupValue": "Possibility",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ActorType",
+ "lookupValue": "Agent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ActorType",
+ "lookupValue": "Bot",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ActorType",
+ "lookupValue": "Client",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ActorType",
+ "lookupValue": "Consumer",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ActorType",
+ "lookupValue": "Unknown",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DeviceType",
+ "lookupValue": "Desktop",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DeviceType",
+ "lookupValue": "Mobile",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DeviceType",
+ "lookupValue": "Tablet",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DeviceType",
+ "lookupValue": "Unknown",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DeviceType",
+ "lookupValue": "Wearable",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Agent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Broker",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Digg",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Email",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Facebook",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "FacebookMessenger",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Googleplus",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Imessage",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Instagram",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Linkedin",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Pinterest",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Reddit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Slack",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Sms",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Snapchat",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Stumbleupon",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Tumblr",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Twitter",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventTarget",
+ "lookupValue": "Youtube",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "ClickedOnEmailAddress",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "ClickedOnPhoneNumber",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "ClickToPrimaryHostedSite",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "Comments",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "DetailedView",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "Discard",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "DrivingDirections",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "ExitDetailedView",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "Favorited",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "Maybe",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "NonDetailedView",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "ObjectModified",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "PhotoGallery",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "Printed",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "PropertyVideos",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "Search",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "Share",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "SubmissionOfLeadForm",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.EventType",
+ "lookupValue": "VirtualTour",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectIdType",
+ "lookupValue": "Listingid",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectIdType",
+ "lookupValue": "Listingkey",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectIdType",
+ "lookupValue": "Listingkeynumeric",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectIdType",
+ "lookupValue": "Openhouseid",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectIdType",
+ "lookupValue": "Openhousekey",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectIdType",
+ "lookupValue": "Openhousekeynumeric",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectIdType",
+ "lookupValue": "Parcelnumber",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectIdType",
+ "lookupValue": "Puid",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectIdType",
+ "lookupValue": "Savedsearchkey",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectIdType",
+ "lookupValue": "Savedsearchkeynumeric",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectIdType",
+ "lookupValue": "Unique",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectType",
+ "lookupValue": "Document",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectType",
+ "lookupValue": "Listing",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectType",
+ "lookupValue": "OpenHouse",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectType",
+ "lookupValue": "Photo",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectType",
+ "lookupValue": "Property",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectType",
+ "lookupValue": "SavedSearch",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ObjectType",
+ "lookupValue": "VirtualTour",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SavedSearchType",
+ "lookupValue": "SampleSavedSearchTypeEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SearchQueryExceptions",
+ "lookupValue": "SampleSearchQueryExceptionsEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SearchQueryType",
+ "lookupValue": "DMQL2",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.SearchQueryType",
+ "lookupValue": "OdataFilter",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Attended",
+ "lookupValue": "Agent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Attended",
+ "lookupValue": "Seller",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.Attended",
+ "lookupValue": "Unattended",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OpenHouseStatus",
+ "lookupValue": "Active",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OpenHouseStatus",
+ "lookupValue": "Canceled",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OpenHouseStatus",
+ "lookupValue": "Ended",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OpenHouseType",
+ "lookupValue": "Broker",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OpenHouseType",
+ "lookupValue": "Office",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OpenHouseType",
+ "lookupValue": "Public",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "FridayAM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "FridayPM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "MondayAM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "MondayPM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "None",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "SaturdayAM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "SaturdayPM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "SundayAM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "SundayPM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "ThursdayAM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "ThursdayPM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "TuesdayAM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "TuesdayPM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "WednesdayAM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.DailySchedule",
+ "lookupValue": "WednesdayPM",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "AgentDisabled",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "ClientDisabled",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "ConciergeNotification",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "FinalIgnoredWarning",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "Ignored",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "InitialIgnoredWarning",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "Invalid",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "NoListingsFound",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "NoListingsFoundWarning",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "NoOneToSendTo",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "OverLimit",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "ReActivated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "Revised",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "SearchFailing",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "WelcomeEmailIgnored",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ReasonActiveOrDisabled",
+ "lookupValue": "WelcomeEmailIgnoredWarning",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ScheduleType",
+ "lookupValue": "ASAP",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ScheduleType",
+ "lookupValue": "Daily",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.ScheduleType",
+ "lookupValue": "Monthly",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.QueueTransactionType",
+ "lookupValue": "Add",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.QueueTransactionType",
+ "lookupValue": "Change",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.QueueTransactionType",
+ "lookupValue": "Delete",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RuleFormat",
+ "lookupValue": "Javascript",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RuleFormat",
+ "lookupValue": "OdataFilter",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RuleFormat",
+ "lookupValue": "REBR",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RuleFormat",
+ "lookupValue": "RetsValidation",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.RuleType",
+ "lookupValue": "SampleRuleTypeEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TeamStatus",
+ "lookupValue": "Active",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TeamStatus",
+ "lookupValue": "Inactive",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TeamImpersonationLevel",
+ "lookupValue": "SampleTeamImpersonationLevelEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TeamMemberType",
+ "lookupValue": "AdministrationAssistant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TeamMemberType",
+ "lookupValue": "BuyerAgent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TeamMemberType",
+ "lookupValue": "BuyerAgent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TeamMemberType",
+ "lookupValue": "LeadManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TeamMemberType",
+ "lookupValue": "ListingAgent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TeamMemberType",
+ "lookupValue": "MarketingAssistant",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TeamMemberType",
+ "lookupValue": "OperationsManager",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TeamMemberType",
+ "lookupValue": "TeamLead",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TeamMemberType",
+ "lookupValue": "TeamMember",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.TeamMemberType",
+ "lookupValue": "TransactionCoordinator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.OrganizationType",
+ "lookupValue": "SampleOrganizationTypeEnumValue",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.NotedBy",
+ "lookupValue": "Agent",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.NotedBy",
+ "lookupValue": "Contact",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenVerificationSource",
+ "lookupValue": "Administrator",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenVerificationSource",
+ "lookupValue": "Assessor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenVerificationSource",
+ "lookupValue": "Builder",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenVerificationSource",
+ "lookupValue": "ContractorOrInstaller",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenVerificationSource",
+ "lookupValue": "Other",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenVerificationSource",
+ "lookupValue": "Owner",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenVerificationSource",
+ "lookupValue": "ProgramSponsor",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenVerificationSource",
+ "lookupValue": "ProgramVerifier",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenVerificationSource",
+ "lookupValue": "PublicRecords",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenVerificationSource",
+ "lookupValue": "SeeRemarks",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenVerificationStatus",
+ "lookupValue": "Complete",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.GreenVerificationStatus",
+ "lookupValue": "InProcess",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PowerProductionAnnualStatus",
+ "lookupValue": "Actual",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PowerProductionAnnualStatus",
+ "lookupValue": "Estimated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.PowerProductionAnnualStatus",
+ "lookupValue": "PartiallyEstimated",
+ "type": "Edm.Int32"
+ },
+ {
+ "lookupName": "org.reso.metadata.enums.UnitTypeFurnished",
+ "lookupValue": "SampleUnitTypeFurnishedEnumValue",
+ "type": "Edm.Int32"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/main/resources/RESODataDictionary-1.7.xlsx b/src/main/resources/RESODataDictionary-1.7.xlsx
new file mode 100644
index 00000000..a846c84d
Binary files /dev/null and b/src/main/resources/RESODataDictionary-1.7.xlsx differ
diff --git a/src/main/resources/ignored.json b/src/main/resources/ignored.json
new file mode 100644
index 00000000..8c15d67d
--- /dev/null
+++ b/src/main/resources/ignored.json
@@ -0,0 +1,5 @@
+[
+ {
+ "lookup": "RoadFrontageType", "value": "CountyRoad", "ignored": ["CountryRoad"]
+ }
+]
\ No newline at end of file
diff --git a/src/test/java/org/reso/commander/test/features/test-web-api-test-container.feature b/src/test/java/org/reso/commander/test/features/test-web-api-test-container.feature
index a667b712..80452327 100644
--- a/src/test/java/org/reso/commander/test/features/test-web-api-test-container.feature
+++ b/src/test/java/org/reso/commander/test/features/test-web-api-test-container.feature
@@ -8,8 +8,7 @@ Feature: Commander Platinum Web API Test Container Tests
# Metadata Validation
####################################
Scenario: Test Container is Initialized using Token-Based Authentication
- When sample metadata from "good-edmx-and-edm.xml" are loaded into the test container
- And Settings are present in the test container
+ Given Settings are present in the test container
And an auth token is provided in "ClientSettings_BearerToken"
Then the Commander is created using auth token client mode
And the auth token has a value of "testTokenValue"
diff --git a/src/test/java/org/reso/commander/test/stepdefs/TestWebAPITestContainer.java b/src/test/java/org/reso/commander/test/stepdefs/TestWebAPITestContainer.java
index 36989722..98cc394b 100644
--- a/src/test/java/org/reso/commander/test/stepdefs/TestWebAPITestContainer.java
+++ b/src/test/java/org/reso/commander/test/stepdefs/TestWebAPITestContainer.java
@@ -2,7 +2,7 @@
import io.cucumber.java8.En;
import org.apache.http.HttpStatus;
-import org.reso.commander.certfication.containers.WebAPITestContainer;
+import org.reso.certification.containers.WebAPITestContainer;
import org.reso.commander.common.TestUtils;
import org.reso.models.Settings;
@@ -265,6 +265,7 @@ public TestWebAPITestContainer() {
/**
* Returns a string containing the contents of the given resource name
+ *
* @param resourceName the resource name to load
* @return string data from the resource
*/
diff --git a/src/test/resources/cucumber.properties b/src/test/resources/cucumber.properties
new file mode 100644
index 00000000..aa51b352
--- /dev/null
+++ b/src/test/resources/cucumber.properties
@@ -0,0 +1 @@
+cucumber.publish.quiet=true
\ No newline at end of file
diff --git a/src/test/resources/good-datasystem.json b/src/test/resources/good-datasystem.json
index 7e5785f6..74f714c7 100644
--- a/src/test/resources/good-datasystem.json
+++ b/src/test/resources/good-datasystem.json
@@ -7,6 +7,7 @@
"DateTimeStamp": "2014-04-11T12:02:48.509401-04:00",
"TransportVersion": "0.9",
"DataDictionaryVersion": "1.3",
+ "ID": "RESO_MLS",
"Resources": [
{
"Name": "Property",
@@ -45,8 +46,7 @@
"TimeZoneOffset": -5,
"Localizations": []
}
- ],
- "ID": "RESO_MLS"
+ ]
}
]
}
\ No newline at end of file
diff --git a/src/test/resources/good-edmx-and-edm.xml b/src/test/resources/good-edmx-and-edm.xml
index 2606836c..d79f9553 100644
--- a/src/test/resources/good-edmx-and-edm.xml
+++ b/src/test/resources/good-edmx-and-edm.xml
@@ -1,18 +1,22 @@
-
+
+
+
+
+
-
+
diff --git a/web-api-server.core.1.0.2.resoscript b/web-api-server.core.1.0.2.resoscript
deleted file mode 100644
index 3e8b7fd4..00000000
--- a/web-api-server.core.1.0.2.resoscript
+++ /dev/null
@@ -1,504 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]>
-
-
-
-
-
-
- 3.0.0
-
-
-
-
-
-
-
-
-
-
-
-
- authorization_code
-
-
-
- client_credentials
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file