{ "$id": "https://raw.githubusercontent.com/bcgov/nr-pies/refs/heads/main/docs/spec/element/data/project_bundle.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "title": "Project Bundle", "description": "An identifier for a specific area with clear boundaries.", "type": "object", "properties": { "project_id": { "type": "string", "description": "A unique key to track all permits related to a project or activity across all permitting systems.", "pattern": "/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i" }, "project_name": { "type": "string", "description": "Short name of the project." }, "project_description": { "type": "string", "description": "Full description of the project. This may contain information to better understand a project." } }, "required": ["project_id", "project_name"] }