npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@openinherit/schema

v6.6.0

Published

INHERIT open estate data standard — 31 JSON Schemas, 14 common types, 5 asset categories, 21 jurisdiction extensions, and reference data for structured estate planning interchange across 7 legal traditions

Readme

@openinherit/schema

The INHERIT open estate data standard — JSON Schemas for structured estate planning data interchange.

What's inside

  • 31 core entity schemas — estate, person, bequest, kinship, trust, executor, property, asset, and more
  • 14 common types — address, money, jurisdiction, identifier, provenance, temporal rules
  • 5 asset category schemas — financial, vehicle, digital, business, general
  • 21 jurisdiction extensions — UK, US, Australia/NZ, Singapore/Malaysia, Islamic, Hindu, Jewish, Japan, PRC China, EU Succession, and more
  • Reference data — enum descriptions, role definitions, form mappings

Install

npm install @openinherit/schema

Usage

Import schemas for validation:

import inheritSchema from '@openinherit/schema/v3/schema.json' assert { type: 'json' };
import personSchema from '@openinherit/schema/v3/person.json' assert { type: 'json' };
import kinshipSchema from '@openinherit/schema/v3/kinship.json' assert { type: 'json' };

Use with any JSON Schema 2020-12 validator:

import Ajv from 'ajv/dist/2020';
const ajv = new Ajv();
const validate = ajv.compile(personSchema);

Schema version

This package uses JSON Schema 2020-12 ($schema: "https://json-schema.org/draft/2020-12/schema").

The v3/ directory contains all current schemas. The schema generation is v3; the package version (6.x.x) tracks incremental improvements within v3.

Jurisdiction extensions

| Extension | Legal tradition | Jurisdictions | |-----------|----------------|---------------| | UK England & Wales | Common law | GB-ENG, GB-WLS | | Scotland | Mixed civil/common | GB-SCT | | US Estate | Common law | US | | Australia & NZ | Common law | AU, NZ | | Singapore & Malaysia | Common/Islamic | SG, MY | | Islamic Succession | Sharia | SG, MY, ID, AE, SA, PK, BD, GB, US, AU, CA | | Hindu Succession | Hindu customary | IN, NP, LK, MY, SG, GB, US, AU, CA | | Jewish Succession | Halakha | IL, GB, US, CA, AU, FR | | Japan | Civil law | JP | | PRC China | Civil law (socialist) | CN | | EU Succession | Mixed civil law | 25 EU member states | | And 10 more... | | |

Links

Licence

Apache-2.0 — see LICENSE.