Last active
March 27, 2025 15:14
-
-
Save KBPsystem777/97fee13d64296e121da368f60bdefdce to your computer and use it in GitHub Desktop.
RPT_Form_Schema
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const rptForm = { | |
book_number: 1, | |
arp_number: "000-2323-", | |
property_identification_number: "000-2323-", | |
owner: "koleen", | |
owners_address: "1234 street", | |
administrator: "admin", | |
admin_and_beneficiary_address: "1234 street", | |
co_owner: "co-owner", | |
number_and_street: "1234 street", | |
barangay: "barangay", | |
municipality: "municipality", | |
province: "province", | |
tin: "000-000-000", | |
oct_tct_cloa_number: "000-000-000", | |
survery_number: "000-000-000", | |
cct_dated: "08/16/2003", | |
lot_number: "000-000-000", | |
block_number: "000-000-000", | |
north_boundary: "north boundary", | |
south_boundary: "south boundary", | |
east_boundary: "east boundary", | |
west_boundary: "west boundary", | |
kind_of_property: ["land", "building", "machinery", "other"], | |
number_of_stories: 1, | |
brief_description: "brief description", | |
property_classifications: [ | |
{ | |
property_classification: [ | |
"agricultural", | |
"residential", | |
"commercial", | |
"other", | |
], | |
area: 100, | |
market_value: 1000, | |
actual_use: "actual use", | |
assessment_level: "100%", | |
assessed_value: 100, | |
}, | |
{ | |
property_classification: [ | |
"agricultural", | |
"residential", | |
"commercial", | |
"other", | |
], | |
area: 100, | |
market_value: 1000, | |
actual_use: "actual use", | |
assessment_level: "100%", | |
assessed_value: 100, | |
}, | |
], | |
assessment_and_approval: " assessment and approval", | |
total_area: 100, | |
total_market_value: 1000, | |
total_assessed_value: 100, | |
taxable: false, | |
effectivity_of_assessment_yr: 2023, | |
effectivity_of_assessment_qtr: 1, | |
approved_by: "approved by", | |
date_approved: "08/16/1993", | |
cancelled_td: "TD number", | |
previous_assessed_value: 100, | |
previous_owner: "previous owner", | |
memoranda: "memoranda", | |
additonal_notes: "additional notes", | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment