"use strict"; module.exports = function getSchemaKeys(schema) { return Object.keys(schema).filter((key) => (schema[key]._isTypeRule === true)); };