{ "$id": "https://raw.githubusercontent.com/bcgov/nr-pies/refs/heads/main/docs/spec/element/data/parcel_id.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "title": "Parcel Identifier", "description": "An identifier for a specific area with clear boundaries.", "type": "object", "properties": { "legal_description": { "type": "string", "description": "The full legal description of the parcel and is primarily recorded from the Land Title Register. Where recorded only in the Crown Land Registry, this attribute is to be populated from Tantalis for the fabric compilation, but maintained by PMBC during on-going operations.", "maxLength": 2000 }, "parcel_name": { "type": "string", "description": "The same as the PID, if there is one. If there is a PIN but no PID, then parcel name is the PIN. If there is no PID nor PIN, then it is the parcel class value, e.g., COMMON OWNERSHIP, BUILDING STRATA, AIR SPACE, ROAD, PARK." }, "pid": { "type": "array", "items": { "type": "integer", "description": "Parcel ID is the Land Title Register parcel identifier, a nine-digit number that uniquely identifies a parcel in the land title register of in British Columbia. The registrar assigns PID numbers to parcels for which a title is being entered as a registered title. The Land Title Act refers to the PID as the permanent parcel identifier.", "minimum": 0, "maximum": 999999999 }, "minItems": 1, "uniqueItems": true }, "pin": { "type": "integer", "description": "The parcel identification number (PIN) is the Crown Land Registry Parcel Identifier.", "minimum": 0, "maximum": 999999999 } }, "anyOf": [ { "title": "pid", "required": ["pid"] }, { "title": "pin", "required": ["pin"] } ] }