I have
var Schemas = {}; Meteor.isClient && Template.registerHelper(\"Schemas\", Schemas); Schemas.Person = new SimpleSchema({ fullName: { ty
Variables in Meteor declared with the var keyword are scoped to the file they are declared in.
var
If you want to create a global variable do this
Schemas = {}