Skip to content

Instantly share code, notes, and snippets.

@diegohaz
Created March 11, 2018 23:10
Show Gist options
  • Save diegohaz/4f028faf2da60ad2197626b27a0b302c to your computer and use it in GitHub Desktop.
Save diegohaz/4f028faf2da60ad2197626b27a0b302c to your computer and use it in GitHub Desktop.
const schema = require("schm");
const roleSchema = schema({
title: String,
permissions: [String],
});
const userSchema = schema({
name: String,
age: Number,
role: roleSchema,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment