records
Building Permit Applications
Dataset schema
Click to expand Click to collapse
JSON Schema
The following JSON object is a standardized description of your dataset's schema. More about JSON schema.
{
- "title":"permit-applications",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/permit-applications"
}
] - "definitions":{
- "permit-applications":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/permit-applications_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "permit-applications_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "permitnum":,{
- "type":"string",
- "title":"Permit Number",
- "description":"This is the number of the permit. It is the two digit fiscal year followed by an 8 digit sequential number. Prior to July 1, 2009, the two digit year corresponded to Calendar year. At that time we changes to permit numbering based on Fiscal Year, which begins on July 1st. (e.g., FY 2010 ran from July 1, 2009 until June 30, 2010)."
} - "description":,{
- "type":"string",
- "title":"Description",
- "description":"This is the free-form description of the work to be completed."
} - "issuedate":,{
- "type":"string",
- "format":"date",
- "title":"Issue Date",
- "description":"Date on which the permit was issued. In the case of multiple permits for the application, it is the date of issue for the first permit."
} - "applieddate":,{
- "type":"string",
- "format":"date",
- "title":"Applied Date",
- "description":"Date on which the permit was applied. Please note that future applied dates are intended to be for permits that are part of an express review process. They are set that way due to limitations in our current records system."
} - "completeddate":,{
- "type":"string",
- "format":"date",
- "title":"Completed Date",
- "description":"This is the date the permit was completed. This is set to the CO/CC date."
} - "coissueddate":,{
- "type":"string",
- "format":"date",
- "title":"CO Issued Date",
- "description":"If the work was issued a Certificate of Occupancy or a Certificate of Compliance the date of that certificate is entered here."
} - "statuscurrent":,{
- "type":"string",
- "title":"Status Current",
- "description":"This is the Town of Cary status of the permit. This is a structured list of values."
} - "originaladdress1":,{
- "type":"string",
- "title":"Original Address 1",
- "description":"This is the address where the work was/will be performed."
} - "originaladdress2":,{
- "type":"string",
- "title":"Original Address 2",
- "description":"This is the secondary address information. This field is not completed for addresses in the Town's address database, but this field is included to comply with the BLDS specification."
} - "originalcity":,{
- "type":"string",
- "title":"Original City",
- "description":"This is the city as derived from the zip code."
} - "originalstate":,{
- "type":"string",
- "title":"Original State",
- "description":"This is the state and is set to NC in all records."
} - "originalzip":,{
- "type":"string",
- "title":"Original Zip",
- "description":"This is the zip code of the address. It will either be in 5-digit or 9-digit format."
} - "jurisdiction":,{
- "type":"string",
- "title":"Jurisdiction",
- "description":"This is the jurisdiction of the work."
} - "permitclass":,{
- "type":"string",
- "title":"Permit Class",
- "description":"This is an internal reporting category for applications. It is based on the application types and the permits that are issued under the application."
} - "permitclassmapped":,{
- "type":"string",
- "title":"Permit Class Mapped",
- "description":"This is an indication as to whether the work was for a residential or commercial property."
} - "statuscurrentmapped":,{
- "type":"string",
- "title":"Status Current Mapped",
- "description":"This is the BLDS mapped value for permit status. It is mapped directly from the status current field using the following mapping: ON HOLD (HD) -> Appeal PENDING VERIFICATION (PA) -> Application Accepted APPROVED (AP) -> Fees/Payment XXXN APPROVAL (IA) -> In Review IN PLAN CHECK (PC) -> In Review CERTICATE OF COMPLIANCE (CC) -> Occupancy CERTIFICATE ISSUED (CO) -> Occupancy ADMINISTRATIVELY CLOSED (AC) -> Permit Cancelled CLOSED BY REPORT (CR) -> Permit Cancelled PLANS WITHDRAWN (PW) -> Permit Cancelled REJECTED (RJ) -> Permit Cancelled EXPIRED APPLICATION (XA) -> Permit Cancelled EXPIRED PERMIT (XP) -> Permit Cancelled ARCHIVED (AR) -> Permit Finaled CLOSED (CL) -> Permit Finaled TEMPORARY STATUS (TP) -> Permit Finaled with Conditions PERMIT ISSUED (PI) -> Permit Issued "
} - "workclass":,{
- "type":"string",
- "title":"Work Class",
- "description":"This is an indication of whether the permit application is for new or existing construction."
} - "workclassmapped":,{
- "type":"string",
- "title":"Work Class Mapped",
- "description":"This is an indication of whether the permit application is for new or existing construction."
} - "permittype":,{
- "type":"string",
- "title":"Permit Type",
- "description":"This is the Town of Cary coded permit application type. "
} - "permittypemapped":,{
- "type":"string",
- "title":"Permit Type Mapped",
- "description":"This is a mapping of the permit types to the BLDS permit types. Possible values are (* indicates which are represented in this dataset) - Building * - Demolition * - Electrical * - Mechanical * - Plumbing * - Roof - Fence - Grading - Pool/Spa *"
} - "permittypedesc":,{
- "type":"string",
- "title":"Permit Type Desc",
- "description":"This is the description of the permit application type."
} - "statusdate":,{
- "type":"string",
- "format":"date",
- "title":"Status Date",
- "description":"This is the date the status of the record was last updated."
} - "totalsqft":,{
- "type":"integer",
- "title":"Total SqFt",
- "description":"The square footage of the work to be performed.",
- "unit":"sqft"
} - "latitude":,{
- "type":"number",
- "title":"Latitude",
- "description":"The latitude of the location of the permit application."
} - "longitude":,{
- "type":"number",
- "title":"Longitude",
- "description":"The longitude of the location of the permit application."
} - "projectcost":,{
- "type":"integer",
- "title":"Project Cost",
- "description":"The applicant provided project cost.",
- "unit":"$"
} - "housingunits":,{
- "type":"string",
- "title":"Housing Units",
- "description":"The number of housing units being constructed for this permit application. This field is only populated for multi-family dwellings (permit types: B103, B104 and B105)."
} - "pin":,{
- "type":"string",
- "title":"PIN",
- "description":"10-digit property ID Number (PIN)."
} - "contractorcompanyname":,{
- "type":"string",
- "title":"Contractor Company Name",
- "description":"The name of the primary contractor named for the application."
} - "contractortrade":,{
- "type":"string",
- "title":"Contractor Trade",
- "description":"The trade of the primary contractor for the application."
} - "contractortrademapped":,{
- "type":"string",
- "title":"Contractor Trade Mapped",
- "description":"The trade of the general contractor mapped to BLDS standard trade names: General Electrical Mechanical Plumbing Architecture Engineering Masonry Sign Tent"
} - "contractorphone":,{
- "type":"string",
- "title":"Contractor Phone",
- "description":"The phone number of the contractor."
} - "contractoraddress1":,{
- "type":"string",
- "title":"Contractor Address 1",
- "description":"The mailing address of the contractor. "
} - "contractoraddress2":,{
- "type":"string",
- "title":"Contractor Address 2",
- "description":"Secondary address information of the contractor."
} - "contractorzip":,{
- "type":"string",
- "title":"Contractor Zip",
- "description":"Contractor mailing address zip code."
} - "ownername":,{
- "type":"string",
- "title":"Owner Name",
- "description":"Owner Name"
} - "owneraddress1":,{
- "type":"string",
- "title":"Owner Address 1",
- "description":"Owner's Address Line 1"
} - "owneraddress2":,{
- "type":"string",
- "title":"Owner Address 2",
- "description":"Owner's Address Line 2"
} - "ownerzip":,{
- "type":"string",
- "title":"Owner Zip",
- "description":"Owner Zip Code"
} - "gispoint":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"GeoPoint",
- "description":"The point information for formatted for plotting within OpenDataSoft."
} - "year":,{
- "type":"string",
- "format":"date",
- "title":"Year",
- "description":"Year as date data type"
} - "year_text":{
- "type":"string",
- "title":"Year_Text",
- "description":"Year as string data type"
}
} - "permitnum":
}
} - "fields":
} - "properties":
} - "permit-applications":
}
Submit a reuse
Click to expand Click to collapse
Please login to submit a new reuse.