Skip to content

Instantly share code, notes, and snippets.

@diegohaz
Last active March 11, 2018 23:00
Show Gist options
  • Save diegohaz/6e5aa6540a3489c89977e0d54b0bb92d to your computer and use it in GitHub Desktop.
Save diegohaz/6e5aa6540a3489c89977e0d54b0bb92d to your computer and use it in GitHub Desktop.
const schema = require("schm");
const identitySchema = schema({
name: String,
birthdate: Date,
});
const bodySchema = schema({
height: Number,
weight: Number,
});
const humanSchema = schema(
identitySchema,
bodySchema,
{
age: Number,
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment