Provenance
Freshness & coverage
Methods (5)
searchOffshoreLeases
readCSLC Offshore Oil Lease polygons (~34). Filter prc/leaseStatus/bbox/near.
EntitiesleaseInput schema
{ "type": "object", "properties": { "prc": { "type": "string" }, "leaseStatus": { "type": "string", "examples": [ "Active" ] }, "county": { "type": "string" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }Lean schema (PRC + Lease_Stat only). No lessee/operator/dates upstream.
searchOnshoreLeases
readCSLC Leases (~5.5K). Defaults to TypeofLease="Oil & Gas Lease". Pass typeofLease="all" for full set.
EntitiesleaseInput schema
{ "type": "object", "properties": { "leaseNumber": { "type": "string" }, "typeofLease": { "type": "string", "examples": [ "Oil & Gas Lease" ] }, "leaseOrPermit": { "type": "string" }, "locationContains": { "type": "string" }, "expiringAfter": { "type": "string" }, "expiringBefore": { "type": "string" }, "county": { "type": "string" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }Pass leaseNumber, locationContains, leaseOrPermit, expiringBefore/After.
searchSchoolLands
readCSLC School Lands polygons (~1.3K). PLSS — TWP/RNGE/SEC_TRCT/MERID. Filter county/section/township.
EntitieslandInput schema
{ "type": "object", "properties": { "township": { "type": "string" }, "range": { "type": "string" }, "section": { "type": "number" }, "meridian": { "type": "string" }, "county": { "type": "string", "examples": [ "Kern" ] }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }Column is CNTY (4-char) NOT COUNTY. Handler fixes Tinity->Trinity typo.
searchGrantedLands
readCSLC Granted Lands (~115). Tidelands grants to coastal cities. Status Active/Repealed.
EntitiesrecordInput schema
{ "type": "object", "properties": { "status": { "type": "string", "examples": [ "Active" ] }, "grantHolderContains": { "type": "string" }, "grantId": { "type": "string" }, "county": { "type": "string" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }COUNTY has both "Marin" + "Marin County" variants — handler matches both.
getServiceInfo
readSchema + record counts for any of 5 services (CA State Lands Commission). Pass `service` to scope.
EntitiesmetadataInput schema
{ "type": "object", "properties": { "service": { "type": "string", "examples": [ "offshore-leases" ] } }, "additionalProperties": false }
