UNPKG

service-facets-node

Version:
12 lines (10 loc) 399 B
import { ObjectSchema } from 'pip-services3-commons-nodex'; import { TypeCode } from 'pip-services3-commons-nodex'; export class FacetV1Schema extends ObjectSchema { public constructor() { super(); this.withRequiredProperty('group', TypeCode.String); this.withRequiredProperty('name', TypeCode.String); this.withOptionalProperty('count', TypeCode.Long); } }