
Security News
PolinRider: North Korea-Linked Supply Chain Campaign Expands Across Open Source Ecosystems
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.
schemavault
Advanced tools
Hierarchical schema validation with asset management and configuration defaults for Python services.
pip install schemavault
import schemavault
# Validate endpoint configurations
err = schemavault.validate('endpoint', {'url': '/api/v1/users', 'method': 'GET'})
if err:
raise ValueError(err)
# Build URLs with query parameters
url = schemavault.build_url('https://api.example.com', 'users', {'page': '2'})
# Merge header dictionaries
headers = schemavault.merge_headers(
{'Accept': 'application/json'},
{'Authorization': 'Bearer token123'}
)
# Get registry defaults
defaults = schemavault.get_defaults()
print(defaults['timeout']) # 60000
print(defaults['retries']) # 5
# Normalize endpoint configuration
normalized = schemavault.normalize_endpoint({
'url': ' /api/users ',
'method': 'get',
'timeout': '5000'
})
validate(schema_name, obj) — validate against named schemavalidate_url(url) / validate_method(method) / validate_headers(headers)build_url(base, path, query) — construct URLmerge_headers(base, extra) — merge header dictsnormalize_endpoint(config) — normalize endpoint configschema_diff(old, new) / flatten(obj) / unflatten(flat)get_defaults() / get_registry(key)MIT
FAQs
Hierarchical schema validation with asset management and configuration defaults
The pypi package schemavault receives a total of 222 weekly downloads. As such, schemavault popularity was classified as not popular.
We found that schemavault demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.

Security News
Open source attacks are accelerating as AI coding agents pull in dependencies faster, with less human review.

Research
/Security News
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.