Property Attributes allow users to gain insights about a property required to support business decisions related to risk management, investment initiatives, property technology, maintenance, and service.
Data Graph exposes well over a hundred attributes from Precisely's Property Attributes data set, but given the capability of the query schema you only need to request the attributes needed for your specific use case.
Property Attributes by Address
The following query returns the full Property Attributes schema based on input address.
query getByAddress {
getByAddress(address: "3145 Geneva St, Denver, CO 80238") {
propertyAttributes {
data {
propertyAttributeID
preciselyID
parentPreciselyID
plinkID
owner
owner2
ownerFirstName
ownerMiddleName
ownerLastName
owner2FirstName
owner2MiddleName
owner2LastName
ownerType {
value
description
}
ownerID
owner2ID
ownerVestingCode {
value
description
}
taxAddressline
taxCity
taxAdmin1ShortName
taxPostalCode
taxPostalCodeExtension
propertyAddressLine
propertyCity
propertyAdmin1ShortName
propertyPostalCode
propertyPostalCodeExtension
propertyVacancy {
value
description
}
propertyCategory {
value
description
}
absenteeOwnerCode {
value
description
}
apn
oldAPN
alternateOldAPN
apnSequence
fips
geographyID
standardizedLandUseCode {
value
description
}
countyLandUseDescription
countyLandUseCode
latitude
longitude
locationCode
legalSubdivisionName
legalJurisdiction
propertyAreaAcres
propertyAreaSquareFootage
propertyFrontageFootage
propertyDepthFootage
siteInfluence {
value
description
}
yearBuilt
effectiveYearBuilt
buildingCount
buildingSquareFootage
buildingSquareFootageCode {
value
description
}
buildingStyle {
value
description
}
buildingStories {
value
description
}
buildingUnitNumber
buildingQuality {
value
description
}
buildingType {
value
description
}
buildingImprovementType {
value
description
}
mobileHome {
value
description
}
buildingCondition {
value
description
}
buildingConstruction {
value
description
}
exteriorWalls {
value
description
}
roofFrameType {
value
description
}
roofCover {
value
description
}
roofShape {
value
description
}
livingSquareFootage
grossSquareFootage
grossAdjustedSquareFootage
buildingArea1SquareFootage
buildingArea1Code {
value
description
}
buildingArea2SquareFootage
buildingArea2Code {
value
description
}
buildingArea3SquareFootage
buildingArea3Code {
value
description
}
buildingArea4SquareFootage
buildingArea4Code {
value
description
}
buildingArea5Code {
value
description
}
buildingArea6SquareFootage
buildingArea6Code {
value
description
}
buildingArea7SquareFootage
buildingArea7Code {
value
description
}
basementType {
value
description
}
basementSquareFootage
foundationType {
value
description
}
buildingClass {
value
description
}
interiorWalls {
value
description
}
floorType {
value
description
}
roomCount
bedroomCount
otherRoomCodes {
value
description
}
bathroomCount {
value
description
}
partialBathroomCount
bathroomFixtureCount
plumbingFixtureCount
coolingType {
value
description
}
garageType {
value
description
}
parkingAreaSquareFootage
parkingCount
pool
poolType {
value
description
}
heatingType {
value
description
}
energyType {
value
description
}
fuelType {
value
description
}
sewerType
waterType
elevatorCount
amenities {
value
description
}
propertyRecordLastUpdate
taxAccountNumber
assessmentFileGeneratedDate
assessmentRecordingDate
assessmentDocumentType {
value
description
}
saleAmount
saleCode {
value
description
}
recorderBookNumber
recorderPageNumber
recorderDocumentNumber
priorSaleDate
priorSaleDocumentCode {
value
description
}
priorSaleAmount
priorSaleBookNumber
priorSalePageNumber
priorSaleDocumentNumber
taxAmount
taxYear
taxDelinquentYear
assessmentYear
totalAssessedValue
landAssessedValue
improvementAssessedValue
marketValueYear
totalMarketValue
landMarketValue
improvementMarketValue
totalAppraisedValue
landAppraisedValue
improvementAppraisedValue
taxExemptionCodes {
value
description
}
taxRateCode
syntheticPropertyRecordIdentifier
newConstruction
homeOwnersAssociation
homeOwnersAssociationPhoneNumber
homeOwnersAssociationDues1
homeOwnersAssociationDues2
homeOwnersAssociationDuesPeriod1
homeOwnersAssociationDuesPeriod2
propertyIncome
propertyRental
propertyLeaseAmount
propertyLeasePeriod
pricePerSquareFeet
}
}
}
}Property Attributes related to a Building
The following query returns Property Attributes based on building relationships.
query buildingAttributesByAddress {
getByAddress(address: "75 rockefeller plaza, New York") {
buildings {
data {
buildingID
buildingType {
value
description
}
geometry
propertyAttributes {
data {
propertyAttributeID
standardizedLandUseCode {
value
description
}
grossSquareFootage
livingSquareFootage
yearBuilt
effectiveYearBuilt
buildingSquareFootage
buildingStories {
value
description
}
saleAmount
improvementAssessedValue
totalMarketValue
totalAppraisedValue
}
}
}
}
}
}Property Attributes related to a Parcel
Precisely Property Attributes are aggregated from multiple sources, including tax
assessment data. Property ownership and tax assessment records are generally
associated with a parcel of land. For this reason, querying Property Attributes by
the parcel relationship may be more effective than a direct address match, as there
can be more than one address associated with a parcel, and vice versa. The query
below returns property attributes based on
relationship.
query propertyAttributesByParcel {
getByAddress(address: "1552 N Pershing St Fayetteville AR") {
parcels {
data {
propertyAttributes {
data {
livingSquareFootage
propertyAreaAcres
bedroomCount
bathroomCount {
value
}
buildingStories {
value
}
buildingConstruction {
value
description
}
buildingCondition {
value
description
}
yearBuilt
totalMarketValue
}
}
}
}
}
}