Giter Club home page Giter Club logo

zschema's Introduction

ZSchema

Build Status

ZSchema is a generic (meta-)schema language for defining database schemas. It facilitates (1) validating JSON documents against a schema definition and (2) compilating a schema to multiple database engines. For example, if you wanted to maintain a single database schema for both MongoDB and ElasticSearch. Properties can also be documented inline and documentation compiled to HTML or a console-friendly text document.

Schemas are defined in native Python code. Example:

Record({
    "name":String(required=True),
    "addresses":ListOf(SubRecord({
        "street":String(),
        "zipcode":String()
    }),
    "area_code":Integer()
})

While this might initially seem strange, Python provides a lot flexibility that you don't have in JSON when you're defining a schema. For example, you can reuse components without redefining them or define metaclasses for slighty different parts of the schema. Overall, ZSchema has a higher learning curve than the languages that ZSchema can compile. However, it makes defining complex schemas much easier.

Running ZSchema

Command Line Interface

zschema [command] [schema] [file (optional)]

Commands:

  • elasticsearch (compile to Elastic Search)

  • bigquery (compile to Google BigQuery)

  • json (compile documentation to JSON)

  • proto (compile documentation to proto3)

  • text (compile documentation to plain text)

  • html (compile documentation to HTML)

  • validate (validate JSON file (one document per line) against schema)

The schema file can be defined on the command line as module:var. File is only needed when validating whether a data file matches a schema (i.e., using validate command).

Compiling a Schema

ZSchema allows compiling a registered Record to a schema file that can be read by another service. For example, if you have the following schema in a module named myschema:

p = Record({
    "name":String(required=True),
    "addresses":ListOf(SubRecord({
        "street":String(),
        "zipcode":String()
    }),
    "area_code":Integer()
})
zschema.registry.register_schema("person", p)

Then you can compile this to Elasticsearch by running the following:

zschema elasticsearch myschema:person

You can also register a record by simply calling .register() on it:

Record({
    "name":String(required=True),
    "addresses":ListOf(SubRecord({
        "street":String(),
        "zipcode":String()
    }),
}).register("person")

Validating a Schema

If you wanted to validate a JSON file containing data, you can pass this in along with the schema:

zschema validate myschema:person people.json

Developing a Schema

Schemas are created by defining a Record object. Records are a set of named fields (and their associated types). They can also contain lists of fields and subrecords. Below is a very simple record:

Record({
    "name":String(required=True),
    "address":SubRecord({
        "street":String(),
        "zipcode":ZipCode()
    }),
    "area_code":Integer(),
	"emails":ListOf(EmailAddress()),
	"enabled":Boolean(),
})

You will immediately notice a few things:

  • Fields are instantiated classes and can take initialization options

  • You can have customized fields (e.g., EmailAddress). These are useful for both maintaining your sanity as well as adding additional validation logic.

These types are known as leaves and you can find the full list here: https://github.com/zmap/zschema/blob/master/zschema/leaves.py. You'll likely notice that many are Elasticsearch themed (e.g., EnglishString, AnalyzedString), but these will compile down to normal types in other systems too.

One of the benefits of ZSchema is that you can define and embed subrecords other places:

address = SubRecord({
    "street":String(),
    "zipcode":ZipCode()
    "country":String()
})

Record({
    "name":String(required=True),
    "business_address":ListOf(address),
    "home_address":ListOf(address),
    "area_code":Integer(),
	"emails":ListOf(EmailAddress()),
	"enabled":Boolean(),
})

One thing that needs to be careful of here is that all address entries here point to the exact same Python object, so you cannot customize one without changing all. To support this use case (which comes up frequently because different fields will have different documentation), you can create a new SubRecordType:

Address = SubRecordType({
    "street":String(),
    "zipcode":ZipCode()
    "country":String()
})

Record({
	home:Address(doc="Home Address"),
	work:Address(doc="Work Address"),
})

Similar to doc, fields can have a description, examples, units, min/max values, etc. A full list of attributes can be found here: https://github.com/zmap/zschema/blob/master/zschema/leaves.py#L25.

Running Tests

Tests are run with nose. Run them via python setup.py test.

License and Copyright

ZSchema Copyright 2020 ZMap Team

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See LICENSE for the specific language governing permissions and limitations under the License.

zschema's People

Contributors

andrewsardone avatar cdzombak avatar dadrian avatar epicfaace avatar justinbastress avatar kylehendricks avatar zakird avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.