service-activities2-node
Version:
Party activities tracking microservice in Node.js / ES2017 V2
12 lines (10 loc) • 396 B
text/typescript
import { TypeCode } from 'pip-services4-commons-node';
import { ObjectSchema } from 'pip-services4-data-node';
export class ReferenceV1Schema extends ObjectSchema {
public constructor() {
super();
this.withRequiredProperty('id', TypeCode.String);
this.withRequiredProperty('type', TypeCode.String);
this.withOptionalProperty('name', TypeCode.String);
}
}