2.0.0 • Published 4 months ago

@comapeo/schema v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

@comapeo/schema

JSON Schema and TypeScript types for CoMapeo.

Original draft: https://hackmd.io/wlMcMM65TmuPXGYOEbOR2g#

Table of Contents

Install

npm install --save @comapeo/schema

Usage

JS validation functions

import { validate } from '@comapeo/schema'

const testObservation = {
  /* ... */
}

const isValid = validate('observation', testObservation)
// returns true if validates against schema, false otherwise.

TypeScript types

import type { Observation } from '@comapeo/schema'

const myObs: Observation = {
  /* ... */
}

API

Adding new values

  • Find the JSON schema inside schemas/{name}/v1.json
  • Add your fields with descriptions
  • Update the corresponding protocol buffer schema inside proto/{name}/v1.proto
  • Add the new field to src/lib/decode-conversions.js and src/lib/encode-conversions.js
  • Run npm run build to build the types and encoders.
  • Add the field to test/fixtures/good-docs-completed.js
  • If there is extra validation happening add a failing doc to test/fixtures/bad-docs.js
  • Run npm run test and make sure tests and linting pass

Maintainers

@digidem

License

MIT © 2024 Awana Digital

1.7.0

5 months ago

1.6.0

6 months ago

1.5.0

6 months ago

1.4.1

9 months ago

1.4.0

10 months ago

1.3.0

10 months ago

2.0.0

4 months ago

1.2.0

12 months ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago