UNPKG

lrs-xml-parser

Version:

TCO 16 Megahack - XML Parser

22 lines (18 loc) 399 B
/* * Copyright (C) 2016 TopCoder, Inc. All Rights Reserved. */ /** * Represents the NAICS codes model. * * @author TCSDEVELOPER * @version 1.0 */ 'use strict'; const mongoose = require('mongoose'); const Schema = mongoose.Schema; const schema = new Schema({ code: { type: Number, required: true }, title: { type: String }, termId: { type: String } }); module.exports = schema;