//건축법 시행령 8조 (건축허가) 3항 4호
Check(EDBA_8_3_4){
KS
}
KS{
getBuildingUsage() = "LodgingFacility"
}
|
def Check():
typ = SELECT('typology').STRING().lower()
if typ == "LodgingFacility":
building.SUCCESS("Building Usage is LodgingFacility")
else:
building.ERROR("Building Usage is not LodgingFacility")
|