spatialpack validate
Synopsis
Section titled “Synopsis”spatialpack validate PACK_PATH [options]Description
Section titled “Description”Validate a Spatial Pack against the JSON Schema.
Checks the spatialpack.json manifest for structural validity, verifies all declared layer files exist on disk, and optionally validates integrity hashes. Returns a conformance report with pass/fail status.
PACK_PATH is the path to the pack directory containing spatialpack.json.
Arguments
Section titled “Arguments”PACK_PATH — path (required)
Options
Section titled “Options”| Option | Type | Default | Description |
|---|---|---|---|
--strict | flag | false | Treat warnings as errors |
--output, -o | path | - | Output conformance report to JSON file |
--quiet, -q | flag | false | Suppress output except errors |
Examples
Section titled “Examples”# Validate a pack directoryspatialpack validate ./my-pack
# Strict mode (treat warnings as errors)spatialpack validate ./my-pack --strict
# Output conformance report to JSONspatialpack validate ./my-pack -o report.json
# Quiet mode (suppress output except errors)spatialpack validate ./my-pack -q