0.0.7 • Published 4 years ago

fsjjv v0.0.7

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

FSJJV

FSJJV is an extention of JJV designed to support DocumentReferences from firestore.

Installation

npm install fsjjv

Usage

import * as firebase from "firebase-admin"
import serviceAccount from "/path/to/service/account.json"

// Initialize firestore application
firebase.initializeApp({
  credential: firebase.credential.cert(serviceAccount),
  databaseURL: `https://${ process.env.GCLOUD_PROJECT_ID }.firebaseio.com`
})

const firestore = firebase.firestore()

// Init fsjjv validator
const validator = fsjjv({
  schemaPath: "/path/to/json/schema.json",
  fs: firestore
})

// Validation of schema
const errors = validator.validate("schema_name", { "object": "to_test" })

Options

const options = {
  schemaPath: "<path to schema file>",
  fs: "<Firestore instance>"
}

Schema File

{
  "schema_name": {
    // schema
    "type": "object",
    "properties": {
      "example": {
        "type": "string"
      }
    }
  }
}
0.0.7

4 years ago

0.0.6

4 years ago

0.0.3

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago