paths: /DashboardHospitalAwenCounts: post: tags: - DashboardHospitalAwenCount summary: Create a new instance of the model and persist it into the data source. operationId: DashboardHospitalAwenCount.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalAwenCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalAwenCount' deprecated: false patch: tags: - DashboardHospitalAwenCount summary: >- Patch an existing model instance or insert a new one into the data source. operationId: DashboardHospitalAwenCount.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalAwenCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalAwenCount' deprecated: false put: tags: - DashboardHospitalAwenCount summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardHospitalAwenCount.replaceOrCreate__put_DashboardHospitalAwenCounts parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalAwenCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalAwenCount' deprecated: false get: tags: - DashboardHospitalAwenCount summary: Find all instances of the model matched by filter from the data source. operationId: DashboardHospitalAwenCount.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/DashboardHospitalAwenCount' deprecated: false /DashboardHospitalAwenCounts/replaceOrCreate: post: tags: - DashboardHospitalAwenCount summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardHospitalAwenCount.replaceOrCreate__post_DashboardHospitalAwenCounts_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalAwenCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalAwenCount' deprecated: false /DashboardHospitalAwenCounts/upsertWithWhere: post: tags: - DashboardHospitalAwenCount summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: DashboardHospitalAwenCount.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalAwenCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalAwenCount' deprecated: false '/DashboardHospitalAwenCounts/{id}/exists': get: tags: - DashboardHospitalAwenCount summary: Check whether a model instance exists in the data source. operationId: >- DashboardHospitalAwenCount.exists__get_DashboardHospitalAwenCounts_{id}_exists parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/DashboardHospitalAwenCounts/{id}': head: tags: - DashboardHospitalAwenCount summary: Check whether a model instance exists in the data source. operationId: 'DashboardHospitalAwenCount.exists__head_DashboardHospitalAwenCounts_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - DashboardHospitalAwenCount summary: 'Find a model instance by {{id}} from the data source.' operationId: DashboardHospitalAwenCount.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalAwenCount' deprecated: false put: tags: - DashboardHospitalAwenCount summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardHospitalAwenCount.replaceById__put_DashboardHospitalAwenCounts_{id} parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalAwenCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalAwenCount' deprecated: false delete: tags: - DashboardHospitalAwenCount summary: 'Delete a model instance by {{id}} from the data source.' operationId: DashboardHospitalAwenCount.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - DashboardHospitalAwenCount summary: >- Patch attributes for a model instance and persist it into the data source. operationId: DashboardHospitalAwenCount.prototype.patchAttributes parameters: - name: id in: path description: DashboardHospitalAwenCount id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalAwenCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalAwenCount' deprecated: false '/DashboardHospitalAwenCounts/{id}/replace': post: tags: - DashboardHospitalAwenCount summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardHospitalAwenCount.replaceById__post_DashboardHospitalAwenCounts_{id}_replace parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalAwenCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalAwenCount' deprecated: false /DashboardHospitalAwenCounts/findOne: get: tags: - DashboardHospitalAwenCount summary: Find first instance of the model matched by filter from the data source. operationId: DashboardHospitalAwenCount.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalAwenCount' deprecated: false /DashboardHospitalAwenCounts/update: post: tags: - DashboardHospitalAwenCount summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: DashboardHospitalAwenCount.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalAwenCount' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /DashboardHospitalAwenCounts/count: get: tags: - DashboardHospitalAwenCount summary: Count instances of the model matched by where from the data source. operationId: DashboardHospitalAwenCount.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /DashboardHospitalRecordHighs: post: tags: - DashboardHospitalRecordHigh summary: Create a new instance of the model and persist it into the data source. operationId: DashboardHospitalRecordHigh.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalRecordHigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalRecordHigh' deprecated: false patch: tags: - DashboardHospitalRecordHigh summary: >- Patch an existing model instance or insert a new one into the data source. operationId: DashboardHospitalRecordHigh.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalRecordHigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalRecordHigh' deprecated: false put: tags: - DashboardHospitalRecordHigh summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardHospitalRecordHigh.replaceOrCreate__put_DashboardHospitalRecordHighs parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalRecordHigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalRecordHigh' deprecated: false get: tags: - DashboardHospitalRecordHigh summary: Find all instances of the model matched by filter from the data source. operationId: DashboardHospitalRecordHigh.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/DashboardHospitalRecordHigh' deprecated: false /DashboardHospitalRecordHighs/replaceOrCreate: post: tags: - DashboardHospitalRecordHigh summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardHospitalRecordHigh.replaceOrCreate__post_DashboardHospitalRecordHighs_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalRecordHigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalRecordHigh' deprecated: false /DashboardHospitalRecordHighs/upsertWithWhere: post: tags: - DashboardHospitalRecordHigh summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: DashboardHospitalRecordHigh.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalRecordHigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalRecordHigh' deprecated: false '/DashboardHospitalRecordHighs/{id}/exists': get: tags: - DashboardHospitalRecordHigh summary: Check whether a model instance exists in the data source. operationId: >- DashboardHospitalRecordHigh.exists__get_DashboardHospitalRecordHighs_{id}_exists parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/DashboardHospitalRecordHighs/{id}': head: tags: - DashboardHospitalRecordHigh summary: Check whether a model instance exists in the data source. operationId: >- DashboardHospitalRecordHigh.exists__head_DashboardHospitalRecordHighs_{id} parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - DashboardHospitalRecordHigh summary: 'Find a model instance by {{id}} from the data source.' operationId: DashboardHospitalRecordHigh.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalRecordHigh' deprecated: false put: tags: - DashboardHospitalRecordHigh summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardHospitalRecordHigh.replaceById__put_DashboardHospitalRecordHighs_{id} parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalRecordHigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalRecordHigh' deprecated: false delete: tags: - DashboardHospitalRecordHigh summary: 'Delete a model instance by {{id}} from the data source.' operationId: DashboardHospitalRecordHigh.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - DashboardHospitalRecordHigh summary: >- Patch attributes for a model instance and persist it into the data source. operationId: DashboardHospitalRecordHigh.prototype.patchAttributes parameters: - name: id in: path description: DashboardHospitalRecordHigh id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalRecordHigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalRecordHigh' deprecated: false '/DashboardHospitalRecordHighs/{id}/replace': post: tags: - DashboardHospitalRecordHigh summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardHospitalRecordHigh.replaceById__post_DashboardHospitalRecordHighs_{id}_replace parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalRecordHigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalRecordHigh' deprecated: false /DashboardHospitalRecordHighs/findOne: get: tags: - DashboardHospitalRecordHigh summary: Find first instance of the model matched by filter from the data source. operationId: DashboardHospitalRecordHigh.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalRecordHigh' deprecated: false /DashboardHospitalRecordHighs/update: post: tags: - DashboardHospitalRecordHigh summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: DashboardHospitalRecordHigh.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalRecordHigh' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /DashboardHospitalRecordHighs/count: get: tags: - DashboardHospitalRecordHigh summary: Count instances of the model matched by where from the data source. operationId: DashboardHospitalRecordHigh.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /DashboardHospitalBudgets: post: tags: - DashboardHospitalBudget summary: Create a new instance of the model and persist it into the data source. operationId: DashboardHospitalBudget.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalBudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBudget' deprecated: false patch: tags: - DashboardHospitalBudget summary: >- Patch an existing model instance or insert a new one into the data source. operationId: DashboardHospitalBudget.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalBudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBudget' deprecated: false put: tags: - DashboardHospitalBudget summary: >- Replace an existing model instance or insert a new one into the data source. operationId: DashboardHospitalBudget.replaceOrCreate__put_DashboardHospitalBudgets parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalBudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBudget' deprecated: false get: tags: - DashboardHospitalBudget summary: Find all instances of the model matched by filter from the data source. operationId: DashboardHospitalBudget.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/DashboardHospitalBudget' deprecated: false /DashboardHospitalBudgets/replaceOrCreate: post: tags: - DashboardHospitalBudget summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardHospitalBudget.replaceOrCreate__post_DashboardHospitalBudgets_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalBudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBudget' deprecated: false /DashboardHospitalBudgets/upsertWithWhere: post: tags: - DashboardHospitalBudget summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: DashboardHospitalBudget.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalBudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBudget' deprecated: false '/DashboardHospitalBudgets/{id}/exists': get: tags: - DashboardHospitalBudget summary: Check whether a model instance exists in the data source. operationId: 'DashboardHospitalBudget.exists__get_DashboardHospitalBudgets_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/DashboardHospitalBudgets/{id}': head: tags: - DashboardHospitalBudget summary: Check whether a model instance exists in the data source. operationId: 'DashboardHospitalBudget.exists__head_DashboardHospitalBudgets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - DashboardHospitalBudget summary: 'Find a model instance by {{id}} from the data source.' operationId: DashboardHospitalBudget.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBudget' deprecated: false put: tags: - DashboardHospitalBudget summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'DashboardHospitalBudget.replaceById__put_DashboardHospitalBudgets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalBudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBudget' deprecated: false delete: tags: - DashboardHospitalBudget summary: 'Delete a model instance by {{id}} from the data source.' operationId: DashboardHospitalBudget.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - DashboardHospitalBudget summary: >- Patch attributes for a model instance and persist it into the data source. operationId: DashboardHospitalBudget.prototype.patchAttributes parameters: - name: id in: path description: DashboardHospitalBudget id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalBudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBudget' deprecated: false '/DashboardHospitalBudgets/{id}/replace': post: tags: - DashboardHospitalBudget summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardHospitalBudget.replaceById__post_DashboardHospitalBudgets_{id}_replace parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalBudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBudget' deprecated: false /DashboardHospitalBudgets/findOne: get: tags: - DashboardHospitalBudget summary: Find first instance of the model matched by filter from the data source. operationId: DashboardHospitalBudget.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBudget' deprecated: false /DashboardHospitalBudgets/update: post: tags: - DashboardHospitalBudget summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: DashboardHospitalBudget.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalBudget' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /DashboardHospitalBudgets/count: get: tags: - DashboardHospitalBudget summary: Count instances of the model matched by where from the data source. operationId: DashboardHospitalBudget.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /DashboardHospitalStatistics: post: tags: - DashboardHospitalStatistic summary: Create a new instance of the model and persist it into the data source. operationId: DashboardHospitalStatistic.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalStatistic' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalStatistic' deprecated: false patch: tags: - DashboardHospitalStatistic summary: >- Patch an existing model instance or insert a new one into the data source. operationId: DashboardHospitalStatistic.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalStatistic' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalStatistic' deprecated: false put: tags: - DashboardHospitalStatistic summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardHospitalStatistic.replaceOrCreate__put_DashboardHospitalStatistics parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalStatistic' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalStatistic' deprecated: false get: tags: - DashboardHospitalStatistic summary: Find all instances of the model matched by filter from the data source. operationId: DashboardHospitalStatistic.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/DashboardHospitalStatistic' deprecated: false /DashboardHospitalStatistics/replaceOrCreate: post: tags: - DashboardHospitalStatistic summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardHospitalStatistic.replaceOrCreate__post_DashboardHospitalStatistics_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalStatistic' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalStatistic' deprecated: false /DashboardHospitalStatistics/upsertWithWhere: post: tags: - DashboardHospitalStatistic summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: DashboardHospitalStatistic.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalStatistic' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalStatistic' deprecated: false '/DashboardHospitalStatistics/{id}/exists': get: tags: - DashboardHospitalStatistic summary: Check whether a model instance exists in the data source. operationId: >- DashboardHospitalStatistic.exists__get_DashboardHospitalStatistics_{id}_exists parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/DashboardHospitalStatistics/{id}': head: tags: - DashboardHospitalStatistic summary: Check whether a model instance exists in the data source. operationId: 'DashboardHospitalStatistic.exists__head_DashboardHospitalStatistics_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - DashboardHospitalStatistic summary: 'Find a model instance by {{id}} from the data source.' operationId: DashboardHospitalStatistic.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalStatistic' deprecated: false put: tags: - DashboardHospitalStatistic summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardHospitalStatistic.replaceById__put_DashboardHospitalStatistics_{id} parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalStatistic' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalStatistic' deprecated: false delete: tags: - DashboardHospitalStatistic summary: 'Delete a model instance by {{id}} from the data source.' operationId: DashboardHospitalStatistic.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - DashboardHospitalStatistic summary: >- Patch attributes for a model instance and persist it into the data source. operationId: DashboardHospitalStatistic.prototype.patchAttributes parameters: - name: id in: path description: DashboardHospitalStatistic id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalStatistic' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalStatistic' deprecated: false '/DashboardHospitalStatistics/{id}/replace': post: tags: - DashboardHospitalStatistic summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardHospitalStatistic.replaceById__post_DashboardHospitalStatistics_{id}_replace parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalStatistic' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalStatistic' deprecated: false /DashboardHospitalStatistics/findOne: get: tags: - DashboardHospitalStatistic summary: Find first instance of the model matched by filter from the data source. operationId: DashboardHospitalStatistic.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalStatistic' deprecated: false /DashboardHospitalStatistics/update: post: tags: - DashboardHospitalStatistic summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: DashboardHospitalStatistic.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalStatistic' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /DashboardHospitalStatistics/count: get: tags: - DashboardHospitalStatistic summary: Count instances of the model matched by where from the data source. operationId: DashboardHospitalStatistic.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /DashboardRvetCounts: post: tags: - DashboardRvetCount summary: Create a new instance of the model and persist it into the data source. operationId: DashboardRvetCount.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardRvetCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardRvetCount' deprecated: false patch: tags: - DashboardRvetCount summary: >- Patch an existing model instance or insert a new one into the data source. operationId: DashboardRvetCount.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardRvetCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardRvetCount' deprecated: false put: tags: - DashboardRvetCount summary: >- Replace an existing model instance or insert a new one into the data source. operationId: DashboardRvetCount.replaceOrCreate__put_DashboardRvetCounts parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardRvetCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardRvetCount' deprecated: false get: tags: - DashboardRvetCount summary: Find all instances of the model matched by filter from the data source. operationId: DashboardRvetCount.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/DashboardRvetCount' deprecated: false /DashboardRvetCounts/replaceOrCreate: post: tags: - DashboardRvetCount summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardRvetCount.replaceOrCreate__post_DashboardRvetCounts_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardRvetCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardRvetCount' deprecated: false /DashboardRvetCounts/upsertWithWhere: post: tags: - DashboardRvetCount summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: DashboardRvetCount.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardRvetCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardRvetCount' deprecated: false '/DashboardRvetCounts/{id}/exists': get: tags: - DashboardRvetCount summary: Check whether a model instance exists in the data source. operationId: 'DashboardRvetCount.exists__get_DashboardRvetCounts_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/DashboardRvetCounts/{id}': head: tags: - DashboardRvetCount summary: Check whether a model instance exists in the data source. operationId: 'DashboardRvetCount.exists__head_DashboardRvetCounts_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - DashboardRvetCount summary: 'Find a model instance by {{id}} from the data source.' operationId: DashboardRvetCount.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardRvetCount' deprecated: false put: tags: - DashboardRvetCount summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'DashboardRvetCount.replaceById__put_DashboardRvetCounts_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardRvetCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardRvetCount' deprecated: false delete: tags: - DashboardRvetCount summary: 'Delete a model instance by {{id}} from the data source.' operationId: DashboardRvetCount.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - DashboardRvetCount summary: >- Patch attributes for a model instance and persist it into the data source. operationId: DashboardRvetCount.prototype.patchAttributes parameters: - name: id in: path description: DashboardRvetCount id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardRvetCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardRvetCount' deprecated: false '/DashboardRvetCounts/{id}/replace': post: tags: - DashboardRvetCount summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'DashboardRvetCount.replaceById__post_DashboardRvetCounts_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardRvetCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardRvetCount' deprecated: false /DashboardRvetCounts/findOne: get: tags: - DashboardRvetCount summary: Find first instance of the model matched by filter from the data source. operationId: DashboardRvetCount.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardRvetCount' deprecated: false /DashboardRvetCounts/update: post: tags: - DashboardRvetCount summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: DashboardRvetCount.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardRvetCount' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /DashboardRvetCounts/count: get: tags: - DashboardRvetCount summary: Count instances of the model matched by where from the data source. operationId: DashboardRvetCount.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /DashboardStatisticsActivities: post: tags: - DashboardStatisticsActivity summary: Create a new instance of the model and persist it into the data source. operationId: DashboardStatisticsActivity.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsActivity' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsActivity' deprecated: false patch: tags: - DashboardStatisticsActivity summary: >- Patch an existing model instance or insert a new one into the data source. operationId: DashboardStatisticsActivity.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsActivity' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsActivity' deprecated: false put: tags: - DashboardStatisticsActivity summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardStatisticsActivity.replaceOrCreate__put_DashboardStatisticsActivities parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsActivity' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsActivity' deprecated: false get: tags: - DashboardStatisticsActivity summary: Find all instances of the model matched by filter from the data source. operationId: DashboardStatisticsActivity.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/DashboardStatisticsActivity' deprecated: false /DashboardStatisticsActivities/replaceOrCreate: post: tags: - DashboardStatisticsActivity summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardStatisticsActivity.replaceOrCreate__post_DashboardStatisticsActivities_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsActivity' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsActivity' deprecated: false /DashboardStatisticsActivities/upsertWithWhere: post: tags: - DashboardStatisticsActivity summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: DashboardStatisticsActivity.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsActivity' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsActivity' deprecated: false '/DashboardStatisticsActivities/{id}/exists': get: tags: - DashboardStatisticsActivity summary: Check whether a model instance exists in the data source. operationId: >- DashboardStatisticsActivity.exists__get_DashboardStatisticsActivities_{id}_exists parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/DashboardStatisticsActivities/{id}': head: tags: - DashboardStatisticsActivity summary: Check whether a model instance exists in the data source. operationId: >- DashboardStatisticsActivity.exists__head_DashboardStatisticsActivities_{id} parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - DashboardStatisticsActivity summary: 'Find a model instance by {{id}} from the data source.' operationId: DashboardStatisticsActivity.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsActivity' deprecated: false put: tags: - DashboardStatisticsActivity summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardStatisticsActivity.replaceById__put_DashboardStatisticsActivities_{id} parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsActivity' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsActivity' deprecated: false delete: tags: - DashboardStatisticsActivity summary: 'Delete a model instance by {{id}} from the data source.' operationId: DashboardStatisticsActivity.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - DashboardStatisticsActivity summary: >- Patch attributes for a model instance and persist it into the data source. operationId: DashboardStatisticsActivity.prototype.patchAttributes parameters: - name: id in: path description: DashboardStatisticsActivity id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsActivity' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsActivity' deprecated: false '/DashboardStatisticsActivities/{id}/replace': post: tags: - DashboardStatisticsActivity summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardStatisticsActivity.replaceById__post_DashboardStatisticsActivities_{id}_replace parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsActivity' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsActivity' deprecated: false /DashboardStatisticsActivities/findOne: get: tags: - DashboardStatisticsActivity summary: Find first instance of the model matched by filter from the data source. operationId: DashboardStatisticsActivity.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsActivity' deprecated: false /DashboardStatisticsActivities/update: post: tags: - DashboardStatisticsActivity summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: DashboardStatisticsActivity.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsActivity' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /DashboardStatisticsActivities/count: get: tags: - DashboardStatisticsActivity summary: Count instances of the model matched by where from the data source. operationId: DashboardStatisticsActivity.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /DashboardStatisticsBenefits: post: tags: - DashboardStatisticsBenefit summary: Create a new instance of the model and persist it into the data source. operationId: DashboardStatisticsBenefit.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsBenefit' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefit' deprecated: false patch: tags: - DashboardStatisticsBenefit summary: >- Patch an existing model instance or insert a new one into the data source. operationId: DashboardStatisticsBenefit.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsBenefit' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefit' deprecated: false put: tags: - DashboardStatisticsBenefit summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardStatisticsBenefit.replaceOrCreate__put_DashboardStatisticsBenefits parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsBenefit' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefit' deprecated: false get: tags: - DashboardStatisticsBenefit summary: Find all instances of the model matched by filter from the data source. operationId: DashboardStatisticsBenefit.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/DashboardStatisticsBenefit' deprecated: false /DashboardStatisticsBenefits/replaceOrCreate: post: tags: - DashboardStatisticsBenefit summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardStatisticsBenefit.replaceOrCreate__post_DashboardStatisticsBenefits_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsBenefit' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefit' deprecated: false /DashboardStatisticsBenefits/upsertWithWhere: post: tags: - DashboardStatisticsBenefit summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: DashboardStatisticsBenefit.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsBenefit' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefit' deprecated: false '/DashboardStatisticsBenefits/{id}/exists': get: tags: - DashboardStatisticsBenefit summary: Check whether a model instance exists in the data source. operationId: >- DashboardStatisticsBenefit.exists__get_DashboardStatisticsBenefits_{id}_exists parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/DashboardStatisticsBenefits/{id}': head: tags: - DashboardStatisticsBenefit summary: Check whether a model instance exists in the data source. operationId: 'DashboardStatisticsBenefit.exists__head_DashboardStatisticsBenefits_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - DashboardStatisticsBenefit summary: 'Find a model instance by {{id}} from the data source.' operationId: DashboardStatisticsBenefit.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefit' deprecated: false put: tags: - DashboardStatisticsBenefit summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardStatisticsBenefit.replaceById__put_DashboardStatisticsBenefits_{id} parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsBenefit' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefit' deprecated: false delete: tags: - DashboardStatisticsBenefit summary: 'Delete a model instance by {{id}} from the data source.' operationId: DashboardStatisticsBenefit.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - DashboardStatisticsBenefit summary: >- Patch attributes for a model instance and persist it into the data source. operationId: DashboardStatisticsBenefit.prototype.patchAttributes parameters: - name: id in: path description: DashboardStatisticsBenefit id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsBenefit' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefit' deprecated: false '/DashboardStatisticsBenefits/{id}/replace': post: tags: - DashboardStatisticsBenefit summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardStatisticsBenefit.replaceById__post_DashboardStatisticsBenefits_{id}_replace parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsBenefit' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefit' deprecated: false /DashboardStatisticsBenefits/findOne: get: tags: - DashboardStatisticsBenefit summary: Find first instance of the model matched by filter from the data source. operationId: DashboardStatisticsBenefit.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefit' deprecated: false /DashboardStatisticsBenefits/update: post: tags: - DashboardStatisticsBenefit summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: DashboardStatisticsBenefit.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsBenefit' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /DashboardStatisticsBenefits/count: get: tags: - DashboardStatisticsBenefit summary: Count instances of the model matched by where from the data source. operationId: DashboardStatisticsBenefit.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /DashboardStatisticsPropagandas: post: tags: - DashboardStatisticsPropaganda summary: Create a new instance of the model and persist it into the data source. operationId: DashboardStatisticsPropaganda.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsPropaganda' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsPropaganda' deprecated: false patch: tags: - DashboardStatisticsPropaganda summary: >- Patch an existing model instance or insert a new one into the data source. operationId: DashboardStatisticsPropaganda.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsPropaganda' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsPropaganda' deprecated: false put: tags: - DashboardStatisticsPropaganda summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardStatisticsPropaganda.replaceOrCreate__put_DashboardStatisticsPropagandas parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsPropaganda' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsPropaganda' deprecated: false get: tags: - DashboardStatisticsPropaganda summary: Find all instances of the model matched by filter from the data source. operationId: DashboardStatisticsPropaganda.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/DashboardStatisticsPropaganda' deprecated: false /DashboardStatisticsPropagandas/replaceOrCreate: post: tags: - DashboardStatisticsPropaganda summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardStatisticsPropaganda.replaceOrCreate__post_DashboardStatisticsPropagandas_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsPropaganda' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsPropaganda' deprecated: false /DashboardStatisticsPropagandas/upsertWithWhere: post: tags: - DashboardStatisticsPropaganda summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: DashboardStatisticsPropaganda.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsPropaganda' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsPropaganda' deprecated: false '/DashboardStatisticsPropagandas/{id}/exists': get: tags: - DashboardStatisticsPropaganda summary: Check whether a model instance exists in the data source. operationId: >- DashboardStatisticsPropaganda.exists__get_DashboardStatisticsPropagandas_{id}_exists parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/DashboardStatisticsPropagandas/{id}': head: tags: - DashboardStatisticsPropaganda summary: Check whether a model instance exists in the data source. operationId: >- DashboardStatisticsPropaganda.exists__head_DashboardStatisticsPropagandas_{id} parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - DashboardStatisticsPropaganda summary: 'Find a model instance by {{id}} from the data source.' operationId: DashboardStatisticsPropaganda.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsPropaganda' deprecated: false put: tags: - DashboardStatisticsPropaganda summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardStatisticsPropaganda.replaceById__put_DashboardStatisticsPropagandas_{id} parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsPropaganda' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsPropaganda' deprecated: false delete: tags: - DashboardStatisticsPropaganda summary: 'Delete a model instance by {{id}} from the data source.' operationId: DashboardStatisticsPropaganda.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - DashboardStatisticsPropaganda summary: >- Patch attributes for a model instance and persist it into the data source. operationId: DashboardStatisticsPropaganda.prototype.patchAttributes parameters: - name: id in: path description: DashboardStatisticsPropaganda id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsPropaganda' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsPropaganda' deprecated: false '/DashboardStatisticsPropagandas/{id}/replace': post: tags: - DashboardStatisticsPropaganda summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardStatisticsPropaganda.replaceById__post_DashboardStatisticsPropagandas_{id}_replace parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsPropaganda' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsPropaganda' deprecated: false /DashboardStatisticsPropagandas/findOne: get: tags: - DashboardStatisticsPropaganda summary: Find first instance of the model matched by filter from the data source. operationId: DashboardStatisticsPropaganda.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsPropaganda' deprecated: false /DashboardStatisticsPropagandas/update: post: tags: - DashboardStatisticsPropaganda summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: DashboardStatisticsPropaganda.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsPropaganda' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /DashboardStatisticsPropagandas/count: get: tags: - DashboardStatisticsPropaganda summary: Count instances of the model matched by where from the data source. operationId: DashboardStatisticsPropaganda.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /DashboardStatisticsCounts: post: tags: - DashboardStatisticsCount summary: Create a new instance of the model and persist it into the data source. operationId: DashboardStatisticsCount.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsCount' deprecated: false patch: tags: - DashboardStatisticsCount summary: >- Patch an existing model instance or insert a new one into the data source. operationId: DashboardStatisticsCount.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsCount' deprecated: false put: tags: - DashboardStatisticsCount summary: >- Replace an existing model instance or insert a new one into the data source. operationId: DashboardStatisticsCount.replaceOrCreate__put_DashboardStatisticsCounts parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsCount' deprecated: false get: tags: - DashboardStatisticsCount summary: Find all instances of the model matched by filter from the data source. operationId: DashboardStatisticsCount.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/DashboardStatisticsCount' deprecated: false /DashboardStatisticsCounts/replaceOrCreate: post: tags: - DashboardStatisticsCount summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardStatisticsCount.replaceOrCreate__post_DashboardStatisticsCounts_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsCount' deprecated: false /DashboardStatisticsCounts/upsertWithWhere: post: tags: - DashboardStatisticsCount summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: DashboardStatisticsCount.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsCount' deprecated: false '/DashboardStatisticsCounts/{id}/exists': get: tags: - DashboardStatisticsCount summary: Check whether a model instance exists in the data source. operationId: >- DashboardStatisticsCount.exists__get_DashboardStatisticsCounts_{id}_exists parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/DashboardStatisticsCounts/{id}': head: tags: - DashboardStatisticsCount summary: Check whether a model instance exists in the data source. operationId: 'DashboardStatisticsCount.exists__head_DashboardStatisticsCounts_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - DashboardStatisticsCount summary: 'Find a model instance by {{id}} from the data source.' operationId: DashboardStatisticsCount.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsCount' deprecated: false put: tags: - DashboardStatisticsCount summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'DashboardStatisticsCount.replaceById__put_DashboardStatisticsCounts_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsCount' deprecated: false delete: tags: - DashboardStatisticsCount summary: 'Delete a model instance by {{id}} from the data source.' operationId: DashboardStatisticsCount.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - DashboardStatisticsCount summary: >- Patch attributes for a model instance and persist it into the data source. operationId: DashboardStatisticsCount.prototype.patchAttributes parameters: - name: id in: path description: DashboardStatisticsCount id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsCount' deprecated: false '/DashboardStatisticsCounts/{id}/replace': post: tags: - DashboardStatisticsCount summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardStatisticsCount.replaceById__post_DashboardStatisticsCounts_{id}_replace parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsCount' deprecated: false /DashboardStatisticsCounts/findOne: get: tags: - DashboardStatisticsCount summary: Find first instance of the model matched by filter from the data source. operationId: DashboardStatisticsCount.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsCount' deprecated: false /DashboardStatisticsCounts/update: post: tags: - DashboardStatisticsCount summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: DashboardStatisticsCount.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsCount' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /DashboardStatisticsCounts/count: get: tags: - DashboardStatisticsCount summary: Count instances of the model matched by where from the data source. operationId: DashboardStatisticsCount.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /DashboardStatisticsBenefitData: post: tags: - DashboardStatisticsBenefitData summary: Create a new instance of the model and persist it into the data source. operationId: DashboardStatisticsBenefitData.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsBenefitData' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefitData' deprecated: false patch: tags: - DashboardStatisticsBenefitData summary: >- Patch an existing model instance or insert a new one into the data source. operationId: DashboardStatisticsBenefitData.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsBenefitData' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefitData' deprecated: false put: tags: - DashboardStatisticsBenefitData summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardStatisticsBenefitData.replaceOrCreate__put_DashboardStatisticsBenefitData parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsBenefitData' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefitData' deprecated: false get: tags: - DashboardStatisticsBenefitData summary: Find all instances of the model matched by filter from the data source. operationId: DashboardStatisticsBenefitData.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/DashboardStatisticsBenefitData' deprecated: false /DashboardStatisticsBenefitData/replaceOrCreate: post: tags: - DashboardStatisticsBenefitData summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardStatisticsBenefitData.replaceOrCreate__post_DashboardStatisticsBenefitData_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsBenefitData' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefitData' deprecated: false /DashboardStatisticsBenefitData/upsertWithWhere: post: tags: - DashboardStatisticsBenefitData summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: DashboardStatisticsBenefitData.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsBenefitData' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefitData' deprecated: false '/DashboardStatisticsBenefitData/{id}/exists': get: tags: - DashboardStatisticsBenefitData summary: Check whether a model instance exists in the data source. operationId: >- DashboardStatisticsBenefitData.exists__get_DashboardStatisticsBenefitData_{id}_exists parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/DashboardStatisticsBenefitData/{id}': head: tags: - DashboardStatisticsBenefitData summary: Check whether a model instance exists in the data source. operationId: >- DashboardStatisticsBenefitData.exists__head_DashboardStatisticsBenefitData_{id} parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - DashboardStatisticsBenefitData summary: 'Find a model instance by {{id}} from the data source.' operationId: DashboardStatisticsBenefitData.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefitData' deprecated: false put: tags: - DashboardStatisticsBenefitData summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardStatisticsBenefitData.replaceById__put_DashboardStatisticsBenefitData_{id} parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsBenefitData' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefitData' deprecated: false delete: tags: - DashboardStatisticsBenefitData summary: 'Delete a model instance by {{id}} from the data source.' operationId: DashboardStatisticsBenefitData.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - DashboardStatisticsBenefitData summary: >- Patch attributes for a model instance and persist it into the data source. operationId: DashboardStatisticsBenefitData.prototype.patchAttributes parameters: - name: id in: path description: DashboardStatisticsBenefitData id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsBenefitData' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefitData' deprecated: false '/DashboardStatisticsBenefitData/{id}/replace': post: tags: - DashboardStatisticsBenefitData summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardStatisticsBenefitData.replaceById__post_DashboardStatisticsBenefitData_{id}_replace parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardStatisticsBenefitData' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefitData' deprecated: false /DashboardStatisticsBenefitData/findOne: get: tags: - DashboardStatisticsBenefitData summary: Find first instance of the model matched by filter from the data source. operationId: DashboardStatisticsBenefitData.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardStatisticsBenefitData' deprecated: false /DashboardStatisticsBenefitData/update: post: tags: - DashboardStatisticsBenefitData summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: DashboardStatisticsBenefitData.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardStatisticsBenefitData' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /DashboardStatisticsBenefitData/count: get: tags: - DashboardStatisticsBenefitData summary: Count instances of the model matched by where from the data source. operationId: DashboardStatisticsBenefitData.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /DashboardUpetOrderCounts: post: tags: - DashboardUpetOrderCount summary: Create a new instance of the model and persist it into the data source. operationId: DashboardUpetOrderCount.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardUpetOrderCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardUpetOrderCount' deprecated: false patch: tags: - DashboardUpetOrderCount summary: >- Patch an existing model instance or insert a new one into the data source. operationId: DashboardUpetOrderCount.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardUpetOrderCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardUpetOrderCount' deprecated: false put: tags: - DashboardUpetOrderCount summary: >- Replace an existing model instance or insert a new one into the data source. operationId: DashboardUpetOrderCount.replaceOrCreate__put_DashboardUpetOrderCounts parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardUpetOrderCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardUpetOrderCount' deprecated: false get: tags: - DashboardUpetOrderCount summary: Find all instances of the model matched by filter from the data source. operationId: DashboardUpetOrderCount.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/DashboardUpetOrderCount' deprecated: false /DashboardUpetOrderCounts/replaceOrCreate: post: tags: - DashboardUpetOrderCount summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardUpetOrderCount.replaceOrCreate__post_DashboardUpetOrderCounts_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardUpetOrderCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardUpetOrderCount' deprecated: false /DashboardUpetOrderCounts/upsertWithWhere: post: tags: - DashboardUpetOrderCount summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: DashboardUpetOrderCount.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardUpetOrderCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardUpetOrderCount' deprecated: false '/DashboardUpetOrderCounts/{id}/exists': get: tags: - DashboardUpetOrderCount summary: Check whether a model instance exists in the data source. operationId: 'DashboardUpetOrderCount.exists__get_DashboardUpetOrderCounts_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/DashboardUpetOrderCounts/{id}': head: tags: - DashboardUpetOrderCount summary: Check whether a model instance exists in the data source. operationId: 'DashboardUpetOrderCount.exists__head_DashboardUpetOrderCounts_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - DashboardUpetOrderCount summary: 'Find a model instance by {{id}} from the data source.' operationId: DashboardUpetOrderCount.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardUpetOrderCount' deprecated: false put: tags: - DashboardUpetOrderCount summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'DashboardUpetOrderCount.replaceById__put_DashboardUpetOrderCounts_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardUpetOrderCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardUpetOrderCount' deprecated: false delete: tags: - DashboardUpetOrderCount summary: 'Delete a model instance by {{id}} from the data source.' operationId: DashboardUpetOrderCount.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - DashboardUpetOrderCount summary: >- Patch attributes for a model instance and persist it into the data source. operationId: DashboardUpetOrderCount.prototype.patchAttributes parameters: - name: id in: path description: DashboardUpetOrderCount id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardUpetOrderCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardUpetOrderCount' deprecated: false '/DashboardUpetOrderCounts/{id}/replace': post: tags: - DashboardUpetOrderCount summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardUpetOrderCount.replaceById__post_DashboardUpetOrderCounts_{id}_replace parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardUpetOrderCount' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardUpetOrderCount' deprecated: false /DashboardUpetOrderCounts/findOne: get: tags: - DashboardUpetOrderCount summary: Find first instance of the model matched by filter from the data source. operationId: DashboardUpetOrderCount.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardUpetOrderCount' deprecated: false /DashboardUpetOrderCounts/update: post: tags: - DashboardUpetOrderCount summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: DashboardUpetOrderCount.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardUpetOrderCount' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /DashboardUpetOrderCounts/count: get: tags: - DashboardUpetOrderCount summary: Count instances of the model matched by where from the data source. operationId: DashboardUpetOrderCount.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /Pies: post: tags: - Pie summary: Create a new instance of the model and persist it into the data source. operationId: Pie.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Pie' responses: '200': description: Request was successful schema: $ref: '#/definitions/Pie' deprecated: false patch: tags: - Pie summary: >- Patch an existing model instance or insert a new one into the data source. operationId: Pie.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Pie' responses: '200': description: Request was successful schema: $ref: '#/definitions/Pie' deprecated: false put: tags: - Pie summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Pie.replaceOrCreate__put_Pies parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Pie' responses: '200': description: Request was successful schema: $ref: '#/definitions/Pie' deprecated: false get: tags: - Pie summary: Find all instances of the model matched by filter from the data source. operationId: Pie.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/Pie' deprecated: false /Pies/replaceOrCreate: post: tags: - Pie summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Pie.replaceOrCreate__post_Pies_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Pie' responses: '200': description: Request was successful schema: $ref: '#/definitions/Pie' deprecated: false /Pies/upsertWithWhere: post: tags: - Pie summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: Pie.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Pie' responses: '200': description: Request was successful schema: $ref: '#/definitions/Pie' deprecated: false '/Pies/{id}/exists': get: tags: - Pie summary: Check whether a model instance exists in the data source. operationId: 'Pie.exists__get_Pies_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/Pies/{id}': head: tags: - Pie summary: Check whether a model instance exists in the data source. operationId: 'Pie.exists__head_Pies_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - Pie summary: 'Find a model instance by {{id}} from the data source.' operationId: Pie.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Pie' deprecated: false put: tags: - Pie summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Pie.replaceById__put_Pies_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Pie' responses: '200': description: Request was successful schema: $ref: '#/definitions/Pie' deprecated: false delete: tags: - Pie summary: 'Delete a model instance by {{id}} from the data source.' operationId: Pie.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - Pie summary: >- Patch attributes for a model instance and persist it into the data source. operationId: Pie.prototype.patchAttributes parameters: - name: id in: path description: Pie id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Pie' responses: '200': description: Request was successful schema: $ref: '#/definitions/Pie' deprecated: false '/Pies/{id}/replace': post: tags: - Pie summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Pie.replaceById__post_Pies_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Pie' responses: '200': description: Request was successful schema: $ref: '#/definitions/Pie' deprecated: false /Pies/findOne: get: tags: - Pie summary: Find first instance of the model matched by filter from the data source. operationId: Pie.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Pie' deprecated: false /Pies/update: post: tags: - Pie summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: Pie.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Pie' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /Pies/count: get: tags: - Pie summary: Count instances of the model matched by where from the data source. operationId: Pie.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /Revenues: post: tags: - Revenue summary: Create a new instance of the model and persist it into the data source. operationId: Revenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Revenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Revenue' deprecated: false patch: tags: - Revenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: Revenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Revenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Revenue' deprecated: false put: tags: - Revenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Revenue.replaceOrCreate__put_Revenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Revenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Revenue' deprecated: false get: tags: - Revenue summary: Find all instances of the model matched by filter from the data source. operationId: Revenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/Revenue' deprecated: false /Revenues/replaceOrCreate: post: tags: - Revenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Revenue.replaceOrCreate__post_Revenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Revenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Revenue' deprecated: false /Revenues/upsertWithWhere: post: tags: - Revenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: Revenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Revenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Revenue' deprecated: false '/Revenues/{id}/exists': get: tags: - Revenue summary: Check whether a model instance exists in the data source. operationId: 'Revenue.exists__get_Revenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/Revenues/{id}': head: tags: - Revenue summary: Check whether a model instance exists in the data source. operationId: 'Revenue.exists__head_Revenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - Revenue summary: 'Find a model instance by {{id}} from the data source.' operationId: Revenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Revenue' deprecated: false put: tags: - Revenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Revenue.replaceById__put_Revenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Revenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Revenue' deprecated: false delete: tags: - Revenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: Revenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - Revenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: Revenue.prototype.patchAttributes parameters: - name: id in: path description: Revenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Revenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Revenue' deprecated: false '/Revenues/{id}/replace': post: tags: - Revenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Revenue.replaceById__post_Revenues_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Revenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Revenue' deprecated: false /Revenues/findOne: get: tags: - Revenue summary: Find first instance of the model matched by filter from the data source. operationId: Revenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Revenue' deprecated: false /Revenues/update: post: tags: - Revenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: Revenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Revenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /Revenues/count: get: tags: - Revenue summary: Count instances of the model matched by where from the data source. operationId: Revenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /Eachrevenues: post: tags: - Eachrevenue summary: Create a new instance of the model and persist it into the data source. operationId: Eachrevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Eachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Eachrevenue' deprecated: false patch: tags: - Eachrevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: Eachrevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Eachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Eachrevenue' deprecated: false put: tags: - Eachrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Eachrevenue.replaceOrCreate__put_Eachrevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Eachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Eachrevenue' deprecated: false get: tags: - Eachrevenue summary: Find all instances of the model matched by filter from the data source. operationId: Eachrevenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/Eachrevenue' deprecated: false /Eachrevenues/replaceOrCreate: post: tags: - Eachrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Eachrevenue.replaceOrCreate__post_Eachrevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Eachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Eachrevenue' deprecated: false /Eachrevenues/upsertWithWhere: post: tags: - Eachrevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: Eachrevenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Eachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Eachrevenue' deprecated: false '/Eachrevenues/{id}/exists': get: tags: - Eachrevenue summary: Check whether a model instance exists in the data source. operationId: 'Eachrevenue.exists__get_Eachrevenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/Eachrevenues/{id}': head: tags: - Eachrevenue summary: Check whether a model instance exists in the data source. operationId: 'Eachrevenue.exists__head_Eachrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - Eachrevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: Eachrevenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Eachrevenue' deprecated: false put: tags: - Eachrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Eachrevenue.replaceById__put_Eachrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Eachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Eachrevenue' deprecated: false delete: tags: - Eachrevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: Eachrevenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - Eachrevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: Eachrevenue.prototype.patchAttributes parameters: - name: id in: path description: Eachrevenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Eachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Eachrevenue' deprecated: false '/Eachrevenues/{id}/replace': post: tags: - Eachrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Eachrevenue.replaceById__post_Eachrevenues_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Eachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/Eachrevenue' deprecated: false /Eachrevenues/findOne: get: tags: - Eachrevenue summary: Find first instance of the model matched by filter from the data source. operationId: Eachrevenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Eachrevenue' deprecated: false /Eachrevenues/update: post: tags: - Eachrevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: Eachrevenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Eachrevenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /Eachrevenues/count: get: tags: - Eachrevenue summary: Count instances of the model matched by where from the data source. operationId: Eachrevenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /Offlineteachers: post: tags: - Offlineteachers summary: Create a new instance of the model and persist it into the data source. operationId: Offlineteachers.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Offlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Offlineteachers' deprecated: false patch: tags: - Offlineteachers summary: >- Patch an existing model instance or insert a new one into the data source. operationId: Offlineteachers.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Offlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Offlineteachers' deprecated: false put: tags: - Offlineteachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Offlineteachers.replaceOrCreate__put_Offlineteachers parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Offlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Offlineteachers' deprecated: false get: tags: - Offlineteachers summary: Find all instances of the model matched by filter from the data source. operationId: Offlineteachers.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/Offlineteachers' deprecated: false /Offlineteachers/replaceOrCreate: post: tags: - Offlineteachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Offlineteachers.replaceOrCreate__post_Offlineteachers_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Offlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Offlineteachers' deprecated: false /Offlineteachers/upsertWithWhere: post: tags: - Offlineteachers summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: Offlineteachers.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Offlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Offlineteachers' deprecated: false '/Offlineteachers/{id}/exists': get: tags: - Offlineteachers summary: Check whether a model instance exists in the data source. operationId: 'Offlineteachers.exists__get_Offlineteachers_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/Offlineteachers/{id}': head: tags: - Offlineteachers summary: Check whether a model instance exists in the data source. operationId: 'Offlineteachers.exists__head_Offlineteachers_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - Offlineteachers summary: 'Find a model instance by {{id}} from the data source.' operationId: Offlineteachers.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Offlineteachers' deprecated: false put: tags: - Offlineteachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Offlineteachers.replaceById__put_Offlineteachers_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Offlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Offlineteachers' deprecated: false delete: tags: - Offlineteachers summary: 'Delete a model instance by {{id}} from the data source.' operationId: Offlineteachers.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - Offlineteachers summary: >- Patch attributes for a model instance and persist it into the data source. operationId: Offlineteachers.prototype.patchAttributes parameters: - name: id in: path description: Offlineteachers id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Offlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Offlineteachers' deprecated: false '/Offlineteachers/{id}/replace': post: tags: - Offlineteachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Offlineteachers.replaceById__post_Offlineteachers_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Offlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Offlineteachers' deprecated: false /Offlineteachers/findOne: get: tags: - Offlineteachers summary: Find first instance of the model matched by filter from the data source. operationId: Offlineteachers.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Offlineteachers' deprecated: false /Offlineteachers/update: post: tags: - Offlineteachers summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: Offlineteachers.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Offlineteachers' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /Offlineteachers/count: get: tags: - Offlineteachers summary: Count instances of the model matched by where from the data source. operationId: Offlineteachers.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /Onlineteachers: post: tags: - Onlineteachers summary: Create a new instance of the model and persist it into the data source. operationId: Onlineteachers.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Onlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Onlineteachers' deprecated: false patch: tags: - Onlineteachers summary: >- Patch an existing model instance or insert a new one into the data source. operationId: Onlineteachers.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Onlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Onlineteachers' deprecated: false put: tags: - Onlineteachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Onlineteachers.replaceOrCreate__put_Onlineteachers parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Onlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Onlineteachers' deprecated: false get: tags: - Onlineteachers summary: Find all instances of the model matched by filter from the data source. operationId: Onlineteachers.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/Onlineteachers' deprecated: false /Onlineteachers/replaceOrCreate: post: tags: - Onlineteachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Onlineteachers.replaceOrCreate__post_Onlineteachers_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Onlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Onlineteachers' deprecated: false /Onlineteachers/upsertWithWhere: post: tags: - Onlineteachers summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: Onlineteachers.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Onlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Onlineteachers' deprecated: false '/Onlineteachers/{id}/exists': get: tags: - Onlineteachers summary: Check whether a model instance exists in the data source. operationId: 'Onlineteachers.exists__get_Onlineteachers_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/Onlineteachers/{id}': head: tags: - Onlineteachers summary: Check whether a model instance exists in the data source. operationId: 'Onlineteachers.exists__head_Onlineteachers_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - Onlineteachers summary: 'Find a model instance by {{id}} from the data source.' operationId: Onlineteachers.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Onlineteachers' deprecated: false put: tags: - Onlineteachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Onlineteachers.replaceById__put_Onlineteachers_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Onlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Onlineteachers' deprecated: false delete: tags: - Onlineteachers summary: 'Delete a model instance by {{id}} from the data source.' operationId: Onlineteachers.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - Onlineteachers summary: >- Patch attributes for a model instance and persist it into the data source. operationId: Onlineteachers.prototype.patchAttributes parameters: - name: id in: path description: Onlineteachers id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Onlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Onlineteachers' deprecated: false '/Onlineteachers/{id}/replace': post: tags: - Onlineteachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Onlineteachers.replaceById__post_Onlineteachers_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Onlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/Onlineteachers' deprecated: false /Onlineteachers/findOne: get: tags: - Onlineteachers summary: Find first instance of the model matched by filter from the data source. operationId: Onlineteachers.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Onlineteachers' deprecated: false /Onlineteachers/update: post: tags: - Onlineteachers summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: Onlineteachers.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Onlineteachers' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /Onlineteachers/count: get: tags: - Onlineteachers summary: Count instances of the model matched by where from the data source. operationId: Onlineteachers.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /Merchants: post: tags: - Merchant summary: Create a new instance of the model and persist it into the data source. operationId: Merchant.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Merchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/Merchant' deprecated: false patch: tags: - Merchant summary: >- Patch an existing model instance or insert a new one into the data source. operationId: Merchant.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Merchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/Merchant' deprecated: false put: tags: - Merchant summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Merchant.replaceOrCreate__put_Merchants parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Merchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/Merchant' deprecated: false get: tags: - Merchant summary: Find all instances of the model matched by filter from the data source. operationId: Merchant.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/Merchant' deprecated: false /Merchants/replaceOrCreate: post: tags: - Merchant summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Merchant.replaceOrCreate__post_Merchants_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Merchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/Merchant' deprecated: false /Merchants/upsertWithWhere: post: tags: - Merchant summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: Merchant.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Merchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/Merchant' deprecated: false '/Merchants/{id}/exists': get: tags: - Merchant summary: Check whether a model instance exists in the data source. operationId: 'Merchant.exists__get_Merchants_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/Merchants/{id}': head: tags: - Merchant summary: Check whether a model instance exists in the data source. operationId: 'Merchant.exists__head_Merchants_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - Merchant summary: 'Find a model instance by {{id}} from the data source.' operationId: Merchant.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Merchant' deprecated: false put: tags: - Merchant summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Merchant.replaceById__put_Merchants_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Merchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/Merchant' deprecated: false delete: tags: - Merchant summary: 'Delete a model instance by {{id}} from the data source.' operationId: Merchant.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - Merchant summary: >- Patch attributes for a model instance and persist it into the data source. operationId: Merchant.prototype.patchAttributes parameters: - name: id in: path description: Merchant id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Merchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/Merchant' deprecated: false '/Merchants/{id}/replace': post: tags: - Merchant summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Merchant.replaceById__post_Merchants_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Merchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/Merchant' deprecated: false /Merchants/findOne: get: tags: - Merchant summary: Find first instance of the model matched by filter from the data source. operationId: Merchant.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Merchant' deprecated: false /Merchants/update: post: tags: - Merchant summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: Merchant.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Merchant' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /Merchants/count: get: tags: - Merchant summary: Count instances of the model matched by where from the data source. operationId: Merchant.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /Budgets: post: tags: - Budget summary: Create a new instance of the model and persist it into the data source. operationId: Budget.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Budget' responses: '200': description: Request was successful schema: $ref: '#/definitions/Budget' deprecated: false patch: tags: - Budget summary: >- Patch an existing model instance or insert a new one into the data source. operationId: Budget.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Budget' responses: '200': description: Request was successful schema: $ref: '#/definitions/Budget' deprecated: false put: tags: - Budget summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Budget.replaceOrCreate__put_Budgets parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Budget' responses: '200': description: Request was successful schema: $ref: '#/definitions/Budget' deprecated: false get: tags: - Budget summary: Find all instances of the model matched by filter from the data source. operationId: Budget.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/Budget' deprecated: false /Budgets/replaceOrCreate: post: tags: - Budget summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Budget.replaceOrCreate__post_Budgets_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Budget' responses: '200': description: Request was successful schema: $ref: '#/definitions/Budget' deprecated: false /Budgets/upsertWithWhere: post: tags: - Budget summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: Budget.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Budget' responses: '200': description: Request was successful schema: $ref: '#/definitions/Budget' deprecated: false '/Budgets/{id}/exists': get: tags: - Budget summary: Check whether a model instance exists in the data source. operationId: 'Budget.exists__get_Budgets_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/Budgets/{id}': head: tags: - Budget summary: Check whether a model instance exists in the data source. operationId: 'Budget.exists__head_Budgets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - Budget summary: 'Find a model instance by {{id}} from the data source.' operationId: Budget.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Budget' deprecated: false put: tags: - Budget summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Budget.replaceById__put_Budgets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Budget' responses: '200': description: Request was successful schema: $ref: '#/definitions/Budget' deprecated: false delete: tags: - Budget summary: 'Delete a model instance by {{id}} from the data source.' operationId: Budget.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - Budget summary: >- Patch attributes for a model instance and persist it into the data source. operationId: Budget.prototype.patchAttributes parameters: - name: id in: path description: Budget id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Budget' responses: '200': description: Request was successful schema: $ref: '#/definitions/Budget' deprecated: false '/Budgets/{id}/replace': post: tags: - Budget summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Budget.replaceById__post_Budgets_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Budget' responses: '200': description: Request was successful schema: $ref: '#/definitions/Budget' deprecated: false /Budgets/findOne: get: tags: - Budget summary: Find first instance of the model matched by filter from the data source. operationId: Budget.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Budget' deprecated: false /Budgets/update: post: tags: - Budget summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: Budget.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Budget' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /Budgets/count: get: tags: - Budget summary: Count instances of the model matched by where from the data source. operationId: Budget.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainMerchants: post: tags: - MainMerchant summary: Create a new instance of the model and persist it into the data source. operationId: MainMerchant.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainMerchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainMerchant' deprecated: false patch: tags: - MainMerchant summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainMerchant.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainMerchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainMerchant' deprecated: false put: tags: - MainMerchant summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainMerchant.replaceOrCreate__put_MainMerchants parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainMerchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainMerchant' deprecated: false get: tags: - MainMerchant summary: Find all instances of the model matched by filter from the data source. operationId: MainMerchant.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainMerchant' deprecated: false /MainMerchants/replaceOrCreate: post: tags: - MainMerchant summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainMerchant.replaceOrCreate__post_MainMerchants_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainMerchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainMerchant' deprecated: false /MainMerchants/upsertWithWhere: post: tags: - MainMerchant summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainMerchant.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainMerchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainMerchant' deprecated: false '/MainMerchants/{id}/exists': get: tags: - MainMerchant summary: Check whether a model instance exists in the data source. operationId: 'MainMerchant.exists__get_MainMerchants_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainMerchants/{id}': head: tags: - MainMerchant summary: Check whether a model instance exists in the data source. operationId: 'MainMerchant.exists__head_MainMerchants_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainMerchant summary: 'Find a model instance by {{id}} from the data source.' operationId: MainMerchant.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainMerchant' deprecated: false put: tags: - MainMerchant summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainMerchant.replaceById__put_MainMerchants_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainMerchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainMerchant' deprecated: false delete: tags: - MainMerchant summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainMerchant.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainMerchant summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainMerchant.prototype.patchAttributes parameters: - name: id in: path description: MainMerchant id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainMerchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainMerchant' deprecated: false '/MainMerchants/{id}/replace': post: tags: - MainMerchant summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainMerchant.replaceById__post_MainMerchants_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainMerchant' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainMerchant' deprecated: false /MainMerchants/findOne: get: tags: - MainMerchant summary: Find first instance of the model matched by filter from the data source. operationId: MainMerchant.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainMerchant' deprecated: false /MainMerchants/update: post: tags: - MainMerchant summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainMerchant.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainMerchant' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainMerchants/count: get: tags: - MainMerchant summary: Count instances of the model matched by where from the data source. operationId: MainMerchant.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainEachrevenues: post: tags: - MainEachrevenue summary: Create a new instance of the model and persist it into the data source. operationId: MainEachrevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachrevenue' deprecated: false patch: tags: - MainEachrevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainEachrevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachrevenue' deprecated: false put: tags: - MainEachrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainEachrevenue.replaceOrCreate__put_MainEachrevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachrevenue' deprecated: false get: tags: - MainEachrevenue summary: Find all instances of the model matched by filter from the data source. operationId: MainEachrevenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainEachrevenue' deprecated: false /MainEachrevenues/replaceOrCreate: post: tags: - MainEachrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainEachrevenue.replaceOrCreate__post_MainEachrevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachrevenue' deprecated: false /MainEachrevenues/upsertWithWhere: post: tags: - MainEachrevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainEachrevenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachrevenue' deprecated: false '/MainEachrevenues/{id}/exists': get: tags: - MainEachrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainEachrevenue.exists__get_MainEachrevenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainEachrevenues/{id}': head: tags: - MainEachrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainEachrevenue.exists__head_MainEachrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainEachrevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: MainEachrevenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachrevenue' deprecated: false put: tags: - MainEachrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainEachrevenue.replaceById__put_MainEachrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachrevenue' deprecated: false delete: tags: - MainEachrevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainEachrevenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainEachrevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainEachrevenue.prototype.patchAttributes parameters: - name: id in: path description: MainEachrevenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachrevenue' deprecated: false '/MainEachrevenues/{id}/replace': post: tags: - MainEachrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainEachrevenue.replaceById__post_MainEachrevenues_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachrevenue' deprecated: false /MainEachrevenues/findOne: get: tags: - MainEachrevenue summary: Find first instance of the model matched by filter from the data source. operationId: MainEachrevenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachrevenue' deprecated: false /MainEachrevenues/update: post: tags: - MainEachrevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainEachrevenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEachrevenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainEachrevenues/count: get: tags: - MainEachrevenue summary: Count instances of the model matched by where from the data source. operationId: MainEachrevenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainEachyears: post: tags: - MainEachyear summary: Create a new instance of the model and persist it into the data source. operationId: MainEachyear.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachyear' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachyear' deprecated: false patch: tags: - MainEachyear summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainEachyear.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachyear' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachyear' deprecated: false put: tags: - MainEachyear summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainEachyear.replaceOrCreate__put_MainEachyears parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachyear' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachyear' deprecated: false get: tags: - MainEachyear summary: Find all instances of the model matched by filter from the data source. operationId: MainEachyear.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainEachyear' deprecated: false /MainEachyears/replaceOrCreate: post: tags: - MainEachyear summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainEachyear.replaceOrCreate__post_MainEachyears_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachyear' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachyear' deprecated: false /MainEachyears/upsertWithWhere: post: tags: - MainEachyear summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainEachyear.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEachyear' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachyear' deprecated: false '/MainEachyears/{id}/exists': get: tags: - MainEachyear summary: Check whether a model instance exists in the data source. operationId: 'MainEachyear.exists__get_MainEachyears_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainEachyears/{id}': head: tags: - MainEachyear summary: Check whether a model instance exists in the data source. operationId: 'MainEachyear.exists__head_MainEachyears_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainEachyear summary: 'Find a model instance by {{id}} from the data source.' operationId: MainEachyear.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachyear' deprecated: false put: tags: - MainEachyear summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainEachyear.replaceById__put_MainEachyears_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachyear' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachyear' deprecated: false delete: tags: - MainEachyear summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainEachyear.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainEachyear summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainEachyear.prototype.patchAttributes parameters: - name: id in: path description: MainEachyear id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEachyear' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachyear' deprecated: false '/MainEachyears/{id}/replace': post: tags: - MainEachyear summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainEachyear.replaceById__post_MainEachyears_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachyear' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachyear' deprecated: false /MainEachyears/findOne: get: tags: - MainEachyear summary: Find first instance of the model matched by filter from the data source. operationId: MainEachyear.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachyear' deprecated: false /MainEachyears/update: post: tags: - MainEachyear summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainEachyear.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEachyear' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainEachyears/count: get: tags: - MainEachyear summary: Count instances of the model matched by where from the data source. operationId: MainEachyear.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainHospitalnums: post: tags: - MainHospitalnum summary: Create a new instance of the model and persist it into the data source. operationId: MainHospitalnum.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainHospitalnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainHospitalnum' deprecated: false patch: tags: - MainHospitalnum summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainHospitalnum.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainHospitalnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainHospitalnum' deprecated: false put: tags: - MainHospitalnum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainHospitalnum.replaceOrCreate__put_MainHospitalnums parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainHospitalnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainHospitalnum' deprecated: false get: tags: - MainHospitalnum summary: Find all instances of the model matched by filter from the data source. operationId: MainHospitalnum.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainHospitalnum' deprecated: false /MainHospitalnums/replaceOrCreate: post: tags: - MainHospitalnum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainHospitalnum.replaceOrCreate__post_MainHospitalnums_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainHospitalnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainHospitalnum' deprecated: false /MainHospitalnums/upsertWithWhere: post: tags: - MainHospitalnum summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainHospitalnum.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainHospitalnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainHospitalnum' deprecated: false '/MainHospitalnums/{id}/exists': get: tags: - MainHospitalnum summary: Check whether a model instance exists in the data source. operationId: 'MainHospitalnum.exists__get_MainHospitalnums_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainHospitalnums/{id}': head: tags: - MainHospitalnum summary: Check whether a model instance exists in the data source. operationId: 'MainHospitalnum.exists__head_MainHospitalnums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainHospitalnum summary: 'Find a model instance by {{id}} from the data source.' operationId: MainHospitalnum.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainHospitalnum' deprecated: false put: tags: - MainHospitalnum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainHospitalnum.replaceById__put_MainHospitalnums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainHospitalnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainHospitalnum' deprecated: false delete: tags: - MainHospitalnum summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainHospitalnum.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainHospitalnum summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainHospitalnum.prototype.patchAttributes parameters: - name: id in: path description: MainHospitalnum id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainHospitalnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainHospitalnum' deprecated: false '/MainHospitalnums/{id}/replace': post: tags: - MainHospitalnum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainHospitalnum.replaceById__post_MainHospitalnums_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainHospitalnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainHospitalnum' deprecated: false /MainHospitalnums/findOne: get: tags: - MainHospitalnum summary: Find first instance of the model matched by filter from the data source. operationId: MainHospitalnum.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainHospitalnum' deprecated: false /MainHospitalnums/update: post: tags: - MainHospitalnum summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainHospitalnum.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainHospitalnum' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainHospitalnums/count: get: tags: - MainHospitalnum summary: Count instances of the model matched by where from the data source. operationId: MainHospitalnum.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainRealityrevenues: post: tags: - MainRealityrevenue summary: Create a new instance of the model and persist it into the data source. operationId: MainRealityrevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRealityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRealityrevenue' deprecated: false patch: tags: - MainRealityrevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainRealityrevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRealityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRealityrevenue' deprecated: false put: tags: - MainRealityrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainRealityrevenue.replaceOrCreate__put_MainRealityrevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRealityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRealityrevenue' deprecated: false get: tags: - MainRealityrevenue summary: Find all instances of the model matched by filter from the data source. operationId: MainRealityrevenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainRealityrevenue' deprecated: false /MainRealityrevenues/replaceOrCreate: post: tags: - MainRealityrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- MainRealityrevenue.replaceOrCreate__post_MainRealityrevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRealityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRealityrevenue' deprecated: false /MainRealityrevenues/upsertWithWhere: post: tags: - MainRealityrevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainRealityrevenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRealityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRealityrevenue' deprecated: false '/MainRealityrevenues/{id}/exists': get: tags: - MainRealityrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainRealityrevenue.exists__get_MainRealityrevenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainRealityrevenues/{id}': head: tags: - MainRealityrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainRealityrevenue.exists__head_MainRealityrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainRealityrevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: MainRealityrevenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRealityrevenue' deprecated: false put: tags: - MainRealityrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainRealityrevenue.replaceById__put_MainRealityrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRealityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRealityrevenue' deprecated: false delete: tags: - MainRealityrevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainRealityrevenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainRealityrevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainRealityrevenue.prototype.patchAttributes parameters: - name: id in: path description: MainRealityrevenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRealityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRealityrevenue' deprecated: false '/MainRealityrevenues/{id}/replace': post: tags: - MainRealityrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainRealityrevenue.replaceById__post_MainRealityrevenues_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRealityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRealityrevenue' deprecated: false /MainRealityrevenues/findOne: get: tags: - MainRealityrevenue summary: Find first instance of the model matched by filter from the data source. operationId: MainRealityrevenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRealityrevenue' deprecated: false /MainRealityrevenues/update: post: tags: - MainRealityrevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainRealityrevenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRealityrevenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainRealityrevenues/count: get: tags: - MainRealityrevenue summary: Count instances of the model matched by where from the data source. operationId: MainRealityrevenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainOnlineteachers: post: tags: - MainOnlineteachers summary: Create a new instance of the model and persist it into the data source. operationId: MainOnlineteachers.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainOnlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainOnlineteachers' deprecated: false patch: tags: - MainOnlineteachers summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainOnlineteachers.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainOnlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainOnlineteachers' deprecated: false put: tags: - MainOnlineteachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainOnlineteachers.replaceOrCreate__put_MainOnlineteachers parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainOnlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainOnlineteachers' deprecated: false get: tags: - MainOnlineteachers summary: Find all instances of the model matched by filter from the data source. operationId: MainOnlineteachers.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainOnlineteachers' deprecated: false /MainOnlineteachers/replaceOrCreate: post: tags: - MainOnlineteachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- MainOnlineteachers.replaceOrCreate__post_MainOnlineteachers_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainOnlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainOnlineteachers' deprecated: false /MainOnlineteachers/upsertWithWhere: post: tags: - MainOnlineteachers summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainOnlineteachers.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainOnlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainOnlineteachers' deprecated: false '/MainOnlineteachers/{id}/exists': get: tags: - MainOnlineteachers summary: Check whether a model instance exists in the data source. operationId: 'MainOnlineteachers.exists__get_MainOnlineteachers_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainOnlineteachers/{id}': head: tags: - MainOnlineteachers summary: Check whether a model instance exists in the data source. operationId: 'MainOnlineteachers.exists__head_MainOnlineteachers_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainOnlineteachers summary: 'Find a model instance by {{id}} from the data source.' operationId: MainOnlineteachers.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainOnlineteachers' deprecated: false put: tags: - MainOnlineteachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainOnlineteachers.replaceById__put_MainOnlineteachers_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainOnlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainOnlineteachers' deprecated: false delete: tags: - MainOnlineteachers summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainOnlineteachers.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainOnlineteachers summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainOnlineteachers.prototype.patchAttributes parameters: - name: id in: path description: MainOnlineteachers id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainOnlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainOnlineteachers' deprecated: false '/MainOnlineteachers/{id}/replace': post: tags: - MainOnlineteachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainOnlineteachers.replaceById__post_MainOnlineteachers_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainOnlineteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainOnlineteachers' deprecated: false /MainOnlineteachers/findOne: get: tags: - MainOnlineteachers summary: Find first instance of the model matched by filter from the data source. operationId: MainOnlineteachers.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainOnlineteachers' deprecated: false /MainOnlineteachers/update: post: tags: - MainOnlineteachers summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainOnlineteachers.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainOnlineteachers' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainOnlineteachers/count: get: tags: - MainOnlineteachers summary: Count instances of the model matched by where from the data source. operationId: MainOnlineteachers.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainTotals: post: tags: - MainTotal summary: Create a new instance of the model and persist it into the data source. operationId: MainTotal.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotal' deprecated: false patch: tags: - MainTotal summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainTotal.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotal' deprecated: false put: tags: - MainTotal summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotal.replaceOrCreate__put_MainTotals parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotal' deprecated: false get: tags: - MainTotal summary: Find all instances of the model matched by filter from the data source. operationId: MainTotal.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainTotal' deprecated: false /MainTotals/replaceOrCreate: post: tags: - MainTotal summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotal.replaceOrCreate__post_MainTotals_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotal' deprecated: false /MainTotals/upsertWithWhere: post: tags: - MainTotal summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainTotal.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotal' deprecated: false '/MainTotals/{id}/exists': get: tags: - MainTotal summary: Check whether a model instance exists in the data source. operationId: 'MainTotal.exists__get_MainTotals_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainTotals/{id}': head: tags: - MainTotal summary: Check whether a model instance exists in the data source. operationId: 'MainTotal.exists__head_MainTotals_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainTotal summary: 'Find a model instance by {{id}} from the data source.' operationId: MainTotal.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotal' deprecated: false put: tags: - MainTotal summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotal.replaceById__put_MainTotals_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotal' deprecated: false delete: tags: - MainTotal summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainTotal.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainTotal summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainTotal.prototype.patchAttributes parameters: - name: id in: path description: MainTotal id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotal' deprecated: false '/MainTotals/{id}/replace': post: tags: - MainTotal summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotal.replaceById__post_MainTotals_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotal' deprecated: false /MainTotals/findOne: get: tags: - MainTotal summary: Find first instance of the model matched by filter from the data source. operationId: MainTotal.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotal' deprecated: false /MainTotals/update: post: tags: - MainTotal summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainTotal.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotal' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainTotals/count: get: tags: - MainTotal summary: Count instances of the model matched by where from the data source. operationId: MainTotal.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainTotalbudgets: post: tags: - MainTotalbudget summary: Create a new instance of the model and persist it into the data source. operationId: MainTotalbudget.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalbudget' deprecated: false patch: tags: - MainTotalbudget summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainTotalbudget.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalbudget' deprecated: false put: tags: - MainTotalbudget summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalbudget.replaceOrCreate__put_MainTotalbudgets parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalbudget' deprecated: false get: tags: - MainTotalbudget summary: Find all instances of the model matched by filter from the data source. operationId: MainTotalbudget.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainTotalbudget' deprecated: false /MainTotalbudgets/replaceOrCreate: post: tags: - MainTotalbudget summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalbudget.replaceOrCreate__post_MainTotalbudgets_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalbudget' deprecated: false /MainTotalbudgets/upsertWithWhere: post: tags: - MainTotalbudget summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainTotalbudget.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalbudget' deprecated: false '/MainTotalbudgets/{id}/exists': get: tags: - MainTotalbudget summary: Check whether a model instance exists in the data source. operationId: 'MainTotalbudget.exists__get_MainTotalbudgets_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainTotalbudgets/{id}': head: tags: - MainTotalbudget summary: Check whether a model instance exists in the data source. operationId: 'MainTotalbudget.exists__head_MainTotalbudgets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainTotalbudget summary: 'Find a model instance by {{id}} from the data source.' operationId: MainTotalbudget.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalbudget' deprecated: false put: tags: - MainTotalbudget summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalbudget.replaceById__put_MainTotalbudgets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalbudget' deprecated: false delete: tags: - MainTotalbudget summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainTotalbudget.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainTotalbudget summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainTotalbudget.prototype.patchAttributes parameters: - name: id in: path description: MainTotalbudget id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalbudget' deprecated: false '/MainTotalbudgets/{id}/replace': post: tags: - MainTotalbudget summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalbudget.replaceById__post_MainTotalbudgets_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalbudget' deprecated: false /MainTotalbudgets/findOne: get: tags: - MainTotalbudget summary: Find first instance of the model matched by filter from the data source. operationId: MainTotalbudget.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalbudget' deprecated: false /MainTotalbudgets/update: post: tags: - MainTotalbudget summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainTotalbudget.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalbudget' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainTotalbudgets/count: get: tags: - MainTotalbudget summary: Count instances of the model matched by where from the data source. operationId: MainTotalbudget.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainTotalcases: post: tags: - MainTotalcase summary: Create a new instance of the model and persist it into the data source. operationId: MainTotalcase.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalcase' deprecated: false patch: tags: - MainTotalcase summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainTotalcase.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalcase' deprecated: false put: tags: - MainTotalcase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalcase.replaceOrCreate__put_MainTotalcases parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalcase' deprecated: false get: tags: - MainTotalcase summary: Find all instances of the model matched by filter from the data source. operationId: MainTotalcase.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainTotalcase' deprecated: false /MainTotalcases/replaceOrCreate: post: tags: - MainTotalcase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalcase.replaceOrCreate__post_MainTotalcases_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalcase' deprecated: false /MainTotalcases/upsertWithWhere: post: tags: - MainTotalcase summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainTotalcase.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalcase' deprecated: false '/MainTotalcases/{id}/exists': get: tags: - MainTotalcase summary: Check whether a model instance exists in the data source. operationId: 'MainTotalcase.exists__get_MainTotalcases_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainTotalcases/{id}': head: tags: - MainTotalcase summary: Check whether a model instance exists in the data source. operationId: 'MainTotalcase.exists__head_MainTotalcases_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainTotalcase summary: 'Find a model instance by {{id}} from the data source.' operationId: MainTotalcase.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalcase' deprecated: false put: tags: - MainTotalcase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalcase.replaceById__put_MainTotalcases_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalcase' deprecated: false delete: tags: - MainTotalcase summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainTotalcase.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainTotalcase summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainTotalcase.prototype.patchAttributes parameters: - name: id in: path description: MainTotalcase id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalcase' deprecated: false '/MainTotalcases/{id}/replace': post: tags: - MainTotalcase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalcase.replaceById__post_MainTotalcases_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalcase' deprecated: false /MainTotalcases/findOne: get: tags: - MainTotalcase summary: Find first instance of the model matched by filter from the data source. operationId: MainTotalcase.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalcase' deprecated: false /MainTotalcases/update: post: tags: - MainTotalcase summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainTotalcase.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalcase' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainTotalcases/count: get: tags: - MainTotalcase summary: Count instances of the model matched by where from the data source. operationId: MainTotalcase.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainTotalgoods: post: tags: - MainTotalgoods summary: Create a new instance of the model and persist it into the data source. operationId: MainTotalgoods.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalgoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoods' deprecated: false patch: tags: - MainTotalgoods summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainTotalgoods.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalgoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoods' deprecated: false put: tags: - MainTotalgoods summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalgoods.replaceOrCreate__put_MainTotalgoods parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalgoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoods' deprecated: false get: tags: - MainTotalgoods summary: Find all instances of the model matched by filter from the data source. operationId: MainTotalgoods.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainTotalgoods' deprecated: false /MainTotalgoods/replaceOrCreate: post: tags: - MainTotalgoods summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalgoods.replaceOrCreate__post_MainTotalgoods_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalgoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoods' deprecated: false /MainTotalgoods/upsertWithWhere: post: tags: - MainTotalgoods summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainTotalgoods.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalgoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoods' deprecated: false '/MainTotalgoods/{id}/exists': get: tags: - MainTotalgoods summary: Check whether a model instance exists in the data source. operationId: 'MainTotalgoods.exists__get_MainTotalgoods_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainTotalgoods/{id}': head: tags: - MainTotalgoods summary: Check whether a model instance exists in the data source. operationId: 'MainTotalgoods.exists__head_MainTotalgoods_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainTotalgoods summary: 'Find a model instance by {{id}} from the data source.' operationId: MainTotalgoods.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoods' deprecated: false put: tags: - MainTotalgoods summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalgoods.replaceById__put_MainTotalgoods_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalgoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoods' deprecated: false delete: tags: - MainTotalgoods summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainTotalgoods.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainTotalgoods summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainTotalgoods.prototype.patchAttributes parameters: - name: id in: path description: MainTotalgoods id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalgoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoods' deprecated: false '/MainTotalgoods/{id}/replace': post: tags: - MainTotalgoods summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalgoods.replaceById__post_MainTotalgoods_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalgoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoods' deprecated: false /MainTotalgoods/findOne: get: tags: - MainTotalgoods summary: Find first instance of the model matched by filter from the data source. operationId: MainTotalgoods.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoods' deprecated: false /MainTotalgoods/update: post: tags: - MainTotalgoods summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainTotalgoods.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalgoods' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainTotalgoods/count: get: tags: - MainTotalgoods summary: Count instances of the model matched by where from the data source. operationId: MainTotalgoods.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainTotalgoodsnums: post: tags: - MainTotalgoodsnum summary: Create a new instance of the model and persist it into the data source. operationId: MainTotalgoodsnum.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalgoodsnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoodsnum' deprecated: false patch: tags: - MainTotalgoodsnum summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainTotalgoodsnum.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalgoodsnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoodsnum' deprecated: false put: tags: - MainTotalgoodsnum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalgoodsnum.replaceOrCreate__put_MainTotalgoodsnums parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalgoodsnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoodsnum' deprecated: false get: tags: - MainTotalgoodsnum summary: Find all instances of the model matched by filter from the data source. operationId: MainTotalgoodsnum.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainTotalgoodsnum' deprecated: false /MainTotalgoodsnums/replaceOrCreate: post: tags: - MainTotalgoodsnum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- MainTotalgoodsnum.replaceOrCreate__post_MainTotalgoodsnums_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalgoodsnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoodsnum' deprecated: false /MainTotalgoodsnums/upsertWithWhere: post: tags: - MainTotalgoodsnum summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainTotalgoodsnum.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalgoodsnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoodsnum' deprecated: false '/MainTotalgoodsnums/{id}/exists': get: tags: - MainTotalgoodsnum summary: Check whether a model instance exists in the data source. operationId: 'MainTotalgoodsnum.exists__get_MainTotalgoodsnums_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainTotalgoodsnums/{id}': head: tags: - MainTotalgoodsnum summary: Check whether a model instance exists in the data source. operationId: 'MainTotalgoodsnum.exists__head_MainTotalgoodsnums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainTotalgoodsnum summary: 'Find a model instance by {{id}} from the data source.' operationId: MainTotalgoodsnum.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoodsnum' deprecated: false put: tags: - MainTotalgoodsnum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalgoodsnum.replaceById__put_MainTotalgoodsnums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalgoodsnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoodsnum' deprecated: false delete: tags: - MainTotalgoodsnum summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainTotalgoodsnum.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainTotalgoodsnum summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainTotalgoodsnum.prototype.patchAttributes parameters: - name: id in: path description: MainTotalgoodsnum id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalgoodsnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoodsnum' deprecated: false '/MainTotalgoodsnums/{id}/replace': post: tags: - MainTotalgoodsnum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalgoodsnum.replaceById__post_MainTotalgoodsnums_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalgoodsnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoodsnum' deprecated: false /MainTotalgoodsnums/findOne: get: tags: - MainTotalgoodsnum summary: Find first instance of the model matched by filter from the data source. operationId: MainTotalgoodsnum.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalgoodsnum' deprecated: false /MainTotalgoodsnums/update: post: tags: - MainTotalgoodsnum summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainTotalgoodsnum.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalgoodsnum' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainTotalgoodsnums/count: get: tags: - MainTotalgoodsnum summary: Count instances of the model matched by where from the data source. operationId: MainTotalgoodsnum.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainTotalhosrevenues: post: tags: - MainTotalhosrevenue summary: Create a new instance of the model and persist it into the data source. operationId: MainTotalhosrevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalhosrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosrevenue' deprecated: false patch: tags: - MainTotalhosrevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainTotalhosrevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalhosrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosrevenue' deprecated: false put: tags: - MainTotalhosrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalhosrevenue.replaceOrCreate__put_MainTotalhosrevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalhosrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosrevenue' deprecated: false get: tags: - MainTotalhosrevenue summary: Find all instances of the model matched by filter from the data source. operationId: MainTotalhosrevenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainTotalhosrevenue' deprecated: false /MainTotalhosrevenues/replaceOrCreate: post: tags: - MainTotalhosrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- MainTotalhosrevenue.replaceOrCreate__post_MainTotalhosrevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalhosrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosrevenue' deprecated: false /MainTotalhosrevenues/upsertWithWhere: post: tags: - MainTotalhosrevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainTotalhosrevenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalhosrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosrevenue' deprecated: false '/MainTotalhosrevenues/{id}/exists': get: tags: - MainTotalhosrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainTotalhosrevenue.exists__get_MainTotalhosrevenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainTotalhosrevenues/{id}': head: tags: - MainTotalhosrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainTotalhosrevenue.exists__head_MainTotalhosrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainTotalhosrevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: MainTotalhosrevenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosrevenue' deprecated: false put: tags: - MainTotalhosrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalhosrevenue.replaceById__put_MainTotalhosrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalhosrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosrevenue' deprecated: false delete: tags: - MainTotalhosrevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainTotalhosrevenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainTotalhosrevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainTotalhosrevenue.prototype.patchAttributes parameters: - name: id in: path description: MainTotalhosrevenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalhosrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosrevenue' deprecated: false '/MainTotalhosrevenues/{id}/replace': post: tags: - MainTotalhosrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalhosrevenue.replaceById__post_MainTotalhosrevenues_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalhosrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosrevenue' deprecated: false /MainTotalhosrevenues/findOne: get: tags: - MainTotalhosrevenue summary: Find first instance of the model matched by filter from the data source. operationId: MainTotalhosrevenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosrevenue' deprecated: false /MainTotalhosrevenues/update: post: tags: - MainTotalhosrevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainTotalhosrevenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalhosrevenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainTotalhosrevenues/count: get: tags: - MainTotalhosrevenue summary: Count instances of the model matched by where from the data source. operationId: MainTotalhosrevenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MianBilltotalrevenues: post: tags: - MianBilltotalrevenue summary: Create a new instance of the model and persist it into the data source. operationId: MianBilltotalrevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MianBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianBilltotalrevenue' deprecated: false patch: tags: - MianBilltotalrevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MianBilltotalrevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MianBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianBilltotalrevenue' deprecated: false put: tags: - MianBilltotalrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MianBilltotalrevenue.replaceOrCreate__put_MianBilltotalrevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MianBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianBilltotalrevenue' deprecated: false get: tags: - MianBilltotalrevenue summary: Find all instances of the model matched by filter from the data source. operationId: MianBilltotalrevenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MianBilltotalrevenue' deprecated: false /MianBilltotalrevenues/replaceOrCreate: post: tags: - MianBilltotalrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- MianBilltotalrevenue.replaceOrCreate__post_MianBilltotalrevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MianBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianBilltotalrevenue' deprecated: false /MianBilltotalrevenues/upsertWithWhere: post: tags: - MianBilltotalrevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MianBilltotalrevenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MianBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianBilltotalrevenue' deprecated: false '/MianBilltotalrevenues/{id}/exists': get: tags: - MianBilltotalrevenue summary: Check whether a model instance exists in the data source. operationId: 'MianBilltotalrevenue.exists__get_MianBilltotalrevenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MianBilltotalrevenues/{id}': head: tags: - MianBilltotalrevenue summary: Check whether a model instance exists in the data source. operationId: 'MianBilltotalrevenue.exists__head_MianBilltotalrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MianBilltotalrevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: MianBilltotalrevenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MianBilltotalrevenue' deprecated: false put: tags: - MianBilltotalrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MianBilltotalrevenue.replaceById__put_MianBilltotalrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MianBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianBilltotalrevenue' deprecated: false delete: tags: - MianBilltotalrevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: MianBilltotalrevenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MianBilltotalrevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MianBilltotalrevenue.prototype.patchAttributes parameters: - name: id in: path description: MianBilltotalrevenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MianBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianBilltotalrevenue' deprecated: false '/MianBilltotalrevenues/{id}/replace': post: tags: - MianBilltotalrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- MianBilltotalrevenue.replaceById__post_MianBilltotalrevenues_{id}_replace parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MianBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianBilltotalrevenue' deprecated: false /MianBilltotalrevenues/findOne: get: tags: - MianBilltotalrevenue summary: Find first instance of the model matched by filter from the data source. operationId: MianBilltotalrevenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MianBilltotalrevenue' deprecated: false /MianBilltotalrevenues/update: post: tags: - MianBilltotalrevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MianBilltotalrevenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MianBilltotalrevenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MianBilltotalrevenues/count: get: tags: - MianBilltotalrevenue summary: Count instances of the model matched by where from the data source. operationId: MianBilltotalrevenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainVocations: post: tags: - MainVocation summary: Create a new instance of the model and persist it into the data source. operationId: MainVocation.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVocation' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVocation' deprecated: false patch: tags: - MainVocation summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainVocation.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVocation' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVocation' deprecated: false put: tags: - MainVocation summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainVocation.replaceOrCreate__put_MainVocations parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVocation' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVocation' deprecated: false get: tags: - MainVocation summary: Find all instances of the model matched by filter from the data source. operationId: MainVocation.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainVocation' deprecated: false /MainVocations/replaceOrCreate: post: tags: - MainVocation summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainVocation.replaceOrCreate__post_MainVocations_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVocation' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVocation' deprecated: false /MainVocations/upsertWithWhere: post: tags: - MainVocation summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainVocation.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainVocation' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVocation' deprecated: false '/MainVocations/{id}/exists': get: tags: - MainVocation summary: Check whether a model instance exists in the data source. operationId: 'MainVocation.exists__get_MainVocations_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainVocations/{id}': head: tags: - MainVocation summary: Check whether a model instance exists in the data source. operationId: 'MainVocation.exists__head_MainVocations_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainVocation summary: 'Find a model instance by {{id}} from the data source.' operationId: MainVocation.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVocation' deprecated: false put: tags: - MainVocation summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainVocation.replaceById__put_MainVocations_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVocation' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVocation' deprecated: false delete: tags: - MainVocation summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainVocation.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainVocation summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainVocation.prototype.patchAttributes parameters: - name: id in: path description: MainVocation id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainVocation' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVocation' deprecated: false '/MainVocations/{id}/replace': post: tags: - MainVocation summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainVocation.replaceById__post_MainVocations_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVocation' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVocation' deprecated: false /MainVocations/findOne: get: tags: - MainVocation summary: Find first instance of the model matched by filter from the data source. operationId: MainVocation.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVocation' deprecated: false /MainVocations/update: post: tags: - MainVocation summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainVocation.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainVocation' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainVocations/count: get: tags: - MainVocation summary: Count instances of the model matched by where from the data source. operationId: MainVocation.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainTotalteachers: post: tags: - MainTotalteacher summary: Create a new instance of the model and persist it into the data source. operationId: MainTotalteacher.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalteacher' deprecated: false patch: tags: - MainTotalteacher summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainTotalteacher.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalteacher' deprecated: false put: tags: - MainTotalteacher summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalteacher.replaceOrCreate__put_MainTotalteachers parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalteacher' deprecated: false get: tags: - MainTotalteacher summary: Find all instances of the model matched by filter from the data source. operationId: MainTotalteacher.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainTotalteacher' deprecated: false /MainTotalteachers/replaceOrCreate: post: tags: - MainTotalteacher summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalteacher.replaceOrCreate__post_MainTotalteachers_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalteacher' deprecated: false /MainTotalteachers/upsertWithWhere: post: tags: - MainTotalteacher summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainTotalteacher.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalteacher' deprecated: false '/MainTotalteachers/{id}/exists': get: tags: - MainTotalteacher summary: Check whether a model instance exists in the data source. operationId: 'MainTotalteacher.exists__get_MainTotalteachers_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainTotalteachers/{id}': head: tags: - MainTotalteacher summary: Check whether a model instance exists in the data source. operationId: 'MainTotalteacher.exists__head_MainTotalteachers_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainTotalteacher summary: 'Find a model instance by {{id}} from the data source.' operationId: MainTotalteacher.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalteacher' deprecated: false put: tags: - MainTotalteacher summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalteacher.replaceById__put_MainTotalteachers_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalteacher' deprecated: false delete: tags: - MainTotalteacher summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainTotalteacher.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainTotalteacher summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainTotalteacher.prototype.patchAttributes parameters: - name: id in: path description: MainTotalteacher id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalteacher' deprecated: false '/MainTotalteachers/{id}/replace': post: tags: - MainTotalteacher summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalteacher.replaceById__post_MainTotalteachers_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalteacher' deprecated: false /MainTotalteachers/findOne: get: tags: - MainTotalteacher summary: Find first instance of the model matched by filter from the data source. operationId: MainTotalteacher.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalteacher' deprecated: false /MainTotalteachers/update: post: tags: - MainTotalteacher summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainTotalteacher.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalteacher' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainTotalteachers/count: get: tags: - MainTotalteacher summary: Count instances of the model matched by where from the data source. operationId: MainTotalteacher.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainTotalstudents: post: tags: - MainTotalstudent summary: Create a new instance of the model and persist it into the data source. operationId: MainTotalstudent.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalstudent' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalstudent' deprecated: false patch: tags: - MainTotalstudent summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainTotalstudent.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalstudent' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalstudent' deprecated: false put: tags: - MainTotalstudent summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalstudent.replaceOrCreate__put_MainTotalstudents parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalstudent' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalstudent' deprecated: false get: tags: - MainTotalstudent summary: Find all instances of the model matched by filter from the data source. operationId: MainTotalstudent.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainTotalstudent' deprecated: false /MainTotalstudents/replaceOrCreate: post: tags: - MainTotalstudent summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalstudent.replaceOrCreate__post_MainTotalstudents_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalstudent' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalstudent' deprecated: false /MainTotalstudents/upsertWithWhere: post: tags: - MainTotalstudent summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainTotalstudent.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalstudent' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalstudent' deprecated: false '/MainTotalstudents/{id}/exists': get: tags: - MainTotalstudent summary: Check whether a model instance exists in the data source. operationId: 'MainTotalstudent.exists__get_MainTotalstudents_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainTotalstudents/{id}': head: tags: - MainTotalstudent summary: Check whether a model instance exists in the data source. operationId: 'MainTotalstudent.exists__head_MainTotalstudents_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainTotalstudent summary: 'Find a model instance by {{id}} from the data source.' operationId: MainTotalstudent.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalstudent' deprecated: false put: tags: - MainTotalstudent summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalstudent.replaceById__put_MainTotalstudents_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalstudent' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalstudent' deprecated: false delete: tags: - MainTotalstudent summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainTotalstudent.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainTotalstudent summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainTotalstudent.prototype.patchAttributes parameters: - name: id in: path description: MainTotalstudent id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalstudent' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalstudent' deprecated: false '/MainTotalstudents/{id}/replace': post: tags: - MainTotalstudent summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalstudent.replaceById__post_MainTotalstudents_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalstudent' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalstudent' deprecated: false /MainTotalstudents/findOne: get: tags: - MainTotalstudent summary: Find first instance of the model matched by filter from the data source. operationId: MainTotalstudent.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalstudent' deprecated: false /MainTotalstudents/update: post: tags: - MainTotalstudent summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainTotalstudent.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalstudent' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainTotalstudents/count: get: tags: - MainTotalstudent summary: Count instances of the model matched by where from the data source. operationId: MainTotalstudent.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainRevenuetopeights: post: tags: - MainRevenuetopeight summary: Create a new instance of the model and persist it into the data source. operationId: MainRevenuetopeight.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuetopeight' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuetopeight' deprecated: false patch: tags: - MainRevenuetopeight summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainRevenuetopeight.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuetopeight' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuetopeight' deprecated: false put: tags: - MainRevenuetopeight summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainRevenuetopeight.replaceOrCreate__put_MainRevenuetopeights parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuetopeight' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuetopeight' deprecated: false get: tags: - MainRevenuetopeight summary: Find all instances of the model matched by filter from the data source. operationId: MainRevenuetopeight.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainRevenuetopeight' deprecated: false /MainRevenuetopeights/replaceOrCreate: post: tags: - MainRevenuetopeight summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- MainRevenuetopeight.replaceOrCreate__post_MainRevenuetopeights_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuetopeight' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuetopeight' deprecated: false /MainRevenuetopeights/upsertWithWhere: post: tags: - MainRevenuetopeight summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainRevenuetopeight.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRevenuetopeight' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuetopeight' deprecated: false '/MainRevenuetopeights/{id}/exists': get: tags: - MainRevenuetopeight summary: Check whether a model instance exists in the data source. operationId: 'MainRevenuetopeight.exists__get_MainRevenuetopeights_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainRevenuetopeights/{id}': head: tags: - MainRevenuetopeight summary: Check whether a model instance exists in the data source. operationId: 'MainRevenuetopeight.exists__head_MainRevenuetopeights_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainRevenuetopeight summary: 'Find a model instance by {{id}} from the data source.' operationId: MainRevenuetopeight.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuetopeight' deprecated: false put: tags: - MainRevenuetopeight summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainRevenuetopeight.replaceById__put_MainRevenuetopeights_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuetopeight' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuetopeight' deprecated: false delete: tags: - MainRevenuetopeight summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainRevenuetopeight.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainRevenuetopeight summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainRevenuetopeight.prototype.patchAttributes parameters: - name: id in: path description: MainRevenuetopeight id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRevenuetopeight' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuetopeight' deprecated: false '/MainRevenuetopeights/{id}/replace': post: tags: - MainRevenuetopeight summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainRevenuetopeight.replaceById__post_MainRevenuetopeights_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuetopeight' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuetopeight' deprecated: false /MainRevenuetopeights/findOne: get: tags: - MainRevenuetopeight summary: Find first instance of the model matched by filter from the data source. operationId: MainRevenuetopeight.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuetopeight' deprecated: false /MainRevenuetopeights/update: post: tags: - MainRevenuetopeight summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainRevenuetopeight.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRevenuetopeight' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainRevenuetopeights/count: get: tags: - MainRevenuetopeight summary: Count instances of the model matched by where from the data source. operationId: MainRevenuetopeight.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainVrorders: post: tags: - MainVrorder summary: Create a new instance of the model and persist it into the data source. operationId: MainVrorder.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrorder' deprecated: false patch: tags: - MainVrorder summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainVrorder.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrorder' deprecated: false put: tags: - MainVrorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainVrorder.replaceOrCreate__put_MainVrorders parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrorder' deprecated: false get: tags: - MainVrorder summary: Find all instances of the model matched by filter from the data source. operationId: MainVrorder.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainVrorder' deprecated: false /MainVrorders/replaceOrCreate: post: tags: - MainVrorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainVrorder.replaceOrCreate__post_MainVrorders_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrorder' deprecated: false /MainVrorders/upsertWithWhere: post: tags: - MainVrorder summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainVrorder.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrorder' deprecated: false '/MainVrorders/{id}/exists': get: tags: - MainVrorder summary: Check whether a model instance exists in the data source. operationId: 'MainVrorder.exists__get_MainVrorders_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainVrorders/{id}': head: tags: - MainVrorder summary: Check whether a model instance exists in the data source. operationId: 'MainVrorder.exists__head_MainVrorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainVrorder summary: 'Find a model instance by {{id}} from the data source.' operationId: MainVrorder.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrorder' deprecated: false put: tags: - MainVrorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainVrorder.replaceById__put_MainVrorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrorder' deprecated: false delete: tags: - MainVrorder summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainVrorder.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainVrorder summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainVrorder.prototype.patchAttributes parameters: - name: id in: path description: MainVrorder id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrorder' deprecated: false '/MainVrorders/{id}/replace': post: tags: - MainVrorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainVrorder.replaceById__post_MainVrorders_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrorder' deprecated: false /MainVrorders/findOne: get: tags: - MainVrorder summary: Find first instance of the model matched by filter from the data source. operationId: MainVrorder.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrorder' deprecated: false /MainVrorders/update: post: tags: - MainVrorder summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainVrorder.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainVrorder' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainVrorders/count: get: tags: - MainVrorder summary: Count instances of the model matched by where from the data source. operationId: MainVrorder.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainVrrevenues: post: tags: - MainVrrevenue summary: Create a new instance of the model and persist it into the data source. operationId: MainVrrevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVrrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrrevenue' deprecated: false patch: tags: - MainVrrevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainVrrevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVrrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrrevenue' deprecated: false put: tags: - MainVrrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainVrrevenue.replaceOrCreate__put_MainVrrevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVrrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrrevenue' deprecated: false get: tags: - MainVrrevenue summary: Find all instances of the model matched by filter from the data source. operationId: MainVrrevenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainVrrevenue' deprecated: false /MainVrrevenues/replaceOrCreate: post: tags: - MainVrrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainVrrevenue.replaceOrCreate__post_MainVrrevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVrrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrrevenue' deprecated: false /MainVrrevenues/upsertWithWhere: post: tags: - MainVrrevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainVrrevenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainVrrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrrevenue' deprecated: false '/MainVrrevenues/{id}/exists': get: tags: - MainVrrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainVrrevenue.exists__get_MainVrrevenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainVrrevenues/{id}': head: tags: - MainVrrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainVrrevenue.exists__head_MainVrrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainVrrevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: MainVrrevenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrrevenue' deprecated: false put: tags: - MainVrrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainVrrevenue.replaceById__put_MainVrrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVrrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrrevenue' deprecated: false delete: tags: - MainVrrevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainVrrevenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainVrrevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainVrrevenue.prototype.patchAttributes parameters: - name: id in: path description: MainVrrevenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainVrrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrrevenue' deprecated: false '/MainVrrevenues/{id}/replace': post: tags: - MainVrrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainVrrevenue.replaceById__post_MainVrrevenues_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainVrrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrrevenue' deprecated: false /MainVrrevenues/findOne: get: tags: - MainVrrevenue summary: Find first instance of the model matched by filter from the data source. operationId: MainVrrevenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainVrrevenue' deprecated: false /MainVrrevenues/update: post: tags: - MainVrrevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainVrrevenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainVrrevenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainVrrevenues/count: get: tags: - MainVrrevenue summary: Count instances of the model matched by where from the data source. operationId: MainVrrevenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /Mains: post: tags: - Main summary: Create a new instance of the model and persist it into the data source. operationId: Main.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Main' responses: '200': description: Request was successful schema: $ref: '#/definitions/Main' deprecated: false patch: tags: - Main summary: >- Patch an existing model instance or insert a new one into the data source. operationId: Main.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Main' responses: '200': description: Request was successful schema: $ref: '#/definitions/Main' deprecated: false put: tags: - Main summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Main.replaceOrCreate__put_Mains parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Main' responses: '200': description: Request was successful schema: $ref: '#/definitions/Main' deprecated: false get: tags: - Main summary: Find all instances of the model matched by filter from the data source. operationId: Main.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/Main' deprecated: false /Mains/replaceOrCreate: post: tags: - Main summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Main.replaceOrCreate__post_Mains_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Main' responses: '200': description: Request was successful schema: $ref: '#/definitions/Main' deprecated: false /Mains/upsertWithWhere: post: tags: - Main summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: Main.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Main' responses: '200': description: Request was successful schema: $ref: '#/definitions/Main' deprecated: false '/Mains/{id}/exists': get: tags: - Main summary: Check whether a model instance exists in the data source. operationId: 'Main.exists__get_Mains_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/Mains/{id}': head: tags: - Main summary: Check whether a model instance exists in the data source. operationId: 'Main.exists__head_Mains_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - Main summary: 'Find a model instance by {{id}} from the data source.' operationId: Main.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Main' deprecated: false put: tags: - Main summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Main.replaceById__put_Mains_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Main' responses: '200': description: Request was successful schema: $ref: '#/definitions/Main' deprecated: false delete: tags: - Main summary: 'Delete a model instance by {{id}} from the data source.' operationId: Main.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - Main summary: >- Patch attributes for a model instance and persist it into the data source. operationId: Main.prototype.patchAttributes parameters: - name: id in: path description: Main id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Main' responses: '200': description: Request was successful schema: $ref: '#/definitions/Main' deprecated: false '/Mains/{id}/replace': post: tags: - Main summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Main.replaceById__post_Mains_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Main' responses: '200': description: Request was successful schema: $ref: '#/definitions/Main' deprecated: false /Mains/findOne: get: tags: - Main summary: Find first instance of the model matched by filter from the data source. operationId: Main.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/Main' deprecated: false /Mains/update: post: tags: - Main summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: Main.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/Main' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /Mains/count: get: tags: - Main summary: Count instances of the model matched by where from the data source. operationId: Main.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /InterVrorders: post: tags: - InterVrorder summary: Create a new instance of the model and persist it into the data source. operationId: InterVrorder.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrorder' deprecated: false patch: tags: - InterVrorder summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterVrorder.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrorder' deprecated: false put: tags: - InterVrorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterVrorder.replaceOrCreate__put_InterVrorders parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrorder' deprecated: false get: tags: - InterVrorder summary: Find all instances of the model matched by filter from the data source. operationId: InterVrorder.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/InterVrorder' deprecated: false /InterVrorders/replaceOrCreate: post: tags: - InterVrorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterVrorder.replaceOrCreate__post_InterVrorders_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrorder' deprecated: false /InterVrorders/upsertWithWhere: post: tags: - InterVrorder summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterVrorder.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrorder' deprecated: false '/InterVrorders/{id}/exists': get: tags: - InterVrorder summary: Check whether a model instance exists in the data source. operationId: 'InterVrorder.exists__get_InterVrorders_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/InterVrorders/{id}': head: tags: - InterVrorder summary: Check whether a model instance exists in the data source. operationId: 'InterVrorder.exists__head_InterVrorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - InterVrorder summary: 'Find a model instance by {{id}} from the data source.' operationId: InterVrorder.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrorder' deprecated: false put: tags: - InterVrorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterVrorder.replaceById__put_InterVrorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrorder' deprecated: false delete: tags: - InterVrorder summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterVrorder.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - InterVrorder summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterVrorder.prototype.patchAttributes parameters: - name: id in: path description: InterVrorder id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrorder' deprecated: false '/InterVrorders/{id}/replace': post: tags: - InterVrorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterVrorder.replaceById__post_InterVrorders_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterVrorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrorder' deprecated: false /InterVrorders/findOne: get: tags: - InterVrorder summary: Find first instance of the model matched by filter from the data source. operationId: InterVrorder.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrorder' deprecated: false /InterVrorders/update: post: tags: - InterVrorder summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterVrorder.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterVrorder' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /InterVrorders/count: get: tags: - InterVrorder summary: Count instances of the model matched by where from the data source. operationId: InterVrorder.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /InterEntityorders: post: tags: - InterEntityorder summary: Create a new instance of the model and persist it into the data source. operationId: InterEntityorder.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterEntityorder' deprecated: false patch: tags: - InterEntityorder summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterEntityorder.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterEntityorder' deprecated: false put: tags: - InterEntityorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterEntityorder.replaceOrCreate__put_InterEntityorders parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterEntityorder' deprecated: false get: tags: - InterEntityorder summary: Find all instances of the model matched by filter from the data source. operationId: InterEntityorder.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/InterEntityorder' deprecated: false /InterEntityorders/replaceOrCreate: post: tags: - InterEntityorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterEntityorder.replaceOrCreate__post_InterEntityorders_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterEntityorder' deprecated: false /InterEntityorders/upsertWithWhere: post: tags: - InterEntityorder summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterEntityorder.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterEntityorder' deprecated: false '/InterEntityorders/{id}/exists': get: tags: - InterEntityorder summary: Check whether a model instance exists in the data source. operationId: 'InterEntityorder.exists__get_InterEntityorders_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/InterEntityorders/{id}': head: tags: - InterEntityorder summary: Check whether a model instance exists in the data source. operationId: 'InterEntityorder.exists__head_InterEntityorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - InterEntityorder summary: 'Find a model instance by {{id}} from the data source.' operationId: InterEntityorder.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterEntityorder' deprecated: false put: tags: - InterEntityorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterEntityorder.replaceById__put_InterEntityorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterEntityorder' deprecated: false delete: tags: - InterEntityorder summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterEntityorder.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - InterEntityorder summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterEntityorder.prototype.patchAttributes parameters: - name: id in: path description: InterEntityorder id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterEntityorder' deprecated: false '/InterEntityorders/{id}/replace': post: tags: - InterEntityorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterEntityorder.replaceById__post_InterEntityorders_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterEntityorder' deprecated: false /InterEntityorders/findOne: get: tags: - InterEntityorder summary: Find first instance of the model matched by filter from the data source. operationId: InterEntityorder.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterEntityorder' deprecated: false /InterEntityorders/update: post: tags: - InterEntityorder summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterEntityorder.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterEntityorder' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /InterEntityorders/count: get: tags: - InterEntityorder summary: Count instances of the model matched by where from the data source. operationId: InterEntityorder.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainEachmonths: post: tags: - MainEachmonth summary: Create a new instance of the model and persist it into the data source. operationId: MainEachmonth.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachmonth' deprecated: false patch: tags: - MainEachmonth summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainEachmonth.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachmonth' deprecated: false put: tags: - MainEachmonth summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainEachmonth.replaceOrCreate__put_MainEachmonths parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachmonth' deprecated: false get: tags: - MainEachmonth summary: Find all instances of the model matched by filter from the data source. operationId: MainEachmonth.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainEachmonth' deprecated: false /MainEachmonths/replaceOrCreate: post: tags: - MainEachmonth summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainEachmonth.replaceOrCreate__post_MainEachmonths_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachmonth' deprecated: false /MainEachmonths/upsertWithWhere: post: tags: - MainEachmonth summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainEachmonth.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEachmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachmonth' deprecated: false '/MainEachmonths/{id}/exists': get: tags: - MainEachmonth summary: Check whether a model instance exists in the data source. operationId: 'MainEachmonth.exists__get_MainEachmonths_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainEachmonths/{id}': head: tags: - MainEachmonth summary: Check whether a model instance exists in the data source. operationId: 'MainEachmonth.exists__head_MainEachmonths_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainEachmonth summary: 'Find a model instance by {{id}} from the data source.' operationId: MainEachmonth.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachmonth' deprecated: false put: tags: - MainEachmonth summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainEachmonth.replaceById__put_MainEachmonths_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachmonth' deprecated: false delete: tags: - MainEachmonth summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainEachmonth.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainEachmonth summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainEachmonth.prototype.patchAttributes parameters: - name: id in: path description: MainEachmonth id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEachmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachmonth' deprecated: false '/MainEachmonths/{id}/replace': post: tags: - MainEachmonth summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainEachmonth.replaceById__post_MainEachmonths_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEachmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachmonth' deprecated: false /MainEachmonths/findOne: get: tags: - MainEachmonth summary: Find first instance of the model matched by filter from the data source. operationId: MainEachmonth.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEachmonth' deprecated: false /MainEachmonths/update: post: tags: - MainEachmonth summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainEachmonth.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEachmonth' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainEachmonths/count: get: tags: - MainEachmonth summary: Count instances of the model matched by where from the data source. operationId: MainEachmonth.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /HosEachareabudgets: post: tags: - HosEachareabudget summary: Create a new instance of the model and persist it into the data source. operationId: HosEachareabudget.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareabudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareabudget' deprecated: false patch: tags: - HosEachareabudget summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosEachareabudget.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareabudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareabudget' deprecated: false put: tags: - HosEachareabudget summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosEachareabudget.replaceOrCreate__put_HosEachareabudgets parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareabudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareabudget' deprecated: false get: tags: - HosEachareabudget summary: Find all instances of the model matched by filter from the data source. operationId: HosEachareabudget.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/HosEachareabudget' deprecated: false /HosEachareabudgets/replaceOrCreate: post: tags: - HosEachareabudget summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- HosEachareabudget.replaceOrCreate__post_HosEachareabudgets_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareabudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareabudget' deprecated: false /HosEachareabudgets/upsertWithWhere: post: tags: - HosEachareabudget summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosEachareabudget.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachareabudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareabudget' deprecated: false '/HosEachareabudgets/{id}/exists': get: tags: - HosEachareabudget summary: Check whether a model instance exists in the data source. operationId: 'HosEachareabudget.exists__get_HosEachareabudgets_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/HosEachareabudgets/{id}': head: tags: - HosEachareabudget summary: Check whether a model instance exists in the data source. operationId: 'HosEachareabudget.exists__head_HosEachareabudgets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - HosEachareabudget summary: 'Find a model instance by {{id}} from the data source.' operationId: HosEachareabudget.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareabudget' deprecated: false put: tags: - HosEachareabudget summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosEachareabudget.replaceById__put_HosEachareabudgets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareabudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareabudget' deprecated: false delete: tags: - HosEachareabudget summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosEachareabudget.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - HosEachareabudget summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosEachareabudget.prototype.patchAttributes parameters: - name: id in: path description: HosEachareabudget id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachareabudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareabudget' deprecated: false '/HosEachareabudgets/{id}/replace': post: tags: - HosEachareabudget summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosEachareabudget.replaceById__post_HosEachareabudgets_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareabudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareabudget' deprecated: false /HosEachareabudgets/findOne: get: tags: - HosEachareabudget summary: Find first instance of the model matched by filter from the data source. operationId: HosEachareabudget.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareabudget' deprecated: false /HosEachareabudgets/update: post: tags: - HosEachareabudget summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosEachareabudget.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachareabudget' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /HosEachareabudgets/count: get: tags: - HosEachareabudget summary: Count instances of the model matched by where from the data source. operationId: HosEachareabudget.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /HosEachareacases: post: tags: - HosEachareacase summary: Create a new instance of the model and persist it into the data source. operationId: HosEachareacase.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareacase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareacase' deprecated: false patch: tags: - HosEachareacase summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosEachareacase.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareacase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareacase' deprecated: false put: tags: - HosEachareacase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosEachareacase.replaceOrCreate__put_HosEachareacases parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareacase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareacase' deprecated: false get: tags: - HosEachareacase summary: Find all instances of the model matched by filter from the data source. operationId: HosEachareacase.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/HosEachareacase' deprecated: false /HosEachareacases/replaceOrCreate: post: tags: - HosEachareacase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosEachareacase.replaceOrCreate__post_HosEachareacases_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareacase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareacase' deprecated: false /HosEachareacases/upsertWithWhere: post: tags: - HosEachareacase summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosEachareacase.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachareacase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareacase' deprecated: false '/HosEachareacases/{id}/exists': get: tags: - HosEachareacase summary: Check whether a model instance exists in the data source. operationId: 'HosEachareacase.exists__get_HosEachareacases_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/HosEachareacases/{id}': head: tags: - HosEachareacase summary: Check whether a model instance exists in the data source. operationId: 'HosEachareacase.exists__head_HosEachareacases_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - HosEachareacase summary: 'Find a model instance by {{id}} from the data source.' operationId: HosEachareacase.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareacase' deprecated: false put: tags: - HosEachareacase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosEachareacase.replaceById__put_HosEachareacases_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareacase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareacase' deprecated: false delete: tags: - HosEachareacase summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosEachareacase.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - HosEachareacase summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosEachareacase.prototype.patchAttributes parameters: - name: id in: path description: HosEachareacase id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachareacase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareacase' deprecated: false '/HosEachareacases/{id}/replace': post: tags: - HosEachareacase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosEachareacase.replaceById__post_HosEachareacases_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareacase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareacase' deprecated: false /HosEachareacases/findOne: get: tags: - HosEachareacase summary: Find first instance of the model matched by filter from the data source. operationId: HosEachareacase.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareacase' deprecated: false /HosEachareacases/update: post: tags: - HosEachareacase summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosEachareacase.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachareacase' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /HosEachareacases/count: get: tags: - HosEachareacase summary: Count instances of the model matched by where from the data source. operationId: HosEachareacase.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /HosEacharearevenues: post: tags: - HosEacharearevenue summary: Create a new instance of the model and persist it into the data source. operationId: HosEacharearevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEacharearevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEacharearevenue' deprecated: false patch: tags: - HosEacharearevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosEacharearevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEacharearevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEacharearevenue' deprecated: false put: tags: - HosEacharearevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosEacharearevenue.replaceOrCreate__put_HosEacharearevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEacharearevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEacharearevenue' deprecated: false get: tags: - HosEacharearevenue summary: Find all instances of the model matched by filter from the data source. operationId: HosEacharearevenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/HosEacharearevenue' deprecated: false /HosEacharearevenues/replaceOrCreate: post: tags: - HosEacharearevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- HosEacharearevenue.replaceOrCreate__post_HosEacharearevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEacharearevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEacharearevenue' deprecated: false /HosEacharearevenues/upsertWithWhere: post: tags: - HosEacharearevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosEacharearevenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEacharearevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEacharearevenue' deprecated: false '/HosEacharearevenues/{id}/exists': get: tags: - HosEacharearevenue summary: Check whether a model instance exists in the data source. operationId: 'HosEacharearevenue.exists__get_HosEacharearevenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/HosEacharearevenues/{id}': head: tags: - HosEacharearevenue summary: Check whether a model instance exists in the data source. operationId: 'HosEacharearevenue.exists__head_HosEacharearevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - HosEacharearevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: HosEacharearevenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEacharearevenue' deprecated: false put: tags: - HosEacharearevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosEacharearevenue.replaceById__put_HosEacharearevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEacharearevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEacharearevenue' deprecated: false delete: tags: - HosEacharearevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosEacharearevenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - HosEacharearevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosEacharearevenue.prototype.patchAttributes parameters: - name: id in: path description: HosEacharearevenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEacharearevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEacharearevenue' deprecated: false '/HosEacharearevenues/{id}/replace': post: tags: - HosEacharearevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosEacharearevenue.replaceById__post_HosEacharearevenues_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEacharearevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEacharearevenue' deprecated: false /HosEacharearevenues/findOne: get: tags: - HosEacharearevenue summary: Find first instance of the model matched by filter from the data source. operationId: HosEacharearevenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEacharearevenue' deprecated: false /HosEacharearevenues/update: post: tags: - HosEacharearevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosEacharearevenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEacharearevenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /HosEacharearevenues/count: get: tags: - HosEacharearevenue summary: Count instances of the model matched by where from the data source. operationId: HosEacharearevenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /HosEachrevenues: post: tags: - HosEachrevenue summary: Create a new instance of the model and persist it into the data source. operationId: HosEachrevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachrevenue' deprecated: false patch: tags: - HosEachrevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosEachrevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachrevenue' deprecated: false put: tags: - HosEachrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosEachrevenue.replaceOrCreate__put_HosEachrevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachrevenue' deprecated: false get: tags: - HosEachrevenue summary: Find all instances of the model matched by filter from the data source. operationId: HosEachrevenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/HosEachrevenue' deprecated: false /HosEachrevenues/replaceOrCreate: post: tags: - HosEachrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosEachrevenue.replaceOrCreate__post_HosEachrevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachrevenue' deprecated: false /HosEachrevenues/upsertWithWhere: post: tags: - HosEachrevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosEachrevenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachrevenue' deprecated: false '/HosEachrevenues/{id}/exists': get: tags: - HosEachrevenue summary: Check whether a model instance exists in the data source. operationId: 'HosEachrevenue.exists__get_HosEachrevenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/HosEachrevenues/{id}': head: tags: - HosEachrevenue summary: Check whether a model instance exists in the data source. operationId: 'HosEachrevenue.exists__head_HosEachrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - HosEachrevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: HosEachrevenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachrevenue' deprecated: false put: tags: - HosEachrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosEachrevenue.replaceById__put_HosEachrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachrevenue' deprecated: false delete: tags: - HosEachrevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosEachrevenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - HosEachrevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosEachrevenue.prototype.patchAttributes parameters: - name: id in: path description: HosEachrevenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachrevenue' deprecated: false '/HosEachrevenues/{id}/replace': post: tags: - HosEachrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosEachrevenue.replaceById__post_HosEachrevenues_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachrevenue' deprecated: false /HosEachrevenues/findOne: get: tags: - HosEachrevenue summary: Find first instance of the model matched by filter from the data source. operationId: HosEachrevenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachrevenue' deprecated: false /HosEachrevenues/update: post: tags: - HosEachrevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosEachrevenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachrevenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /HosEachrevenues/count: get: tags: - HosEachrevenue summary: Count instances of the model matched by where from the data source. operationId: HosEachrevenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /HosEachareahospitals: post: tags: - HosEachareahospitals summary: Create a new instance of the model and persist it into the data source. operationId: HosEachareahospitals.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareahospitals' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareahospitals' deprecated: false patch: tags: - HosEachareahospitals summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosEachareahospitals.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareahospitals' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareahospitals' deprecated: false put: tags: - HosEachareahospitals summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosEachareahospitals.replaceOrCreate__put_HosEachareahospitals parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareahospitals' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareahospitals' deprecated: false get: tags: - HosEachareahospitals summary: Find all instances of the model matched by filter from the data source. operationId: HosEachareahospitals.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/HosEachareahospitals' deprecated: false /HosEachareahospitals/replaceOrCreate: post: tags: - HosEachareahospitals summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- HosEachareahospitals.replaceOrCreate__post_HosEachareahospitals_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareahospitals' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareahospitals' deprecated: false /HosEachareahospitals/upsertWithWhere: post: tags: - HosEachareahospitals summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosEachareahospitals.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachareahospitals' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareahospitals' deprecated: false '/HosEachareahospitals/{id}/exists': get: tags: - HosEachareahospitals summary: Check whether a model instance exists in the data source. operationId: 'HosEachareahospitals.exists__get_HosEachareahospitals_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/HosEachareahospitals/{id}': head: tags: - HosEachareahospitals summary: Check whether a model instance exists in the data source. operationId: 'HosEachareahospitals.exists__head_HosEachareahospitals_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - HosEachareahospitals summary: 'Find a model instance by {{id}} from the data source.' operationId: HosEachareahospitals.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareahospitals' deprecated: false put: tags: - HosEachareahospitals summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosEachareahospitals.replaceById__put_HosEachareahospitals_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareahospitals' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareahospitals' deprecated: false delete: tags: - HosEachareahospitals summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosEachareahospitals.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - HosEachareahospitals summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosEachareahospitals.prototype.patchAttributes parameters: - name: id in: path description: HosEachareahospitals id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachareahospitals' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareahospitals' deprecated: false '/HosEachareahospitals/{id}/replace': post: tags: - HosEachareahospitals summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosEachareahospitals.replaceById__post_HosEachareahospitals_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachareahospitals' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareahospitals' deprecated: false /HosEachareahospitals/findOne: get: tags: - HosEachareahospitals summary: Find first instance of the model matched by filter from the data source. operationId: HosEachareahospitals.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachareahospitals' deprecated: false /HosEachareahospitals/update: post: tags: - HosEachareahospitals summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosEachareahospitals.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachareahospitals' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /HosEachareahospitals/count: get: tags: - HosEachareahospitals summary: Count instances of the model matched by where from the data source. operationId: HosEachareahospitals.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /HosClientsources: post: tags: - HosClientsource summary: Create a new instance of the model and persist it into the data source. operationId: HosClientsource.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosClientsource' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosClientsource' deprecated: false patch: tags: - HosClientsource summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosClientsource.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosClientsource' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosClientsource' deprecated: false put: tags: - HosClientsource summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosClientsource.replaceOrCreate__put_HosClientsources parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosClientsource' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosClientsource' deprecated: false get: tags: - HosClientsource summary: Find all instances of the model matched by filter from the data source. operationId: HosClientsource.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/HosClientsource' deprecated: false /HosClientsources/replaceOrCreate: post: tags: - HosClientsource summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosClientsource.replaceOrCreate__post_HosClientsources_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosClientsource' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosClientsource' deprecated: false /HosClientsources/upsertWithWhere: post: tags: - HosClientsource summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosClientsource.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosClientsource' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosClientsource' deprecated: false '/HosClientsources/{id}/exists': get: tags: - HosClientsource summary: Check whether a model instance exists in the data source. operationId: 'HosClientsource.exists__get_HosClientsources_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/HosClientsources/{id}': head: tags: - HosClientsource summary: Check whether a model instance exists in the data source. operationId: 'HosClientsource.exists__head_HosClientsources_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - HosClientsource summary: 'Find a model instance by {{id}} from the data source.' operationId: HosClientsource.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosClientsource' deprecated: false put: tags: - HosClientsource summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosClientsource.replaceById__put_HosClientsources_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosClientsource' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosClientsource' deprecated: false delete: tags: - HosClientsource summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosClientsource.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - HosClientsource summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosClientsource.prototype.patchAttributes parameters: - name: id in: path description: HosClientsource id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosClientsource' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosClientsource' deprecated: false '/HosClientsources/{id}/replace': post: tags: - HosClientsource summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosClientsource.replaceById__post_HosClientsources_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosClientsource' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosClientsource' deprecated: false /HosClientsources/findOne: get: tags: - HosClientsource summary: Find first instance of the model matched by filter from the data source. operationId: HosClientsource.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosClientsource' deprecated: false /HosClientsources/update: post: tags: - HosClientsource summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosClientsource.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosClientsource' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /HosClientsources/count: get: tags: - HosClientsource summary: Count instances of the model matched by where from the data source. operationId: HosClientsource.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /HosEachhospitals: post: tags: - HosEachhospital summary: Create a new instance of the model and persist it into the data source. operationId: HosEachhospital.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachhospital' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachhospital' deprecated: false patch: tags: - HosEachhospital summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosEachhospital.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachhospital' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachhospital' deprecated: false put: tags: - HosEachhospital summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosEachhospital.replaceOrCreate__put_HosEachhospitals parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachhospital' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachhospital' deprecated: false get: tags: - HosEachhospital summary: Find all instances of the model matched by filter from the data source. operationId: HosEachhospital.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/HosEachhospital' deprecated: false /HosEachhospitals/replaceOrCreate: post: tags: - HosEachhospital summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosEachhospital.replaceOrCreate__post_HosEachhospitals_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachhospital' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachhospital' deprecated: false /HosEachhospitals/upsertWithWhere: post: tags: - HosEachhospital summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosEachhospital.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachhospital' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachhospital' deprecated: false '/HosEachhospitals/{id}/exists': get: tags: - HosEachhospital summary: Check whether a model instance exists in the data source. operationId: 'HosEachhospital.exists__get_HosEachhospitals_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/HosEachhospitals/{id}': head: tags: - HosEachhospital summary: Check whether a model instance exists in the data source. operationId: 'HosEachhospital.exists__head_HosEachhospitals_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - HosEachhospital summary: 'Find a model instance by {{id}} from the data source.' operationId: HosEachhospital.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachhospital' deprecated: false put: tags: - HosEachhospital summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosEachhospital.replaceById__put_HosEachhospitals_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachhospital' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachhospital' deprecated: false delete: tags: - HosEachhospital summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosEachhospital.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - HosEachhospital summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosEachhospital.prototype.patchAttributes parameters: - name: id in: path description: HosEachhospital id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachhospital' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachhospital' deprecated: false '/HosEachhospitals/{id}/replace': post: tags: - HosEachhospital summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosEachhospital.replaceById__post_HosEachhospitals_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosEachhospital' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachhospital' deprecated: false /HosEachhospitals/findOne: get: tags: - HosEachhospital summary: Find first instance of the model matched by filter from the data source. operationId: HosEachhospital.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosEachhospital' deprecated: false /HosEachhospitals/update: post: tags: - HosEachhospital summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosEachhospital.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosEachhospital' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /HosEachhospitals/count: get: tags: - HosEachhospital summary: Count instances of the model matched by where from the data source. operationId: HosEachhospital.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /InterMarkets: post: tags: - InterMarket summary: Create a new instance of the model and persist it into the data source. operationId: InterMarket.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterMarket' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMarket' deprecated: false patch: tags: - InterMarket summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterMarket.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterMarket' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMarket' deprecated: false put: tags: - InterMarket summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterMarket.replaceOrCreate__put_InterMarkets parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterMarket' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMarket' deprecated: false get: tags: - InterMarket summary: Find all instances of the model matched by filter from the data source. operationId: InterMarket.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/InterMarket' deprecated: false /InterMarkets/replaceOrCreate: post: tags: - InterMarket summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterMarket.replaceOrCreate__post_InterMarkets_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterMarket' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMarket' deprecated: false /InterMarkets/upsertWithWhere: post: tags: - InterMarket summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterMarket.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterMarket' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMarket' deprecated: false '/InterMarkets/{id}/exists': get: tags: - InterMarket summary: Check whether a model instance exists in the data source. operationId: 'InterMarket.exists__get_InterMarkets_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/InterMarkets/{id}': head: tags: - InterMarket summary: Check whether a model instance exists in the data source. operationId: 'InterMarket.exists__head_InterMarkets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - InterMarket summary: 'Find a model instance by {{id}} from the data source.' operationId: InterMarket.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMarket' deprecated: false put: tags: - InterMarket summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterMarket.replaceById__put_InterMarkets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterMarket' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMarket' deprecated: false delete: tags: - InterMarket summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterMarket.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - InterMarket summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterMarket.prototype.patchAttributes parameters: - name: id in: path description: InterMarket id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterMarket' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMarket' deprecated: false '/InterMarkets/{id}/replace': post: tags: - InterMarket summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterMarket.replaceById__post_InterMarkets_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterMarket' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMarket' deprecated: false /InterMarkets/findOne: get: tags: - InterMarket summary: Find first instance of the model matched by filter from the data source. operationId: InterMarket.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMarket' deprecated: false /InterMarkets/update: post: tags: - InterMarket summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterMarket.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterMarket' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /InterMarkets/count: get: tags: - InterMarket summary: Count instances of the model matched by where from the data source. operationId: InterMarket.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /InterClassifies: post: tags: - InterClassify summary: Create a new instance of the model and persist it into the data source. operationId: InterClassify.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterClassify' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterClassify' deprecated: false patch: tags: - InterClassify summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterClassify.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterClassify' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterClassify' deprecated: false put: tags: - InterClassify summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterClassify.replaceOrCreate__put_InterClassifies parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterClassify' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterClassify' deprecated: false get: tags: - InterClassify summary: Find all instances of the model matched by filter from the data source. operationId: InterClassify.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/InterClassify' deprecated: false /InterClassifies/replaceOrCreate: post: tags: - InterClassify summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterClassify.replaceOrCreate__post_InterClassifies_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterClassify' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterClassify' deprecated: false /InterClassifies/upsertWithWhere: post: tags: - InterClassify summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterClassify.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterClassify' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterClassify' deprecated: false '/InterClassifies/{id}/exists': get: tags: - InterClassify summary: Check whether a model instance exists in the data source. operationId: 'InterClassify.exists__get_InterClassifies_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/InterClassifies/{id}': head: tags: - InterClassify summary: Check whether a model instance exists in the data source. operationId: 'InterClassify.exists__head_InterClassifies_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - InterClassify summary: 'Find a model instance by {{id}} from the data source.' operationId: InterClassify.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterClassify' deprecated: false put: tags: - InterClassify summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterClassify.replaceById__put_InterClassifies_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterClassify' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterClassify' deprecated: false delete: tags: - InterClassify summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterClassify.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - InterClassify summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterClassify.prototype.patchAttributes parameters: - name: id in: path description: InterClassify id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterClassify' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterClassify' deprecated: false '/InterClassifies/{id}/replace': post: tags: - InterClassify summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterClassify.replaceById__post_InterClassifies_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterClassify' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterClassify' deprecated: false /InterClassifies/findOne: get: tags: - InterClassify summary: Find first instance of the model matched by filter from the data source. operationId: InterClassify.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterClassify' deprecated: false /InterClassifies/update: post: tags: - InterClassify summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterClassify.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterClassify' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /InterClassifies/count: get: tags: - InterClassify summary: Count instances of the model matched by where from the data source. operationId: InterClassify.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /InterPersonas: post: tags: - InterPersonas summary: Create a new instance of the model and persist it into the data source. operationId: InterPersonas.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterPersonas' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterPersonas' deprecated: false patch: tags: - InterPersonas summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterPersonas.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterPersonas' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterPersonas' deprecated: false put: tags: - InterPersonas summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterPersonas.replaceOrCreate__put_InterPersonas parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterPersonas' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterPersonas' deprecated: false get: tags: - InterPersonas summary: Find all instances of the model matched by filter from the data source. operationId: InterPersonas.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/InterPersonas' deprecated: false /InterPersonas/replaceOrCreate: post: tags: - InterPersonas summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterPersonas.replaceOrCreate__post_InterPersonas_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterPersonas' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterPersonas' deprecated: false /InterPersonas/upsertWithWhere: post: tags: - InterPersonas summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterPersonas.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterPersonas' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterPersonas' deprecated: false '/InterPersonas/{id}/exists': get: tags: - InterPersonas summary: Check whether a model instance exists in the data source. operationId: 'InterPersonas.exists__get_InterPersonas_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/InterPersonas/{id}': head: tags: - InterPersonas summary: Check whether a model instance exists in the data source. operationId: 'InterPersonas.exists__head_InterPersonas_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - InterPersonas summary: 'Find a model instance by {{id}} from the data source.' operationId: InterPersonas.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterPersonas' deprecated: false put: tags: - InterPersonas summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterPersonas.replaceById__put_InterPersonas_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterPersonas' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterPersonas' deprecated: false delete: tags: - InterPersonas summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterPersonas.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - InterPersonas summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterPersonas.prototype.patchAttributes parameters: - name: id in: path description: InterPersonas id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterPersonas' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterPersonas' deprecated: false '/InterPersonas/{id}/replace': post: tags: - InterPersonas summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterPersonas.replaceById__post_InterPersonas_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterPersonas' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterPersonas' deprecated: false /InterPersonas/findOne: get: tags: - InterPersonas summary: Find first instance of the model matched by filter from the data source. operationId: InterPersonas.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterPersonas' deprecated: false /InterPersonas/update: post: tags: - InterPersonas summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterPersonas.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterPersonas' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /InterPersonas/count: get: tags: - InterPersonas summary: Count instances of the model matched by where from the data source. operationId: InterPersonas.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /InterRegions: post: tags: - InterRegion summary: Create a new instance of the model and persist it into the data source. operationId: InterRegion.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterRegion' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterRegion' deprecated: false patch: tags: - InterRegion summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterRegion.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterRegion' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterRegion' deprecated: false put: tags: - InterRegion summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterRegion.replaceOrCreate__put_InterRegions parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterRegion' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterRegion' deprecated: false get: tags: - InterRegion summary: Find all instances of the model matched by filter from the data source. operationId: InterRegion.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/InterRegion' deprecated: false /InterRegions/replaceOrCreate: post: tags: - InterRegion summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterRegion.replaceOrCreate__post_InterRegions_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterRegion' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterRegion' deprecated: false /InterRegions/upsertWithWhere: post: tags: - InterRegion summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterRegion.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterRegion' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterRegion' deprecated: false '/InterRegions/{id}/exists': get: tags: - InterRegion summary: Check whether a model instance exists in the data source. operationId: 'InterRegion.exists__get_InterRegions_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/InterRegions/{id}': head: tags: - InterRegion summary: Check whether a model instance exists in the data source. operationId: 'InterRegion.exists__head_InterRegions_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - InterRegion summary: 'Find a model instance by {{id}} from the data source.' operationId: InterRegion.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterRegion' deprecated: false put: tags: - InterRegion summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterRegion.replaceById__put_InterRegions_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterRegion' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterRegion' deprecated: false delete: tags: - InterRegion summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterRegion.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - InterRegion summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterRegion.prototype.patchAttributes parameters: - name: id in: path description: InterRegion id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterRegion' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterRegion' deprecated: false '/InterRegions/{id}/replace': post: tags: - InterRegion summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterRegion.replaceById__post_InterRegions_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterRegion' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterRegion' deprecated: false /InterRegions/findOne: get: tags: - InterRegion summary: Find first instance of the model matched by filter from the data source. operationId: InterRegion.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterRegion' deprecated: false /InterRegions/update: post: tags: - InterRegion summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterRegion.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterRegion' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /InterRegions/count: get: tags: - InterRegion summary: Count instances of the model matched by where from the data source. operationId: InterRegion.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /BillCompanyorders: post: tags: - BillCompanyorder summary: Create a new instance of the model and persist it into the data source. operationId: BillCompanyorder.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCompanyorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyorder' deprecated: false patch: tags: - BillCompanyorder summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillCompanyorder.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCompanyorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyorder' deprecated: false put: tags: - BillCompanyorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillCompanyorder.replaceOrCreate__put_BillCompanyorders parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCompanyorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyorder' deprecated: false get: tags: - BillCompanyorder summary: Find all instances of the model matched by filter from the data source. operationId: BillCompanyorder.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/BillCompanyorder' deprecated: false /BillCompanyorders/replaceOrCreate: post: tags: - BillCompanyorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillCompanyorder.replaceOrCreate__post_BillCompanyorders_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCompanyorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyorder' deprecated: false /BillCompanyorders/upsertWithWhere: post: tags: - BillCompanyorder summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillCompanyorder.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/BillCompanyorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyorder' deprecated: false '/BillCompanyorders/{id}/exists': get: tags: - BillCompanyorder summary: Check whether a model instance exists in the data source. operationId: 'BillCompanyorder.exists__get_BillCompanyorders_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/BillCompanyorders/{id}': head: tags: - BillCompanyorder summary: Check whether a model instance exists in the data source. operationId: 'BillCompanyorder.exists__head_BillCompanyorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - BillCompanyorder summary: 'Find a model instance by {{id}} from the data source.' operationId: BillCompanyorder.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyorder' deprecated: false put: tags: - BillCompanyorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillCompanyorder.replaceById__put_BillCompanyorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCompanyorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyorder' deprecated: false delete: tags: - BillCompanyorder summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillCompanyorder.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - BillCompanyorder summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillCompanyorder.prototype.patchAttributes parameters: - name: id in: path description: BillCompanyorder id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/BillCompanyorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyorder' deprecated: false '/BillCompanyorders/{id}/replace': post: tags: - BillCompanyorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillCompanyorder.replaceById__post_BillCompanyorders_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCompanyorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyorder' deprecated: false /BillCompanyorders/findOne: get: tags: - BillCompanyorder summary: Find first instance of the model matched by filter from the data source. operationId: BillCompanyorder.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyorder' deprecated: false /BillCompanyorders/update: post: tags: - BillCompanyorder summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillCompanyorder.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/BillCompanyorder' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /BillCompanyorders/count: get: tags: - BillCompanyorder summary: Count instances of the model matched by where from the data source. operationId: BillCompanyorder.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /BillCompanyrevenues: post: tags: - BillCompanyrevenue summary: Create a new instance of the model and persist it into the data source. operationId: BillCompanyrevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCompanyrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyrevenue' deprecated: false patch: tags: - BillCompanyrevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillCompanyrevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCompanyrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyrevenue' deprecated: false put: tags: - BillCompanyrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillCompanyrevenue.replaceOrCreate__put_BillCompanyrevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCompanyrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyrevenue' deprecated: false get: tags: - BillCompanyrevenue summary: Find all instances of the model matched by filter from the data source. operationId: BillCompanyrevenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/BillCompanyrevenue' deprecated: false /BillCompanyrevenues/replaceOrCreate: post: tags: - BillCompanyrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- BillCompanyrevenue.replaceOrCreate__post_BillCompanyrevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCompanyrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyrevenue' deprecated: false /BillCompanyrevenues/upsertWithWhere: post: tags: - BillCompanyrevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillCompanyrevenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/BillCompanyrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyrevenue' deprecated: false '/BillCompanyrevenues/{id}/exists': get: tags: - BillCompanyrevenue summary: Check whether a model instance exists in the data source. operationId: 'BillCompanyrevenue.exists__get_BillCompanyrevenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/BillCompanyrevenues/{id}': head: tags: - BillCompanyrevenue summary: Check whether a model instance exists in the data source. operationId: 'BillCompanyrevenue.exists__head_BillCompanyrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - BillCompanyrevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: BillCompanyrevenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyrevenue' deprecated: false put: tags: - BillCompanyrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillCompanyrevenue.replaceById__put_BillCompanyrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCompanyrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyrevenue' deprecated: false delete: tags: - BillCompanyrevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillCompanyrevenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - BillCompanyrevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillCompanyrevenue.prototype.patchAttributes parameters: - name: id in: path description: BillCompanyrevenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/BillCompanyrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyrevenue' deprecated: false '/BillCompanyrevenues/{id}/replace': post: tags: - BillCompanyrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillCompanyrevenue.replaceById__post_BillCompanyrevenues_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCompanyrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyrevenue' deprecated: false /BillCompanyrevenues/findOne: get: tags: - BillCompanyrevenue summary: Find first instance of the model matched by filter from the data source. operationId: BillCompanyrevenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCompanyrevenue' deprecated: false /BillCompanyrevenues/update: post: tags: - BillCompanyrevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillCompanyrevenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/BillCompanyrevenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /BillCompanyrevenues/count: get: tags: - BillCompanyrevenue summary: Count instances of the model matched by where from the data source. operationId: BillCompanyrevenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainRevenuemonths: post: tags: - MainRevenuemonth summary: Create a new instance of the model and persist it into the data source. operationId: MainRevenuemonth.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuemonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuemonth' deprecated: false patch: tags: - MainRevenuemonth summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainRevenuemonth.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuemonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuemonth' deprecated: false put: tags: - MainRevenuemonth summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainRevenuemonth.replaceOrCreate__put_MainRevenuemonths parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuemonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuemonth' deprecated: false get: tags: - MainRevenuemonth summary: Find all instances of the model matched by filter from the data source. operationId: MainRevenuemonth.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainRevenuemonth' deprecated: false /MainRevenuemonths/replaceOrCreate: post: tags: - MainRevenuemonth summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainRevenuemonth.replaceOrCreate__post_MainRevenuemonths_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuemonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuemonth' deprecated: false /MainRevenuemonths/upsertWithWhere: post: tags: - MainRevenuemonth summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainRevenuemonth.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRevenuemonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuemonth' deprecated: false '/MainRevenuemonths/{id}/exists': get: tags: - MainRevenuemonth summary: Check whether a model instance exists in the data source. operationId: 'MainRevenuemonth.exists__get_MainRevenuemonths_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainRevenuemonths/{id}': head: tags: - MainRevenuemonth summary: Check whether a model instance exists in the data source. operationId: 'MainRevenuemonth.exists__head_MainRevenuemonths_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainRevenuemonth summary: 'Find a model instance by {{id}} from the data source.' operationId: MainRevenuemonth.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuemonth' deprecated: false put: tags: - MainRevenuemonth summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainRevenuemonth.replaceById__put_MainRevenuemonths_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuemonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuemonth' deprecated: false delete: tags: - MainRevenuemonth summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainRevenuemonth.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainRevenuemonth summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainRevenuemonth.prototype.patchAttributes parameters: - name: id in: path description: MainRevenuemonth id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRevenuemonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuemonth' deprecated: false '/MainRevenuemonths/{id}/replace': post: tags: - MainRevenuemonth summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainRevenuemonth.replaceById__post_MainRevenuemonths_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuemonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuemonth' deprecated: false /MainRevenuemonths/findOne: get: tags: - MainRevenuemonth summary: Find first instance of the model matched by filter from the data source. operationId: MainRevenuemonth.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuemonth' deprecated: false /MainRevenuemonths/update: post: tags: - MainRevenuemonth summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainRevenuemonth.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRevenuemonth' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainRevenuemonths/count: get: tags: - MainRevenuemonth summary: Count instances of the model matched by where from the data source. operationId: MainRevenuemonth.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainTraderevenues: post: tags: - MainTraderevenue summary: Create a new instance of the model and persist it into the data source. operationId: MainTraderevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTraderevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTraderevenue' deprecated: false patch: tags: - MainTraderevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainTraderevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTraderevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTraderevenue' deprecated: false put: tags: - MainTraderevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTraderevenue.replaceOrCreate__put_MainTraderevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTraderevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTraderevenue' deprecated: false get: tags: - MainTraderevenue summary: Find all instances of the model matched by filter from the data source. operationId: MainTraderevenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainTraderevenue' deprecated: false /MainTraderevenues/replaceOrCreate: post: tags: - MainTraderevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTraderevenue.replaceOrCreate__post_MainTraderevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTraderevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTraderevenue' deprecated: false /MainTraderevenues/upsertWithWhere: post: tags: - MainTraderevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainTraderevenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTraderevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTraderevenue' deprecated: false '/MainTraderevenues/{id}/exists': get: tags: - MainTraderevenue summary: Check whether a model instance exists in the data source. operationId: 'MainTraderevenue.exists__get_MainTraderevenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainTraderevenues/{id}': head: tags: - MainTraderevenue summary: Check whether a model instance exists in the data source. operationId: 'MainTraderevenue.exists__head_MainTraderevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainTraderevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: MainTraderevenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTraderevenue' deprecated: false put: tags: - MainTraderevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTraderevenue.replaceById__put_MainTraderevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTraderevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTraderevenue' deprecated: false delete: tags: - MainTraderevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainTraderevenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainTraderevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainTraderevenue.prototype.patchAttributes parameters: - name: id in: path description: MainTraderevenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTraderevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTraderevenue' deprecated: false '/MainTraderevenues/{id}/replace': post: tags: - MainTraderevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTraderevenue.replaceById__post_MainTraderevenues_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTraderevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTraderevenue' deprecated: false /MainTraderevenues/findOne: get: tags: - MainTraderevenue summary: Find first instance of the model matched by filter from the data source. operationId: MainTraderevenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTraderevenue' deprecated: false /MainTraderevenues/update: post: tags: - MainTraderevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainTraderevenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTraderevenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainTraderevenues/count: get: tags: - MainTraderevenue summary: Count instances of the model matched by where from the data source. operationId: MainTraderevenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /InterFanspublics: post: tags: - InterFanspublic summary: Create a new instance of the model and persist it into the data source. operationId: InterFanspublic.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterFanspublic' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterFanspublic' deprecated: false patch: tags: - InterFanspublic summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterFanspublic.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterFanspublic' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterFanspublic' deprecated: false put: tags: - InterFanspublic summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterFanspublic.replaceOrCreate__put_InterFanspublics parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterFanspublic' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterFanspublic' deprecated: false get: tags: - InterFanspublic summary: Find all instances of the model matched by filter from the data source. operationId: InterFanspublic.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/InterFanspublic' deprecated: false /InterFanspublics/replaceOrCreate: post: tags: - InterFanspublic summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterFanspublic.replaceOrCreate__post_InterFanspublics_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterFanspublic' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterFanspublic' deprecated: false /InterFanspublics/upsertWithWhere: post: tags: - InterFanspublic summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterFanspublic.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterFanspublic' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterFanspublic' deprecated: false '/InterFanspublics/{id}/exists': get: tags: - InterFanspublic summary: Check whether a model instance exists in the data source. operationId: 'InterFanspublic.exists__get_InterFanspublics_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/InterFanspublics/{id}': head: tags: - InterFanspublic summary: Check whether a model instance exists in the data source. operationId: 'InterFanspublic.exists__head_InterFanspublics_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - InterFanspublic summary: 'Find a model instance by {{id}} from the data source.' operationId: InterFanspublic.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterFanspublic' deprecated: false put: tags: - InterFanspublic summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterFanspublic.replaceById__put_InterFanspublics_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterFanspublic' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterFanspublic' deprecated: false delete: tags: - InterFanspublic summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterFanspublic.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - InterFanspublic summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterFanspublic.prototype.patchAttributes parameters: - name: id in: path description: InterFanspublic id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterFanspublic' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterFanspublic' deprecated: false '/InterFanspublics/{id}/replace': post: tags: - InterFanspublic summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterFanspublic.replaceById__post_InterFanspublics_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterFanspublic' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterFanspublic' deprecated: false /InterFanspublics/findOne: get: tags: - InterFanspublic summary: Find first instance of the model matched by filter from the data source. operationId: InterFanspublic.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/InterFanspublic' deprecated: false /InterFanspublics/update: post: tags: - InterFanspublic summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterFanspublic.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/InterFanspublic' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /InterFanspublics/count: get: tags: - InterFanspublic summary: Count instances of the model matched by where from the data source. operationId: InterFanspublic.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /BillOrdertodays: post: tags: - BillOrdertoday summary: Create a new instance of the model and persist it into the data source. operationId: BillOrdertoday.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrdertoday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertoday' deprecated: false patch: tags: - BillOrdertoday summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillOrdertoday.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrdertoday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertoday' deprecated: false put: tags: - BillOrdertoday summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillOrdertoday.replaceOrCreate__put_BillOrdertodays parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrdertoday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertoday' deprecated: false get: tags: - BillOrdertoday summary: Find all instances of the model matched by filter from the data source. operationId: BillOrdertoday.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/BillOrdertoday' deprecated: false /BillOrdertodays/replaceOrCreate: post: tags: - BillOrdertoday summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillOrdertoday.replaceOrCreate__post_BillOrdertodays_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrdertoday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertoday' deprecated: false /BillOrdertodays/upsertWithWhere: post: tags: - BillOrdertoday summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillOrdertoday.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/BillOrdertoday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertoday' deprecated: false '/BillOrdertodays/{id}/exists': get: tags: - BillOrdertoday summary: Check whether a model instance exists in the data source. operationId: 'BillOrdertoday.exists__get_BillOrdertodays_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/BillOrdertodays/{id}': head: tags: - BillOrdertoday summary: Check whether a model instance exists in the data source. operationId: 'BillOrdertoday.exists__head_BillOrdertodays_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - BillOrdertoday summary: 'Find a model instance by {{id}} from the data source.' operationId: BillOrdertoday.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertoday' deprecated: false put: tags: - BillOrdertoday summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrdertoday.replaceById__put_BillOrdertodays_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrdertoday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertoday' deprecated: false delete: tags: - BillOrdertoday summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillOrdertoday.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - BillOrdertoday summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillOrdertoday.prototype.patchAttributes parameters: - name: id in: path description: BillOrdertoday id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/BillOrdertoday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertoday' deprecated: false '/BillOrdertodays/{id}/replace': post: tags: - BillOrdertoday summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrdertoday.replaceById__post_BillOrdertodays_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrdertoday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertoday' deprecated: false /BillOrdertodays/findOne: get: tags: - BillOrdertoday summary: Find first instance of the model matched by filter from the data source. operationId: BillOrdertoday.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertoday' deprecated: false /BillOrdertodays/update: post: tags: - BillOrdertoday summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillOrdertoday.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/BillOrdertoday' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /BillOrdertodays/count: get: tags: - BillOrdertoday summary: Count instances of the model matched by where from the data source. operationId: BillOrdertoday.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MapHos: post: tags: - MapHos summary: Create a new instance of the model and persist it into the data source. operationId: MapHos.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapHos' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos' deprecated: false patch: tags: - MapHos summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MapHos.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapHos' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos' deprecated: false put: tags: - MapHos summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapHos.replaceOrCreate__put_MapHos parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapHos' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos' deprecated: false get: tags: - MapHos summary: Find all instances of the model matched by filter from the data source. operationId: MapHos.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MapHos' deprecated: false /MapHos/replaceOrCreate: post: tags: - MapHos summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapHos.replaceOrCreate__post_MapHos_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapHos' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos' deprecated: false /MapHos/upsertWithWhere: post: tags: - MapHos summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MapHos.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MapHos' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos' deprecated: false '/MapHos/{id}/exists': get: tags: - MapHos summary: Check whether a model instance exists in the data source. operationId: 'MapHos.exists__get_MapHos_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MapHos/{id}': head: tags: - MapHos summary: Check whether a model instance exists in the data source. operationId: 'MapHos.exists__head_MapHos_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MapHos summary: 'Find a model instance by {{id}} from the data source.' operationId: MapHos.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos' deprecated: false put: tags: - MapHos summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapHos.replaceById__put_MapHos_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapHos' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos' deprecated: false delete: tags: - MapHos summary: 'Delete a model instance by {{id}} from the data source.' operationId: MapHos.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MapHos summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MapHos.prototype.patchAttributes parameters: - name: id in: path description: MapHos id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MapHos' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos' deprecated: false '/MapHos/{id}/replace': post: tags: - MapHos summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapHos.replaceById__post_MapHos_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapHos' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos' deprecated: false /MapHos/findOne: get: tags: - MapHos summary: Find first instance of the model matched by filter from the data source. operationId: MapHos.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos' deprecated: false /MapHos/update: post: tags: - MapHos summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MapHos.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MapHos' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MapHos/count: get: tags: - MapHos summary: Count instances of the model matched by where from the data source. operationId: MapHos.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainRevenuehighs: post: tags: - MainRevenuehigh summary: Create a new instance of the model and persist it into the data source. operationId: MainRevenuehigh.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuehigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuehigh' deprecated: false patch: tags: - MainRevenuehigh summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainRevenuehigh.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuehigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuehigh' deprecated: false put: tags: - MainRevenuehigh summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainRevenuehigh.replaceOrCreate__put_MainRevenuehighs parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuehigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuehigh' deprecated: false get: tags: - MainRevenuehigh summary: Find all instances of the model matched by filter from the data source. operationId: MainRevenuehigh.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainRevenuehigh' deprecated: false /MainRevenuehighs/replaceOrCreate: post: tags: - MainRevenuehigh summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainRevenuehigh.replaceOrCreate__post_MainRevenuehighs_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuehigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuehigh' deprecated: false /MainRevenuehighs/upsertWithWhere: post: tags: - MainRevenuehigh summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainRevenuehigh.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRevenuehigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuehigh' deprecated: false '/MainRevenuehighs/{id}/exists': get: tags: - MainRevenuehigh summary: Check whether a model instance exists in the data source. operationId: 'MainRevenuehigh.exists__get_MainRevenuehighs_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainRevenuehighs/{id}': head: tags: - MainRevenuehigh summary: Check whether a model instance exists in the data source. operationId: 'MainRevenuehigh.exists__head_MainRevenuehighs_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainRevenuehigh summary: 'Find a model instance by {{id}} from the data source.' operationId: MainRevenuehigh.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuehigh' deprecated: false put: tags: - MainRevenuehigh summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainRevenuehigh.replaceById__put_MainRevenuehighs_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuehigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuehigh' deprecated: false delete: tags: - MainRevenuehigh summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainRevenuehigh.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainRevenuehigh summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainRevenuehigh.prototype.patchAttributes parameters: - name: id in: path description: MainRevenuehigh id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRevenuehigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuehigh' deprecated: false '/MainRevenuehighs/{id}/replace': post: tags: - MainRevenuehigh summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainRevenuehigh.replaceById__post_MainRevenuehighs_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRevenuehigh' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuehigh' deprecated: false /MainRevenuehighs/findOne: get: tags: - MainRevenuehigh summary: Find first instance of the model matched by filter from the data source. operationId: MainRevenuehigh.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRevenuehigh' deprecated: false /MainRevenuehighs/update: post: tags: - MainRevenuehigh summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainRevenuehigh.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRevenuehigh' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainRevenuehighs/count: get: tags: - MainRevenuehigh summary: Count instances of the model matched by where from the data source. operationId: MainRevenuehigh.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainBilltotalrevenues: post: tags: - MainBilltotalrevenue summary: Create a new instance of the model and persist it into the data source. operationId: MainBilltotalrevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBilltotalrevenue' deprecated: false patch: tags: - MainBilltotalrevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainBilltotalrevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBilltotalrevenue' deprecated: false put: tags: - MainBilltotalrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainBilltotalrevenue.replaceOrCreate__put_MainBilltotalrevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBilltotalrevenue' deprecated: false get: tags: - MainBilltotalrevenue summary: Find all instances of the model matched by filter from the data source. operationId: MainBilltotalrevenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainBilltotalrevenue' deprecated: false /MainBilltotalrevenues/replaceOrCreate: post: tags: - MainBilltotalrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- MainBilltotalrevenue.replaceOrCreate__post_MainBilltotalrevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBilltotalrevenue' deprecated: false /MainBilltotalrevenues/upsertWithWhere: post: tags: - MainBilltotalrevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainBilltotalrevenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBilltotalrevenue' deprecated: false '/MainBilltotalrevenues/{id}/exists': get: tags: - MainBilltotalrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainBilltotalrevenue.exists__get_MainBilltotalrevenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainBilltotalrevenues/{id}': head: tags: - MainBilltotalrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainBilltotalrevenue.exists__head_MainBilltotalrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainBilltotalrevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: MainBilltotalrevenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBilltotalrevenue' deprecated: false put: tags: - MainBilltotalrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainBilltotalrevenue.replaceById__put_MainBilltotalrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBilltotalrevenue' deprecated: false delete: tags: - MainBilltotalrevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainBilltotalrevenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainBilltotalrevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainBilltotalrevenue.prototype.patchAttributes parameters: - name: id in: path description: MainBilltotalrevenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBilltotalrevenue' deprecated: false '/MainBilltotalrevenues/{id}/replace': post: tags: - MainBilltotalrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- MainBilltotalrevenue.replaceById__post_MainBilltotalrevenues_{id}_replace parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBilltotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBilltotalrevenue' deprecated: false /MainBilltotalrevenues/findOne: get: tags: - MainBilltotalrevenue summary: Find first instance of the model matched by filter from the data source. operationId: MainBilltotalrevenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBilltotalrevenue' deprecated: false /MainBilltotalrevenues/update: post: tags: - MainBilltotalrevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainBilltotalrevenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainBilltotalrevenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainBilltotalrevenues/count: get: tags: - MainBilltotalrevenue summary: Count instances of the model matched by where from the data source. operationId: MainBilltotalrevenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainCountbills: post: tags: - MainCountbill summary: Create a new instance of the model and persist it into the data source. operationId: MainCountbill.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCountbill' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCountbill' deprecated: false patch: tags: - MainCountbill summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainCountbill.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCountbill' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCountbill' deprecated: false put: tags: - MainCountbill summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainCountbill.replaceOrCreate__put_MainCountbills parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCountbill' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCountbill' deprecated: false get: tags: - MainCountbill summary: Find all instances of the model matched by filter from the data source. operationId: MainCountbill.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainCountbill' deprecated: false /MainCountbills/replaceOrCreate: post: tags: - MainCountbill summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainCountbill.replaceOrCreate__post_MainCountbills_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCountbill' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCountbill' deprecated: false /MainCountbills/upsertWithWhere: post: tags: - MainCountbill summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainCountbill.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainCountbill' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCountbill' deprecated: false '/MainCountbills/{id}/exists': get: tags: - MainCountbill summary: Check whether a model instance exists in the data source. operationId: 'MainCountbill.exists__get_MainCountbills_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainCountbills/{id}': head: tags: - MainCountbill summary: Check whether a model instance exists in the data source. operationId: 'MainCountbill.exists__head_MainCountbills_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainCountbill summary: 'Find a model instance by {{id}} from the data source.' operationId: MainCountbill.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCountbill' deprecated: false put: tags: - MainCountbill summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainCountbill.replaceById__put_MainCountbills_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCountbill' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCountbill' deprecated: false delete: tags: - MainCountbill summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainCountbill.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainCountbill summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainCountbill.prototype.patchAttributes parameters: - name: id in: path description: MainCountbill id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainCountbill' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCountbill' deprecated: false '/MainCountbills/{id}/replace': post: tags: - MainCountbill summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainCountbill.replaceById__post_MainCountbills_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCountbill' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCountbill' deprecated: false /MainCountbills/findOne: get: tags: - MainCountbill summary: Find first instance of the model matched by filter from the data source. operationId: MainCountbill.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCountbill' deprecated: false /MainCountbills/update: post: tags: - MainCountbill summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainCountbill.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainCountbill' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainCountbills/count: get: tags: - MainCountbill summary: Count instances of the model matched by where from the data source. operationId: MainCountbill.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainBillbrandnums: post: tags: - MainBillbrandnum summary: Create a new instance of the model and persist it into the data source. operationId: MainBillbrandnum.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBillbrandnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrandnum' deprecated: false patch: tags: - MainBillbrandnum summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainBillbrandnum.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBillbrandnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrandnum' deprecated: false put: tags: - MainBillbrandnum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainBillbrandnum.replaceOrCreate__put_MainBillbrandnums parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBillbrandnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrandnum' deprecated: false get: tags: - MainBillbrandnum summary: Find all instances of the model matched by filter from the data source. operationId: MainBillbrandnum.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainBillbrandnum' deprecated: false /MainBillbrandnums/replaceOrCreate: post: tags: - MainBillbrandnum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainBillbrandnum.replaceOrCreate__post_MainBillbrandnums_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBillbrandnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrandnum' deprecated: false /MainBillbrandnums/upsertWithWhere: post: tags: - MainBillbrandnum summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainBillbrandnum.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainBillbrandnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrandnum' deprecated: false '/MainBillbrandnums/{id}/exists': get: tags: - MainBillbrandnum summary: Check whether a model instance exists in the data source. operationId: 'MainBillbrandnum.exists__get_MainBillbrandnums_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainBillbrandnums/{id}': head: tags: - MainBillbrandnum summary: Check whether a model instance exists in the data source. operationId: 'MainBillbrandnum.exists__head_MainBillbrandnums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainBillbrandnum summary: 'Find a model instance by {{id}} from the data source.' operationId: MainBillbrandnum.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrandnum' deprecated: false put: tags: - MainBillbrandnum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainBillbrandnum.replaceById__put_MainBillbrandnums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBillbrandnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrandnum' deprecated: false delete: tags: - MainBillbrandnum summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainBillbrandnum.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainBillbrandnum summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainBillbrandnum.prototype.patchAttributes parameters: - name: id in: path description: MainBillbrandnum id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainBillbrandnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrandnum' deprecated: false '/MainBillbrandnums/{id}/replace': post: tags: - MainBillbrandnum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainBillbrandnum.replaceById__post_MainBillbrandnums_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBillbrandnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrandnum' deprecated: false /MainBillbrandnums/findOne: get: tags: - MainBillbrandnum summary: Find first instance of the model matched by filter from the data source. operationId: MainBillbrandnum.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrandnum' deprecated: false /MainBillbrandnums/update: post: tags: - MainBillbrandnum summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainBillbrandnum.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainBillbrandnum' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainBillbrandnums/count: get: tags: - MainBillbrandnum summary: Count instances of the model matched by where from the data source. operationId: MainBillbrandnum.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainGoldteachers: post: tags: - MainGoldteachers summary: Create a new instance of the model and persist it into the data source. operationId: MainGoldteachers.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainGoldteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainGoldteachers' deprecated: false patch: tags: - MainGoldteachers summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainGoldteachers.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainGoldteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainGoldteachers' deprecated: false put: tags: - MainGoldteachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainGoldteachers.replaceOrCreate__put_MainGoldteachers parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainGoldteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainGoldteachers' deprecated: false get: tags: - MainGoldteachers summary: Find all instances of the model matched by filter from the data source. operationId: MainGoldteachers.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainGoldteachers' deprecated: false /MainGoldteachers/replaceOrCreate: post: tags: - MainGoldteachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainGoldteachers.replaceOrCreate__post_MainGoldteachers_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainGoldteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainGoldteachers' deprecated: false /MainGoldteachers/upsertWithWhere: post: tags: - MainGoldteachers summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainGoldteachers.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainGoldteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainGoldteachers' deprecated: false '/MainGoldteachers/{id}/exists': get: tags: - MainGoldteachers summary: Check whether a model instance exists in the data source. operationId: 'MainGoldteachers.exists__get_MainGoldteachers_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainGoldteachers/{id}': head: tags: - MainGoldteachers summary: Check whether a model instance exists in the data source. operationId: 'MainGoldteachers.exists__head_MainGoldteachers_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainGoldteachers summary: 'Find a model instance by {{id}} from the data source.' operationId: MainGoldteachers.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainGoldteachers' deprecated: false put: tags: - MainGoldteachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainGoldteachers.replaceById__put_MainGoldteachers_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainGoldteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainGoldteachers' deprecated: false delete: tags: - MainGoldteachers summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainGoldteachers.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainGoldteachers summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainGoldteachers.prototype.patchAttributes parameters: - name: id in: path description: MainGoldteachers id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainGoldteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainGoldteachers' deprecated: false '/MainGoldteachers/{id}/replace': post: tags: - MainGoldteachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainGoldteachers.replaceById__post_MainGoldteachers_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainGoldteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainGoldteachers' deprecated: false /MainGoldteachers/findOne: get: tags: - MainGoldteachers summary: Find first instance of the model matched by filter from the data source. operationId: MainGoldteachers.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainGoldteachers' deprecated: false /MainGoldteachers/update: post: tags: - MainGoldteachers summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainGoldteachers.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainGoldteachers' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainGoldteachers/count: get: tags: - MainGoldteachers summary: Count instances of the model matched by where from the data source. operationId: MainGoldteachers.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainForteachers: post: tags: - MainForteachers summary: Create a new instance of the model and persist it into the data source. operationId: MainForteachers.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainForteachers' deprecated: false patch: tags: - MainForteachers summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainForteachers.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainForteachers' deprecated: false put: tags: - MainForteachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainForteachers.replaceOrCreate__put_MainForteachers parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainForteachers' deprecated: false get: tags: - MainForteachers summary: Find all instances of the model matched by filter from the data source. operationId: MainForteachers.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainForteachers' deprecated: false /MainForteachers/replaceOrCreate: post: tags: - MainForteachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainForteachers.replaceOrCreate__post_MainForteachers_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainForteachers' deprecated: false /MainForteachers/upsertWithWhere: post: tags: - MainForteachers summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainForteachers.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainForteachers' deprecated: false '/MainForteachers/{id}/exists': get: tags: - MainForteachers summary: Check whether a model instance exists in the data source. operationId: 'MainForteachers.exists__get_MainForteachers_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainForteachers/{id}': head: tags: - MainForteachers summary: Check whether a model instance exists in the data source. operationId: 'MainForteachers.exists__head_MainForteachers_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainForteachers summary: 'Find a model instance by {{id}} from the data source.' operationId: MainForteachers.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainForteachers' deprecated: false put: tags: - MainForteachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainForteachers.replaceById__put_MainForteachers_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainForteachers' deprecated: false delete: tags: - MainForteachers summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainForteachers.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainForteachers summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainForteachers.prototype.patchAttributes parameters: - name: id in: path description: MainForteachers id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainForteachers' deprecated: false '/MainForteachers/{id}/replace': post: tags: - MainForteachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainForteachers.replaceById__post_MainForteachers_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainForteachers' deprecated: false /MainForteachers/findOne: get: tags: - MainForteachers summary: Find first instance of the model matched by filter from the data source. operationId: MainForteachers.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainForteachers' deprecated: false /MainForteachers/update: post: tags: - MainForteachers summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainForteachers.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainForteachers' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainForteachers/count: get: tags: - MainForteachers summary: Count instances of the model matched by where from the data source. operationId: MainForteachers.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MianPetdocos: post: tags: - MianPetdoco summary: Create a new instance of the model and persist it into the data source. operationId: MianPetdoco.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MianPetdoco' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianPetdoco' deprecated: false patch: tags: - MianPetdoco summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MianPetdoco.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MianPetdoco' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianPetdoco' deprecated: false put: tags: - MianPetdoco summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MianPetdoco.replaceOrCreate__put_MianPetdocos parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MianPetdoco' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianPetdoco' deprecated: false get: tags: - MianPetdoco summary: Find all instances of the model matched by filter from the data source. operationId: MianPetdoco.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MianPetdoco' deprecated: false /MianPetdocos/replaceOrCreate: post: tags: - MianPetdoco summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MianPetdoco.replaceOrCreate__post_MianPetdocos_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MianPetdoco' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianPetdoco' deprecated: false /MianPetdocos/upsertWithWhere: post: tags: - MianPetdoco summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MianPetdoco.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MianPetdoco' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianPetdoco' deprecated: false '/MianPetdocos/{id}/exists': get: tags: - MianPetdoco summary: Check whether a model instance exists in the data source. operationId: 'MianPetdoco.exists__get_MianPetdocos_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MianPetdocos/{id}': head: tags: - MianPetdoco summary: Check whether a model instance exists in the data source. operationId: 'MianPetdoco.exists__head_MianPetdocos_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MianPetdoco summary: 'Find a model instance by {{id}} from the data source.' operationId: MianPetdoco.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MianPetdoco' deprecated: false put: tags: - MianPetdoco summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MianPetdoco.replaceById__put_MianPetdocos_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MianPetdoco' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianPetdoco' deprecated: false delete: tags: - MianPetdoco summary: 'Delete a model instance by {{id}} from the data source.' operationId: MianPetdoco.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MianPetdoco summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MianPetdoco.prototype.patchAttributes parameters: - name: id in: path description: MianPetdoco id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MianPetdoco' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianPetdoco' deprecated: false '/MianPetdocos/{id}/replace': post: tags: - MianPetdoco summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MianPetdoco.replaceById__post_MianPetdocos_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MianPetdoco' responses: '200': description: Request was successful schema: $ref: '#/definitions/MianPetdoco' deprecated: false /MianPetdocos/findOne: get: tags: - MianPetdoco summary: Find first instance of the model matched by filter from the data source. operationId: MianPetdoco.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MianPetdoco' deprecated: false /MianPetdocos/update: post: tags: - MianPetdoco summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MianPetdoco.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MianPetdoco' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MianPetdocos/count: get: tags: - MianPetdoco summary: Count instances of the model matched by where from the data source. operationId: MianPetdoco.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainPetdocs: post: tags: - MainPetdoc summary: Create a new instance of the model and persist it into the data source. operationId: MainPetdoc.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainPetdoc' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainPetdoc' deprecated: false patch: tags: - MainPetdoc summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainPetdoc.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainPetdoc' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainPetdoc' deprecated: false put: tags: - MainPetdoc summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainPetdoc.replaceOrCreate__put_MainPetdocs parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainPetdoc' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainPetdoc' deprecated: false get: tags: - MainPetdoc summary: Find all instances of the model matched by filter from the data source. operationId: MainPetdoc.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainPetdoc' deprecated: false /MainPetdocs/replaceOrCreate: post: tags: - MainPetdoc summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainPetdoc.replaceOrCreate__post_MainPetdocs_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainPetdoc' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainPetdoc' deprecated: false /MainPetdocs/upsertWithWhere: post: tags: - MainPetdoc summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainPetdoc.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainPetdoc' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainPetdoc' deprecated: false '/MainPetdocs/{id}/exists': get: tags: - MainPetdoc summary: Check whether a model instance exists in the data source. operationId: 'MainPetdoc.exists__get_MainPetdocs_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainPetdocs/{id}': head: tags: - MainPetdoc summary: Check whether a model instance exists in the data source. operationId: 'MainPetdoc.exists__head_MainPetdocs_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainPetdoc summary: 'Find a model instance by {{id}} from the data source.' operationId: MainPetdoc.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainPetdoc' deprecated: false put: tags: - MainPetdoc summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainPetdoc.replaceById__put_MainPetdocs_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainPetdoc' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainPetdoc' deprecated: false delete: tags: - MainPetdoc summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainPetdoc.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainPetdoc summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainPetdoc.prototype.patchAttributes parameters: - name: id in: path description: MainPetdoc id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainPetdoc' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainPetdoc' deprecated: false '/MainPetdocs/{id}/replace': post: tags: - MainPetdoc summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainPetdoc.replaceById__post_MainPetdocs_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainPetdoc' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainPetdoc' deprecated: false /MainPetdocs/findOne: get: tags: - MainPetdoc summary: Find first instance of the model matched by filter from the data source. operationId: MainPetdoc.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainPetdoc' deprecated: false /MainPetdocs/update: post: tags: - MainPetdoc summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainPetdoc.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainPetdoc' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainPetdocs/count: get: tags: - MainPetdoc summary: Count instances of the model matched by where from the data source. operationId: MainPetdoc.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainExpres: post: tags: - MainExpre summary: Create a new instance of the model and persist it into the data source. operationId: MainExpre.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainExpre' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainExpre' deprecated: false patch: tags: - MainExpre summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainExpre.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainExpre' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainExpre' deprecated: false put: tags: - MainExpre summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainExpre.replaceOrCreate__put_MainExpres parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainExpre' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainExpre' deprecated: false get: tags: - MainExpre summary: Find all instances of the model matched by filter from the data source. operationId: MainExpre.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainExpre' deprecated: false /MainExpres/replaceOrCreate: post: tags: - MainExpre summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainExpre.replaceOrCreate__post_MainExpres_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainExpre' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainExpre' deprecated: false /MainExpres/upsertWithWhere: post: tags: - MainExpre summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainExpre.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainExpre' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainExpre' deprecated: false '/MainExpres/{id}/exists': get: tags: - MainExpre summary: Check whether a model instance exists in the data source. operationId: 'MainExpre.exists__get_MainExpres_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainExpres/{id}': head: tags: - MainExpre summary: Check whether a model instance exists in the data source. operationId: 'MainExpre.exists__head_MainExpres_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainExpre summary: 'Find a model instance by {{id}} from the data source.' operationId: MainExpre.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainExpre' deprecated: false put: tags: - MainExpre summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainExpre.replaceById__put_MainExpres_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainExpre' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainExpre' deprecated: false delete: tags: - MainExpre summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainExpre.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainExpre summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainExpre.prototype.patchAttributes parameters: - name: id in: path description: MainExpre id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainExpre' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainExpre' deprecated: false '/MainExpres/{id}/replace': post: tags: - MainExpre summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainExpre.replaceById__post_MainExpres_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainExpre' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainExpre' deprecated: false /MainExpres/findOne: get: tags: - MainExpre summary: Find first instance of the model matched by filter from the data source. operationId: MainExpre.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainExpre' deprecated: false /MainExpres/update: post: tags: - MainExpre summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainExpre.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainExpre' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainExpres/count: get: tags: - MainExpre summary: Count instances of the model matched by where from the data source. operationId: MainExpre.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainDays: post: tags: - MainDay summary: Create a new instance of the model and persist it into the data source. operationId: MainDay.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainDay' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainDay' deprecated: false patch: tags: - MainDay summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainDay.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainDay' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainDay' deprecated: false put: tags: - MainDay summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainDay.replaceOrCreate__put_MainDays parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainDay' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainDay' deprecated: false get: tags: - MainDay summary: Find all instances of the model matched by filter from the data source. operationId: MainDay.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainDay' deprecated: false /MainDays/replaceOrCreate: post: tags: - MainDay summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainDay.replaceOrCreate__post_MainDays_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainDay' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainDay' deprecated: false /MainDays/upsertWithWhere: post: tags: - MainDay summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainDay.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainDay' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainDay' deprecated: false '/MainDays/{id}/exists': get: tags: - MainDay summary: Check whether a model instance exists in the data source. operationId: 'MainDay.exists__get_MainDays_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainDays/{id}': head: tags: - MainDay summary: Check whether a model instance exists in the data source. operationId: 'MainDay.exists__head_MainDays_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainDay summary: 'Find a model instance by {{id}} from the data source.' operationId: MainDay.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainDay' deprecated: false put: tags: - MainDay summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainDay.replaceById__put_MainDays_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainDay' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainDay' deprecated: false delete: tags: - MainDay summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainDay.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainDay summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainDay.prototype.patchAttributes parameters: - name: id in: path description: MainDay id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainDay' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainDay' deprecated: false '/MainDays/{id}/replace': post: tags: - MainDay summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainDay.replaceById__post_MainDays_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainDay' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainDay' deprecated: false /MainDays/findOne: get: tags: - MainDay summary: Find first instance of the model matched by filter from the data source. operationId: MainDay.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainDay' deprecated: false /MainDays/update: post: tags: - MainDay summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainDay.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainDay' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainDays/count: get: tags: - MainDay summary: Count instances of the model matched by where from the data source. operationId: MainDay.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainTotalhosnums: post: tags: - MainTotalhosnum summary: Create a new instance of the model and persist it into the data source. operationId: MainTotalhosnum.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalhosnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosnum' deprecated: false patch: tags: - MainTotalhosnum summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainTotalhosnum.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalhosnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosnum' deprecated: false put: tags: - MainTotalhosnum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalhosnum.replaceOrCreate__put_MainTotalhosnums parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalhosnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosnum' deprecated: false get: tags: - MainTotalhosnum summary: Find all instances of the model matched by filter from the data source. operationId: MainTotalhosnum.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainTotalhosnum' deprecated: false /MainTotalhosnums/replaceOrCreate: post: tags: - MainTotalhosnum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalhosnum.replaceOrCreate__post_MainTotalhosnums_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalhosnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosnum' deprecated: false /MainTotalhosnums/upsertWithWhere: post: tags: - MainTotalhosnum summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainTotalhosnum.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalhosnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosnum' deprecated: false '/MainTotalhosnums/{id}/exists': get: tags: - MainTotalhosnum summary: Check whether a model instance exists in the data source. operationId: 'MainTotalhosnum.exists__get_MainTotalhosnums_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainTotalhosnums/{id}': head: tags: - MainTotalhosnum summary: Check whether a model instance exists in the data source. operationId: 'MainTotalhosnum.exists__head_MainTotalhosnums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainTotalhosnum summary: 'Find a model instance by {{id}} from the data source.' operationId: MainTotalhosnum.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosnum' deprecated: false put: tags: - MainTotalhosnum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalhosnum.replaceById__put_MainTotalhosnums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalhosnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosnum' deprecated: false delete: tags: - MainTotalhosnum summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainTotalhosnum.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainTotalhosnum summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainTotalhosnum.prototype.patchAttributes parameters: - name: id in: path description: MainTotalhosnum id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalhosnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosnum' deprecated: false '/MainTotalhosnums/{id}/replace': post: tags: - MainTotalhosnum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalhosnum.replaceById__post_MainTotalhosnums_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalhosnum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosnum' deprecated: false /MainTotalhosnums/findOne: get: tags: - MainTotalhosnum summary: Find first instance of the model matched by filter from the data source. operationId: MainTotalhosnum.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalhosnum' deprecated: false /MainTotalhosnums/update: post: tags: - MainTotalhosnum summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainTotalhosnum.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalhosnum' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainTotalhosnums/count: get: tags: - MainTotalhosnum summary: Count instances of the model matched by where from the data source. operationId: MainTotalhosnum.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainTotalrevenues: post: tags: - MainTotalrevenue summary: Create a new instance of the model and persist it into the data source. operationId: MainTotalrevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalrevenue' deprecated: false patch: tags: - MainTotalrevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainTotalrevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalrevenue' deprecated: false put: tags: - MainTotalrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalrevenue.replaceOrCreate__put_MainTotalrevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalrevenue' deprecated: false get: tags: - MainTotalrevenue summary: Find all instances of the model matched by filter from the data source. operationId: MainTotalrevenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainTotalrevenue' deprecated: false /MainTotalrevenues/replaceOrCreate: post: tags: - MainTotalrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalrevenue.replaceOrCreate__post_MainTotalrevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalrevenue' deprecated: false /MainTotalrevenues/upsertWithWhere: post: tags: - MainTotalrevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainTotalrevenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalrevenue' deprecated: false '/MainTotalrevenues/{id}/exists': get: tags: - MainTotalrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainTotalrevenue.exists__get_MainTotalrevenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainTotalrevenues/{id}': head: tags: - MainTotalrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainTotalrevenue.exists__head_MainTotalrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainTotalrevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: MainTotalrevenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalrevenue' deprecated: false put: tags: - MainTotalrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalrevenue.replaceById__put_MainTotalrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalrevenue' deprecated: false delete: tags: - MainTotalrevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainTotalrevenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainTotalrevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainTotalrevenue.prototype.patchAttributes parameters: - name: id in: path description: MainTotalrevenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalrevenue' deprecated: false '/MainTotalrevenues/{id}/replace': post: tags: - MainTotalrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalrevenue.replaceById__post_MainTotalrevenues_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalrevenue' deprecated: false /MainTotalrevenues/findOne: get: tags: - MainTotalrevenue summary: Find first instance of the model matched by filter from the data source. operationId: MainTotalrevenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalrevenue' deprecated: false /MainTotalrevenues/update: post: tags: - MainTotalrevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainTotalrevenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalrevenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainTotalrevenues/count: get: tags: - MainTotalrevenue summary: Count instances of the model matched by where from the data source. operationId: MainTotalrevenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainCosmetologies: post: tags: - MainCosmetology summary: Create a new instance of the model and persist it into the data source. operationId: MainCosmetology.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCosmetology' deprecated: false patch: tags: - MainCosmetology summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainCosmetology.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCosmetology' deprecated: false put: tags: - MainCosmetology summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainCosmetology.replaceOrCreate__put_MainCosmetologies parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCosmetology' deprecated: false get: tags: - MainCosmetology summary: Find all instances of the model matched by filter from the data source. operationId: MainCosmetology.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainCosmetology' deprecated: false /MainCosmetologies/replaceOrCreate: post: tags: - MainCosmetology summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainCosmetology.replaceOrCreate__post_MainCosmetologies_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCosmetology' deprecated: false /MainCosmetologies/upsertWithWhere: post: tags: - MainCosmetology summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainCosmetology.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCosmetology' deprecated: false '/MainCosmetologies/{id}/exists': get: tags: - MainCosmetology summary: Check whether a model instance exists in the data source. operationId: 'MainCosmetology.exists__get_MainCosmetologies_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainCosmetologies/{id}': head: tags: - MainCosmetology summary: Check whether a model instance exists in the data source. operationId: 'MainCosmetology.exists__head_MainCosmetologies_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainCosmetology summary: 'Find a model instance by {{id}} from the data source.' operationId: MainCosmetology.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCosmetology' deprecated: false put: tags: - MainCosmetology summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainCosmetology.replaceById__put_MainCosmetologies_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCosmetology' deprecated: false delete: tags: - MainCosmetology summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainCosmetology.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainCosmetology summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainCosmetology.prototype.patchAttributes parameters: - name: id in: path description: MainCosmetology id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCosmetology' deprecated: false '/MainCosmetologies/{id}/replace': post: tags: - MainCosmetology summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainCosmetology.replaceById__post_MainCosmetologies_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCosmetology' deprecated: false /MainCosmetologies/findOne: get: tags: - MainCosmetology summary: Find first instance of the model matched by filter from the data source. operationId: MainCosmetology.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCosmetology' deprecated: false /MainCosmetologies/update: post: tags: - MainCosmetology summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainCosmetology.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainCosmetology' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainCosmetologies/count: get: tags: - MainCosmetology summary: Count instances of the model matched by where from the data source. operationId: MainCosmetology.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainRegisters: post: tags: - MainRegister summary: Create a new instance of the model and persist it into the data source. operationId: MainRegister.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRegister' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRegister' deprecated: false patch: tags: - MainRegister summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainRegister.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRegister' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRegister' deprecated: false put: tags: - MainRegister summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainRegister.replaceOrCreate__put_MainRegisters parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRegister' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRegister' deprecated: false get: tags: - MainRegister summary: Find all instances of the model matched by filter from the data source. operationId: MainRegister.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainRegister' deprecated: false /MainRegisters/replaceOrCreate: post: tags: - MainRegister summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainRegister.replaceOrCreate__post_MainRegisters_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRegister' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRegister' deprecated: false /MainRegisters/upsertWithWhere: post: tags: - MainRegister summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainRegister.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRegister' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRegister' deprecated: false '/MainRegisters/{id}/exists': get: tags: - MainRegister summary: Check whether a model instance exists in the data source. operationId: 'MainRegister.exists__get_MainRegisters_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainRegisters/{id}': head: tags: - MainRegister summary: Check whether a model instance exists in the data source. operationId: 'MainRegister.exists__head_MainRegisters_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainRegister summary: 'Find a model instance by {{id}} from the data source.' operationId: MainRegister.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRegister' deprecated: false put: tags: - MainRegister summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainRegister.replaceById__put_MainRegisters_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRegister' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRegister' deprecated: false delete: tags: - MainRegister summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainRegister.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainRegister summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainRegister.prototype.patchAttributes parameters: - name: id in: path description: MainRegister id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRegister' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRegister' deprecated: false '/MainRegisters/{id}/replace': post: tags: - MainRegister summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainRegister.replaceById__post_MainRegisters_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainRegister' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRegister' deprecated: false /MainRegisters/findOne: get: tags: - MainRegister summary: Find first instance of the model matched by filter from the data source. operationId: MainRegister.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainRegister' deprecated: false /MainRegisters/update: post: tags: - MainRegister summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainRegister.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainRegister' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainRegisters/count: get: tags: - MainRegister summary: Count instances of the model matched by where from the data source. operationId: MainRegister.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /HosLastyearbudgets: post: tags: - HosLastyearbudget summary: Create a new instance of the model and persist it into the data source. operationId: HosLastyearbudget.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosLastyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearbudget' deprecated: false patch: tags: - HosLastyearbudget summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosLastyearbudget.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosLastyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearbudget' deprecated: false put: tags: - HosLastyearbudget summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosLastyearbudget.replaceOrCreate__put_HosLastyearbudgets parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosLastyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearbudget' deprecated: false get: tags: - HosLastyearbudget summary: Find all instances of the model matched by filter from the data source. operationId: HosLastyearbudget.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/HosLastyearbudget' deprecated: false /HosLastyearbudgets/replaceOrCreate: post: tags: - HosLastyearbudget summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- HosLastyearbudget.replaceOrCreate__post_HosLastyearbudgets_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosLastyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearbudget' deprecated: false /HosLastyearbudgets/upsertWithWhere: post: tags: - HosLastyearbudget summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosLastyearbudget.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosLastyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearbudget' deprecated: false '/HosLastyearbudgets/{id}/exists': get: tags: - HosLastyearbudget summary: Check whether a model instance exists in the data source. operationId: 'HosLastyearbudget.exists__get_HosLastyearbudgets_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/HosLastyearbudgets/{id}': head: tags: - HosLastyearbudget summary: Check whether a model instance exists in the data source. operationId: 'HosLastyearbudget.exists__head_HosLastyearbudgets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - HosLastyearbudget summary: 'Find a model instance by {{id}} from the data source.' operationId: HosLastyearbudget.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearbudget' deprecated: false put: tags: - HosLastyearbudget summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosLastyearbudget.replaceById__put_HosLastyearbudgets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosLastyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearbudget' deprecated: false delete: tags: - HosLastyearbudget summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosLastyearbudget.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - HosLastyearbudget summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosLastyearbudget.prototype.patchAttributes parameters: - name: id in: path description: HosLastyearbudget id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosLastyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearbudget' deprecated: false '/HosLastyearbudgets/{id}/replace': post: tags: - HosLastyearbudget summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosLastyearbudget.replaceById__post_HosLastyearbudgets_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosLastyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearbudget' deprecated: false /HosLastyearbudgets/findOne: get: tags: - HosLastyearbudget summary: Find first instance of the model matched by filter from the data source. operationId: HosLastyearbudget.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearbudget' deprecated: false /HosLastyearbudgets/update: post: tags: - HosLastyearbudget summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosLastyearbudget.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosLastyearbudget' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /HosLastyearbudgets/count: get: tags: - HosLastyearbudget summary: Count instances of the model matched by where from the data source. operationId: HosLastyearbudget.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /HosLastyearregums: post: tags: - HosLastyearregum summary: Create a new instance of the model and persist it into the data source. operationId: HosLastyearregum.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosLastyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearregum' deprecated: false patch: tags: - HosLastyearregum summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosLastyearregum.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosLastyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearregum' deprecated: false put: tags: - HosLastyearregum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosLastyearregum.replaceOrCreate__put_HosLastyearregums parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosLastyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearregum' deprecated: false get: tags: - HosLastyearregum summary: Find all instances of the model matched by filter from the data source. operationId: HosLastyearregum.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/HosLastyearregum' deprecated: false /HosLastyearregums/replaceOrCreate: post: tags: - HosLastyearregum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosLastyearregum.replaceOrCreate__post_HosLastyearregums_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosLastyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearregum' deprecated: false /HosLastyearregums/upsertWithWhere: post: tags: - HosLastyearregum summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosLastyearregum.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosLastyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearregum' deprecated: false '/HosLastyearregums/{id}/exists': get: tags: - HosLastyearregum summary: Check whether a model instance exists in the data source. operationId: 'HosLastyearregum.exists__get_HosLastyearregums_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/HosLastyearregums/{id}': head: tags: - HosLastyearregum summary: Check whether a model instance exists in the data source. operationId: 'HosLastyearregum.exists__head_HosLastyearregums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - HosLastyearregum summary: 'Find a model instance by {{id}} from the data source.' operationId: HosLastyearregum.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearregum' deprecated: false put: tags: - HosLastyearregum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosLastyearregum.replaceById__put_HosLastyearregums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosLastyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearregum' deprecated: false delete: tags: - HosLastyearregum summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosLastyearregum.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - HosLastyearregum summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosLastyearregum.prototype.patchAttributes parameters: - name: id in: path description: HosLastyearregum id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosLastyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearregum' deprecated: false '/HosLastyearregums/{id}/replace': post: tags: - HosLastyearregum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosLastyearregum.replaceById__post_HosLastyearregums_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosLastyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearregum' deprecated: false /HosLastyearregums/findOne: get: tags: - HosLastyearregum summary: Find first instance of the model matched by filter from the data source. operationId: HosLastyearregum.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosLastyearregum' deprecated: false /HosLastyearregums/update: post: tags: - HosLastyearregum summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosLastyearregum.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosLastyearregum' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /HosLastyearregums/count: get: tags: - HosLastyearregum summary: Count instances of the model matched by where from the data source. operationId: HosLastyearregum.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /HosThisyearregums: post: tags: - HosThisyearregum summary: Create a new instance of the model and persist it into the data source. operationId: HosThisyearregum.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearregum' deprecated: false patch: tags: - HosThisyearregum summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosThisyearregum.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearregum' deprecated: false put: tags: - HosThisyearregum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosThisyearregum.replaceOrCreate__put_HosThisyearregums parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearregum' deprecated: false get: tags: - HosThisyearregum summary: Find all instances of the model matched by filter from the data source. operationId: HosThisyearregum.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/HosThisyearregum' deprecated: false /HosThisyearregums/replaceOrCreate: post: tags: - HosThisyearregum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosThisyearregum.replaceOrCreate__post_HosThisyearregums_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearregum' deprecated: false /HosThisyearregums/upsertWithWhere: post: tags: - HosThisyearregum summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosThisyearregum.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosThisyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearregum' deprecated: false '/HosThisyearregums/{id}/exists': get: tags: - HosThisyearregum summary: Check whether a model instance exists in the data source. operationId: 'HosThisyearregum.exists__get_HosThisyearregums_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/HosThisyearregums/{id}': head: tags: - HosThisyearregum summary: Check whether a model instance exists in the data source. operationId: 'HosThisyearregum.exists__head_HosThisyearregums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - HosThisyearregum summary: 'Find a model instance by {{id}} from the data source.' operationId: HosThisyearregum.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearregum' deprecated: false put: tags: - HosThisyearregum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosThisyearregum.replaceById__put_HosThisyearregums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearregum' deprecated: false delete: tags: - HosThisyearregum summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosThisyearregum.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - HosThisyearregum summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosThisyearregum.prototype.patchAttributes parameters: - name: id in: path description: HosThisyearregum id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosThisyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearregum' deprecated: false '/HosThisyearregums/{id}/replace': post: tags: - HosThisyearregum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosThisyearregum.replaceById__post_HosThisyearregums_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearregum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearregum' deprecated: false /HosThisyearregums/findOne: get: tags: - HosThisyearregum summary: Find first instance of the model matched by filter from the data source. operationId: HosThisyearregum.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearregum' deprecated: false /HosThisyearregums/update: post: tags: - HosThisyearregum summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosThisyearregum.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosThisyearregum' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /HosThisyearregums/count: get: tags: - HosThisyearregum summary: Count instances of the model matched by where from the data source. operationId: HosThisyearregum.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /HosThisyearbudgets: post: tags: - HosThisyearbudget summary: Create a new instance of the model and persist it into the data source. operationId: HosThisyearbudget.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearbudget' deprecated: false patch: tags: - HosThisyearbudget summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosThisyearbudget.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearbudget' deprecated: false put: tags: - HosThisyearbudget summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosThisyearbudget.replaceOrCreate__put_HosThisyearbudgets parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearbudget' deprecated: false get: tags: - HosThisyearbudget summary: Find all instances of the model matched by filter from the data source. operationId: HosThisyearbudget.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/HosThisyearbudget' deprecated: false /HosThisyearbudgets/replaceOrCreate: post: tags: - HosThisyearbudget summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- HosThisyearbudget.replaceOrCreate__post_HosThisyearbudgets_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearbudget' deprecated: false /HosThisyearbudgets/upsertWithWhere: post: tags: - HosThisyearbudget summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosThisyearbudget.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosThisyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearbudget' deprecated: false '/HosThisyearbudgets/{id}/exists': get: tags: - HosThisyearbudget summary: Check whether a model instance exists in the data source. operationId: 'HosThisyearbudget.exists__get_HosThisyearbudgets_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/HosThisyearbudgets/{id}': head: tags: - HosThisyearbudget summary: Check whether a model instance exists in the data source. operationId: 'HosThisyearbudget.exists__head_HosThisyearbudgets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - HosThisyearbudget summary: 'Find a model instance by {{id}} from the data source.' operationId: HosThisyearbudget.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearbudget' deprecated: false put: tags: - HosThisyearbudget summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosThisyearbudget.replaceById__put_HosThisyearbudgets_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearbudget' deprecated: false delete: tags: - HosThisyearbudget summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosThisyearbudget.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - HosThisyearbudget summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosThisyearbudget.prototype.patchAttributes parameters: - name: id in: path description: HosThisyearbudget id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosThisyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearbudget' deprecated: false '/HosThisyearbudgets/{id}/replace': post: tags: - HosThisyearbudget summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosThisyearbudget.replaceById__post_HosThisyearbudgets_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearbudget' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearbudget' deprecated: false /HosThisyearbudgets/findOne: get: tags: - HosThisyearbudget summary: Find first instance of the model matched by filter from the data source. operationId: HosThisyearbudget.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearbudget' deprecated: false /HosThisyearbudgets/update: post: tags: - HosThisyearbudget summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosThisyearbudget.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/HosThisyearbudget' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /HosThisyearbudgets/count: get: tags: - HosThisyearbudget summary: Count instances of the model matched by where from the data source. operationId: HosThisyearbudget.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /EducCourse4s: post: tags: - EducCourse4 summary: Create a new instance of the model and persist it into the data source. operationId: EducCourse4.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse4' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse4' deprecated: false patch: tags: - EducCourse4 summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducCourse4.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse4' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse4' deprecated: false put: tags: - EducCourse4 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducCourse4.replaceOrCreate__put_EducCourse4s parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse4' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse4' deprecated: false get: tags: - EducCourse4 summary: Find all instances of the model matched by filter from the data source. operationId: EducCourse4.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/EducCourse4' deprecated: false /EducCourse4s/replaceOrCreate: post: tags: - EducCourse4 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducCourse4.replaceOrCreate__post_EducCourse4s_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse4' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse4' deprecated: false /EducCourse4s/upsertWithWhere: post: tags: - EducCourse4 summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducCourse4.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/EducCourse4' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse4' deprecated: false '/EducCourse4s/{id}/exists': get: tags: - EducCourse4 summary: Check whether a model instance exists in the data source. operationId: 'EducCourse4.exists__get_EducCourse4s_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/EducCourse4s/{id}': head: tags: - EducCourse4 summary: Check whether a model instance exists in the data source. operationId: 'EducCourse4.exists__head_EducCourse4s_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - EducCourse4 summary: 'Find a model instance by {{id}} from the data source.' operationId: EducCourse4.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse4' deprecated: false put: tags: - EducCourse4 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducCourse4.replaceById__put_EducCourse4s_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse4' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse4' deprecated: false delete: tags: - EducCourse4 summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducCourse4.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - EducCourse4 summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducCourse4.prototype.patchAttributes parameters: - name: id in: path description: EducCourse4 id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/EducCourse4' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse4' deprecated: false '/EducCourse4s/{id}/replace': post: tags: - EducCourse4 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducCourse4.replaceById__post_EducCourse4s_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse4' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse4' deprecated: false /EducCourse4s/findOne: get: tags: - EducCourse4 summary: Find first instance of the model matched by filter from the data source. operationId: EducCourse4.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse4' deprecated: false /EducCourse4s/update: post: tags: - EducCourse4 summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducCourse4.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/EducCourse4' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /EducCourse4s/count: get: tags: - EducCourse4 summary: Count instances of the model matched by where from the data source. operationId: EducCourse4.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /EducBrowse1s: post: tags: - EducBrowse1 summary: Create a new instance of the model and persist it into the data source. operationId: EducBrowse1.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducBrowse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse1' deprecated: false patch: tags: - EducBrowse1 summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducBrowse1.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducBrowse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse1' deprecated: false put: tags: - EducBrowse1 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducBrowse1.replaceOrCreate__put_EducBrowse1s parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducBrowse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse1' deprecated: false get: tags: - EducBrowse1 summary: Find all instances of the model matched by filter from the data source. operationId: EducBrowse1.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/EducBrowse1' deprecated: false /EducBrowse1s/replaceOrCreate: post: tags: - EducBrowse1 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducBrowse1.replaceOrCreate__post_EducBrowse1s_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducBrowse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse1' deprecated: false /EducBrowse1s/upsertWithWhere: post: tags: - EducBrowse1 summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducBrowse1.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/EducBrowse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse1' deprecated: false '/EducBrowse1s/{id}/exists': get: tags: - EducBrowse1 summary: Check whether a model instance exists in the data source. operationId: 'EducBrowse1.exists__get_EducBrowse1s_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/EducBrowse1s/{id}': head: tags: - EducBrowse1 summary: Check whether a model instance exists in the data source. operationId: 'EducBrowse1.exists__head_EducBrowse1s_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - EducBrowse1 summary: 'Find a model instance by {{id}} from the data source.' operationId: EducBrowse1.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse1' deprecated: false put: tags: - EducBrowse1 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducBrowse1.replaceById__put_EducBrowse1s_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducBrowse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse1' deprecated: false delete: tags: - EducBrowse1 summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducBrowse1.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - EducBrowse1 summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducBrowse1.prototype.patchAttributes parameters: - name: id in: path description: EducBrowse1 id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/EducBrowse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse1' deprecated: false '/EducBrowse1s/{id}/replace': post: tags: - EducBrowse1 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducBrowse1.replaceById__post_EducBrowse1s_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducBrowse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse1' deprecated: false /EducBrowse1s/findOne: get: tags: - EducBrowse1 summary: Find first instance of the model matched by filter from the data source. operationId: EducBrowse1.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse1' deprecated: false /EducBrowse1s/update: post: tags: - EducBrowse1 summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducBrowse1.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/EducBrowse1' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /EducBrowse1s/count: get: tags: - EducBrowse1 summary: Count instances of the model matched by where from the data source. operationId: EducBrowse1.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainBillbrands: post: tags: - MainBillbrand summary: Create a new instance of the model and persist it into the data source. operationId: MainBillbrand.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBillbrand' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrand' deprecated: false patch: tags: - MainBillbrand summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainBillbrand.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBillbrand' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrand' deprecated: false put: tags: - MainBillbrand summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainBillbrand.replaceOrCreate__put_MainBillbrands parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBillbrand' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrand' deprecated: false get: tags: - MainBillbrand summary: Find all instances of the model matched by filter from the data source. operationId: MainBillbrand.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainBillbrand' deprecated: false /MainBillbrands/replaceOrCreate: post: tags: - MainBillbrand summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainBillbrand.replaceOrCreate__post_MainBillbrands_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBillbrand' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrand' deprecated: false /MainBillbrands/upsertWithWhere: post: tags: - MainBillbrand summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainBillbrand.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainBillbrand' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrand' deprecated: false '/MainBillbrands/{id}/exists': get: tags: - MainBillbrand summary: Check whether a model instance exists in the data source. operationId: 'MainBillbrand.exists__get_MainBillbrands_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainBillbrands/{id}': head: tags: - MainBillbrand summary: Check whether a model instance exists in the data source. operationId: 'MainBillbrand.exists__head_MainBillbrands_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainBillbrand summary: 'Find a model instance by {{id}} from the data source.' operationId: MainBillbrand.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrand' deprecated: false put: tags: - MainBillbrand summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainBillbrand.replaceById__put_MainBillbrands_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBillbrand' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrand' deprecated: false delete: tags: - MainBillbrand summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainBillbrand.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainBillbrand summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainBillbrand.prototype.patchAttributes parameters: - name: id in: path description: MainBillbrand id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainBillbrand' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrand' deprecated: false '/MainBillbrands/{id}/replace': post: tags: - MainBillbrand summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainBillbrand.replaceById__post_MainBillbrands_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainBillbrand' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrand' deprecated: false /MainBillbrands/findOne: get: tags: - MainBillbrand summary: Find first instance of the model matched by filter from the data source. operationId: MainBillbrand.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainBillbrand' deprecated: false /MainBillbrands/update: post: tags: - MainBillbrand summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainBillbrand.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainBillbrand' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainBillbrands/count: get: tags: - MainBillbrand summary: Count instances of the model matched by where from the data source. operationId: MainBillbrand.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainCompanyareas: post: tags: - MainCompanyarea summary: Create a new instance of the model and persist it into the data source. operationId: MainCompanyarea.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCompanyarea' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCompanyarea' deprecated: false patch: tags: - MainCompanyarea summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainCompanyarea.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCompanyarea' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCompanyarea' deprecated: false put: tags: - MainCompanyarea summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainCompanyarea.replaceOrCreate__put_MainCompanyareas parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCompanyarea' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCompanyarea' deprecated: false get: tags: - MainCompanyarea summary: Find all instances of the model matched by filter from the data source. operationId: MainCompanyarea.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainCompanyarea' deprecated: false /MainCompanyareas/replaceOrCreate: post: tags: - MainCompanyarea summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainCompanyarea.replaceOrCreate__post_MainCompanyareas_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCompanyarea' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCompanyarea' deprecated: false /MainCompanyareas/upsertWithWhere: post: tags: - MainCompanyarea summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainCompanyarea.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainCompanyarea' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCompanyarea' deprecated: false '/MainCompanyareas/{id}/exists': get: tags: - MainCompanyarea summary: Check whether a model instance exists in the data source. operationId: 'MainCompanyarea.exists__get_MainCompanyareas_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainCompanyareas/{id}': head: tags: - MainCompanyarea summary: Check whether a model instance exists in the data source. operationId: 'MainCompanyarea.exists__head_MainCompanyareas_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainCompanyarea summary: 'Find a model instance by {{id}} from the data source.' operationId: MainCompanyarea.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCompanyarea' deprecated: false put: tags: - MainCompanyarea summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainCompanyarea.replaceById__put_MainCompanyareas_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCompanyarea' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCompanyarea' deprecated: false delete: tags: - MainCompanyarea summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainCompanyarea.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainCompanyarea summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainCompanyarea.prototype.patchAttributes parameters: - name: id in: path description: MainCompanyarea id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainCompanyarea' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCompanyarea' deprecated: false '/MainCompanyareas/{id}/replace': post: tags: - MainCompanyarea summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainCompanyarea.replaceById__post_MainCompanyareas_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainCompanyarea' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCompanyarea' deprecated: false /MainCompanyareas/findOne: get: tags: - MainCompanyarea summary: Find first instance of the model matched by filter from the data source. operationId: MainCompanyarea.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainCompanyarea' deprecated: false /MainCompanyareas/update: post: tags: - MainCompanyarea summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainCompanyarea.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainCompanyarea' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainCompanyareas/count: get: tags: - MainCompanyarea summary: Count instances of the model matched by where from the data source. operationId: MainCompanyarea.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainAorders: post: tags: - MainAorders summary: Create a new instance of the model and persist it into the data source. operationId: MainAorders.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainAorders' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainAorders' deprecated: false patch: tags: - MainAorders summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainAorders.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainAorders' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainAorders' deprecated: false put: tags: - MainAorders summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainAorders.replaceOrCreate__put_MainAorders parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainAorders' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainAorders' deprecated: false get: tags: - MainAorders summary: Find all instances of the model matched by filter from the data source. operationId: MainAorders.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainAorders' deprecated: false /MainAorders/replaceOrCreate: post: tags: - MainAorders summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainAorders.replaceOrCreate__post_MainAorders_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainAorders' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainAorders' deprecated: false /MainAorders/upsertWithWhere: post: tags: - MainAorders summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainAorders.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainAorders' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainAorders' deprecated: false '/MainAorders/{id}/exists': get: tags: - MainAorders summary: Check whether a model instance exists in the data source. operationId: 'MainAorders.exists__get_MainAorders_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainAorders/{id}': head: tags: - MainAorders summary: Check whether a model instance exists in the data source. operationId: 'MainAorders.exists__head_MainAorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainAorders summary: 'Find a model instance by {{id}} from the data source.' operationId: MainAorders.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainAorders' deprecated: false put: tags: - MainAorders summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainAorders.replaceById__put_MainAorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainAorders' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainAorders' deprecated: false delete: tags: - MainAorders summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainAorders.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainAorders summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainAorders.prototype.patchAttributes parameters: - name: id in: path description: MainAorders id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainAorders' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainAorders' deprecated: false '/MainAorders/{id}/replace': post: tags: - MainAorders summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainAorders.replaceById__post_MainAorders_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainAorders' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainAorders' deprecated: false /MainAorders/findOne: get: tags: - MainAorders summary: Find first instance of the model matched by filter from the data source. operationId: MainAorders.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainAorders' deprecated: false /MainAorders/update: post: tags: - MainAorders summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainAorders.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainAorders' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainAorders/count: get: tags: - MainAorders summary: Count instances of the model matched by where from the data source. operationId: MainAorders.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainEntityorders: post: tags: - MainEntityorder summary: Create a new instance of the model and persist it into the data source. operationId: MainEntityorder.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityorder' deprecated: false patch: tags: - MainEntityorder summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainEntityorder.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityorder' deprecated: false put: tags: - MainEntityorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainEntityorder.replaceOrCreate__put_MainEntityorders parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityorder' deprecated: false get: tags: - MainEntityorder summary: Find all instances of the model matched by filter from the data source. operationId: MainEntityorder.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainEntityorder' deprecated: false /MainEntityorders/replaceOrCreate: post: tags: - MainEntityorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainEntityorder.replaceOrCreate__post_MainEntityorders_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityorder' deprecated: false /MainEntityorders/upsertWithWhere: post: tags: - MainEntityorder summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainEntityorder.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityorder' deprecated: false '/MainEntityorders/{id}/exists': get: tags: - MainEntityorder summary: Check whether a model instance exists in the data source. operationId: 'MainEntityorder.exists__get_MainEntityorders_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainEntityorders/{id}': head: tags: - MainEntityorder summary: Check whether a model instance exists in the data source. operationId: 'MainEntityorder.exists__head_MainEntityorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainEntityorder summary: 'Find a model instance by {{id}} from the data source.' operationId: MainEntityorder.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityorder' deprecated: false put: tags: - MainEntityorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainEntityorder.replaceById__put_MainEntityorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityorder' deprecated: false delete: tags: - MainEntityorder summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainEntityorder.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainEntityorder summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainEntityorder.prototype.patchAttributes parameters: - name: id in: path description: MainEntityorder id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityorder' deprecated: false '/MainEntityorders/{id}/replace': post: tags: - MainEntityorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainEntityorder.replaceById__post_MainEntityorders_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEntityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityorder' deprecated: false /MainEntityorders/findOne: get: tags: - MainEntityorder summary: Find first instance of the model matched by filter from the data source. operationId: MainEntityorder.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityorder' deprecated: false /MainEntityorders/update: post: tags: - MainEntityorder summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainEntityorder.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEntityorder' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainEntityorders/count: get: tags: - MainEntityorder summary: Count instances of the model matched by where from the data source. operationId: MainEntityorder.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainEntityrevenues: post: tags: - MainEntityrevenue summary: Create a new instance of the model and persist it into the data source. operationId: MainEntityrevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEntityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityrevenue' deprecated: false patch: tags: - MainEntityrevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainEntityrevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEntityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityrevenue' deprecated: false put: tags: - MainEntityrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainEntityrevenue.replaceOrCreate__put_MainEntityrevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEntityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityrevenue' deprecated: false get: tags: - MainEntityrevenue summary: Find all instances of the model matched by filter from the data source. operationId: MainEntityrevenue.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainEntityrevenue' deprecated: false /MainEntityrevenues/replaceOrCreate: post: tags: - MainEntityrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- MainEntityrevenue.replaceOrCreate__post_MainEntityrevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEntityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityrevenue' deprecated: false /MainEntityrevenues/upsertWithWhere: post: tags: - MainEntityrevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainEntityrevenue.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEntityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityrevenue' deprecated: false '/MainEntityrevenues/{id}/exists': get: tags: - MainEntityrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainEntityrevenue.exists__get_MainEntityrevenues_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainEntityrevenues/{id}': head: tags: - MainEntityrevenue summary: Check whether a model instance exists in the data source. operationId: 'MainEntityrevenue.exists__head_MainEntityrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainEntityrevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: MainEntityrevenue.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityrevenue' deprecated: false put: tags: - MainEntityrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainEntityrevenue.replaceById__put_MainEntityrevenues_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEntityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityrevenue' deprecated: false delete: tags: - MainEntityrevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainEntityrevenue.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainEntityrevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainEntityrevenue.prototype.patchAttributes parameters: - name: id in: path description: MainEntityrevenue id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEntityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityrevenue' deprecated: false '/MainEntityrevenues/{id}/replace': post: tags: - MainEntityrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainEntityrevenue.replaceById__post_MainEntityrevenues_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainEntityrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityrevenue' deprecated: false /MainEntityrevenues/findOne: get: tags: - MainEntityrevenue summary: Find first instance of the model matched by filter from the data source. operationId: MainEntityrevenue.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainEntityrevenue' deprecated: false /MainEntityrevenues/update: post: tags: - MainEntityrevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainEntityrevenue.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainEntityrevenue' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainEntityrevenues/count: get: tags: - MainEntityrevenue summary: Count instances of the model matched by where from the data source. operationId: MainEntityrevenue.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainTotalorders: post: tags: - MainTotalorder summary: Create a new instance of the model and persist it into the data source. operationId: MainTotalorder.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalorder' deprecated: false patch: tags: - MainTotalorder summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainTotalorder.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalorder' deprecated: false put: tags: - MainTotalorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalorder.replaceOrCreate__put_MainTotalorders parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalorder' deprecated: false get: tags: - MainTotalorder summary: Find all instances of the model matched by filter from the data source. operationId: MainTotalorder.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainTotalorder' deprecated: false /MainTotalorders/replaceOrCreate: post: tags: - MainTotalorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainTotalorder.replaceOrCreate__post_MainTotalorders_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalorder' deprecated: false /MainTotalorders/upsertWithWhere: post: tags: - MainTotalorder summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainTotalorder.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalorder' deprecated: false '/MainTotalorders/{id}/exists': get: tags: - MainTotalorder summary: Check whether a model instance exists in the data source. operationId: 'MainTotalorder.exists__get_MainTotalorders_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainTotalorders/{id}': head: tags: - MainTotalorder summary: Check whether a model instance exists in the data source. operationId: 'MainTotalorder.exists__head_MainTotalorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainTotalorder summary: 'Find a model instance by {{id}} from the data source.' operationId: MainTotalorder.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalorder' deprecated: false put: tags: - MainTotalorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalorder.replaceById__put_MainTotalorders_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalorder' deprecated: false delete: tags: - MainTotalorder summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainTotalorder.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainTotalorder summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainTotalorder.prototype.patchAttributes parameters: - name: id in: path description: MainTotalorder id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalorder' deprecated: false '/MainTotalorders/{id}/replace': post: tags: - MainTotalorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainTotalorder.replaceById__post_MainTotalorders_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainTotalorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalorder' deprecated: false /MainTotalorders/findOne: get: tags: - MainTotalorder summary: Find first instance of the model matched by filter from the data source. operationId: MainTotalorder.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainTotalorder' deprecated: false /MainTotalorders/update: post: tags: - MainTotalorder summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainTotalorder.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainTotalorder' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainTotalorders/count: get: tags: - MainTotalorder summary: Count instances of the model matched by where from the data source. operationId: MainTotalorder.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MainSums: post: tags: - MainSum summary: Create a new instance of the model and persist it into the data source. operationId: MainSum.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainSum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainSum' deprecated: false patch: tags: - MainSum summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MainSum.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainSum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainSum' deprecated: false put: tags: - MainSum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainSum.replaceOrCreate__put_MainSums parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainSum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainSum' deprecated: false get: tags: - MainSum summary: Find all instances of the model matched by filter from the data source. operationId: MainSum.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MainSum' deprecated: false /MainSums/replaceOrCreate: post: tags: - MainSum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MainSum.replaceOrCreate__post_MainSums_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainSum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainSum' deprecated: false /MainSums/upsertWithWhere: post: tags: - MainSum summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MainSum.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainSum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainSum' deprecated: false '/MainSums/{id}/exists': get: tags: - MainSum summary: Check whether a model instance exists in the data source. operationId: 'MainSum.exists__get_MainSums_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MainSums/{id}': head: tags: - MainSum summary: Check whether a model instance exists in the data source. operationId: 'MainSum.exists__head_MainSums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MainSum summary: 'Find a model instance by {{id}} from the data source.' operationId: MainSum.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainSum' deprecated: false put: tags: - MainSum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainSum.replaceById__put_MainSums_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainSum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainSum' deprecated: false delete: tags: - MainSum summary: 'Delete a model instance by {{id}} from the data source.' operationId: MainSum.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MainSum summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MainSum.prototype.patchAttributes parameters: - name: id in: path description: MainSum id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainSum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainSum' deprecated: false '/MainSums/{id}/replace': post: tags: - MainSum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MainSum.replaceById__post_MainSums_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MainSum' responses: '200': description: Request was successful schema: $ref: '#/definitions/MainSum' deprecated: false /MainSums/findOne: get: tags: - MainSum summary: Find first instance of the model matched by filter from the data source. operationId: MainSum.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MainSum' deprecated: false /MainSums/update: post: tags: - MainSum summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MainSum.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MainSum' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MainSums/count: get: tags: - MainSum summary: Count instances of the model matched by where from the data source. operationId: MainSum.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MapHos2s: post: tags: - MapHos2 summary: Create a new instance of the model and persist it into the data source. operationId: MapHos2.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapHos2' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos2' deprecated: false patch: tags: - MapHos2 summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MapHos2.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapHos2' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos2' deprecated: false put: tags: - MapHos2 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapHos2.replaceOrCreate__put_MapHos2s parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapHos2' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos2' deprecated: false get: tags: - MapHos2 summary: Find all instances of the model matched by filter from the data source. operationId: MapHos2.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MapHos2' deprecated: false /MapHos2s/replaceOrCreate: post: tags: - MapHos2 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapHos2.replaceOrCreate__post_MapHos2s_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapHos2' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos2' deprecated: false /MapHos2s/upsertWithWhere: post: tags: - MapHos2 summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MapHos2.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MapHos2' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos2' deprecated: false '/MapHos2s/{id}/exists': get: tags: - MapHos2 summary: Check whether a model instance exists in the data source. operationId: 'MapHos2.exists__get_MapHos2s_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MapHos2s/{id}': head: tags: - MapHos2 summary: Check whether a model instance exists in the data source. operationId: 'MapHos2.exists__head_MapHos2s_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MapHos2 summary: 'Find a model instance by {{id}} from the data source.' operationId: MapHos2.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos2' deprecated: false put: tags: - MapHos2 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapHos2.replaceById__put_MapHos2s_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapHos2' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos2' deprecated: false delete: tags: - MapHos2 summary: 'Delete a model instance by {{id}} from the data source.' operationId: MapHos2.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MapHos2 summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MapHos2.prototype.patchAttributes parameters: - name: id in: path description: MapHos2 id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MapHos2' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos2' deprecated: false '/MapHos2s/{id}/replace': post: tags: - MapHos2 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapHos2.replaceById__post_MapHos2s_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapHos2' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos2' deprecated: false /MapHos2s/findOne: get: tags: - MapHos2 summary: Find first instance of the model matched by filter from the data source. operationId: MapHos2.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MapHos2' deprecated: false /MapHos2s/update: post: tags: - MapHos2 summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MapHos2.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MapHos2' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MapHos2s/count: get: tags: - MapHos2 summary: Count instances of the model matched by where from the data source. operationId: MapHos2.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /DashboardHospitalBaseInformations: post: tags: - DashboardHospitalBaseInformation summary: Create a new instance of the model and persist it into the data source. operationId: DashboardHospitalBaseInformation.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalBaseInformation' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBaseInformation' deprecated: false patch: tags: - DashboardHospitalBaseInformation summary: >- Patch an existing model instance or insert a new one into the data source. operationId: DashboardHospitalBaseInformation.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalBaseInformation' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBaseInformation' deprecated: false put: tags: - DashboardHospitalBaseInformation summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardHospitalBaseInformation.replaceOrCreate__put_DashboardHospitalBaseInformations parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalBaseInformation' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBaseInformation' deprecated: false get: tags: - DashboardHospitalBaseInformation summary: Find all instances of the model matched by filter from the data source. operationId: DashboardHospitalBaseInformation.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/DashboardHospitalBaseInformation' deprecated: false /DashboardHospitalBaseInformations/replaceOrCreate: post: tags: - DashboardHospitalBaseInformation summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- DashboardHospitalBaseInformation.replaceOrCreate__post_DashboardHospitalBaseInformations_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalBaseInformation' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBaseInformation' deprecated: false /DashboardHospitalBaseInformations/upsertWithWhere: post: tags: - DashboardHospitalBaseInformation summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: DashboardHospitalBaseInformation.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalBaseInformation' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBaseInformation' deprecated: false '/DashboardHospitalBaseInformations/{id}/exists': get: tags: - DashboardHospitalBaseInformation summary: Check whether a model instance exists in the data source. operationId: >- DashboardHospitalBaseInformation.exists__get_DashboardHospitalBaseInformations_{id}_exists parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/DashboardHospitalBaseInformations/{id}': head: tags: - DashboardHospitalBaseInformation summary: Check whether a model instance exists in the data source. operationId: >- DashboardHospitalBaseInformation.exists__head_DashboardHospitalBaseInformations_{id} parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - DashboardHospitalBaseInformation summary: 'Find a model instance by {{id}} from the data source.' operationId: DashboardHospitalBaseInformation.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBaseInformation' deprecated: false put: tags: - DashboardHospitalBaseInformation summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardHospitalBaseInformation.replaceById__put_DashboardHospitalBaseInformations_{id} parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalBaseInformation' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBaseInformation' deprecated: false delete: tags: - DashboardHospitalBaseInformation summary: 'Delete a model instance by {{id}} from the data source.' operationId: DashboardHospitalBaseInformation.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - DashboardHospitalBaseInformation summary: >- Patch attributes for a model instance and persist it into the data source. operationId: DashboardHospitalBaseInformation.prototype.patchAttributes parameters: - name: id in: path description: DashboardHospitalBaseInformation id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalBaseInformation' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBaseInformation' deprecated: false '/DashboardHospitalBaseInformations/{id}/replace': post: tags: - DashboardHospitalBaseInformation summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- DashboardHospitalBaseInformation.replaceById__post_DashboardHospitalBaseInformations_{id}_replace parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/DashboardHospitalBaseInformation' responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBaseInformation' deprecated: false /DashboardHospitalBaseInformations/findOne: get: tags: - DashboardHospitalBaseInformation summary: Find first instance of the model matched by filter from the data source. operationId: DashboardHospitalBaseInformation.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/DashboardHospitalBaseInformation' deprecated: false /DashboardHospitalBaseInformations/update: post: tags: - DashboardHospitalBaseInformation summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: DashboardHospitalBaseInformation.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/DashboardHospitalBaseInformation' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /DashboardHospitalBaseInformations/count: get: tags: - DashboardHospitalBaseInformation summary: Count instances of the model matched by where from the data source. operationId: DashboardHospitalBaseInformation.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false /MapCities: post: tags: - MapCity summary: Create a new instance of the model and persist it into the data source. operationId: MapCity.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapCity' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapCity' deprecated: false patch: tags: - MapCity summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MapCity.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapCity' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapCity' deprecated: false put: tags: - MapCity summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapCity.replaceOrCreate__put_MapCities parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapCity' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapCity' deprecated: false get: tags: - MapCity summary: Find all instances of the model matched by filter from the data source. operationId: MapCity.find parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: type: array items: $ref: '#/definitions/MapCity' deprecated: false /MapCities/replaceOrCreate: post: tags: - MapCity summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapCity.replaceOrCreate__post_MapCities_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapCity' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapCity' deprecated: false /MapCities/upsertWithWhere: post: tags: - MapCity summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MapCity.upsertWithWhere parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MapCity' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapCity' deprecated: false '/MapCities/{id}/exists': get: tags: - MapCity summary: Check whether a model instance exists in the data source. operationId: 'MapCity.exists__get_MapCities_{id}_exists' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false '/MapCities/{id}': head: tags: - MapCity summary: Check whether a model instance exists in the data source. operationId: 'MapCity.exists__head_MapCities_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: exists: type: boolean deprecated: false get: tags: - MapCity summary: 'Find a model instance by {{id}} from the data source.' operationId: MapCity.findById parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: filter in: query description: >- Filter defining fields and include - must be a JSON-encoded string ({"something":"value"}) required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MapCity' deprecated: false put: tags: - MapCity summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapCity.replaceById__put_MapCities_{id}' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapCity' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapCity' deprecated: false delete: tags: - MapCity summary: 'Delete a model instance by {{id}} from the data source.' operationId: MapCity.deleteById parameters: - name: id in: path description: Model id required: true type: string format: JSON responses: '200': description: Request was successful schema: type: object deprecated: false patch: tags: - MapCity summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MapCity.prototype.patchAttributes parameters: - name: id in: path description: MapCity id required: true type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MapCity' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapCity' deprecated: false '/MapCities/{id}/replace': post: tags: - MapCity summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapCity.replaceById__post_MapCities_{id}_replace' parameters: - name: id in: path description: Model id required: true type: string format: JSON - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapCity' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapCity' deprecated: false /MapCities/findOne: get: tags: - MapCity summary: Find first instance of the model matched by filter from the data source. operationId: MapCity.findOne parameters: - name: filter in: query description: >- Filter defining fields, where, include, order, offset, and limit - must be a JSON-encoded string (`{"where":{"something":"value"}}`). See https://loopback.io/doc/en/lb3/Querying-data.html#using-stringified-json-in-rest-queries for more details. required: false type: string format: JSON responses: '200': description: Request was successful schema: $ref: '#/definitions/MapCity' deprecated: false /MapCities/update: post: tags: - MapCity summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MapCity.updateAll parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON - name: data in: body description: An object of model property name/value pairs required: false schema: description: An object of model property name/value pairs $ref: '#/definitions/MapCity' responses: '200': description: Request was successful schema: description: Information related to the outcome of the operation type: object properties: count: description: The number of instances updated type: number format: double deprecated: false /MapCities/count: get: tags: - MapCity summary: Count instances of the model matched by where from the data source. operationId: MapCity.count parameters: - name: where in: query description: Criteria to match model instances required: false type: string format: JSON responses: '200': description: Request was successful schema: type: object properties: count: type: number format: double deprecated: false definitions: DashboardHospitalAwenCount: properties: dt: maxLength: 50 type: string awenRegisterCount: type: number format: double awenRegCount: type: number format: double awenBeautifyCount: type: number format: double awenRegCountTotal: type: number format: double awenBeautifyCountTotal: type: number format: double id: maxLength: 100 type: string additionalProperties: false x-any: properties: {} DashboardHospitalRecordHigh: properties: rpRegionId: maxLength: 100 type: string rpRegion: maxLength: 100 type: string rpAreaId: maxLength: 100 type: string rpArea: maxLength: 100 type: string clinicId: type: number format: double clinicName: maxLength: 100 type: string clinicShortname: maxLength: 100 type: string dt: maxLength: 100 type: string accrual: type: number format: double id: maxLength: 100 type: string additionalProperties: false DashboardHospitalBudget: properties: rpRegionId: maxLength: 100 type: string rpRegion: maxLength: 100 type: string rpAreaId: maxLength: 100 type: string rpArea: maxLength: 100 type: string clinicId: type: number format: double clinicName: maxLength: 100 type: string clinicShortname: maxLength: 100 type: string yearmonth: maxLength: 100 type: string flowKpi: type: number format: double regKpi: type: number format: double id: maxLength: 100 type: string additionalProperties: false DashboardHospitalStatistic: properties: rpRegionId: maxLength: 100 type: string rpRegion: maxLength: 100 type: string rpAreaId: maxLength: 100 type: string rpArea: maxLength: 100 type: string clinicId: type: number format: double clinicName: maxLength: 100 type: string clinicShortname: maxLength: 100 type: string dtype: maxLength: 100 type: string startDt: maxLength: 100 type: string endDt: maxLength: 100 type: string cashbasis: type: number format: double accrual: type: number format: double flowyiliao: type: number format: double flowsp: type: number format: double flowmeir: type: number format: double flowqt: type: number format: double regnum: type: number format: double spcnt: type: number format: double mrcnt: type: number format: double qtcnt: type: number format: double casenew: type: number format: double caseold: type: number format: double casereturn: type: number format: double numsourcemeituan: type: number format: double numsourcebaidu: type: number format: double numsourcefriend: type: number format: double numsourcenear: type: number format: double numsourcewx: type: number format: double numsourcehd: type: number format: double numsourcecz: type: number format: double numsourcefz: type: number format: double numsourceqz: type: number format: double numsourceqt: type: number format: double numsourcewz: type: number format: double id: maxLength: 100 type: string required: - id additionalProperties: false DashboardRvetCount: properties: id: type: number format: double name: maxLength: 100 type: string value: type: number format: double desc: maxLength: 65535 type: string type: maxLength: 20 type: string required: - id additionalProperties: false DashboardStatisticsActivity: properties: id: type: number format: double title: maxLength: 255 type: string introduce: maxLength: 4294967295 type: string img: maxLength: 65535 type: string required: - id additionalProperties: false DashboardStatisticsBenefit: properties: id: type: number format: double title: maxLength: 255 type: string introduce: maxLength: 4294967295 type: string img: maxLength: 65535 type: string required: - id additionalProperties: false DashboardStatisticsPropaganda: properties: id: type: number format: double name: maxLength: 50 type: string title: maxLength: 50 type: string post: maxLength: 255 type: string introduce: maxLength: 4294967295 type: string img: maxLength: 65535 type: string required: - id additionalProperties: false DashboardStatisticsCount: properties: id: type: number format: double name: maxLength: 50 type: string value: type: number format: double desc: maxLength: 100 type: string type: maxLength: 10 type: string required: - id additionalProperties: false DashboardStatisticsBenefitData: properties: id: type: number format: double benefitId: type: number format: double name: maxLength: 100 type: string value: type: number format: double desc: maxLength: 65535 type: string type: maxLength: 20 type: string required: - id additionalProperties: false DashboardUpetOrderCount: properties: countId: type: number format: double orderCount: type: number format: double orderMoneyCount: type: number format: double vrOrderCount: type: number format: double vrOrderMoneyCount: type: number format: double orderDate: type: string format: date-time sysTime: type: number format: double required: - countId additionalProperties: false Pie: properties: id: maxLength: 32 type: string name: maxLength: 100 type: string value: type: number format: double additionalProperties: false Revenue: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false Eachrevenue: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double required: - name additionalProperties: false Offlineteachers: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string vaule: type: number format: double required: - name additionalProperties: false Onlineteachers: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false Merchant: properties: id: maxLength: 36 type: string name: maxLength: 65535 type: string value: type: number format: double required: - value additionalProperties: false Budget: properties: id: maxLength: 36 type: string name: maxLength: 100 type: string value: type: number format: double additionalProperties: false MainMerchant: properties: id: maxLength: 36 type: string name: maxLength: 65535 type: string value: type: number format: double required: - value additionalProperties: false MainEachrevenue: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double required: - name additionalProperties: false MainEachyear: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double additionalProperties: false MainHospitalnum: properties: id: maxLength: 36 type: string name: maxLength: 100 type: string value: type: number format: double additionalProperties: false MainRealityrevenue: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double required: - name additionalProperties: false MainOnlineteachers: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MainTotal: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double required: - name additionalProperties: false MainTotalbudget: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false MainTotalcase: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MainTotalgoods: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MainTotalgoodsnum: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name - value additionalProperties: false MainTotalhosrevenue: properties: id: maxLength: 36 type: string name: maxLength: 6 type: string value: type: number format: double required: - name additionalProperties: false MianBilltotalrevenue: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MainVocation: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double required: - name additionalProperties: false MainTotalteacher: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MainTotalstudent: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MainRevenuetopeight: properties: id: maxLength: 36 type: string name: maxLength: 200 type: string value: type: number format: double additionalProperties: false MainVrorder: properties: id: maxLength: 36 type: string value: type: number format: double additionalProperties: false MainVrrevenue: properties: id: maxLength: 36 type: string value: type: number format: double additionalProperties: false Main: properties: id: maxLength: 36 type: string rpRegion: maxLength: 65535 type: string rpArea: maxLength: 65535 type: string clinicShortname: maxLength: 65535 type: string accrual: type: number format: double additionalProperties: false InterVrorder: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false InterEntityorder: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MainEachmonth: properties: id: maxLength: 36 type: string name: maxLength: 2 type: string value: type: number format: double required: - value additionalProperties: false HosEachareabudget: properties: id: maxLength: 36 type: string name: maxLength: 100 type: string value: type: number format: double additionalProperties: false HosEachareacase: properties: id: maxLength: 36 type: string name: maxLength: 100 type: string value: type: number format: double additionalProperties: false HosEacharearevenue: properties: id: maxLength: 36 type: string name: maxLength: 100 type: string value: type: number format: double additionalProperties: false HosEachrevenue: properties: id: maxLength: 36 type: string value: type: number format: double additionalProperties: false HosEachareahospitals: properties: id: maxLength: 36 type: string value: type: number format: double required: - value additionalProperties: false HosClientsource: properties: id: maxLength: 36 type: string value: type: number format: double additionalProperties: false HosEachhospital: properties: id: maxLength: 36 type: string city: maxLength: 100 type: string hospital: maxLength: 100 type: string flowmeir: maxLength: 18 type: string flowyiliao: maxLength: 18 type: string flowsp: maxLength: 18 type: string additionalProperties: false InterMarket: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string order: type: number format: double money: type: number format: double additionalProperties: false InterClassify: properties: id: maxLength: 36 type: string name: maxLength: 30 type: string value: type: number format: double additionalProperties: false InterPersonas: properties: id: maxLength: 36 type: string name: maxLength: 1 type: string value: type: number format: double required: - name additionalProperties: false InterRegion: properties: id: maxLength: 36 type: string name: maxLength: 50 type: string value: type: number format: double additionalProperties: false BillCompanyorder: properties: id: maxLength: 36 type: string name: maxLength: 200 type: string value: type: number format: double additionalProperties: false BillCompanyrevenue: properties: id: maxLength: 36 type: string name: maxLength: 200 type: string value: type: number format: double additionalProperties: false MainRevenuemonth: properties: id: maxLength: 36 type: string name: maxLength: 100 type: string value: type: number format: double required: - value additionalProperties: false MainTraderevenue: properties: id: maxLength: 36 type: string name: maxLength: 200 type: string value: type: number format: double additionalProperties: false InterFanspublic: properties: id: maxLength: 36 type: string name: maxLength: 6 type: string value: type: number format: double required: - name additionalProperties: false BillOrdertoday: properties: id: maxLength: 36 type: string name: maxLength: 6 type: string value: type: number format: double required: - name - value additionalProperties: false MapHos: properties: id: maxLength: 36 type: string name: maxLength: 100 type: string value: maxLength: 50 type: string additionalProperties: false MainRevenuehigh: properties: id: maxLength: 36 type: string name: maxLength: 100 type: string value: type: number format: double additionalProperties: false MainBilltotalrevenue: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double required: - name additionalProperties: false MainCountbill: properties: id: maxLength: 36 type: string name: maxLength: 6 type: string value: type: number format: double required: - name - value additionalProperties: false MainBillbrandnum: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double required: - name additionalProperties: false MainGoldteachers: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double required: - name - value additionalProperties: false MainForteachers: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MianPetdoco: properties: id: maxLength: 36 type: string name: maxLength: 6 type: string value: type: number format: double required: - name additionalProperties: false MainPetdoc: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MainExpre: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MainDay: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false MainTotalhosnum: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name - value additionalProperties: false MainTotalrevenue: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MainCosmetology: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double required: - name additionalProperties: false MainRegister: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double required: - name additionalProperties: false HosLastyearbudget: properties: id: maxLength: 36 type: string name: maxLength: 6 type: string value: type: number format: double required: - name additionalProperties: false HosLastyearregum: properties: id: maxLength: 36 type: string name: maxLength: 7 type: string value: type: number format: double required: - name additionalProperties: false HosThisyearregum: properties: id: maxLength: 36 type: string name: maxLength: 7 type: string value: type: number format: double required: - name additionalProperties: false HosThisyearbudget: properties: id: maxLength: 36 type: string name: maxLength: 6 type: string value: type: number format: double required: - name additionalProperties: false EducCourse4: properties: id: maxLength: 36 type: string name: maxLength: 13 type: string value: type: number format: double required: - name additionalProperties: false EducBrowse1: properties: id: maxLength: 36 type: string name: maxLength: 13 type: string value: type: number format: double required: - name additionalProperties: false MainBillbrand: properties: id: maxLength: 36 type: string name: maxLength: 200 type: string value: type: number format: double required: - value additionalProperties: false MainCompanyarea: properties: id: maxLength: 36 type: string name: maxLength: 255 type: string value: maxLength: 255 type: string required: - value additionalProperties: false MainAorders: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string vlaue: type: number format: double required: - name additionalProperties: false MainEntityorder: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MainEntityrevenue: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MainTotalorder: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false MainSum: properties: id: maxLength: 36 type: string name: maxLength: 255 type: string value: maxLength: 255 type: string required: - value additionalProperties: false MapHos2: properties: id: maxLength: 36 type: string name: maxLength: 100 type: string value: maxLength: 50 type: string additionalProperties: false DashboardHospitalBaseInformation: properties: id: maxLength: 100 type: string rpBrandId: type: number format: double rpBrand: maxLength: 100 type: string rpRegionid: maxLength: 100 type: string rpRegion: maxLength: 100 type: string rpAreaid: maxLength: 100 type: string rpArea: maxLength: 100 type: string brandCode: maxLength: 100 type: string clinicId: maxLength: 100 type: string clinicName: maxLength: 100 type: string clinicShortname: maxLength: 100 type: string lng: type: number format: double lat: type: number format: double address: maxLength: 200 type: string deanNumber: maxLength: 100 type: string required: - id additionalProperties: false MapCity: properties: id: maxLength: 36 type: string city: maxLength: 100 type: string name: maxLength: 100 type: string value: maxLength: 45 type: string additionalProperties: false basePath: /api/ruipeng swagger: '2.0' info: x-ibm-name: ruipengloopbackapi version: 1.0.0 title: RuiPengLoopbackApi schemes: - https host: $(catalog.host) consumes: - application/json produces: - application/json securityDefinitions: clientIdHeader: type: apiKey in: header name: X-IBM-Client-Id clientSecretHeader: in: header name: X-IBM-Client-Secret type: apiKey security: - clientIdHeader: [] clientSecretHeader: [] x-ibm-configuration: testable: true enforced: true cors: enabled: true catalogs: apic-dev: properties: runtime-url: $(TARGET_URL) sb: properties: runtime-url: 'http://localhost:4001' assembly: execute: - invoke: target-url: $(runtime-url)$(request.path)$(request.search)