Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | 1x | import type { SchemaObject } from '@loopback/rest';
export const tradeLaneRowSchema: SchemaObject = {
type: 'object',
required: ['name', 'product', 'pol_code', 'pod_code', 'reta_from', 'reta_to'],
additionalProperties: false,
properties: {
name: {
type: 'string',
minLength: 1
},
description: {
type: 'string',
},
product: {
type: 'string',
minLength: 1
},
product_no: {
type: 'string',
},
desired_temp: {
type: 'number',
},
product_hazard_ids: {
type: 'array',
items: {
type: 'number'
}
},
product_additional_information: {
type: 'string',
},
pol_code: {
type: 'string',
minLength: 1
},
pod_code: {
type: 'string',
minLength: 1
},
reta_from: {
type: 'string',
},
reta_to: {
type: 'string',
},
equipment: {
type: 'string',
},
provisions: {
type: 'string',
}
},
};
export type TradeLaneRow = {
name: string
description: string
product: string
product_no: string
desired_temp: number
product_hazard_ids: number[]
product_additional_information: string
pol_code: string
pod_code: string
reta_from: string
reta_to: string
equipment: string
provisions: string
status: boolean
};
|