This query returns key attributes to determine the serviceability of an address, as well as key indicators such as residential/business indicators, land use, and building designation for multi-tenant and multi-dwelling units.
Serviceability by Precisely ID
query addressByPreciselyID {
getById(id: "P00003PZ60KH", queryType: PRECISELY_ID) {
serviceability {
data {
serviceabilityID
preciselyID
residentialBusinessIndicator {
value
description
}
serviceableAddress
standardizedLandUseValues {
value
description
}
genealogy {
value
description
}
genealogyCount
buildingDesignation {
value
description
}
}
}
}
}Serviceability by Address
query getByAddress {
getByAddress(address: "2230 Monroe Ave, San Diego, CA 92116") {
serviceability {
data {
serviceabilityID
preciselyID
residentialBusinessIndicator {
value
description
}
serviceableAddress
standardizedLandUseValues {
value
description
}
genealogy {
value
description
}
genealogyCount
buildingDesignation {
value
description
}
}
}
}
}