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 /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 /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 /MapShanghais: post: tags: - MapShanghai summary: Create a new instance of the model and persist it into the data source. operationId: MapShanghai.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapShanghai' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShanghai' deprecated: false patch: tags: - MapShanghai summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MapShanghai.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapShanghai' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShanghai' deprecated: false put: tags: - MapShanghai summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapShanghai.replaceOrCreate__put_MapShanghais parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapShanghai' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShanghai' deprecated: false get: tags: - MapShanghai summary: Find all instances of the model matched by filter from the data source. operationId: MapShanghai.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/MapShanghai' deprecated: false /MapShanghais/replaceOrCreate: post: tags: - MapShanghai summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapShanghai.replaceOrCreate__post_MapShanghais_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapShanghai' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShanghai' deprecated: false /MapShanghais/upsertWithWhere: post: tags: - MapShanghai summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MapShanghai.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/MapShanghai' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShanghai' deprecated: false '/MapShanghais/{id}/exists': get: tags: - MapShanghai summary: Check whether a model instance exists in the data source. operationId: 'MapShanghai.exists__get_MapShanghais_{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 '/MapShanghais/{id}': head: tags: - MapShanghai summary: Check whether a model instance exists in the data source. operationId: 'MapShanghai.exists__head_MapShanghais_{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: - MapShanghai summary: 'Find a model instance by {{id}} from the data source.' operationId: MapShanghai.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/MapShanghai' deprecated: false put: tags: - MapShanghai summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapShanghai.replaceById__put_MapShanghais_{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/MapShanghai' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShanghai' deprecated: false delete: tags: - MapShanghai summary: 'Delete a model instance by {{id}} from the data source.' operationId: MapShanghai.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: - MapShanghai summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MapShanghai.prototype.patchAttributes parameters: - name: id in: path description: MapShanghai 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/MapShanghai' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShanghai' deprecated: false '/MapShanghais/{id}/replace': post: tags: - MapShanghai summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapShanghai.replaceById__post_MapShanghais_{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/MapShanghai' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShanghai' deprecated: false /MapShanghais/findOne: get: tags: - MapShanghai summary: Find first instance of the model matched by filter from the data source. operationId: MapShanghai.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/MapShanghai' deprecated: false /MapShanghais/update: post: tags: - MapShanghai summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MapShanghai.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/MapShanghai' 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 /MapShanghais/count: get: tags: - MapShanghai summary: Count instances of the model matched by where from the data source. operationId: MapShanghai.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 /MapChengdus: post: tags: - MapChengdu summary: Create a new instance of the model and persist it into the data source. operationId: MapChengdu.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapChengdu' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapChengdu' deprecated: false patch: tags: - MapChengdu summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MapChengdu.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapChengdu' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapChengdu' deprecated: false put: tags: - MapChengdu summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapChengdu.replaceOrCreate__put_MapChengdus parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapChengdu' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapChengdu' deprecated: false get: tags: - MapChengdu summary: Find all instances of the model matched by filter from the data source. operationId: MapChengdu.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/MapChengdu' deprecated: false /MapChengdus/replaceOrCreate: post: tags: - MapChengdu summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapChengdu.replaceOrCreate__post_MapChengdus_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapChengdu' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapChengdu' deprecated: false /MapChengdus/upsertWithWhere: post: tags: - MapChengdu summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MapChengdu.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/MapChengdu' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapChengdu' deprecated: false '/MapChengdus/{id}/exists': get: tags: - MapChengdu summary: Check whether a model instance exists in the data source. operationId: 'MapChengdu.exists__get_MapChengdus_{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 '/MapChengdus/{id}': head: tags: - MapChengdu summary: Check whether a model instance exists in the data source. operationId: 'MapChengdu.exists__head_MapChengdus_{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: - MapChengdu summary: 'Find a model instance by {{id}} from the data source.' operationId: MapChengdu.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/MapChengdu' deprecated: false put: tags: - MapChengdu summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapChengdu.replaceById__put_MapChengdus_{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/MapChengdu' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapChengdu' deprecated: false delete: tags: - MapChengdu summary: 'Delete a model instance by {{id}} from the data source.' operationId: MapChengdu.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: - MapChengdu summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MapChengdu.prototype.patchAttributes parameters: - name: id in: path description: MapChengdu 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/MapChengdu' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapChengdu' deprecated: false '/MapChengdus/{id}/replace': post: tags: - MapChengdu summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapChengdu.replaceById__post_MapChengdus_{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/MapChengdu' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapChengdu' deprecated: false /MapChengdus/findOne: get: tags: - MapChengdu summary: Find first instance of the model matched by filter from the data source. operationId: MapChengdu.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/MapChengdu' deprecated: false /MapChengdus/update: post: tags: - MapChengdu summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MapChengdu.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/MapChengdu' 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 /MapChengdus/count: get: tags: - MapChengdu summary: Count instances of the model matched by where from the data source. operationId: MapChengdu.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 /MapGuangzhous: post: tags: - MapGuangzhou summary: Create a new instance of the model and persist it into the data source. operationId: MapGuangzhou.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapGuangzhou' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapGuangzhou' deprecated: false patch: tags: - MapGuangzhou summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MapGuangzhou.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapGuangzhou' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapGuangzhou' deprecated: false put: tags: - MapGuangzhou summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapGuangzhou.replaceOrCreate__put_MapGuangzhous parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapGuangzhou' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapGuangzhou' deprecated: false get: tags: - MapGuangzhou summary: Find all instances of the model matched by filter from the data source. operationId: MapGuangzhou.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/MapGuangzhou' deprecated: false /MapGuangzhous/replaceOrCreate: post: tags: - MapGuangzhou summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapGuangzhou.replaceOrCreate__post_MapGuangzhous_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapGuangzhou' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapGuangzhou' deprecated: false /MapGuangzhous/upsertWithWhere: post: tags: - MapGuangzhou summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MapGuangzhou.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/MapGuangzhou' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapGuangzhou' deprecated: false '/MapGuangzhous/{id}/exists': get: tags: - MapGuangzhou summary: Check whether a model instance exists in the data source. operationId: 'MapGuangzhou.exists__get_MapGuangzhous_{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 '/MapGuangzhous/{id}': head: tags: - MapGuangzhou summary: Check whether a model instance exists in the data source. operationId: 'MapGuangzhou.exists__head_MapGuangzhous_{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: - MapGuangzhou summary: 'Find a model instance by {{id}} from the data source.' operationId: MapGuangzhou.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/MapGuangzhou' deprecated: false put: tags: - MapGuangzhou summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapGuangzhou.replaceById__put_MapGuangzhous_{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/MapGuangzhou' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapGuangzhou' deprecated: false delete: tags: - MapGuangzhou summary: 'Delete a model instance by {{id}} from the data source.' operationId: MapGuangzhou.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: - MapGuangzhou summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MapGuangzhou.prototype.patchAttributes parameters: - name: id in: path description: MapGuangzhou 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/MapGuangzhou' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapGuangzhou' deprecated: false '/MapGuangzhous/{id}/replace': post: tags: - MapGuangzhou summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapGuangzhou.replaceById__post_MapGuangzhous_{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/MapGuangzhou' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapGuangzhou' deprecated: false /MapGuangzhous/findOne: get: tags: - MapGuangzhou summary: Find first instance of the model matched by filter from the data source. operationId: MapGuangzhou.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/MapGuangzhou' deprecated: false /MapGuangzhous/update: post: tags: - MapGuangzhou summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MapGuangzhou.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/MapGuangzhou' 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 /MapGuangzhous/count: get: tags: - MapGuangzhou summary: Count instances of the model matched by where from the data source. operationId: MapGuangzhou.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 /MapBeijings: post: tags: - MapBeijing summary: Create a new instance of the model and persist it into the data source. operationId: MapBeijing.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapBeijing' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapBeijing' deprecated: false patch: tags: - MapBeijing summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MapBeijing.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapBeijing' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapBeijing' deprecated: false put: tags: - MapBeijing summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapBeijing.replaceOrCreate__put_MapBeijings parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapBeijing' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapBeijing' deprecated: false get: tags: - MapBeijing summary: Find all instances of the model matched by filter from the data source. operationId: MapBeijing.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/MapBeijing' deprecated: false /MapBeijings/replaceOrCreate: post: tags: - MapBeijing summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapBeijing.replaceOrCreate__post_MapBeijings_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapBeijing' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapBeijing' deprecated: false /MapBeijings/upsertWithWhere: post: tags: - MapBeijing summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MapBeijing.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/MapBeijing' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapBeijing' deprecated: false '/MapBeijings/{id}/exists': get: tags: - MapBeijing summary: Check whether a model instance exists in the data source. operationId: 'MapBeijing.exists__get_MapBeijings_{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 '/MapBeijings/{id}': head: tags: - MapBeijing summary: Check whether a model instance exists in the data source. operationId: 'MapBeijing.exists__head_MapBeijings_{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: - MapBeijing summary: 'Find a model instance by {{id}} from the data source.' operationId: MapBeijing.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/MapBeijing' deprecated: false put: tags: - MapBeijing summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapBeijing.replaceById__put_MapBeijings_{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/MapBeijing' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapBeijing' deprecated: false delete: tags: - MapBeijing summary: 'Delete a model instance by {{id}} from the data source.' operationId: MapBeijing.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: - MapBeijing summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MapBeijing.prototype.patchAttributes parameters: - name: id in: path description: MapBeijing 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/MapBeijing' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapBeijing' deprecated: false '/MapBeijings/{id}/replace': post: tags: - MapBeijing summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapBeijing.replaceById__post_MapBeijings_{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/MapBeijing' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapBeijing' deprecated: false /MapBeijings/findOne: get: tags: - MapBeijing summary: Find first instance of the model matched by filter from the data source. operationId: MapBeijing.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/MapBeijing' deprecated: false /MapBeijings/update: post: tags: - MapBeijing summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MapBeijing.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/MapBeijing' 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 /MapBeijings/count: get: tags: - MapBeijing summary: Count instances of the model matched by where from the data source. operationId: MapBeijing.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 /MapShenzhens: post: tags: - MapShenzhen summary: Create a new instance of the model and persist it into the data source. operationId: MapShenzhen.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapShenzhen' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShenzhen' deprecated: false patch: tags: - MapShenzhen summary: >- Patch an existing model instance or insert a new one into the data source. operationId: MapShenzhen.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapShenzhen' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShenzhen' deprecated: false put: tags: - MapShenzhen summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapShenzhen.replaceOrCreate__put_MapShenzhens parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapShenzhen' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShenzhen' deprecated: false get: tags: - MapShenzhen summary: Find all instances of the model matched by filter from the data source. operationId: MapShenzhen.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/MapShenzhen' deprecated: false /MapShenzhens/replaceOrCreate: post: tags: - MapShenzhen summary: >- Replace an existing model instance or insert a new one into the data source. operationId: MapShenzhen.replaceOrCreate__post_MapShenzhens_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/MapShenzhen' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShenzhen' deprecated: false /MapShenzhens/upsertWithWhere: post: tags: - MapShenzhen summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: MapShenzhen.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/MapShenzhen' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShenzhen' deprecated: false '/MapShenzhens/{id}/exists': get: tags: - MapShenzhen summary: Check whether a model instance exists in the data source. operationId: 'MapShenzhen.exists__get_MapShenzhens_{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 '/MapShenzhens/{id}': head: tags: - MapShenzhen summary: Check whether a model instance exists in the data source. operationId: 'MapShenzhen.exists__head_MapShenzhens_{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: - MapShenzhen summary: 'Find a model instance by {{id}} from the data source.' operationId: MapShenzhen.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/MapShenzhen' deprecated: false put: tags: - MapShenzhen summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapShenzhen.replaceById__put_MapShenzhens_{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/MapShenzhen' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShenzhen' deprecated: false delete: tags: - MapShenzhen summary: 'Delete a model instance by {{id}} from the data source.' operationId: MapShenzhen.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: - MapShenzhen summary: >- Patch attributes for a model instance and persist it into the data source. operationId: MapShenzhen.prototype.patchAttributes parameters: - name: id in: path description: MapShenzhen 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/MapShenzhen' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShenzhen' deprecated: false '/MapShenzhens/{id}/replace': post: tags: - MapShenzhen summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'MapShenzhen.replaceById__post_MapShenzhens_{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/MapShenzhen' responses: '200': description: Request was successful schema: $ref: '#/definitions/MapShenzhen' deprecated: false /MapShenzhens/findOne: get: tags: - MapShenzhen summary: Find first instance of the model matched by filter from the data source. operationId: MapShenzhen.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/MapShenzhen' deprecated: false /MapShenzhens/update: post: tags: - MapShenzhen summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: MapShenzhen.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/MapShenzhen' 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 /MapShenzhens/count: get: tags: - MapShenzhen summary: Count instances of the model matched by where from the data source. operationId: MapShenzhen.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 /RuipengTests: post: tags: - RuipengTest summary: Create a new instance of the model and persist it into the data source. operationId: RuipengTest.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/RuipengTest' responses: '200': description: Request was successful schema: $ref: '#/definitions/RuipengTest' deprecated: false patch: tags: - RuipengTest summary: >- Patch an existing model instance or insert a new one into the data source. operationId: RuipengTest.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/RuipengTest' responses: '200': description: Request was successful schema: $ref: '#/definitions/RuipengTest' deprecated: false put: tags: - RuipengTest summary: >- Replace an existing model instance or insert a new one into the data source. operationId: RuipengTest.replaceOrCreate__put_RuipengTests parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/RuipengTest' responses: '200': description: Request was successful schema: $ref: '#/definitions/RuipengTest' deprecated: false get: tags: - RuipengTest summary: Find all instances of the model matched by filter from the data source. operationId: RuipengTest.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/RuipengTest' deprecated: false /RuipengTests/replaceOrCreate: post: tags: - RuipengTest summary: >- Replace an existing model instance or insert a new one into the data source. operationId: RuipengTest.replaceOrCreate__post_RuipengTests_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/RuipengTest' responses: '200': description: Request was successful schema: $ref: '#/definitions/RuipengTest' deprecated: false /RuipengTests/upsertWithWhere: post: tags: - RuipengTest summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: RuipengTest.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/RuipengTest' responses: '200': description: Request was successful schema: $ref: '#/definitions/RuipengTest' deprecated: false '/RuipengTests/{id}/exists': get: tags: - RuipengTest summary: Check whether a model instance exists in the data source. operationId: 'RuipengTest.exists__get_RuipengTests_{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 '/RuipengTests/{id}': head: tags: - RuipengTest summary: Check whether a model instance exists in the data source. operationId: 'RuipengTest.exists__head_RuipengTests_{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: - RuipengTest summary: 'Find a model instance by {{id}} from the data source.' operationId: RuipengTest.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/RuipengTest' deprecated: false put: tags: - RuipengTest summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'RuipengTest.replaceById__put_RuipengTests_{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/RuipengTest' responses: '200': description: Request was successful schema: $ref: '#/definitions/RuipengTest' deprecated: false delete: tags: - RuipengTest summary: 'Delete a model instance by {{id}} from the data source.' operationId: RuipengTest.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: - RuipengTest summary: >- Patch attributes for a model instance and persist it into the data source. operationId: RuipengTest.prototype.patchAttributes parameters: - name: id in: path description: RuipengTest 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/RuipengTest' responses: '200': description: Request was successful schema: $ref: '#/definitions/RuipengTest' deprecated: false '/RuipengTests/{id}/replace': post: tags: - RuipengTest summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'RuipengTest.replaceById__post_RuipengTests_{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/RuipengTest' responses: '200': description: Request was successful schema: $ref: '#/definitions/RuipengTest' deprecated: false /RuipengTests/findOne: get: tags: - RuipengTest summary: Find first instance of the model matched by filter from the data source. operationId: RuipengTest.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/RuipengTest' deprecated: false /RuipengTests/update: post: tags: - RuipengTest summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: RuipengTest.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/RuipengTest' 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 /RuipengTests/count: get: tags: - RuipengTest summary: Count instances of the model matched by where from the data source. operationId: RuipengTest.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 /EducBrowse2s: post: tags: - EducBrowse2 summary: Create a new instance of the model and persist it into the data source. operationId: EducBrowse2.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducBrowse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse2' deprecated: false patch: tags: - EducBrowse2 summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducBrowse2.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducBrowse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse2' deprecated: false put: tags: - EducBrowse2 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducBrowse2.replaceOrCreate__put_EducBrowse2s parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducBrowse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse2' deprecated: false get: tags: - EducBrowse2 summary: Find all instances of the model matched by filter from the data source. operationId: EducBrowse2.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/EducBrowse2' deprecated: false /EducBrowse2s/replaceOrCreate: post: tags: - EducBrowse2 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducBrowse2.replaceOrCreate__post_EducBrowse2s_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducBrowse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse2' deprecated: false /EducBrowse2s/upsertWithWhere: post: tags: - EducBrowse2 summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducBrowse2.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/EducBrowse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse2' deprecated: false '/EducBrowse2s/{id}/exists': get: tags: - EducBrowse2 summary: Check whether a model instance exists in the data source. operationId: 'EducBrowse2.exists__get_EducBrowse2s_{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 '/EducBrowse2s/{id}': head: tags: - EducBrowse2 summary: Check whether a model instance exists in the data source. operationId: 'EducBrowse2.exists__head_EducBrowse2s_{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: - EducBrowse2 summary: 'Find a model instance by {{id}} from the data source.' operationId: EducBrowse2.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/EducBrowse2' deprecated: false put: tags: - EducBrowse2 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducBrowse2.replaceById__put_EducBrowse2s_{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/EducBrowse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse2' deprecated: false delete: tags: - EducBrowse2 summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducBrowse2.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: - EducBrowse2 summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducBrowse2.prototype.patchAttributes parameters: - name: id in: path description: EducBrowse2 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/EducBrowse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse2' deprecated: false '/EducBrowse2s/{id}/replace': post: tags: - EducBrowse2 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducBrowse2.replaceById__post_EducBrowse2s_{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/EducBrowse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducBrowse2' deprecated: false /EducBrowse2s/findOne: get: tags: - EducBrowse2 summary: Find first instance of the model matched by filter from the data source. operationId: EducBrowse2.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/EducBrowse2' deprecated: false /EducBrowse2s/update: post: tags: - EducBrowse2 summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducBrowse2.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/EducBrowse2' 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 /EducBrowse2s/count: get: tags: - EducBrowse2 summary: Count instances of the model matched by where from the data source. operationId: EducBrowse2.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 /EducStudent1s: post: tags: - EducStudent1 summary: Create a new instance of the model and persist it into the data source. operationId: EducStudent1.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducStudent1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent1' deprecated: false patch: tags: - EducStudent1 summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducStudent1.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducStudent1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent1' deprecated: false put: tags: - EducStudent1 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducStudent1.replaceOrCreate__put_EducStudent1s parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducStudent1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent1' deprecated: false get: tags: - EducStudent1 summary: Find all instances of the model matched by filter from the data source. operationId: EducStudent1.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/EducStudent1' deprecated: false /EducStudent1s/replaceOrCreate: post: tags: - EducStudent1 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducStudent1.replaceOrCreate__post_EducStudent1s_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducStudent1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent1' deprecated: false /EducStudent1s/upsertWithWhere: post: tags: - EducStudent1 summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducStudent1.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/EducStudent1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent1' deprecated: false '/EducStudent1s/{id}/exists': get: tags: - EducStudent1 summary: Check whether a model instance exists in the data source. operationId: 'EducStudent1.exists__get_EducStudent1s_{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 '/EducStudent1s/{id}': head: tags: - EducStudent1 summary: Check whether a model instance exists in the data source. operationId: 'EducStudent1.exists__head_EducStudent1s_{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: - EducStudent1 summary: 'Find a model instance by {{id}} from the data source.' operationId: EducStudent1.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/EducStudent1' deprecated: false put: tags: - EducStudent1 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducStudent1.replaceById__put_EducStudent1s_{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/EducStudent1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent1' deprecated: false delete: tags: - EducStudent1 summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducStudent1.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: - EducStudent1 summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducStudent1.prototype.patchAttributes parameters: - name: id in: path description: EducStudent1 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/EducStudent1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent1' deprecated: false '/EducStudent1s/{id}/replace': post: tags: - EducStudent1 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducStudent1.replaceById__post_EducStudent1s_{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/EducStudent1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent1' deprecated: false /EducStudent1s/findOne: get: tags: - EducStudent1 summary: Find first instance of the model matched by filter from the data source. operationId: EducStudent1.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/EducStudent1' deprecated: false /EducStudent1s/update: post: tags: - EducStudent1 summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducStudent1.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/EducStudent1' 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 /EducStudent1s/count: get: tags: - EducStudent1 summary: Count instances of the model matched by where from the data source. operationId: EducStudent1.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 /EducStudent2s: post: tags: - EducStudent2 summary: Create a new instance of the model and persist it into the data source. operationId: EducStudent2.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducStudent2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent2' deprecated: false patch: tags: - EducStudent2 summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducStudent2.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducStudent2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent2' deprecated: false put: tags: - EducStudent2 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducStudent2.replaceOrCreate__put_EducStudent2s parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducStudent2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent2' deprecated: false get: tags: - EducStudent2 summary: Find all instances of the model matched by filter from the data source. operationId: EducStudent2.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/EducStudent2' deprecated: false /EducStudent2s/replaceOrCreate: post: tags: - EducStudent2 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducStudent2.replaceOrCreate__post_EducStudent2s_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducStudent2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent2' deprecated: false /EducStudent2s/upsertWithWhere: post: tags: - EducStudent2 summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducStudent2.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/EducStudent2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent2' deprecated: false '/EducStudent2s/{id}/exists': get: tags: - EducStudent2 summary: Check whether a model instance exists in the data source. operationId: 'EducStudent2.exists__get_EducStudent2s_{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 '/EducStudent2s/{id}': head: tags: - EducStudent2 summary: Check whether a model instance exists in the data source. operationId: 'EducStudent2.exists__head_EducStudent2s_{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: - EducStudent2 summary: 'Find a model instance by {{id}} from the data source.' operationId: EducStudent2.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/EducStudent2' deprecated: false put: tags: - EducStudent2 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducStudent2.replaceById__put_EducStudent2s_{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/EducStudent2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent2' deprecated: false delete: tags: - EducStudent2 summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducStudent2.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: - EducStudent2 summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducStudent2.prototype.patchAttributes parameters: - name: id in: path description: EducStudent2 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/EducStudent2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent2' deprecated: false '/EducStudent2s/{id}/replace': post: tags: - EducStudent2 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducStudent2.replaceById__post_EducStudent2s_{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/EducStudent2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducStudent2' deprecated: false /EducStudent2s/findOne: get: tags: - EducStudent2 summary: Find first instance of the model matched by filter from the data source. operationId: EducStudent2.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/EducStudent2' deprecated: false /EducStudent2s/update: post: tags: - EducStudent2 summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducStudent2.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/EducStudent2' 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 /EducStudent2s/count: get: tags: - EducStudent2 summary: Count instances of the model matched by where from the data source. operationId: EducStudent2.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 /EducCourse1s: post: tags: - EducCourse1 summary: Create a new instance of the model and persist it into the data source. operationId: EducCourse1.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse1' deprecated: false patch: tags: - EducCourse1 summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducCourse1.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse1' deprecated: false put: tags: - EducCourse1 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducCourse1.replaceOrCreate__put_EducCourse1s parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse1' deprecated: false get: tags: - EducCourse1 summary: Find all instances of the model matched by filter from the data source. operationId: EducCourse1.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/EducCourse1' deprecated: false /EducCourse1s/replaceOrCreate: post: tags: - EducCourse1 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducCourse1.replaceOrCreate__post_EducCourse1s_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse1' deprecated: false /EducCourse1s/upsertWithWhere: post: tags: - EducCourse1 summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducCourse1.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/EducCourse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse1' deprecated: false '/EducCourse1s/{id}/exists': get: tags: - EducCourse1 summary: Check whether a model instance exists in the data source. operationId: 'EducCourse1.exists__get_EducCourse1s_{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 '/EducCourse1s/{id}': head: tags: - EducCourse1 summary: Check whether a model instance exists in the data source. operationId: 'EducCourse1.exists__head_EducCourse1s_{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: - EducCourse1 summary: 'Find a model instance by {{id}} from the data source.' operationId: EducCourse1.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/EducCourse1' deprecated: false put: tags: - EducCourse1 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducCourse1.replaceById__put_EducCourse1s_{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/EducCourse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse1' deprecated: false delete: tags: - EducCourse1 summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducCourse1.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: - EducCourse1 summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducCourse1.prototype.patchAttributes parameters: - name: id in: path description: EducCourse1 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/EducCourse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse1' deprecated: false '/EducCourse1s/{id}/replace': post: tags: - EducCourse1 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducCourse1.replaceById__post_EducCourse1s_{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/EducCourse1' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse1' deprecated: false /EducCourse1s/findOne: get: tags: - EducCourse1 summary: Find first instance of the model matched by filter from the data source. operationId: EducCourse1.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/EducCourse1' deprecated: false /EducCourse1s/update: post: tags: - EducCourse1 summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducCourse1.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/EducCourse1' 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 /EducCourse1s/count: get: tags: - EducCourse1 summary: Count instances of the model matched by where from the data source. operationId: EducCourse1.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 /EducCourse2s: post: tags: - EducCourse2 summary: Create a new instance of the model and persist it into the data source. operationId: EducCourse2.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse2' deprecated: false patch: tags: - EducCourse2 summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducCourse2.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse2' deprecated: false put: tags: - EducCourse2 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducCourse2.replaceOrCreate__put_EducCourse2s parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse2' deprecated: false get: tags: - EducCourse2 summary: Find all instances of the model matched by filter from the data source. operationId: EducCourse2.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/EducCourse2' deprecated: false /EducCourse2s/replaceOrCreate: post: tags: - EducCourse2 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducCourse2.replaceOrCreate__post_EducCourse2s_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse2' deprecated: false /EducCourse2s/upsertWithWhere: post: tags: - EducCourse2 summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducCourse2.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/EducCourse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse2' deprecated: false '/EducCourse2s/{id}/exists': get: tags: - EducCourse2 summary: Check whether a model instance exists in the data source. operationId: 'EducCourse2.exists__get_EducCourse2s_{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 '/EducCourse2s/{id}': head: tags: - EducCourse2 summary: Check whether a model instance exists in the data source. operationId: 'EducCourse2.exists__head_EducCourse2s_{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: - EducCourse2 summary: 'Find a model instance by {{id}} from the data source.' operationId: EducCourse2.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/EducCourse2' deprecated: false put: tags: - EducCourse2 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducCourse2.replaceById__put_EducCourse2s_{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/EducCourse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse2' deprecated: false delete: tags: - EducCourse2 summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducCourse2.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: - EducCourse2 summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducCourse2.prototype.patchAttributes parameters: - name: id in: path description: EducCourse2 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/EducCourse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse2' deprecated: false '/EducCourse2s/{id}/replace': post: tags: - EducCourse2 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducCourse2.replaceById__post_EducCourse2s_{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/EducCourse2' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse2' deprecated: false /EducCourse2s/findOne: get: tags: - EducCourse2 summary: Find first instance of the model matched by filter from the data source. operationId: EducCourse2.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/EducCourse2' deprecated: false /EducCourse2s/update: post: tags: - EducCourse2 summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducCourse2.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/EducCourse2' 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 /EducCourse2s/count: get: tags: - EducCourse2 summary: Count instances of the model matched by where from the data source. operationId: EducCourse2.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 /EducTeachers: post: tags: - EducTeachers summary: Create a new instance of the model and persist it into the data source. operationId: EducTeachers.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducTeachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducTeachers' deprecated: false patch: tags: - EducTeachers summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducTeachers.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducTeachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducTeachers' deprecated: false put: tags: - EducTeachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducTeachers.replaceOrCreate__put_EducTeachers parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducTeachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducTeachers' deprecated: false get: tags: - EducTeachers summary: Find all instances of the model matched by filter from the data source. operationId: EducTeachers.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/EducTeachers' deprecated: false /EducTeachers/replaceOrCreate: post: tags: - EducTeachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducTeachers.replaceOrCreate__post_EducTeachers_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducTeachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducTeachers' deprecated: false /EducTeachers/upsertWithWhere: post: tags: - EducTeachers summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducTeachers.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/EducTeachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducTeachers' deprecated: false '/EducTeachers/{id}/exists': get: tags: - EducTeachers summary: Check whether a model instance exists in the data source. operationId: 'EducTeachers.exists__get_EducTeachers_{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 '/EducTeachers/{id}': head: tags: - EducTeachers summary: Check whether a model instance exists in the data source. operationId: 'EducTeachers.exists__head_EducTeachers_{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: - EducTeachers summary: 'Find a model instance by {{id}} from the data source.' operationId: EducTeachers.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/EducTeachers' deprecated: false put: tags: - EducTeachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducTeachers.replaceById__put_EducTeachers_{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/EducTeachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducTeachers' deprecated: false delete: tags: - EducTeachers summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducTeachers.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: - EducTeachers summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducTeachers.prototype.patchAttributes parameters: - name: id in: path description: EducTeachers 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/EducTeachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducTeachers' deprecated: false '/EducTeachers/{id}/replace': post: tags: - EducTeachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducTeachers.replaceById__post_EducTeachers_{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/EducTeachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducTeachers' deprecated: false /EducTeachers/findOne: get: tags: - EducTeachers summary: Find first instance of the model matched by filter from the data source. operationId: EducTeachers.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/EducTeachers' deprecated: false /EducTeachers/update: post: tags: - EducTeachers summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducTeachers.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/EducTeachers' 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 /EducTeachers/count: get: tags: - EducTeachers summary: Count instances of the model matched by where from the data source. operationId: EducTeachers.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 /EducWanpans: post: tags: - EducWanpan summary: Create a new instance of the model and persist it into the data source. operationId: EducWanpan.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducWanpan' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWanpan' deprecated: false patch: tags: - EducWanpan summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducWanpan.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducWanpan' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWanpan' deprecated: false put: tags: - EducWanpan summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducWanpan.replaceOrCreate__put_EducWanpans parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducWanpan' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWanpan' deprecated: false get: tags: - EducWanpan summary: Find all instances of the model matched by filter from the data source. operationId: EducWanpan.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/EducWanpan' deprecated: false /EducWanpans/replaceOrCreate: post: tags: - EducWanpan summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducWanpan.replaceOrCreate__post_EducWanpans_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducWanpan' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWanpan' deprecated: false /EducWanpans/upsertWithWhere: post: tags: - EducWanpan summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducWanpan.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/EducWanpan' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWanpan' deprecated: false '/EducWanpans/{id}/exists': get: tags: - EducWanpan summary: Check whether a model instance exists in the data source. operationId: 'EducWanpan.exists__get_EducWanpans_{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 '/EducWanpans/{id}': head: tags: - EducWanpan summary: Check whether a model instance exists in the data source. operationId: 'EducWanpan.exists__head_EducWanpans_{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: - EducWanpan summary: 'Find a model instance by {{id}} from the data source.' operationId: EducWanpan.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/EducWanpan' deprecated: false put: tags: - EducWanpan summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducWanpan.replaceById__put_EducWanpans_{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/EducWanpan' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWanpan' deprecated: false delete: tags: - EducWanpan summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducWanpan.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: - EducWanpan summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducWanpan.prototype.patchAttributes parameters: - name: id in: path description: EducWanpan 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/EducWanpan' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWanpan' deprecated: false '/EducWanpans/{id}/replace': post: tags: - EducWanpan summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducWanpan.replaceById__post_EducWanpans_{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/EducWanpan' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWanpan' deprecated: false /EducWanpans/findOne: get: tags: - EducWanpan summary: Find first instance of the model matched by filter from the data source. operationId: EducWanpan.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/EducWanpan' deprecated: false /EducWanpans/update: post: tags: - EducWanpan summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducWanpan.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/EducWanpan' 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 /EducWanpans/count: get: tags: - EducWanpan summary: Count instances of the model matched by where from the data source. operationId: EducWanpan.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 /EducWeites: post: tags: - EducWeite summary: Create a new instance of the model and persist it into the data source. operationId: EducWeite.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducWeite' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWeite' deprecated: false patch: tags: - EducWeite summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducWeite.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducWeite' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWeite' deprecated: false put: tags: - EducWeite summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducWeite.replaceOrCreate__put_EducWeites parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducWeite' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWeite' deprecated: false get: tags: - EducWeite summary: Find all instances of the model matched by filter from the data source. operationId: EducWeite.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/EducWeite' deprecated: false /EducWeites/replaceOrCreate: post: tags: - EducWeite summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducWeite.replaceOrCreate__post_EducWeites_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducWeite' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWeite' deprecated: false /EducWeites/upsertWithWhere: post: tags: - EducWeite summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducWeite.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/EducWeite' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWeite' deprecated: false '/EducWeites/{id}/exists': get: tags: - EducWeite summary: Check whether a model instance exists in the data source. operationId: 'EducWeite.exists__get_EducWeites_{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 '/EducWeites/{id}': head: tags: - EducWeite summary: Check whether a model instance exists in the data source. operationId: 'EducWeite.exists__head_EducWeites_{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: - EducWeite summary: 'Find a model instance by {{id}} from the data source.' operationId: EducWeite.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/EducWeite' deprecated: false put: tags: - EducWeite summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducWeite.replaceById__put_EducWeites_{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/EducWeite' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWeite' deprecated: false delete: tags: - EducWeite summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducWeite.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: - EducWeite summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducWeite.prototype.patchAttributes parameters: - name: id in: path description: EducWeite 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/EducWeite' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWeite' deprecated: false '/EducWeites/{id}/replace': post: tags: - EducWeite summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducWeite.replaceById__post_EducWeites_{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/EducWeite' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducWeite' deprecated: false /EducWeites/findOne: get: tags: - EducWeite summary: Find first instance of the model matched by filter from the data source. operationId: EducWeite.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/EducWeite' deprecated: false /EducWeites/update: post: tags: - EducWeite summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducWeite.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/EducWeite' 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 /EducWeites/count: get: tags: - EducWeite summary: Count instances of the model matched by where from the data source. operationId: EducWeite.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 /EducZhiyues: post: tags: - EducZhiyue summary: Create a new instance of the model and persist it into the data source. operationId: EducZhiyue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducZhiyue' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducZhiyue' deprecated: false patch: tags: - EducZhiyue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducZhiyue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducZhiyue' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducZhiyue' deprecated: false put: tags: - EducZhiyue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducZhiyue.replaceOrCreate__put_EducZhiyues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducZhiyue' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducZhiyue' deprecated: false get: tags: - EducZhiyue summary: Find all instances of the model matched by filter from the data source. operationId: EducZhiyue.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/EducZhiyue' deprecated: false /EducZhiyues/replaceOrCreate: post: tags: - EducZhiyue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducZhiyue.replaceOrCreate__post_EducZhiyues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducZhiyue' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducZhiyue' deprecated: false /EducZhiyues/upsertWithWhere: post: tags: - EducZhiyue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducZhiyue.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/EducZhiyue' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducZhiyue' deprecated: false '/EducZhiyues/{id}/exists': get: tags: - EducZhiyue summary: Check whether a model instance exists in the data source. operationId: 'EducZhiyue.exists__get_EducZhiyues_{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 '/EducZhiyues/{id}': head: tags: - EducZhiyue summary: Check whether a model instance exists in the data source. operationId: 'EducZhiyue.exists__head_EducZhiyues_{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: - EducZhiyue summary: 'Find a model instance by {{id}} from the data source.' operationId: EducZhiyue.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/EducZhiyue' deprecated: false put: tags: - EducZhiyue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducZhiyue.replaceById__put_EducZhiyues_{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/EducZhiyue' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducZhiyue' deprecated: false delete: tags: - EducZhiyue summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducZhiyue.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: - EducZhiyue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducZhiyue.prototype.patchAttributes parameters: - name: id in: path description: EducZhiyue 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/EducZhiyue' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducZhiyue' deprecated: false '/EducZhiyues/{id}/replace': post: tags: - EducZhiyue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducZhiyue.replaceById__post_EducZhiyues_{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/EducZhiyue' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducZhiyue' deprecated: false /EducZhiyues/findOne: get: tags: - EducZhiyue summary: Find first instance of the model matched by filter from the data source. operationId: EducZhiyue.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/EducZhiyue' deprecated: false /EducZhiyues/update: post: tags: - EducZhiyue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducZhiyue.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/EducZhiyue' 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 /EducZhiyues/count: get: tags: - EducZhiyue summary: Count instances of the model matched by where from the data source. operationId: EducZhiyue.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 /EducMeilians: post: tags: - EducMeilian summary: Create a new instance of the model and persist it into the data source. operationId: EducMeilian.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducMeilian' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducMeilian' deprecated: false patch: tags: - EducMeilian summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducMeilian.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducMeilian' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducMeilian' deprecated: false put: tags: - EducMeilian summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducMeilian.replaceOrCreate__put_EducMeilians parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducMeilian' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducMeilian' deprecated: false get: tags: - EducMeilian summary: Find all instances of the model matched by filter from the data source. operationId: EducMeilian.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/EducMeilian' deprecated: false /EducMeilians/replaceOrCreate: post: tags: - EducMeilian summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducMeilian.replaceOrCreate__post_EducMeilians_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducMeilian' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducMeilian' deprecated: false /EducMeilians/upsertWithWhere: post: tags: - EducMeilian summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducMeilian.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/EducMeilian' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducMeilian' deprecated: false '/EducMeilians/{id}/exists': get: tags: - EducMeilian summary: Check whether a model instance exists in the data source. operationId: 'EducMeilian.exists__get_EducMeilians_{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 '/EducMeilians/{id}': head: tags: - EducMeilian summary: Check whether a model instance exists in the data source. operationId: 'EducMeilian.exists__head_EducMeilians_{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: - EducMeilian summary: 'Find a model instance by {{id}} from the data source.' operationId: EducMeilian.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/EducMeilian' deprecated: false put: tags: - EducMeilian summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducMeilian.replaceById__put_EducMeilians_{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/EducMeilian' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducMeilian' deprecated: false delete: tags: - EducMeilian summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducMeilian.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: - EducMeilian summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducMeilian.prototype.patchAttributes parameters: - name: id in: path description: EducMeilian 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/EducMeilian' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducMeilian' deprecated: false '/EducMeilians/{id}/replace': post: tags: - EducMeilian summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducMeilian.replaceById__post_EducMeilians_{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/EducMeilian' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducMeilian' deprecated: false /EducMeilians/findOne: get: tags: - EducMeilian summary: Find first instance of the model matched by filter from the data source. operationId: EducMeilian.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/EducMeilian' deprecated: false /EducMeilians/update: post: tags: - EducMeilian summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducMeilian.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/EducMeilian' 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 /EducMeilians/count: get: tags: - EducMeilian summary: Count instances of the model matched by where from the data source. operationId: EducMeilian.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 /EducForteachers: post: tags: - EducForteachers summary: Create a new instance of the model and persist it into the data source. operationId: EducForteachers.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducForteachers' deprecated: false patch: tags: - EducForteachers summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducForteachers.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducForteachers' deprecated: false put: tags: - EducForteachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducForteachers.replaceOrCreate__put_EducForteachers parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducForteachers' deprecated: false get: tags: - EducForteachers summary: Find all instances of the model matched by filter from the data source. operationId: EducForteachers.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/EducForteachers' deprecated: false /EducForteachers/replaceOrCreate: post: tags: - EducForteachers summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducForteachers.replaceOrCreate__post_EducForteachers_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducForteachers' deprecated: false /EducForteachers/upsertWithWhere: post: tags: - EducForteachers summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducForteachers.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/EducForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducForteachers' deprecated: false '/EducForteachers/{id}/exists': get: tags: - EducForteachers summary: Check whether a model instance exists in the data source. operationId: 'EducForteachers.exists__get_EducForteachers_{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 '/EducForteachers/{id}': head: tags: - EducForteachers summary: Check whether a model instance exists in the data source. operationId: 'EducForteachers.exists__head_EducForteachers_{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: - EducForteachers summary: 'Find a model instance by {{id}} from the data source.' operationId: EducForteachers.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/EducForteachers' deprecated: false put: tags: - EducForteachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducForteachers.replaceById__put_EducForteachers_{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/EducForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducForteachers' deprecated: false delete: tags: - EducForteachers summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducForteachers.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: - EducForteachers summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducForteachers.prototype.patchAttributes parameters: - name: id in: path description: EducForteachers 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/EducForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducForteachers' deprecated: false '/EducForteachers/{id}/replace': post: tags: - EducForteachers summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducForteachers.replaceById__post_EducForteachers_{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/EducForteachers' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducForteachers' deprecated: false /EducForteachers/findOne: get: tags: - EducForteachers summary: Find first instance of the model matched by filter from the data source. operationId: EducForteachers.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/EducForteachers' deprecated: false /EducForteachers/update: post: tags: - EducForteachers summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducForteachers.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/EducForteachers' 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 /EducForteachers/count: get: tags: - EducForteachers summary: Count instances of the model matched by where from the data source. operationId: EducForteachers.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 /EducDoctors: post: tags: - EducDoctor summary: Create a new instance of the model and persist it into the data source. operationId: EducDoctor.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctor' deprecated: false patch: tags: - EducDoctor summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducDoctor.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctor' deprecated: false put: tags: - EducDoctor summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducDoctor.replaceOrCreate__put_EducDoctors parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctor' deprecated: false get: tags: - EducDoctor summary: Find all instances of the model matched by filter from the data source. operationId: EducDoctor.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/EducDoctor' deprecated: false /EducDoctors/replaceOrCreate: post: tags: - EducDoctor summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducDoctor.replaceOrCreate__post_EducDoctors_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctor' deprecated: false /EducDoctors/upsertWithWhere: post: tags: - EducDoctor summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducDoctor.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/EducDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctor' deprecated: false '/EducDoctors/{id}/exists': get: tags: - EducDoctor summary: Check whether a model instance exists in the data source. operationId: 'EducDoctor.exists__get_EducDoctors_{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 '/EducDoctors/{id}': head: tags: - EducDoctor summary: Check whether a model instance exists in the data source. operationId: 'EducDoctor.exists__head_EducDoctors_{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: - EducDoctor summary: 'Find a model instance by {{id}} from the data source.' operationId: EducDoctor.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/EducDoctor' deprecated: false put: tags: - EducDoctor summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducDoctor.replaceById__put_EducDoctors_{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/EducDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctor' deprecated: false delete: tags: - EducDoctor summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducDoctor.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: - EducDoctor summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducDoctor.prototype.patchAttributes parameters: - name: id in: path description: EducDoctor 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/EducDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctor' deprecated: false '/EducDoctors/{id}/replace': post: tags: - EducDoctor summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducDoctor.replaceById__post_EducDoctors_{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/EducDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctor' deprecated: false /EducDoctors/findOne: get: tags: - EducDoctor summary: Find first instance of the model matched by filter from the data source. operationId: EducDoctor.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/EducDoctor' deprecated: false /EducDoctors/update: post: tags: - EducDoctor summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducDoctor.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/EducDoctor' 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 /EducDoctors/count: get: tags: - EducDoctor summary: Count instances of the model matched by where from the data source. operationId: EducDoctor.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 /EducDoctorasses: post: tags: - EducDoctorass summary: Create a new instance of the model and persist it into the data source. operationId: EducDoctorass.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducDoctorass' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctorass' deprecated: false patch: tags: - EducDoctorass summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducDoctorass.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducDoctorass' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctorass' deprecated: false put: tags: - EducDoctorass summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducDoctorass.replaceOrCreate__put_EducDoctorasses parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducDoctorass' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctorass' deprecated: false get: tags: - EducDoctorass summary: Find all instances of the model matched by filter from the data source. operationId: EducDoctorass.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/EducDoctorass' deprecated: false /EducDoctorasses/replaceOrCreate: post: tags: - EducDoctorass summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducDoctorass.replaceOrCreate__post_EducDoctorasses_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducDoctorass' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctorass' deprecated: false /EducDoctorasses/upsertWithWhere: post: tags: - EducDoctorass summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducDoctorass.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/EducDoctorass' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctorass' deprecated: false '/EducDoctorasses/{id}/exists': get: tags: - EducDoctorass summary: Check whether a model instance exists in the data source. operationId: 'EducDoctorass.exists__get_EducDoctorasses_{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 '/EducDoctorasses/{id}': head: tags: - EducDoctorass summary: Check whether a model instance exists in the data source. operationId: 'EducDoctorass.exists__head_EducDoctorasses_{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: - EducDoctorass summary: 'Find a model instance by {{id}} from the data source.' operationId: EducDoctorass.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/EducDoctorass' deprecated: false put: tags: - EducDoctorass summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducDoctorass.replaceById__put_EducDoctorasses_{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/EducDoctorass' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctorass' deprecated: false delete: tags: - EducDoctorass summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducDoctorass.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: - EducDoctorass summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducDoctorass.prototype.patchAttributes parameters: - name: id in: path description: EducDoctorass 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/EducDoctorass' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctorass' deprecated: false '/EducDoctorasses/{id}/replace': post: tags: - EducDoctorass summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducDoctorass.replaceById__post_EducDoctorasses_{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/EducDoctorass' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducDoctorass' deprecated: false /EducDoctorasses/findOne: get: tags: - EducDoctorass summary: Find first instance of the model matched by filter from the data source. operationId: EducDoctorass.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/EducDoctorass' deprecated: false /EducDoctorasses/update: post: tags: - EducDoctorass summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducDoctorass.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/EducDoctorass' 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 /EducDoctorasses/count: get: tags: - EducDoctorass summary: Count instances of the model matched by where from the data source. operationId: EducDoctorass.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 /EducCourse5s: post: tags: - EducCourse5 summary: Create a new instance of the model and persist it into the data source. operationId: EducCourse5.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse5' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse5' deprecated: false patch: tags: - EducCourse5 summary: >- Patch an existing model instance or insert a new one into the data source. operationId: EducCourse5.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse5' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse5' deprecated: false put: tags: - EducCourse5 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducCourse5.replaceOrCreate__put_EducCourse5s parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse5' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse5' deprecated: false get: tags: - EducCourse5 summary: Find all instances of the model matched by filter from the data source. operationId: EducCourse5.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/EducCourse5' deprecated: false /EducCourse5s/replaceOrCreate: post: tags: - EducCourse5 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: EducCourse5.replaceOrCreate__post_EducCourse5s_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/EducCourse5' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse5' deprecated: false /EducCourse5s/upsertWithWhere: post: tags: - EducCourse5 summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: EducCourse5.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/EducCourse5' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse5' deprecated: false '/EducCourse5s/{id}/exists': get: tags: - EducCourse5 summary: Check whether a model instance exists in the data source. operationId: 'EducCourse5.exists__get_EducCourse5s_{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 '/EducCourse5s/{id}': head: tags: - EducCourse5 summary: Check whether a model instance exists in the data source. operationId: 'EducCourse5.exists__head_EducCourse5s_{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: - EducCourse5 summary: 'Find a model instance by {{id}} from the data source.' operationId: EducCourse5.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/EducCourse5' deprecated: false put: tags: - EducCourse5 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducCourse5.replaceById__put_EducCourse5s_{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/EducCourse5' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse5' deprecated: false delete: tags: - EducCourse5 summary: 'Delete a model instance by {{id}} from the data source.' operationId: EducCourse5.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: - EducCourse5 summary: >- Patch attributes for a model instance and persist it into the data source. operationId: EducCourse5.prototype.patchAttributes parameters: - name: id in: path description: EducCourse5 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/EducCourse5' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse5' deprecated: false '/EducCourse5s/{id}/replace': post: tags: - EducCourse5 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'EducCourse5.replaceById__post_EducCourse5s_{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/EducCourse5' responses: '200': description: Request was successful schema: $ref: '#/definitions/EducCourse5' deprecated: false /EducCourse5s/findOne: get: tags: - EducCourse5 summary: Find first instance of the model matched by filter from the data source. operationId: EducCourse5.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/EducCourse5' deprecated: false /EducCourse5s/update: post: tags: - EducCourse5 summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: EducCourse5.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/EducCourse5' 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 /EducCourse5s/count: get: tags: - EducCourse5 summary: Count instances of the model matched by where from the data source. operationId: EducCourse5.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 /HosAccruals: post: tags: - HosAccrual summary: Create a new instance of the model and persist it into the data source. operationId: HosAccrual.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosAccrual' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrual' deprecated: false patch: tags: - HosAccrual summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosAccrual.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosAccrual' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrual' deprecated: false put: tags: - HosAccrual summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosAccrual.replaceOrCreate__put_HosAccruals parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosAccrual' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrual' deprecated: false get: tags: - HosAccrual summary: Find all instances of the model matched by filter from the data source. operationId: HosAccrual.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/HosAccrual' deprecated: false /HosAccruals/replaceOrCreate: post: tags: - HosAccrual summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosAccrual.replaceOrCreate__post_HosAccruals_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosAccrual' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrual' deprecated: false /HosAccruals/upsertWithWhere: post: tags: - HosAccrual summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosAccrual.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/HosAccrual' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrual' deprecated: false '/HosAccruals/{id}/exists': get: tags: - HosAccrual summary: Check whether a model instance exists in the data source. operationId: 'HosAccrual.exists__get_HosAccruals_{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 '/HosAccruals/{id}': head: tags: - HosAccrual summary: Check whether a model instance exists in the data source. operationId: 'HosAccrual.exists__head_HosAccruals_{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: - HosAccrual summary: 'Find a model instance by {{id}} from the data source.' operationId: HosAccrual.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/HosAccrual' deprecated: false put: tags: - HosAccrual summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosAccrual.replaceById__put_HosAccruals_{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/HosAccrual' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrual' deprecated: false delete: tags: - HosAccrual summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosAccrual.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: - HosAccrual summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosAccrual.prototype.patchAttributes parameters: - name: id in: path description: HosAccrual 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/HosAccrual' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrual' deprecated: false '/HosAccruals/{id}/replace': post: tags: - HosAccrual summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosAccrual.replaceById__post_HosAccruals_{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/HosAccrual' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrual' deprecated: false /HosAccruals/findOne: get: tags: - HosAccrual summary: Find first instance of the model matched by filter from the data source. operationId: HosAccrual.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/HosAccrual' deprecated: false /HosAccruals/update: post: tags: - HosAccrual summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosAccrual.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/HosAccrual' 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 /HosAccruals/count: get: tags: - HosAccrual summary: Count instances of the model matched by where from the data source. operationId: HosAccrual.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 /BillCangkus: post: tags: - BillCangku summary: Create a new instance of the model and persist it into the data source. operationId: BillCangku.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCangku' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCangku' deprecated: false patch: tags: - BillCangku summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillCangku.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCangku' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCangku' deprecated: false put: tags: - BillCangku summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillCangku.replaceOrCreate__put_BillCangkus parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCangku' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCangku' deprecated: false get: tags: - BillCangku summary: Find all instances of the model matched by filter from the data source. operationId: BillCangku.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/BillCangku' deprecated: false /BillCangkus/replaceOrCreate: post: tags: - BillCangku summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillCangku.replaceOrCreate__post_BillCangkus_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCangku' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCangku' deprecated: false /BillCangkus/upsertWithWhere: post: tags: - BillCangku summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillCangku.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/BillCangku' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCangku' deprecated: false '/BillCangkus/{id}/exists': get: tags: - BillCangku summary: Check whether a model instance exists in the data source. operationId: 'BillCangku.exists__get_BillCangkus_{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 '/BillCangkus/{id}': head: tags: - BillCangku summary: Check whether a model instance exists in the data source. operationId: 'BillCangku.exists__head_BillCangkus_{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: - BillCangku summary: 'Find a model instance by {{id}} from the data source.' operationId: BillCangku.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/BillCangku' deprecated: false put: tags: - BillCangku summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillCangku.replaceById__put_BillCangkus_{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/BillCangku' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCangku' deprecated: false delete: tags: - BillCangku summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillCangku.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: - BillCangku summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillCangku.prototype.patchAttributes parameters: - name: id in: path description: BillCangku 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/BillCangku' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCangku' deprecated: false '/BillCangkus/{id}/replace': post: tags: - BillCangku summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillCangku.replaceById__post_BillCangkus_{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/BillCangku' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCangku' deprecated: false /BillCangkus/findOne: get: tags: - BillCangku summary: Find first instance of the model matched by filter from the data source. operationId: BillCangku.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/BillCangku' deprecated: false /BillCangkus/update: post: tags: - BillCangku summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillCangku.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/BillCangku' 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 /BillCangkus/count: get: tags: - BillCangku summary: Count instances of the model matched by where from the data source. operationId: BillCangku.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 /BillMendians: post: tags: - BillMendian summary: Create a new instance of the model and persist it into the data source. operationId: BillMendian.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillMendian' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillMendian' deprecated: false patch: tags: - BillMendian summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillMendian.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillMendian' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillMendian' deprecated: false put: tags: - BillMendian summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillMendian.replaceOrCreate__put_BillMendians parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillMendian' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillMendian' deprecated: false get: tags: - BillMendian summary: Find all instances of the model matched by filter from the data source. operationId: BillMendian.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/BillMendian' deprecated: false /BillMendians/replaceOrCreate: post: tags: - BillMendian summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillMendian.replaceOrCreate__post_BillMendians_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillMendian' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillMendian' deprecated: false /BillMendians/upsertWithWhere: post: tags: - BillMendian summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillMendian.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/BillMendian' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillMendian' deprecated: false '/BillMendians/{id}/exists': get: tags: - BillMendian summary: Check whether a model instance exists in the data source. operationId: 'BillMendian.exists__get_BillMendians_{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 '/BillMendians/{id}': head: tags: - BillMendian summary: Check whether a model instance exists in the data source. operationId: 'BillMendian.exists__head_BillMendians_{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: - BillMendian summary: 'Find a model instance by {{id}} from the data source.' operationId: BillMendian.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/BillMendian' deprecated: false put: tags: - BillMendian summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillMendian.replaceById__put_BillMendians_{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/BillMendian' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillMendian' deprecated: false delete: tags: - BillMendian summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillMendian.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: - BillMendian summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillMendian.prototype.patchAttributes parameters: - name: id in: path description: BillMendian 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/BillMendian' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillMendian' deprecated: false '/BillMendians/{id}/replace': post: tags: - BillMendian summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillMendian.replaceById__post_BillMendians_{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/BillMendian' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillMendian' deprecated: false /BillMendians/findOne: get: tags: - BillMendian summary: Find first instance of the model matched by filter from the data source. operationId: BillMendian.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/BillMendian' deprecated: false /BillMendians/update: post: tags: - BillMendian summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillMendian.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/BillMendian' 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 /BillMendians/count: get: tags: - BillMendian summary: Count instances of the model matched by where from the data source. operationId: BillMendian.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 /BillQuanguos: post: tags: - BillQuanguo summary: Create a new instance of the model and persist it into the data source. operationId: BillQuanguo.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillQuanguo' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillQuanguo' deprecated: false patch: tags: - BillQuanguo summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillQuanguo.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillQuanguo' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillQuanguo' deprecated: false put: tags: - BillQuanguo summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillQuanguo.replaceOrCreate__put_BillQuanguos parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillQuanguo' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillQuanguo' deprecated: false get: tags: - BillQuanguo summary: Find all instances of the model matched by filter from the data source. operationId: BillQuanguo.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/BillQuanguo' deprecated: false /BillQuanguos/replaceOrCreate: post: tags: - BillQuanguo summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillQuanguo.replaceOrCreate__post_BillQuanguos_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillQuanguo' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillQuanguo' deprecated: false /BillQuanguos/upsertWithWhere: post: tags: - BillQuanguo summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillQuanguo.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/BillQuanguo' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillQuanguo' deprecated: false '/BillQuanguos/{id}/exists': get: tags: - BillQuanguo summary: Check whether a model instance exists in the data source. operationId: 'BillQuanguo.exists__get_BillQuanguos_{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 '/BillQuanguos/{id}': head: tags: - BillQuanguo summary: Check whether a model instance exists in the data source. operationId: 'BillQuanguo.exists__head_BillQuanguos_{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: - BillQuanguo summary: 'Find a model instance by {{id}} from the data source.' operationId: BillQuanguo.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/BillQuanguo' deprecated: false put: tags: - BillQuanguo summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillQuanguo.replaceById__put_BillQuanguos_{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/BillQuanguo' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillQuanguo' deprecated: false delete: tags: - BillQuanguo summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillQuanguo.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: - BillQuanguo summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillQuanguo.prototype.patchAttributes parameters: - name: id in: path description: BillQuanguo 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/BillQuanguo' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillQuanguo' deprecated: false '/BillQuanguos/{id}/replace': post: tags: - BillQuanguo summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillQuanguo.replaceById__post_BillQuanguos_{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/BillQuanguo' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillQuanguo' deprecated: false /BillQuanguos/findOne: get: tags: - BillQuanguo summary: Find first instance of the model matched by filter from the data source. operationId: BillQuanguo.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/BillQuanguo' deprecated: false /BillQuanguos/update: post: tags: - BillQuanguo summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillQuanguo.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/BillQuanguo' 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 /BillQuanguos/count: get: tags: - BillQuanguo summary: Count instances of the model matched by where from the data source. operationId: BillQuanguo.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 /BillRevenuetotals: post: tags: - BillRevenuetotal summary: Create a new instance of the model and persist it into the data source. operationId: BillRevenuetotal.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillRevenuetotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenuetotal' deprecated: false patch: tags: - BillRevenuetotal summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillRevenuetotal.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillRevenuetotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenuetotal' deprecated: false put: tags: - BillRevenuetotal summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillRevenuetotal.replaceOrCreate__put_BillRevenuetotals parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillRevenuetotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenuetotal' deprecated: false get: tags: - BillRevenuetotal summary: Find all instances of the model matched by filter from the data source. operationId: BillRevenuetotal.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/BillRevenuetotal' deprecated: false /BillRevenuetotals/replaceOrCreate: post: tags: - BillRevenuetotal summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillRevenuetotal.replaceOrCreate__post_BillRevenuetotals_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillRevenuetotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenuetotal' deprecated: false /BillRevenuetotals/upsertWithWhere: post: tags: - BillRevenuetotal summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillRevenuetotal.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/BillRevenuetotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenuetotal' deprecated: false '/BillRevenuetotals/{id}/exists': get: tags: - BillRevenuetotal summary: Check whether a model instance exists in the data source. operationId: 'BillRevenuetotal.exists__get_BillRevenuetotals_{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 '/BillRevenuetotals/{id}': head: tags: - BillRevenuetotal summary: Check whether a model instance exists in the data source. operationId: 'BillRevenuetotal.exists__head_BillRevenuetotals_{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: - BillRevenuetotal summary: 'Find a model instance by {{id}} from the data source.' operationId: BillRevenuetotal.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/BillRevenuetotal' deprecated: false put: tags: - BillRevenuetotal summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillRevenuetotal.replaceById__put_BillRevenuetotals_{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/BillRevenuetotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenuetotal' deprecated: false delete: tags: - BillRevenuetotal summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillRevenuetotal.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: - BillRevenuetotal summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillRevenuetotal.prototype.patchAttributes parameters: - name: id in: path description: BillRevenuetotal 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/BillRevenuetotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenuetotal' deprecated: false '/BillRevenuetotals/{id}/replace': post: tags: - BillRevenuetotal summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillRevenuetotal.replaceById__post_BillRevenuetotals_{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/BillRevenuetotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenuetotal' deprecated: false /BillRevenuetotals/findOne: get: tags: - BillRevenuetotal summary: Find first instance of the model matched by filter from the data source. operationId: BillRevenuetotal.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/BillRevenuetotal' deprecated: false /BillRevenuetotals/update: post: tags: - BillRevenuetotal summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillRevenuetotal.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/BillRevenuetotal' 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 /BillRevenuetotals/count: get: tags: - BillRevenuetotal summary: Count instances of the model matched by where from the data source. operationId: BillRevenuetotal.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 /BillRevenueyesterdays: post: tags: - BillRevenueyesterday summary: Create a new instance of the model and persist it into the data source. operationId: BillRevenueyesterday.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillRevenueyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenueyesterday' deprecated: false patch: tags: - BillRevenueyesterday summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillRevenueyesterday.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillRevenueyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenueyesterday' deprecated: false put: tags: - BillRevenueyesterday summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillRevenueyesterday.replaceOrCreate__put_BillRevenueyesterdays parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillRevenueyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenueyesterday' deprecated: false get: tags: - BillRevenueyesterday summary: Find all instances of the model matched by filter from the data source. operationId: BillRevenueyesterday.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/BillRevenueyesterday' deprecated: false /BillRevenueyesterdays/replaceOrCreate: post: tags: - BillRevenueyesterday summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- BillRevenueyesterday.replaceOrCreate__post_BillRevenueyesterdays_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillRevenueyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenueyesterday' deprecated: false /BillRevenueyesterdays/upsertWithWhere: post: tags: - BillRevenueyesterday summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillRevenueyesterday.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/BillRevenueyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenueyesterday' deprecated: false '/BillRevenueyesterdays/{id}/exists': get: tags: - BillRevenueyesterday summary: Check whether a model instance exists in the data source. operationId: 'BillRevenueyesterday.exists__get_BillRevenueyesterdays_{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 '/BillRevenueyesterdays/{id}': head: tags: - BillRevenueyesterday summary: Check whether a model instance exists in the data source. operationId: 'BillRevenueyesterday.exists__head_BillRevenueyesterdays_{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: - BillRevenueyesterday summary: 'Find a model instance by {{id}} from the data source.' operationId: BillRevenueyesterday.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/BillRevenueyesterday' deprecated: false put: tags: - BillRevenueyesterday summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillRevenueyesterday.replaceById__put_BillRevenueyesterdays_{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/BillRevenueyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenueyesterday' deprecated: false delete: tags: - BillRevenueyesterday summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillRevenueyesterday.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: - BillRevenueyesterday summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillRevenueyesterday.prototype.patchAttributes parameters: - name: id in: path description: BillRevenueyesterday 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/BillRevenueyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenueyesterday' deprecated: false '/BillRevenueyesterdays/{id}/replace': post: tags: - BillRevenueyesterday summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- BillRevenueyesterday.replaceById__post_BillRevenueyesterdays_{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/BillRevenueyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillRevenueyesterday' deprecated: false /BillRevenueyesterdays/findOne: get: tags: - BillRevenueyesterday summary: Find first instance of the model matched by filter from the data source. operationId: BillRevenueyesterday.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/BillRevenueyesterday' deprecated: false /BillRevenueyesterdays/update: post: tags: - BillRevenueyesterday summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillRevenueyesterday.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/BillRevenueyesterday' 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 /BillRevenueyesterdays/count: get: tags: - BillRevenueyesterday summary: Count instances of the model matched by where from the data source. operationId: BillRevenueyesterday.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 /BillOrdertotals: post: tags: - BillOrdertotal summary: Create a new instance of the model and persist it into the data source. operationId: BillOrdertotal.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrdertotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertotal' deprecated: false patch: tags: - BillOrdertotal summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillOrdertotal.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrdertotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertotal' deprecated: false put: tags: - BillOrdertotal summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillOrdertotal.replaceOrCreate__put_BillOrdertotals parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrdertotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertotal' deprecated: false get: tags: - BillOrdertotal summary: Find all instances of the model matched by filter from the data source. operationId: BillOrdertotal.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/BillOrdertotal' deprecated: false /BillOrdertotals/replaceOrCreate: post: tags: - BillOrdertotal summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillOrdertotal.replaceOrCreate__post_BillOrdertotals_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrdertotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertotal' deprecated: false /BillOrdertotals/upsertWithWhere: post: tags: - BillOrdertotal summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillOrdertotal.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/BillOrdertotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertotal' deprecated: false '/BillOrdertotals/{id}/exists': get: tags: - BillOrdertotal summary: Check whether a model instance exists in the data source. operationId: 'BillOrdertotal.exists__get_BillOrdertotals_{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 '/BillOrdertotals/{id}': head: tags: - BillOrdertotal summary: Check whether a model instance exists in the data source. operationId: 'BillOrdertotal.exists__head_BillOrdertotals_{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: - BillOrdertotal summary: 'Find a model instance by {{id}} from the data source.' operationId: BillOrdertotal.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/BillOrdertotal' deprecated: false put: tags: - BillOrdertotal summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrdertotal.replaceById__put_BillOrdertotals_{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/BillOrdertotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertotal' deprecated: false delete: tags: - BillOrdertotal summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillOrdertotal.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: - BillOrdertotal summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillOrdertotal.prototype.patchAttributes parameters: - name: id in: path description: BillOrdertotal 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/BillOrdertotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertotal' deprecated: false '/BillOrdertotals/{id}/replace': post: tags: - BillOrdertotal summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrdertotal.replaceById__post_BillOrdertotals_{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/BillOrdertotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrdertotal' deprecated: false /BillOrdertotals/findOne: get: tags: - BillOrdertotal summary: Find first instance of the model matched by filter from the data source. operationId: BillOrdertotal.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/BillOrdertotal' deprecated: false /BillOrdertotals/update: post: tags: - BillOrdertotal summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillOrdertotal.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/BillOrdertotal' 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 /BillOrdertotals/count: get: tags: - BillOrdertotal summary: Count instances of the model matched by where from the data source. operationId: BillOrdertotal.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 /BillOrderyesterdays: post: tags: - BillOrderyesterday summary: Create a new instance of the model and persist it into the data source. operationId: BillOrderyesterday.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrderyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrderyesterday' deprecated: false patch: tags: - BillOrderyesterday summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillOrderyesterday.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrderyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrderyesterday' deprecated: false put: tags: - BillOrderyesterday summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillOrderyesterday.replaceOrCreate__put_BillOrderyesterdays parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrderyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrderyesterday' deprecated: false get: tags: - BillOrderyesterday summary: Find all instances of the model matched by filter from the data source. operationId: BillOrderyesterday.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/BillOrderyesterday' deprecated: false /BillOrderyesterdays/replaceOrCreate: post: tags: - BillOrderyesterday summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- BillOrderyesterday.replaceOrCreate__post_BillOrderyesterdays_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrderyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrderyesterday' deprecated: false /BillOrderyesterdays/upsertWithWhere: post: tags: - BillOrderyesterday summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillOrderyesterday.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/BillOrderyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrderyesterday' deprecated: false '/BillOrderyesterdays/{id}/exists': get: tags: - BillOrderyesterday summary: Check whether a model instance exists in the data source. operationId: 'BillOrderyesterday.exists__get_BillOrderyesterdays_{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 '/BillOrderyesterdays/{id}': head: tags: - BillOrderyesterday summary: Check whether a model instance exists in the data source. operationId: 'BillOrderyesterday.exists__head_BillOrderyesterdays_{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: - BillOrderyesterday summary: 'Find a model instance by {{id}} from the data source.' operationId: BillOrderyesterday.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/BillOrderyesterday' deprecated: false put: tags: - BillOrderyesterday summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrderyesterday.replaceById__put_BillOrderyesterdays_{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/BillOrderyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrderyesterday' deprecated: false delete: tags: - BillOrderyesterday summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillOrderyesterday.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: - BillOrderyesterday summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillOrderyesterday.prototype.patchAttributes parameters: - name: id in: path description: BillOrderyesterday 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/BillOrderyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrderyesterday' deprecated: false '/BillOrderyesterdays/{id}/replace': post: tags: - BillOrderyesterday summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrderyesterday.replaceById__post_BillOrderyesterdays_{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/BillOrderyesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrderyesterday' deprecated: false /BillOrderyesterdays/findOne: get: tags: - BillOrderyesterday summary: Find first instance of the model matched by filter from the data source. operationId: BillOrderyesterday.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/BillOrderyesterday' deprecated: false /BillOrderyesterdays/update: post: tags: - BillOrderyesterday summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillOrderyesterday.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/BillOrderyesterday' 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 /BillOrderyesterdays/count: get: tags: - BillOrderyesterday summary: Count instances of the model matched by where from the data source. operationId: BillOrderyesterday.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 /BillBduans: post: tags: - BillBduan summary: Create a new instance of the model and persist it into the data source. operationId: BillBduan.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillBduan' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillBduan' deprecated: false patch: tags: - BillBduan summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillBduan.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillBduan' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillBduan' deprecated: false put: tags: - BillBduan summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillBduan.replaceOrCreate__put_BillBduans parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillBduan' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillBduan' deprecated: false get: tags: - BillBduan summary: Find all instances of the model matched by filter from the data source. operationId: BillBduan.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/BillBduan' deprecated: false /BillBduans/replaceOrCreate: post: tags: - BillBduan summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillBduan.replaceOrCreate__post_BillBduans_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillBduan' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillBduan' deprecated: false /BillBduans/upsertWithWhere: post: tags: - BillBduan summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillBduan.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/BillBduan' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillBduan' deprecated: false '/BillBduans/{id}/exists': get: tags: - BillBduan summary: Check whether a model instance exists in the data source. operationId: 'BillBduan.exists__get_BillBduans_{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 '/BillBduans/{id}': head: tags: - BillBduan summary: Check whether a model instance exists in the data source. operationId: 'BillBduan.exists__head_BillBduans_{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: - BillBduan summary: 'Find a model instance by {{id}} from the data source.' operationId: BillBduan.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/BillBduan' deprecated: false put: tags: - BillBduan summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillBduan.replaceById__put_BillBduans_{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/BillBduan' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillBduan' deprecated: false delete: tags: - BillBduan summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillBduan.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: - BillBduan summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillBduan.prototype.patchAttributes parameters: - name: id in: path description: BillBduan 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/BillBduan' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillBduan' deprecated: false '/BillBduans/{id}/replace': post: tags: - BillBduan summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillBduan.replaceById__post_BillBduans_{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/BillBduan' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillBduan' deprecated: false /BillBduans/findOne: get: tags: - BillBduan summary: Find first instance of the model matched by filter from the data source. operationId: BillBduan.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/BillBduan' deprecated: false /BillBduans/update: post: tags: - BillBduan summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillBduan.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/BillBduan' 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 /BillBduans/count: get: tags: - BillBduan summary: Count instances of the model matched by where from the data source. operationId: BillBduan.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 /BillOrder1s: post: tags: - BillOrder1 summary: Create a new instance of the model and persist it into the data source. operationId: BillOrder1.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder1' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder1' deprecated: false patch: tags: - BillOrder1 summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillOrder1.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder1' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder1' deprecated: false put: tags: - BillOrder1 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillOrder1.replaceOrCreate__put_BillOrder1s parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder1' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder1' deprecated: false get: tags: - BillOrder1 summary: Find all instances of the model matched by filter from the data source. operationId: BillOrder1.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/BillOrder1' deprecated: false /BillOrder1s/replaceOrCreate: post: tags: - BillOrder1 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillOrder1.replaceOrCreate__post_BillOrder1s_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder1' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder1' deprecated: false /BillOrder1s/upsertWithWhere: post: tags: - BillOrder1 summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillOrder1.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/BillOrder1' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder1' deprecated: false '/BillOrder1s/{id}/exists': get: tags: - BillOrder1 summary: Check whether a model instance exists in the data source. operationId: 'BillOrder1.exists__get_BillOrder1s_{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 '/BillOrder1s/{id}': head: tags: - BillOrder1 summary: Check whether a model instance exists in the data source. operationId: 'BillOrder1.exists__head_BillOrder1s_{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: - BillOrder1 summary: 'Find a model instance by {{id}} from the data source.' operationId: BillOrder1.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/BillOrder1' deprecated: false put: tags: - BillOrder1 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrder1.replaceById__put_BillOrder1s_{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/BillOrder1' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder1' deprecated: false delete: tags: - BillOrder1 summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillOrder1.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: - BillOrder1 summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillOrder1.prototype.patchAttributes parameters: - name: id in: path description: BillOrder1 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/BillOrder1' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder1' deprecated: false '/BillOrder1s/{id}/replace': post: tags: - BillOrder1 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrder1.replaceById__post_BillOrder1s_{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/BillOrder1' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder1' deprecated: false /BillOrder1s/findOne: get: tags: - BillOrder1 summary: Find first instance of the model matched by filter from the data source. operationId: BillOrder1.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/BillOrder1' deprecated: false /BillOrder1s/update: post: tags: - BillOrder1 summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillOrder1.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/BillOrder1' 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 /BillOrder1s/count: get: tags: - BillOrder1 summary: Count instances of the model matched by where from the data source. operationId: BillOrder1.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 /BillOrder2s: post: tags: - BillOrder2 summary: Create a new instance of the model and persist it into the data source. operationId: BillOrder2.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder2' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder2' deprecated: false patch: tags: - BillOrder2 summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillOrder2.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder2' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder2' deprecated: false put: tags: - BillOrder2 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillOrder2.replaceOrCreate__put_BillOrder2s parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder2' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder2' deprecated: false get: tags: - BillOrder2 summary: Find all instances of the model matched by filter from the data source. operationId: BillOrder2.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/BillOrder2' deprecated: false /BillOrder2s/replaceOrCreate: post: tags: - BillOrder2 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillOrder2.replaceOrCreate__post_BillOrder2s_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder2' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder2' deprecated: false /BillOrder2s/upsertWithWhere: post: tags: - BillOrder2 summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillOrder2.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/BillOrder2' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder2' deprecated: false '/BillOrder2s/{id}/exists': get: tags: - BillOrder2 summary: Check whether a model instance exists in the data source. operationId: 'BillOrder2.exists__get_BillOrder2s_{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 '/BillOrder2s/{id}': head: tags: - BillOrder2 summary: Check whether a model instance exists in the data source. operationId: 'BillOrder2.exists__head_BillOrder2s_{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: - BillOrder2 summary: 'Find a model instance by {{id}} from the data source.' operationId: BillOrder2.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/BillOrder2' deprecated: false put: tags: - BillOrder2 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrder2.replaceById__put_BillOrder2s_{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/BillOrder2' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder2' deprecated: false delete: tags: - BillOrder2 summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillOrder2.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: - BillOrder2 summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillOrder2.prototype.patchAttributes parameters: - name: id in: path description: BillOrder2 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/BillOrder2' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder2' deprecated: false '/BillOrder2s/{id}/replace': post: tags: - BillOrder2 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrder2.replaceById__post_BillOrder2s_{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/BillOrder2' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder2' deprecated: false /BillOrder2s/findOne: get: tags: - BillOrder2 summary: Find first instance of the model matched by filter from the data source. operationId: BillOrder2.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/BillOrder2' deprecated: false /BillOrder2s/update: post: tags: - BillOrder2 summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillOrder2.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/BillOrder2' 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 /BillOrder2s/count: get: tags: - BillOrder2 summary: Count instances of the model matched by where from the data source. operationId: BillOrder2.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 /BillOrder3s: post: tags: - BillOrder3 summary: Create a new instance of the model and persist it into the data source. operationId: BillOrder3.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder3' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder3' deprecated: false patch: tags: - BillOrder3 summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillOrder3.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder3' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder3' deprecated: false put: tags: - BillOrder3 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillOrder3.replaceOrCreate__put_BillOrder3s parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder3' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder3' deprecated: false get: tags: - BillOrder3 summary: Find all instances of the model matched by filter from the data source. operationId: BillOrder3.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/BillOrder3' deprecated: false /BillOrder3s/replaceOrCreate: post: tags: - BillOrder3 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillOrder3.replaceOrCreate__post_BillOrder3s_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder3' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder3' deprecated: false /BillOrder3s/upsertWithWhere: post: tags: - BillOrder3 summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillOrder3.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/BillOrder3' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder3' deprecated: false '/BillOrder3s/{id}/exists': get: tags: - BillOrder3 summary: Check whether a model instance exists in the data source. operationId: 'BillOrder3.exists__get_BillOrder3s_{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 '/BillOrder3s/{id}': head: tags: - BillOrder3 summary: Check whether a model instance exists in the data source. operationId: 'BillOrder3.exists__head_BillOrder3s_{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: - BillOrder3 summary: 'Find a model instance by {{id}} from the data source.' operationId: BillOrder3.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/BillOrder3' deprecated: false put: tags: - BillOrder3 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrder3.replaceById__put_BillOrder3s_{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/BillOrder3' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder3' deprecated: false delete: tags: - BillOrder3 summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillOrder3.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: - BillOrder3 summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillOrder3.prototype.patchAttributes parameters: - name: id in: path description: BillOrder3 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/BillOrder3' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder3' deprecated: false '/BillOrder3s/{id}/replace': post: tags: - BillOrder3 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrder3.replaceById__post_BillOrder3s_{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/BillOrder3' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder3' deprecated: false /BillOrder3s/findOne: get: tags: - BillOrder3 summary: Find first instance of the model matched by filter from the data source. operationId: BillOrder3.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/BillOrder3' deprecated: false /BillOrder3s/update: post: tags: - BillOrder3 summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillOrder3.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/BillOrder3' 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 /BillOrder3s/count: get: tags: - BillOrder3 summary: Count instances of the model matched by where from the data source. operationId: BillOrder3.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 /BillOrder4s: post: tags: - BillOrder4 summary: Create a new instance of the model and persist it into the data source. operationId: BillOrder4.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder4' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder4' deprecated: false patch: tags: - BillOrder4 summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillOrder4.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder4' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder4' deprecated: false put: tags: - BillOrder4 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillOrder4.replaceOrCreate__put_BillOrder4s parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder4' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder4' deprecated: false get: tags: - BillOrder4 summary: Find all instances of the model matched by filter from the data source. operationId: BillOrder4.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/BillOrder4' deprecated: false /BillOrder4s/replaceOrCreate: post: tags: - BillOrder4 summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillOrder4.replaceOrCreate__post_BillOrder4s_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillOrder4' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder4' deprecated: false /BillOrder4s/upsertWithWhere: post: tags: - BillOrder4 summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillOrder4.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/BillOrder4' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder4' deprecated: false '/BillOrder4s/{id}/exists': get: tags: - BillOrder4 summary: Check whether a model instance exists in the data source. operationId: 'BillOrder4.exists__get_BillOrder4s_{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 '/BillOrder4s/{id}': head: tags: - BillOrder4 summary: Check whether a model instance exists in the data source. operationId: 'BillOrder4.exists__head_BillOrder4s_{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: - BillOrder4 summary: 'Find a model instance by {{id}} from the data source.' operationId: BillOrder4.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/BillOrder4' deprecated: false put: tags: - BillOrder4 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrder4.replaceById__put_BillOrder4s_{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/BillOrder4' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder4' deprecated: false delete: tags: - BillOrder4 summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillOrder4.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: - BillOrder4 summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillOrder4.prototype.patchAttributes parameters: - name: id in: path description: BillOrder4 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/BillOrder4' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder4' deprecated: false '/BillOrder4s/{id}/replace': post: tags: - BillOrder4 summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillOrder4.replaceById__post_BillOrder4s_{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/BillOrder4' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillOrder4' deprecated: false /BillOrder4s/findOne: get: tags: - BillOrder4 summary: Find first instance of the model matched by filter from the data source. operationId: BillOrder4.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/BillOrder4' deprecated: false /BillOrder4s/update: post: tags: - BillOrder4 summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillOrder4.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/BillOrder4' 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 /BillOrder4s/count: get: tags: - BillOrder4 summary: Count instances of the model matched by where from the data source. operationId: BillOrder4.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 /Atests: post: tags: - Atest summary: Create a new instance of the model and persist it into the data source. operationId: Atest.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Atest' responses: '200': description: Request was successful schema: $ref: '#/definitions/Atest' deprecated: false patch: tags: - Atest summary: >- Patch an existing model instance or insert a new one into the data source. operationId: Atest.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Atest' responses: '200': description: Request was successful schema: $ref: '#/definitions/Atest' deprecated: false put: tags: - Atest summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Atest.replaceOrCreate__put_Atests parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Atest' responses: '200': description: Request was successful schema: $ref: '#/definitions/Atest' deprecated: false get: tags: - Atest summary: Find all instances of the model matched by filter from the data source. operationId: Atest.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/Atest' deprecated: false /Atests/replaceOrCreate: post: tags: - Atest summary: >- Replace an existing model instance or insert a new one into the data source. operationId: Atest.replaceOrCreate__post_Atests_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/Atest' responses: '200': description: Request was successful schema: $ref: '#/definitions/Atest' deprecated: false /Atests/upsertWithWhere: post: tags: - Atest summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: Atest.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/Atest' responses: '200': description: Request was successful schema: $ref: '#/definitions/Atest' deprecated: false '/Atests/{id}/exists': get: tags: - Atest summary: Check whether a model instance exists in the data source. operationId: 'Atest.exists__get_Atests_{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 '/Atests/{id}': head: tags: - Atest summary: Check whether a model instance exists in the data source. operationId: 'Atest.exists__head_Atests_{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: - Atest summary: 'Find a model instance by {{id}} from the data source.' operationId: Atest.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/Atest' deprecated: false put: tags: - Atest summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Atest.replaceById__put_Atests_{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/Atest' responses: '200': description: Request was successful schema: $ref: '#/definitions/Atest' deprecated: false delete: tags: - Atest summary: 'Delete a model instance by {{id}} from the data source.' operationId: Atest.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: - Atest summary: >- Patch attributes for a model instance and persist it into the data source. operationId: Atest.prototype.patchAttributes parameters: - name: id in: path description: Atest 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/Atest' responses: '200': description: Request was successful schema: $ref: '#/definitions/Atest' deprecated: false '/Atests/{id}/replace': post: tags: - Atest summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'Atest.replaceById__post_Atests_{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/Atest' responses: '200': description: Request was successful schema: $ref: '#/definitions/Atest' deprecated: false /Atests/findOne: get: tags: - Atest summary: Find first instance of the model matched by filter from the data source. operationId: Atest.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/Atest' deprecated: false /Atests/update: post: tags: - Atest summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: Atest.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/Atest' 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 /Atests/count: get: tags: - Atest summary: Count instances of the model matched by where from the data source. operationId: Atest.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 /InterBaidus: post: tags: - InterBaidu summary: Create a new instance of the model and persist it into the data source. operationId: InterBaidu.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterBaidu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBaidu' deprecated: false patch: tags: - InterBaidu summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterBaidu.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterBaidu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBaidu' deprecated: false put: tags: - InterBaidu summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterBaidu.replaceOrCreate__put_InterBaidus parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterBaidu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBaidu' deprecated: false get: tags: - InterBaidu summary: Find all instances of the model matched by filter from the data source. operationId: InterBaidu.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/InterBaidu' deprecated: false /InterBaidus/replaceOrCreate: post: tags: - InterBaidu summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterBaidu.replaceOrCreate__post_InterBaidus_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterBaidu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBaidu' deprecated: false /InterBaidus/upsertWithWhere: post: tags: - InterBaidu summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterBaidu.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/InterBaidu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBaidu' deprecated: false '/InterBaidus/{id}/exists': get: tags: - InterBaidu summary: Check whether a model instance exists in the data source. operationId: 'InterBaidu.exists__get_InterBaidus_{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 '/InterBaidus/{id}': head: tags: - InterBaidu summary: Check whether a model instance exists in the data source. operationId: 'InterBaidu.exists__head_InterBaidus_{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: - InterBaidu summary: 'Find a model instance by {{id}} from the data source.' operationId: InterBaidu.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/InterBaidu' deprecated: false put: tags: - InterBaidu summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterBaidu.replaceById__put_InterBaidus_{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/InterBaidu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBaidu' deprecated: false delete: tags: - InterBaidu summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterBaidu.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: - InterBaidu summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterBaidu.prototype.patchAttributes parameters: - name: id in: path description: InterBaidu 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/InterBaidu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBaidu' deprecated: false '/InterBaidus/{id}/replace': post: tags: - InterBaidu summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterBaidu.replaceById__post_InterBaidus_{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/InterBaidu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBaidu' deprecated: false /InterBaidus/findOne: get: tags: - InterBaidu summary: Find first instance of the model matched by filter from the data source. operationId: InterBaidu.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/InterBaidu' deprecated: false /InterBaidus/update: post: tags: - InterBaidu summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterBaidu.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/InterBaidu' 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 /InterBaidus/count: get: tags: - InterBaidu summary: Count instances of the model matched by where from the data source. operationId: InterBaidu.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 /InterBzhans: post: tags: - InterBzhan summary: Create a new instance of the model and persist it into the data source. operationId: InterBzhan.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterBzhan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBzhan' deprecated: false patch: tags: - InterBzhan summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterBzhan.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterBzhan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBzhan' deprecated: false put: tags: - InterBzhan summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterBzhan.replaceOrCreate__put_InterBzhans parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterBzhan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBzhan' deprecated: false get: tags: - InterBzhan summary: Find all instances of the model matched by filter from the data source. operationId: InterBzhan.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/InterBzhan' deprecated: false /InterBzhans/replaceOrCreate: post: tags: - InterBzhan summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterBzhan.replaceOrCreate__post_InterBzhans_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterBzhan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBzhan' deprecated: false /InterBzhans/upsertWithWhere: post: tags: - InterBzhan summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterBzhan.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/InterBzhan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBzhan' deprecated: false '/InterBzhans/{id}/exists': get: tags: - InterBzhan summary: Check whether a model instance exists in the data source. operationId: 'InterBzhan.exists__get_InterBzhans_{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 '/InterBzhans/{id}': head: tags: - InterBzhan summary: Check whether a model instance exists in the data source. operationId: 'InterBzhan.exists__head_InterBzhans_{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: - InterBzhan summary: 'Find a model instance by {{id}} from the data source.' operationId: InterBzhan.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/InterBzhan' deprecated: false put: tags: - InterBzhan summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterBzhan.replaceById__put_InterBzhans_{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/InterBzhan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBzhan' deprecated: false delete: tags: - InterBzhan summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterBzhan.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: - InterBzhan summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterBzhan.prototype.patchAttributes parameters: - name: id in: path description: InterBzhan 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/InterBzhan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBzhan' deprecated: false '/InterBzhans/{id}/replace': post: tags: - InterBzhan summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterBzhan.replaceById__post_InterBzhans_{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/InterBzhan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterBzhan' deprecated: false /InterBzhans/findOne: get: tags: - InterBzhan summary: Find first instance of the model matched by filter from the data source. operationId: InterBzhan.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/InterBzhan' deprecated: false /InterBzhans/update: post: tags: - InterBzhan summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterBzhan.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/InterBzhan' 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 /InterBzhans/count: get: tags: - InterBzhan summary: Count instances of the model matched by where from the data source. operationId: InterBzhan.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 /InterDogcats: post: tags: - InterDogcat summary: Create a new instance of the model and persist it into the data source. operationId: InterDogcat.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterDogcat' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDogcat' deprecated: false patch: tags: - InterDogcat summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterDogcat.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterDogcat' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDogcat' deprecated: false put: tags: - InterDogcat summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterDogcat.replaceOrCreate__put_InterDogcats parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterDogcat' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDogcat' deprecated: false get: tags: - InterDogcat summary: Find all instances of the model matched by filter from the data source. operationId: InterDogcat.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/InterDogcat' deprecated: false /InterDogcats/replaceOrCreate: post: tags: - InterDogcat summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterDogcat.replaceOrCreate__post_InterDogcats_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterDogcat' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDogcat' deprecated: false /InterDogcats/upsertWithWhere: post: tags: - InterDogcat summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterDogcat.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/InterDogcat' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDogcat' deprecated: false '/InterDogcats/{id}/exists': get: tags: - InterDogcat summary: Check whether a model instance exists in the data source. operationId: 'InterDogcat.exists__get_InterDogcats_{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 '/InterDogcats/{id}': head: tags: - InterDogcat summary: Check whether a model instance exists in the data source. operationId: 'InterDogcat.exists__head_InterDogcats_{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: - InterDogcat summary: 'Find a model instance by {{id}} from the data source.' operationId: InterDogcat.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/InterDogcat' deprecated: false put: tags: - InterDogcat summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterDogcat.replaceById__put_InterDogcats_{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/InterDogcat' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDogcat' deprecated: false delete: tags: - InterDogcat summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterDogcat.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: - InterDogcat summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterDogcat.prototype.patchAttributes parameters: - name: id in: path description: InterDogcat 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/InterDogcat' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDogcat' deprecated: false '/InterDogcats/{id}/replace': post: tags: - InterDogcat summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterDogcat.replaceById__post_InterDogcats_{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/InterDogcat' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDogcat' deprecated: false /InterDogcats/findOne: get: tags: - InterDogcat summary: Find first instance of the model matched by filter from the data source. operationId: InterDogcat.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/InterDogcat' deprecated: false /InterDogcats/update: post: tags: - InterDogcat summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterDogcat.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/InterDogcat' 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 /InterDogcats/count: get: tags: - InterDogcat summary: Count instances of the model matched by where from the data source. operationId: InterDogcat.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 /InterDouyins: post: tags: - InterDouyin summary: Create a new instance of the model and persist it into the data source. operationId: InterDouyin.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterDouyin' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDouyin' deprecated: false patch: tags: - InterDouyin summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterDouyin.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterDouyin' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDouyin' deprecated: false put: tags: - InterDouyin summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterDouyin.replaceOrCreate__put_InterDouyins parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterDouyin' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDouyin' deprecated: false get: tags: - InterDouyin summary: Find all instances of the model matched by filter from the data source. operationId: InterDouyin.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/InterDouyin' deprecated: false /InterDouyins/replaceOrCreate: post: tags: - InterDouyin summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterDouyin.replaceOrCreate__post_InterDouyins_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterDouyin' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDouyin' deprecated: false /InterDouyins/upsertWithWhere: post: tags: - InterDouyin summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterDouyin.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/InterDouyin' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDouyin' deprecated: false '/InterDouyins/{id}/exists': get: tags: - InterDouyin summary: Check whether a model instance exists in the data source. operationId: 'InterDouyin.exists__get_InterDouyins_{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 '/InterDouyins/{id}': head: tags: - InterDouyin summary: Check whether a model instance exists in the data source. operationId: 'InterDouyin.exists__head_InterDouyins_{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: - InterDouyin summary: 'Find a model instance by {{id}} from the data source.' operationId: InterDouyin.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/InterDouyin' deprecated: false put: tags: - InterDouyin summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterDouyin.replaceById__put_InterDouyins_{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/InterDouyin' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDouyin' deprecated: false delete: tags: - InterDouyin summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterDouyin.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: - InterDouyin summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterDouyin.prototype.patchAttributes parameters: - name: id in: path description: InterDouyin 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/InterDouyin' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDouyin' deprecated: false '/InterDouyins/{id}/replace': post: tags: - InterDouyin summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterDouyin.replaceById__post_InterDouyins_{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/InterDouyin' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDouyin' deprecated: false /InterDouyins/findOne: get: tags: - InterDouyin summary: Find first instance of the model matched by filter from the data source. operationId: InterDouyin.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/InterDouyin' deprecated: false /InterDouyins/update: post: tags: - InterDouyin summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterDouyin.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/InterDouyin' 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 /InterDouyins/count: get: tags: - InterDouyin summary: Count instances of the model matched by where from the data source. operationId: InterDouyin.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 /InterQqs: post: tags: - InterQq summary: Create a new instance of the model and persist it into the data source. operationId: InterQq.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterQq' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQq' deprecated: false patch: tags: - InterQq summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterQq.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterQq' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQq' deprecated: false put: tags: - InterQq summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterQq.replaceOrCreate__put_InterQqs parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterQq' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQq' deprecated: false get: tags: - InterQq summary: Find all instances of the model matched by filter from the data source. operationId: InterQq.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/InterQq' deprecated: false /InterQqs/replaceOrCreate: post: tags: - InterQq summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterQq.replaceOrCreate__post_InterQqs_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterQq' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQq' deprecated: false /InterQqs/upsertWithWhere: post: tags: - InterQq summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterQq.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/InterQq' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQq' deprecated: false '/InterQqs/{id}/exists': get: tags: - InterQq summary: Check whether a model instance exists in the data source. operationId: 'InterQq.exists__get_InterQqs_{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 '/InterQqs/{id}': head: tags: - InterQq summary: Check whether a model instance exists in the data source. operationId: 'InterQq.exists__head_InterQqs_{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: - InterQq summary: 'Find a model instance by {{id}} from the data source.' operationId: InterQq.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/InterQq' deprecated: false put: tags: - InterQq summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterQq.replaceById__put_InterQqs_{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/InterQq' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQq' deprecated: false delete: tags: - InterQq summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterQq.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: - InterQq summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterQq.prototype.patchAttributes parameters: - name: id in: path description: InterQq 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/InterQq' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQq' deprecated: false '/InterQqs/{id}/replace': post: tags: - InterQq summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterQq.replaceById__post_InterQqs_{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/InterQq' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQq' deprecated: false /InterQqs/findOne: get: tags: - InterQq summary: Find first instance of the model matched by filter from the data source. operationId: InterQq.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/InterQq' deprecated: false /InterQqs/update: post: tags: - InterQq summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterQq.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/InterQq' 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 /InterQqs/count: get: tags: - InterQq summary: Count instances of the model matched by where from the data source. operationId: InterQq.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 /InterToutiaos: post: tags: - InterToutiao summary: Create a new instance of the model and persist it into the data source. operationId: InterToutiao.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterToutiao' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterToutiao' deprecated: false patch: tags: - InterToutiao summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterToutiao.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterToutiao' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterToutiao' deprecated: false put: tags: - InterToutiao summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterToutiao.replaceOrCreate__put_InterToutiaos parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterToutiao' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterToutiao' deprecated: false get: tags: - InterToutiao summary: Find all instances of the model matched by filter from the data source. operationId: InterToutiao.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/InterToutiao' deprecated: false /InterToutiaos/replaceOrCreate: post: tags: - InterToutiao summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterToutiao.replaceOrCreate__post_InterToutiaos_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterToutiao' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterToutiao' deprecated: false /InterToutiaos/upsertWithWhere: post: tags: - InterToutiao summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterToutiao.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/InterToutiao' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterToutiao' deprecated: false '/InterToutiaos/{id}/exists': get: tags: - InterToutiao summary: Check whether a model instance exists in the data source. operationId: 'InterToutiao.exists__get_InterToutiaos_{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 '/InterToutiaos/{id}': head: tags: - InterToutiao summary: Check whether a model instance exists in the data source. operationId: 'InterToutiao.exists__head_InterToutiaos_{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: - InterToutiao summary: 'Find a model instance by {{id}} from the data source.' operationId: InterToutiao.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/InterToutiao' deprecated: false put: tags: - InterToutiao summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterToutiao.replaceById__put_InterToutiaos_{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/InterToutiao' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterToutiao' deprecated: false delete: tags: - InterToutiao summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterToutiao.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: - InterToutiao summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterToutiao.prototype.patchAttributes parameters: - name: id in: path description: InterToutiao 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/InterToutiao' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterToutiao' deprecated: false '/InterToutiaos/{id}/replace': post: tags: - InterToutiao summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterToutiao.replaceById__post_InterToutiaos_{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/InterToutiao' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterToutiao' deprecated: false /InterToutiaos/findOne: get: tags: - InterToutiao summary: Find first instance of the model matched by filter from the data source. operationId: InterToutiao.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/InterToutiao' deprecated: false /InterToutiaos/update: post: tags: - InterToutiao summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterToutiao.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/InterToutiao' 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 /InterToutiaos/count: get: tags: - InterToutiao summary: Count instances of the model matched by where from the data source. operationId: InterToutiao.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 /InterWeibos: post: tags: - InterWeibo summary: Create a new instance of the model and persist it into the data source. operationId: InterWeibo.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterWeibo' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterWeibo' deprecated: false patch: tags: - InterWeibo summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterWeibo.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterWeibo' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterWeibo' deprecated: false put: tags: - InterWeibo summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterWeibo.replaceOrCreate__put_InterWeibos parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterWeibo' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterWeibo' deprecated: false get: tags: - InterWeibo summary: Find all instances of the model matched by filter from the data source. operationId: InterWeibo.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/InterWeibo' deprecated: false /InterWeibos/replaceOrCreate: post: tags: - InterWeibo summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterWeibo.replaceOrCreate__post_InterWeibos_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterWeibo' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterWeibo' deprecated: false /InterWeibos/upsertWithWhere: post: tags: - InterWeibo summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterWeibo.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/InterWeibo' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterWeibo' deprecated: false '/InterWeibos/{id}/exists': get: tags: - InterWeibo summary: Check whether a model instance exists in the data source. operationId: 'InterWeibo.exists__get_InterWeibos_{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 '/InterWeibos/{id}': head: tags: - InterWeibo summary: Check whether a model instance exists in the data source. operationId: 'InterWeibo.exists__head_InterWeibos_{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: - InterWeibo summary: 'Find a model instance by {{id}} from the data source.' operationId: InterWeibo.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/InterWeibo' deprecated: false put: tags: - InterWeibo summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterWeibo.replaceById__put_InterWeibos_{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/InterWeibo' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterWeibo' deprecated: false delete: tags: - InterWeibo summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterWeibo.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: - InterWeibo summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterWeibo.prototype.patchAttributes parameters: - name: id in: path description: InterWeibo 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/InterWeibo' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterWeibo' deprecated: false '/InterWeibos/{id}/replace': post: tags: - InterWeibo summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterWeibo.replaceById__post_InterWeibos_{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/InterWeibo' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterWeibo' deprecated: false /InterWeibos/findOne: get: tags: - InterWeibo summary: Find first instance of the model matched by filter from the data source. operationId: InterWeibo.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/InterWeibo' deprecated: false /InterWeibos/update: post: tags: - InterWeibo summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterWeibo.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/InterWeibo' 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 /InterWeibos/count: get: tags: - InterWeibo summary: Count instances of the model matched by where from the data source. operationId: InterWeibo.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 /InterZhihus: post: tags: - InterZhihu summary: Create a new instance of the model and persist it into the data source. operationId: InterZhihu.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterZhihu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterZhihu' deprecated: false patch: tags: - InterZhihu summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterZhihu.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterZhihu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterZhihu' deprecated: false put: tags: - InterZhihu summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterZhihu.replaceOrCreate__put_InterZhihus parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterZhihu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterZhihu' deprecated: false get: tags: - InterZhihu summary: Find all instances of the model matched by filter from the data source. operationId: InterZhihu.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/InterZhihu' deprecated: false /InterZhihus/replaceOrCreate: post: tags: - InterZhihu summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterZhihu.replaceOrCreate__post_InterZhihus_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterZhihu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterZhihu' deprecated: false /InterZhihus/upsertWithWhere: post: tags: - InterZhihu summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterZhihu.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/InterZhihu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterZhihu' deprecated: false '/InterZhihus/{id}/exists': get: tags: - InterZhihu summary: Check whether a model instance exists in the data source. operationId: 'InterZhihu.exists__get_InterZhihus_{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 '/InterZhihus/{id}': head: tags: - InterZhihu summary: Check whether a model instance exists in the data source. operationId: 'InterZhihu.exists__head_InterZhihus_{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: - InterZhihu summary: 'Find a model instance by {{id}} from the data source.' operationId: InterZhihu.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/InterZhihu' deprecated: false put: tags: - InterZhihu summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterZhihu.replaceById__put_InterZhihus_{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/InterZhihu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterZhihu' deprecated: false delete: tags: - InterZhihu summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterZhihu.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: - InterZhihu summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterZhihu.prototype.patchAttributes parameters: - name: id in: path description: InterZhihu 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/InterZhihu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterZhihu' deprecated: false '/InterZhihus/{id}/replace': post: tags: - InterZhihu summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterZhihu.replaceById__post_InterZhihus_{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/InterZhihu' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterZhihu' deprecated: false /InterZhihus/findOne: get: tags: - InterZhihu summary: Find first instance of the model matched by filter from the data source. operationId: InterZhihu.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/InterZhihu' deprecated: false /InterZhihus/update: post: tags: - InterZhihu summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterZhihu.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/InterZhihu' 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 /InterZhihus/count: get: tags: - InterZhihu summary: Count instances of the model matched by where from the data source. operationId: InterZhihu.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 /InterDoctors: post: tags: - InterDoctor summary: Create a new instance of the model and persist it into the data source. operationId: InterDoctor.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDoctor' deprecated: false patch: tags: - InterDoctor summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterDoctor.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDoctor' deprecated: false put: tags: - InterDoctor summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterDoctor.replaceOrCreate__put_InterDoctors parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDoctor' deprecated: false get: tags: - InterDoctor summary: Find all instances of the model matched by filter from the data source. operationId: InterDoctor.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/InterDoctor' deprecated: false /InterDoctors/replaceOrCreate: post: tags: - InterDoctor summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterDoctor.replaceOrCreate__post_InterDoctors_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDoctor' deprecated: false /InterDoctors/upsertWithWhere: post: tags: - InterDoctor summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterDoctor.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/InterDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDoctor' deprecated: false '/InterDoctors/{id}/exists': get: tags: - InterDoctor summary: Check whether a model instance exists in the data source. operationId: 'InterDoctor.exists__get_InterDoctors_{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 '/InterDoctors/{id}': head: tags: - InterDoctor summary: Check whether a model instance exists in the data source. operationId: 'InterDoctor.exists__head_InterDoctors_{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: - InterDoctor summary: 'Find a model instance by {{id}} from the data source.' operationId: InterDoctor.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/InterDoctor' deprecated: false put: tags: - InterDoctor summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterDoctor.replaceById__put_InterDoctors_{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/InterDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDoctor' deprecated: false delete: tags: - InterDoctor summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterDoctor.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: - InterDoctor summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterDoctor.prototype.patchAttributes parameters: - name: id in: path description: InterDoctor 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/InterDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDoctor' deprecated: false '/InterDoctors/{id}/replace': post: tags: - InterDoctor summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterDoctor.replaceById__post_InterDoctors_{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/InterDoctor' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterDoctor' deprecated: false /InterDoctors/findOne: get: tags: - InterDoctor summary: Find first instance of the model matched by filter from the data source. operationId: InterDoctor.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/InterDoctor' deprecated: false /InterDoctors/update: post: tags: - InterDoctor summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterDoctor.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/InterDoctor' 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 /InterDoctors/count: get: tags: - InterDoctor summary: Count instances of the model matched by where from the data source. operationId: InterDoctor.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 /InterTengxuns: post: tags: - InterTengxun summary: Create a new instance of the model and persist it into the data source. operationId: InterTengxun.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterTengxun' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTengxun' deprecated: false patch: tags: - InterTengxun summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterTengxun.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterTengxun' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTengxun' deprecated: false put: tags: - InterTengxun summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterTengxun.replaceOrCreate__put_InterTengxuns parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterTengxun' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTengxun' deprecated: false get: tags: - InterTengxun summary: Find all instances of the model matched by filter from the data source. operationId: InterTengxun.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/InterTengxun' deprecated: false /InterTengxuns/replaceOrCreate: post: tags: - InterTengxun summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterTengxun.replaceOrCreate__post_InterTengxuns_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterTengxun' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTengxun' deprecated: false /InterTengxuns/upsertWithWhere: post: tags: - InterTengxun summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterTengxun.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/InterTengxun' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTengxun' deprecated: false '/InterTengxuns/{id}/exists': get: tags: - InterTengxun summary: Check whether a model instance exists in the data source. operationId: 'InterTengxun.exists__get_InterTengxuns_{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 '/InterTengxuns/{id}': head: tags: - InterTengxun summary: Check whether a model instance exists in the data source. operationId: 'InterTengxun.exists__head_InterTengxuns_{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: - InterTengxun summary: 'Find a model instance by {{id}} from the data source.' operationId: InterTengxun.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/InterTengxun' deprecated: false put: tags: - InterTengxun summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterTengxun.replaceById__put_InterTengxuns_{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/InterTengxun' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTengxun' deprecated: false delete: tags: - InterTengxun summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterTengxun.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: - InterTengxun summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterTengxun.prototype.patchAttributes parameters: - name: id in: path description: InterTengxun 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/InterTengxun' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTengxun' deprecated: false '/InterTengxuns/{id}/replace': post: tags: - InterTengxun summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterTengxun.replaceById__post_InterTengxuns_{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/InterTengxun' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTengxun' deprecated: false /InterTengxuns/findOne: get: tags: - InterTengxun summary: Find first instance of the model matched by filter from the data source. operationId: InterTengxun.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/InterTengxun' deprecated: false /InterTengxuns/update: post: tags: - InterTengxun summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterTengxun.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/InterTengxun' 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 /InterTengxuns/count: get: tags: - InterTengxun summary: Count instances of the model matched by where from the data source. operationId: InterTengxun.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 /InterMiaopais: post: tags: - InterMiaopai summary: Create a new instance of the model and persist it into the data source. operationId: InterMiaopai.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterMiaopai' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMiaopai' deprecated: false patch: tags: - InterMiaopai summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterMiaopai.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterMiaopai' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMiaopai' deprecated: false put: tags: - InterMiaopai summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterMiaopai.replaceOrCreate__put_InterMiaopais parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterMiaopai' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMiaopai' deprecated: false get: tags: - InterMiaopai summary: Find all instances of the model matched by filter from the data source. operationId: InterMiaopai.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/InterMiaopai' deprecated: false /InterMiaopais/replaceOrCreate: post: tags: - InterMiaopai summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterMiaopai.replaceOrCreate__post_InterMiaopais_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterMiaopai' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMiaopai' deprecated: false /InterMiaopais/upsertWithWhere: post: tags: - InterMiaopai summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterMiaopai.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/InterMiaopai' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMiaopai' deprecated: false '/InterMiaopais/{id}/exists': get: tags: - InterMiaopai summary: Check whether a model instance exists in the data source. operationId: 'InterMiaopai.exists__get_InterMiaopais_{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 '/InterMiaopais/{id}': head: tags: - InterMiaopai summary: Check whether a model instance exists in the data source. operationId: 'InterMiaopai.exists__head_InterMiaopais_{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: - InterMiaopai summary: 'Find a model instance by {{id}} from the data source.' operationId: InterMiaopai.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/InterMiaopai' deprecated: false put: tags: - InterMiaopai summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterMiaopai.replaceById__put_InterMiaopais_{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/InterMiaopai' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMiaopai' deprecated: false delete: tags: - InterMiaopai summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterMiaopai.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: - InterMiaopai summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterMiaopai.prototype.patchAttributes parameters: - name: id in: path description: InterMiaopai 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/InterMiaopai' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMiaopai' deprecated: false '/InterMiaopais/{id}/replace': post: tags: - InterMiaopai summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterMiaopai.replaceById__post_InterMiaopais_{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/InterMiaopai' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterMiaopai' deprecated: false /InterMiaopais/findOne: get: tags: - InterMiaopai summary: Find first instance of the model matched by filter from the data source. operationId: InterMiaopai.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/InterMiaopai' deprecated: false /InterMiaopais/update: post: tags: - InterMiaopai summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterMiaopai.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/InterMiaopai' 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 /InterMiaopais/count: get: tags: - InterMiaopai summary: Count instances of the model matched by where from the data source. operationId: InterMiaopai.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 /InterTotals: post: tags: - InterTotal summary: Create a new instance of the model and persist it into the data source. operationId: InterTotal.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTotal' deprecated: false patch: tags: - InterTotal summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterTotal.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTotal' deprecated: false put: tags: - InterTotal summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterTotal.replaceOrCreate__put_InterTotals parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTotal' deprecated: false get: tags: - InterTotal summary: Find all instances of the model matched by filter from the data source. operationId: InterTotal.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/InterTotal' deprecated: false /InterTotals/replaceOrCreate: post: tags: - InterTotal summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterTotal.replaceOrCreate__post_InterTotals_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTotal' deprecated: false /InterTotals/upsertWithWhere: post: tags: - InterTotal summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterTotal.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/InterTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTotal' deprecated: false '/InterTotals/{id}/exists': get: tags: - InterTotal summary: Check whether a model instance exists in the data source. operationId: 'InterTotal.exists__get_InterTotals_{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 '/InterTotals/{id}': head: tags: - InterTotal summary: Check whether a model instance exists in the data source. operationId: 'InterTotal.exists__head_InterTotals_{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: - InterTotal summary: 'Find a model instance by {{id}} from the data source.' operationId: InterTotal.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/InterTotal' deprecated: false put: tags: - InterTotal summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterTotal.replaceById__put_InterTotals_{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/InterTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTotal' deprecated: false delete: tags: - InterTotal summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterTotal.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: - InterTotal summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterTotal.prototype.patchAttributes parameters: - name: id in: path description: InterTotal 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/InterTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTotal' deprecated: false '/InterTotals/{id}/replace': post: tags: - InterTotal summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterTotal.replaceById__post_InterTotals_{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/InterTotal' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterTotal' deprecated: false /InterTotals/findOne: get: tags: - InterTotal summary: Find first instance of the model matched by filter from the data source. operationId: InterTotal.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/InterTotal' deprecated: false /InterTotals/update: post: tags: - InterTotal summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterTotal.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/InterTotal' 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 /InterTotals/count: get: tags: - InterTotal summary: Count instances of the model matched by where from the data source. operationId: InterTotal.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 /InterYesterdays: post: tags: - InterYesterday summary: Create a new instance of the model and persist it into the data source. operationId: InterYesterday.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterYesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterYesterday' deprecated: false patch: tags: - InterYesterday summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterYesterday.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterYesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterYesterday' deprecated: false put: tags: - InterYesterday summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterYesterday.replaceOrCreate__put_InterYesterdays parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterYesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterYesterday' deprecated: false get: tags: - InterYesterday summary: Find all instances of the model matched by filter from the data source. operationId: InterYesterday.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/InterYesterday' deprecated: false /InterYesterdays/replaceOrCreate: post: tags: - InterYesterday summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterYesterday.replaceOrCreate__post_InterYesterdays_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterYesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterYesterday' deprecated: false /InterYesterdays/upsertWithWhere: post: tags: - InterYesterday summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterYesterday.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/InterYesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterYesterday' deprecated: false '/InterYesterdays/{id}/exists': get: tags: - InterYesterday summary: Check whether a model instance exists in the data source. operationId: 'InterYesterday.exists__get_InterYesterdays_{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 '/InterYesterdays/{id}': head: tags: - InterYesterday summary: Check whether a model instance exists in the data source. operationId: 'InterYesterday.exists__head_InterYesterdays_{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: - InterYesterday summary: 'Find a model instance by {{id}} from the data source.' operationId: InterYesterday.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/InterYesterday' deprecated: false put: tags: - InterYesterday summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterYesterday.replaceById__put_InterYesterdays_{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/InterYesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterYesterday' deprecated: false delete: tags: - InterYesterday summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterYesterday.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: - InterYesterday summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterYesterday.prototype.patchAttributes parameters: - name: id in: path description: InterYesterday 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/InterYesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterYesterday' deprecated: false '/InterYesterdays/{id}/replace': post: tags: - InterYesterday summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterYesterday.replaceById__post_InterYesterdays_{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/InterYesterday' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterYesterday' deprecated: false /InterYesterdays/findOne: get: tags: - InterYesterday summary: Find first instance of the model matched by filter from the data source. operationId: InterYesterday.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/InterYesterday' deprecated: false /InterYesterdays/update: post: tags: - InterYesterday summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterYesterday.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/InterYesterday' 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 /InterYesterdays/count: get: tags: - InterYesterday summary: Count instances of the model matched by where from the data source. operationId: InterYesterday.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 /BillEachbrands: post: tags: - BillEachbrands summary: Create a new instance of the model and persist it into the data source. operationId: BillEachbrands.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillEachbrands' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillEachbrands' deprecated: false patch: tags: - BillEachbrands summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillEachbrands.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillEachbrands' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillEachbrands' deprecated: false put: tags: - BillEachbrands summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillEachbrands.replaceOrCreate__put_BillEachbrands parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillEachbrands' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillEachbrands' deprecated: false get: tags: - BillEachbrands summary: Find all instances of the model matched by filter from the data source. operationId: BillEachbrands.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/BillEachbrands' deprecated: false /BillEachbrands/replaceOrCreate: post: tags: - BillEachbrands summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillEachbrands.replaceOrCreate__post_BillEachbrands_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillEachbrands' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillEachbrands' deprecated: false /BillEachbrands/upsertWithWhere: post: tags: - BillEachbrands summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillEachbrands.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/BillEachbrands' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillEachbrands' deprecated: false '/BillEachbrands/{id}/exists': get: tags: - BillEachbrands summary: Check whether a model instance exists in the data source. operationId: 'BillEachbrands.exists__get_BillEachbrands_{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 '/BillEachbrands/{id}': head: tags: - BillEachbrands summary: Check whether a model instance exists in the data source. operationId: 'BillEachbrands.exists__head_BillEachbrands_{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: - BillEachbrands summary: 'Find a model instance by {{id}} from the data source.' operationId: BillEachbrands.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/BillEachbrands' deprecated: false put: tags: - BillEachbrands summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillEachbrands.replaceById__put_BillEachbrands_{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/BillEachbrands' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillEachbrands' deprecated: false delete: tags: - BillEachbrands summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillEachbrands.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: - BillEachbrands summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillEachbrands.prototype.patchAttributes parameters: - name: id in: path description: BillEachbrands 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/BillEachbrands' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillEachbrands' deprecated: false '/BillEachbrands/{id}/replace': post: tags: - BillEachbrands summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillEachbrands.replaceById__post_BillEachbrands_{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/BillEachbrands' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillEachbrands' deprecated: false /BillEachbrands/findOne: get: tags: - BillEachbrands summary: Find first instance of the model matched by filter from the data source. operationId: BillEachbrands.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/BillEachbrands' deprecated: false /BillEachbrands/update: post: tags: - BillEachbrands summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillEachbrands.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/BillEachbrands' 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 /BillEachbrands/count: get: tags: - BillEachbrands summary: Count instances of the model matched by where from the data source. operationId: BillEachbrands.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 /BillCategories: post: tags: - BillCategory summary: Create a new instance of the model and persist it into the data source. operationId: BillCategory.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCategory' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCategory' deprecated: false patch: tags: - BillCategory summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillCategory.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCategory' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCategory' deprecated: false put: tags: - BillCategory summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillCategory.replaceOrCreate__put_BillCategories parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCategory' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCategory' deprecated: false get: tags: - BillCategory summary: Find all instances of the model matched by filter from the data source. operationId: BillCategory.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/BillCategory' deprecated: false /BillCategories/replaceOrCreate: post: tags: - BillCategory summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillCategory.replaceOrCreate__post_BillCategories_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillCategory' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCategory' deprecated: false /BillCategories/upsertWithWhere: post: tags: - BillCategory summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillCategory.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/BillCategory' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCategory' deprecated: false '/BillCategories/{id}/exists': get: tags: - BillCategory summary: Check whether a model instance exists in the data source. operationId: 'BillCategory.exists__get_BillCategories_{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 '/BillCategories/{id}': head: tags: - BillCategory summary: Check whether a model instance exists in the data source. operationId: 'BillCategory.exists__head_BillCategories_{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: - BillCategory summary: 'Find a model instance by {{id}} from the data source.' operationId: BillCategory.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/BillCategory' deprecated: false put: tags: - BillCategory summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillCategory.replaceById__put_BillCategories_{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/BillCategory' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCategory' deprecated: false delete: tags: - BillCategory summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillCategory.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: - BillCategory summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillCategory.prototype.patchAttributes parameters: - name: id in: path description: BillCategory 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/BillCategory' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCategory' deprecated: false '/BillCategories/{id}/replace': post: tags: - BillCategory summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillCategory.replaceById__post_BillCategories_{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/BillCategory' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillCategory' deprecated: false /BillCategories/findOne: get: tags: - BillCategory summary: Find first instance of the model matched by filter from the data source. operationId: BillCategory.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/BillCategory' deprecated: false /BillCategories/update: post: tags: - BillCategory summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillCategory.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/BillCategory' 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 /BillCategories/count: get: tags: - BillCategory summary: Count instances of the model matched by where from the data source. operationId: BillCategory.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 /BillShops: post: tags: - BillShop summary: Create a new instance of the model and persist it into the data source. operationId: BillShop.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillShop' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillShop' deprecated: false patch: tags: - BillShop summary: >- Patch an existing model instance or insert a new one into the data source. operationId: BillShop.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillShop' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillShop' deprecated: false put: tags: - BillShop summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillShop.replaceOrCreate__put_BillShops parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillShop' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillShop' deprecated: false get: tags: - BillShop summary: Find all instances of the model matched by filter from the data source. operationId: BillShop.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/BillShop' deprecated: false /BillShops/replaceOrCreate: post: tags: - BillShop summary: >- Replace an existing model instance or insert a new one into the data source. operationId: BillShop.replaceOrCreate__post_BillShops_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/BillShop' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillShop' deprecated: false /BillShops/upsertWithWhere: post: tags: - BillShop summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: BillShop.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/BillShop' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillShop' deprecated: false '/BillShops/{id}/exists': get: tags: - BillShop summary: Check whether a model instance exists in the data source. operationId: 'BillShop.exists__get_BillShops_{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 '/BillShops/{id}': head: tags: - BillShop summary: Check whether a model instance exists in the data source. operationId: 'BillShop.exists__head_BillShops_{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: - BillShop summary: 'Find a model instance by {{id}} from the data source.' operationId: BillShop.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/BillShop' deprecated: false put: tags: - BillShop summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillShop.replaceById__put_BillShops_{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/BillShop' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillShop' deprecated: false delete: tags: - BillShop summary: 'Delete a model instance by {{id}} from the data source.' operationId: BillShop.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: - BillShop summary: >- Patch attributes for a model instance and persist it into the data source. operationId: BillShop.prototype.patchAttributes parameters: - name: id in: path description: BillShop 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/BillShop' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillShop' deprecated: false '/BillShops/{id}/replace': post: tags: - BillShop summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'BillShop.replaceById__post_BillShops_{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/BillShop' responses: '200': description: Request was successful schema: $ref: '#/definitions/BillShop' deprecated: false /BillShops/findOne: get: tags: - BillShop summary: Find first instance of the model matched by filter from the data source. operationId: BillShop.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/BillShop' deprecated: false /BillShops/update: post: tags: - BillShop summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: BillShop.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/BillShop' 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 /BillShops/count: get: tags: - BillShop summary: Count instances of the model matched by where from the data source. operationId: BillShop.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 /AnotherForteachers: post: tags: - AnotherForteacher summary: Create a new instance of the model and persist it into the data source. operationId: AnotherForteacher.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/AnotherForteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherForteacher' deprecated: false patch: tags: - AnotherForteacher summary: >- Patch an existing model instance or insert a new one into the data source. operationId: AnotherForteacher.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/AnotherForteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherForteacher' deprecated: false put: tags: - AnotherForteacher summary: >- Replace an existing model instance or insert a new one into the data source. operationId: AnotherForteacher.replaceOrCreate__put_AnotherForteachers parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/AnotherForteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherForteacher' deprecated: false get: tags: - AnotherForteacher summary: Find all instances of the model matched by filter from the data source. operationId: AnotherForteacher.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/AnotherForteacher' deprecated: false /AnotherForteachers/replaceOrCreate: post: tags: - AnotherForteacher summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- AnotherForteacher.replaceOrCreate__post_AnotherForteachers_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/AnotherForteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherForteacher' deprecated: false /AnotherForteachers/upsertWithWhere: post: tags: - AnotherForteacher summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: AnotherForteacher.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/AnotherForteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherForteacher' deprecated: false '/AnotherForteachers/{id}/exists': get: tags: - AnotherForteacher summary: Check whether a model instance exists in the data source. operationId: 'AnotherForteacher.exists__get_AnotherForteachers_{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 '/AnotherForteachers/{id}': head: tags: - AnotherForteacher summary: Check whether a model instance exists in the data source. operationId: 'AnotherForteacher.exists__head_AnotherForteachers_{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: - AnotherForteacher summary: 'Find a model instance by {{id}} from the data source.' operationId: AnotherForteacher.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/AnotherForteacher' deprecated: false put: tags: - AnotherForteacher summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'AnotherForteacher.replaceById__put_AnotherForteachers_{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/AnotherForteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherForteacher' deprecated: false delete: tags: - AnotherForteacher summary: 'Delete a model instance by {{id}} from the data source.' operationId: AnotherForteacher.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: - AnotherForteacher summary: >- Patch attributes for a model instance and persist it into the data source. operationId: AnotherForteacher.prototype.patchAttributes parameters: - name: id in: path description: AnotherForteacher 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/AnotherForteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherForteacher' deprecated: false '/AnotherForteachers/{id}/replace': post: tags: - AnotherForteacher summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'AnotherForteacher.replaceById__post_AnotherForteachers_{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/AnotherForteacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherForteacher' deprecated: false /AnotherForteachers/findOne: get: tags: - AnotherForteacher summary: Find first instance of the model matched by filter from the data source. operationId: AnotherForteacher.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/AnotherForteacher' deprecated: false /AnotherForteachers/update: post: tags: - AnotherForteacher summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: AnotherForteacher.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/AnotherForteacher' 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 /AnotherForteachers/count: get: tags: - AnotherForteacher summary: Count instances of the model matched by where from the data source. operationId: AnotherForteacher.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 /AnotherTeachers: post: tags: - AnotherTeacher summary: Create a new instance of the model and persist it into the data source. operationId: AnotherTeacher.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/AnotherTeacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherTeacher' deprecated: false patch: tags: - AnotherTeacher summary: >- Patch an existing model instance or insert a new one into the data source. operationId: AnotherTeacher.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/AnotherTeacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherTeacher' deprecated: false put: tags: - AnotherTeacher summary: >- Replace an existing model instance or insert a new one into the data source. operationId: AnotherTeacher.replaceOrCreate__put_AnotherTeachers parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/AnotherTeacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherTeacher' deprecated: false get: tags: - AnotherTeacher summary: Find all instances of the model matched by filter from the data source. operationId: AnotherTeacher.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/AnotherTeacher' deprecated: false /AnotherTeachers/replaceOrCreate: post: tags: - AnotherTeacher summary: >- Replace an existing model instance or insert a new one into the data source. operationId: AnotherTeacher.replaceOrCreate__post_AnotherTeachers_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/AnotherTeacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherTeacher' deprecated: false /AnotherTeachers/upsertWithWhere: post: tags: - AnotherTeacher summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: AnotherTeacher.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/AnotherTeacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherTeacher' deprecated: false '/AnotherTeachers/{id}/exists': get: tags: - AnotherTeacher summary: Check whether a model instance exists in the data source. operationId: 'AnotherTeacher.exists__get_AnotherTeachers_{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 '/AnotherTeachers/{id}': head: tags: - AnotherTeacher summary: Check whether a model instance exists in the data source. operationId: 'AnotherTeacher.exists__head_AnotherTeachers_{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: - AnotherTeacher summary: 'Find a model instance by {{id}} from the data source.' operationId: AnotherTeacher.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/AnotherTeacher' deprecated: false put: tags: - AnotherTeacher summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'AnotherTeacher.replaceById__put_AnotherTeachers_{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/AnotherTeacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherTeacher' deprecated: false delete: tags: - AnotherTeacher summary: 'Delete a model instance by {{id}} from the data source.' operationId: AnotherTeacher.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: - AnotherTeacher summary: >- Patch attributes for a model instance and persist it into the data source. operationId: AnotherTeacher.prototype.patchAttributes parameters: - name: id in: path description: AnotherTeacher 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/AnotherTeacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherTeacher' deprecated: false '/AnotherTeachers/{id}/replace': post: tags: - AnotherTeacher summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'AnotherTeacher.replaceById__post_AnotherTeachers_{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/AnotherTeacher' responses: '200': description: Request was successful schema: $ref: '#/definitions/AnotherTeacher' deprecated: false /AnotherTeachers/findOne: get: tags: - AnotherTeacher summary: Find first instance of the model matched by filter from the data source. operationId: AnotherTeacher.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/AnotherTeacher' deprecated: false /AnotherTeachers/update: post: tags: - AnotherTeacher summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: AnotherTeacher.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/AnotherTeacher' 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 /AnotherTeachers/count: get: tags: - AnotherTeacher summary: Count instances of the model matched by where from the data source. operationId: AnotherTeacher.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 /HosCasereturns: post: tags: - HosCasereturn summary: Create a new instance of the model and persist it into the data source. operationId: HosCasereturn.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosCasereturn' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCasereturn' deprecated: false patch: tags: - HosCasereturn summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosCasereturn.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosCasereturn' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCasereturn' deprecated: false put: tags: - HosCasereturn summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosCasereturn.replaceOrCreate__put_HosCasereturns parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosCasereturn' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCasereturn' deprecated: false get: tags: - HosCasereturn summary: Find all instances of the model matched by filter from the data source. operationId: HosCasereturn.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/HosCasereturn' deprecated: false /HosCasereturns/replaceOrCreate: post: tags: - HosCasereturn summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosCasereturn.replaceOrCreate__post_HosCasereturns_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosCasereturn' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCasereturn' deprecated: false /HosCasereturns/upsertWithWhere: post: tags: - HosCasereturn summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosCasereturn.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/HosCasereturn' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCasereturn' deprecated: false '/HosCasereturns/{id}/exists': get: tags: - HosCasereturn summary: Check whether a model instance exists in the data source. operationId: 'HosCasereturn.exists__get_HosCasereturns_{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 '/HosCasereturns/{id}': head: tags: - HosCasereturn summary: Check whether a model instance exists in the data source. operationId: 'HosCasereturn.exists__head_HosCasereturns_{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: - HosCasereturn summary: 'Find a model instance by {{id}} from the data source.' operationId: HosCasereturn.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/HosCasereturn' deprecated: false put: tags: - HosCasereturn summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosCasereturn.replaceById__put_HosCasereturns_{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/HosCasereturn' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCasereturn' deprecated: false delete: tags: - HosCasereturn summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosCasereturn.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: - HosCasereturn summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosCasereturn.prototype.patchAttributes parameters: - name: id in: path description: HosCasereturn 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/HosCasereturn' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCasereturn' deprecated: false '/HosCasereturns/{id}/replace': post: tags: - HosCasereturn summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosCasereturn.replaceById__post_HosCasereturns_{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/HosCasereturn' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCasereturn' deprecated: false /HosCasereturns/findOne: get: tags: - HosCasereturn summary: Find first instance of the model matched by filter from the data source. operationId: HosCasereturn.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/HosCasereturn' deprecated: false /HosCasereturns/update: post: tags: - HosCasereturn summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosCasereturn.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/HosCasereturn' 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 /HosCasereturns/count: get: tags: - HosCasereturn summary: Count instances of the model matched by where from the data source. operationId: HosCasereturn.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 /HosCuscnts: post: tags: - HosCuscnt summary: Create a new instance of the model and persist it into the data source. operationId: HosCuscnt.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosCuscnt' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCuscnt' deprecated: false patch: tags: - HosCuscnt summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosCuscnt.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosCuscnt' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCuscnt' deprecated: false put: tags: - HosCuscnt summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosCuscnt.replaceOrCreate__put_HosCuscnts parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosCuscnt' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCuscnt' deprecated: false get: tags: - HosCuscnt summary: Find all instances of the model matched by filter from the data source. operationId: HosCuscnt.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/HosCuscnt' deprecated: false /HosCuscnts/replaceOrCreate: post: tags: - HosCuscnt summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosCuscnt.replaceOrCreate__post_HosCuscnts_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosCuscnt' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCuscnt' deprecated: false /HosCuscnts/upsertWithWhere: post: tags: - HosCuscnt summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosCuscnt.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/HosCuscnt' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCuscnt' deprecated: false '/HosCuscnts/{id}/exists': get: tags: - HosCuscnt summary: Check whether a model instance exists in the data source. operationId: 'HosCuscnt.exists__get_HosCuscnts_{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 '/HosCuscnts/{id}': head: tags: - HosCuscnt summary: Check whether a model instance exists in the data source. operationId: 'HosCuscnt.exists__head_HosCuscnts_{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: - HosCuscnt summary: 'Find a model instance by {{id}} from the data source.' operationId: HosCuscnt.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/HosCuscnt' deprecated: false put: tags: - HosCuscnt summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosCuscnt.replaceById__put_HosCuscnts_{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/HosCuscnt' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCuscnt' deprecated: false delete: tags: - HosCuscnt summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosCuscnt.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: - HosCuscnt summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosCuscnt.prototype.patchAttributes parameters: - name: id in: path description: HosCuscnt 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/HosCuscnt' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCuscnt' deprecated: false '/HosCuscnts/{id}/replace': post: tags: - HosCuscnt summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosCuscnt.replaceById__post_HosCuscnts_{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/HosCuscnt' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCuscnt' deprecated: false /HosCuscnts/findOne: get: tags: - HosCuscnt summary: Find first instance of the model matched by filter from the data source. operationId: HosCuscnt.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/HosCuscnt' deprecated: false /HosCuscnts/update: post: tags: - HosCuscnt summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosCuscnt.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/HosCuscnt' 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 /HosCuscnts/count: get: tags: - HosCuscnt summary: Count instances of the model matched by where from the data source. operationId: HosCuscnt.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 /HosCosmetologies: post: tags: - HosCosmetology summary: Create a new instance of the model and persist it into the data source. operationId: HosCosmetology.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCosmetology' deprecated: false patch: tags: - HosCosmetology summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosCosmetology.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCosmetology' deprecated: false put: tags: - HosCosmetology summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosCosmetology.replaceOrCreate__put_HosCosmetologies parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCosmetology' deprecated: false get: tags: - HosCosmetology summary: Find all instances of the model matched by filter from the data source. operationId: HosCosmetology.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/HosCosmetology' deprecated: false /HosCosmetologies/replaceOrCreate: post: tags: - HosCosmetology summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosCosmetology.replaceOrCreate__post_HosCosmetologies_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCosmetology' deprecated: false /HosCosmetologies/upsertWithWhere: post: tags: - HosCosmetology summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosCosmetology.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/HosCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCosmetology' deprecated: false '/HosCosmetologies/{id}/exists': get: tags: - HosCosmetology summary: Check whether a model instance exists in the data source. operationId: 'HosCosmetology.exists__get_HosCosmetologies_{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 '/HosCosmetologies/{id}': head: tags: - HosCosmetology summary: Check whether a model instance exists in the data source. operationId: 'HosCosmetology.exists__head_HosCosmetologies_{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: - HosCosmetology summary: 'Find a model instance by {{id}} from the data source.' operationId: HosCosmetology.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/HosCosmetology' deprecated: false put: tags: - HosCosmetology summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosCosmetology.replaceById__put_HosCosmetologies_{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/HosCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCosmetology' deprecated: false delete: tags: - HosCosmetology summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosCosmetology.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: - HosCosmetology summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosCosmetology.prototype.patchAttributes parameters: - name: id in: path description: HosCosmetology 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/HosCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCosmetology' deprecated: false '/HosCosmetologies/{id}/replace': post: tags: - HosCosmetology summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosCosmetology.replaceById__post_HosCosmetologies_{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/HosCosmetology' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosCosmetology' deprecated: false /HosCosmetologies/findOne: get: tags: - HosCosmetology summary: Find first instance of the model matched by filter from the data source. operationId: HosCosmetology.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/HosCosmetology' deprecated: false /HosCosmetologies/update: post: tags: - HosCosmetology summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosCosmetology.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/HosCosmetology' 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 /HosCosmetologies/count: get: tags: - HosCosmetology summary: Count instances of the model matched by where from the data source. operationId: HosCosmetology.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 /HosDaycases: post: tags: - HosDaycase summary: Create a new instance of the model and persist it into the data source. operationId: HosDaycase.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosDaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosDaycase' deprecated: false patch: tags: - HosDaycase summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosDaycase.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosDaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosDaycase' deprecated: false put: tags: - HosDaycase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosDaycase.replaceOrCreate__put_HosDaycases parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosDaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosDaycase' deprecated: false get: tags: - HosDaycase summary: Find all instances of the model matched by filter from the data source. operationId: HosDaycase.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/HosDaycase' deprecated: false /HosDaycases/replaceOrCreate: post: tags: - HosDaycase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosDaycase.replaceOrCreate__post_HosDaycases_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosDaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosDaycase' deprecated: false /HosDaycases/upsertWithWhere: post: tags: - HosDaycase summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosDaycase.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/HosDaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosDaycase' deprecated: false '/HosDaycases/{id}/exists': get: tags: - HosDaycase summary: Check whether a model instance exists in the data source. operationId: 'HosDaycase.exists__get_HosDaycases_{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 '/HosDaycases/{id}': head: tags: - HosDaycase summary: Check whether a model instance exists in the data source. operationId: 'HosDaycase.exists__head_HosDaycases_{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: - HosDaycase summary: 'Find a model instance by {{id}} from the data source.' operationId: HosDaycase.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/HosDaycase' deprecated: false put: tags: - HosDaycase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosDaycase.replaceById__put_HosDaycases_{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/HosDaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosDaycase' deprecated: false delete: tags: - HosDaycase summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosDaycase.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: - HosDaycase summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosDaycase.prototype.patchAttributes parameters: - name: id in: path description: HosDaycase 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/HosDaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosDaycase' deprecated: false '/HosDaycases/{id}/replace': post: tags: - HosDaycase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosDaycase.replaceById__post_HosDaycases_{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/HosDaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosDaycase' deprecated: false /HosDaycases/findOne: get: tags: - HosDaycase summary: Find first instance of the model matched by filter from the data source. operationId: HosDaycase.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/HosDaycase' deprecated: false /HosDaycases/update: post: tags: - HosDaycase summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosDaycase.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/HosDaycase' 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 /HosDaycases/count: get: tags: - HosDaycase summary: Count instances of the model matched by where from the data source. operationId: HosDaycase.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 /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 /HosFlownums: post: tags: - HosFlownum summary: Create a new instance of the model and persist it into the data source. operationId: HosFlownum.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosFlownum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosFlownum' deprecated: false patch: tags: - HosFlownum summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosFlownum.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosFlownum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosFlownum' deprecated: false put: tags: - HosFlownum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosFlownum.replaceOrCreate__put_HosFlownums parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosFlownum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosFlownum' deprecated: false get: tags: - HosFlownum summary: Find all instances of the model matched by filter from the data source. operationId: HosFlownum.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/HosFlownum' deprecated: false /HosFlownums/replaceOrCreate: post: tags: - HosFlownum summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosFlownum.replaceOrCreate__post_HosFlownums_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosFlownum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosFlownum' deprecated: false /HosFlownums/upsertWithWhere: post: tags: - HosFlownum summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosFlownum.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/HosFlownum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosFlownum' deprecated: false '/HosFlownums/{id}/exists': get: tags: - HosFlownum summary: Check whether a model instance exists in the data source. operationId: 'HosFlownum.exists__get_HosFlownums_{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 '/HosFlownums/{id}': head: tags: - HosFlownum summary: Check whether a model instance exists in the data source. operationId: 'HosFlownum.exists__head_HosFlownums_{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: - HosFlownum summary: 'Find a model instance by {{id}} from the data source.' operationId: HosFlownum.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/HosFlownum' deprecated: false put: tags: - HosFlownum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosFlownum.replaceById__put_HosFlownums_{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/HosFlownum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosFlownum' deprecated: false delete: tags: - HosFlownum summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosFlownum.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: - HosFlownum summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosFlownum.prototype.patchAttributes parameters: - name: id in: path description: HosFlownum 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/HosFlownum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosFlownum' deprecated: false '/HosFlownums/{id}/replace': post: tags: - HosFlownum summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosFlownum.replaceById__post_HosFlownums_{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/HosFlownum' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosFlownum' deprecated: false /HosFlownums/findOne: get: tags: - HosFlownum summary: Find first instance of the model matched by filter from the data source. operationId: HosFlownum.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/HosFlownum' deprecated: false /HosFlownums/update: post: tags: - HosFlownum summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosFlownum.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/HosFlownum' 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 /HosFlownums/count: get: tags: - HosFlownum summary: Count instances of the model matched by where from the data source. operationId: HosFlownum.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 /HosJianchas: post: tags: - HosJiancha summary: Create a new instance of the model and persist it into the data source. operationId: HosJiancha.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosJiancha' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosJiancha' deprecated: false patch: tags: - HosJiancha summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosJiancha.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosJiancha' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosJiancha' deprecated: false put: tags: - HosJiancha summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosJiancha.replaceOrCreate__put_HosJianchas parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosJiancha' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosJiancha' deprecated: false get: tags: - HosJiancha summary: Find all instances of the model matched by filter from the data source. operationId: HosJiancha.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/HosJiancha' deprecated: false /HosJianchas/replaceOrCreate: post: tags: - HosJiancha summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosJiancha.replaceOrCreate__post_HosJianchas_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosJiancha' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosJiancha' deprecated: false /HosJianchas/upsertWithWhere: post: tags: - HosJiancha summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosJiancha.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/HosJiancha' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosJiancha' deprecated: false '/HosJianchas/{id}/exists': get: tags: - HosJiancha summary: Check whether a model instance exists in the data source. operationId: 'HosJiancha.exists__get_HosJianchas_{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 '/HosJianchas/{id}': head: tags: - HosJiancha summary: Check whether a model instance exists in the data source. operationId: 'HosJiancha.exists__head_HosJianchas_{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: - HosJiancha summary: 'Find a model instance by {{id}} from the data source.' operationId: HosJiancha.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/HosJiancha' deprecated: false put: tags: - HosJiancha summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosJiancha.replaceById__put_HosJianchas_{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/HosJiancha' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosJiancha' deprecated: false delete: tags: - HosJiancha summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosJiancha.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: - HosJiancha summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosJiancha.prototype.patchAttributes parameters: - name: id in: path description: HosJiancha 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/HosJiancha' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosJiancha' deprecated: false '/HosJianchas/{id}/replace': post: tags: - HosJiancha summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosJiancha.replaceById__post_HosJianchas_{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/HosJiancha' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosJiancha' deprecated: false /HosJianchas/findOne: get: tags: - HosJiancha summary: Find first instance of the model matched by filter from the data source. operationId: HosJiancha.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/HosJiancha' deprecated: false /HosJianchas/update: post: tags: - HosJiancha summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosJiancha.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/HosJiancha' 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 /HosJianchas/count: get: tags: - HosJiancha summary: Count instances of the model matched by where from the data source. operationId: HosJiancha.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 /HosMeirongs: post: tags: - HosMeirong summary: Create a new instance of the model and persist it into the data source. operationId: HosMeirong.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosMeirong' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosMeirong' deprecated: false patch: tags: - HosMeirong summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosMeirong.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosMeirong' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosMeirong' deprecated: false put: tags: - HosMeirong summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosMeirong.replaceOrCreate__put_HosMeirongs parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosMeirong' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosMeirong' deprecated: false get: tags: - HosMeirong summary: Find all instances of the model matched by filter from the data source. operationId: HosMeirong.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/HosMeirong' deprecated: false /HosMeirongs/replaceOrCreate: post: tags: - HosMeirong summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosMeirong.replaceOrCreate__post_HosMeirongs_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosMeirong' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosMeirong' deprecated: false /HosMeirongs/upsertWithWhere: post: tags: - HosMeirong summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosMeirong.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/HosMeirong' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosMeirong' deprecated: false '/HosMeirongs/{id}/exists': get: tags: - HosMeirong summary: Check whether a model instance exists in the data source. operationId: 'HosMeirong.exists__get_HosMeirongs_{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 '/HosMeirongs/{id}': head: tags: - HosMeirong summary: Check whether a model instance exists in the data source. operationId: 'HosMeirong.exists__head_HosMeirongs_{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: - HosMeirong summary: 'Find a model instance by {{id}} from the data source.' operationId: HosMeirong.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/HosMeirong' deprecated: false put: tags: - HosMeirong summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosMeirong.replaceById__put_HosMeirongs_{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/HosMeirong' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosMeirong' deprecated: false delete: tags: - HosMeirong summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosMeirong.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: - HosMeirong summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosMeirong.prototype.patchAttributes parameters: - name: id in: path description: HosMeirong 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/HosMeirong' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosMeirong' deprecated: false '/HosMeirongs/{id}/replace': post: tags: - HosMeirong summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosMeirong.replaceById__post_HosMeirongs_{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/HosMeirong' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosMeirong' deprecated: false /HosMeirongs/findOne: get: tags: - HosMeirong summary: Find first instance of the model matched by filter from the data source. operationId: HosMeirong.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/HosMeirong' deprecated: false /HosMeirongs/update: post: tags: - HosMeirong summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosMeirong.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/HosMeirong' 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 /HosMeirongs/count: get: tags: - HosMeirong summary: Count instances of the model matched by where from the data source. operationId: HosMeirong.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 /HosQita: post: tags: - HosQita summary: Create a new instance of the model and persist it into the data source. operationId: HosQita.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosQita' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosQita' deprecated: false patch: tags: - HosQita summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosQita.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosQita' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosQita' deprecated: false put: tags: - HosQita summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosQita.replaceOrCreate__put_HosQita parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosQita' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosQita' deprecated: false get: tags: - HosQita summary: Find all instances of the model matched by filter from the data source. operationId: HosQita.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/HosQita' deprecated: false /HosQita/replaceOrCreate: post: tags: - HosQita summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosQita.replaceOrCreate__post_HosQita_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosQita' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosQita' deprecated: false /HosQita/upsertWithWhere: post: tags: - HosQita summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosQita.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/HosQita' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosQita' deprecated: false '/HosQita/{id}/exists': get: tags: - HosQita summary: Check whether a model instance exists in the data source. operationId: 'HosQita.exists__get_HosQita_{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 '/HosQita/{id}': head: tags: - HosQita summary: Check whether a model instance exists in the data source. operationId: 'HosQita.exists__head_HosQita_{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: - HosQita summary: 'Find a model instance by {{id}} from the data source.' operationId: HosQita.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/HosQita' deprecated: false put: tags: - HosQita summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosQita.replaceById__put_HosQita_{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/HosQita' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosQita' deprecated: false delete: tags: - HosQita summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosQita.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: - HosQita summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosQita.prototype.patchAttributes parameters: - name: id in: path description: HosQita 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/HosQita' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosQita' deprecated: false '/HosQita/{id}/replace': post: tags: - HosQita summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosQita.replaceById__post_HosQita_{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/HosQita' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosQita' deprecated: false /HosQita/findOne: get: tags: - HosQita summary: Find first instance of the model matched by filter from the data source. operationId: HosQita.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/HosQita' deprecated: false /HosQita/update: post: tags: - HosQita summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosQita.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/HosQita' 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 /HosQita/count: get: tags: - HosQita summary: Count instances of the model matched by where from the data source. operationId: HosQita.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 /HosNewcases: post: tags: - HosNewcase summary: Create a new instance of the model and persist it into the data source. operationId: HosNewcase.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosNewcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosNewcase' deprecated: false patch: tags: - HosNewcase summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosNewcase.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosNewcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosNewcase' deprecated: false put: tags: - HosNewcase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosNewcase.replaceOrCreate__put_HosNewcases parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosNewcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosNewcase' deprecated: false get: tags: - HosNewcase summary: Find all instances of the model matched by filter from the data source. operationId: HosNewcase.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/HosNewcase' deprecated: false /HosNewcases/replaceOrCreate: post: tags: - HosNewcase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosNewcase.replaceOrCreate__post_HosNewcases_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosNewcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosNewcase' deprecated: false /HosNewcases/upsertWithWhere: post: tags: - HosNewcase summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosNewcase.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/HosNewcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosNewcase' deprecated: false '/HosNewcases/{id}/exists': get: tags: - HosNewcase summary: Check whether a model instance exists in the data source. operationId: 'HosNewcase.exists__get_HosNewcases_{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 '/HosNewcases/{id}': head: tags: - HosNewcase summary: Check whether a model instance exists in the data source. operationId: 'HosNewcase.exists__head_HosNewcases_{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: - HosNewcase summary: 'Find a model instance by {{id}} from the data source.' operationId: HosNewcase.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/HosNewcase' deprecated: false put: tags: - HosNewcase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosNewcase.replaceById__put_HosNewcases_{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/HosNewcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosNewcase' deprecated: false delete: tags: - HosNewcase summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosNewcase.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: - HosNewcase summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosNewcase.prototype.patchAttributes parameters: - name: id in: path description: HosNewcase 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/HosNewcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosNewcase' deprecated: false '/HosNewcases/{id}/replace': post: tags: - HosNewcase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosNewcase.replaceById__post_HosNewcases_{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/HosNewcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosNewcase' deprecated: false /HosNewcases/findOne: get: tags: - HosNewcase summary: Find first instance of the model matched by filter from the data source. operationId: HosNewcase.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/HosNewcase' deprecated: false /HosNewcases/update: post: tags: - HosNewcase summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosNewcase.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/HosNewcase' 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 /HosNewcases/count: get: tags: - HosNewcase summary: Count instances of the model matched by where from the data source. operationId: HosNewcase.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 /HosOthers: post: tags: - HosOther summary: Create a new instance of the model and persist it into the data source. operationId: HosOther.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosOther' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOther' deprecated: false patch: tags: - HosOther summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosOther.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosOther' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOther' deprecated: false put: tags: - HosOther summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosOther.replaceOrCreate__put_HosOthers parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosOther' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOther' deprecated: false get: tags: - HosOther summary: Find all instances of the model matched by filter from the data source. operationId: HosOther.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/HosOther' deprecated: false /HosOthers/replaceOrCreate: post: tags: - HosOther summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosOther.replaceOrCreate__post_HosOthers_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosOther' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOther' deprecated: false /HosOthers/upsertWithWhere: post: tags: - HosOther summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosOther.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/HosOther' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOther' deprecated: false '/HosOthers/{id}/exists': get: tags: - HosOther summary: Check whether a model instance exists in the data source. operationId: 'HosOther.exists__get_HosOthers_{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 '/HosOthers/{id}': head: tags: - HosOther summary: Check whether a model instance exists in the data source. operationId: 'HosOther.exists__head_HosOthers_{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: - HosOther summary: 'Find a model instance by {{id}} from the data source.' operationId: HosOther.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/HosOther' deprecated: false put: tags: - HosOther summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosOther.replaceById__put_HosOthers_{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/HosOther' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOther' deprecated: false delete: tags: - HosOther summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosOther.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: - HosOther summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosOther.prototype.patchAttributes parameters: - name: id in: path description: HosOther 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/HosOther' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOther' deprecated: false '/HosOthers/{id}/replace': post: tags: - HosOther summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosOther.replaceById__post_HosOthers_{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/HosOther' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOther' deprecated: false /HosOthers/findOne: get: tags: - HosOther summary: Find first instance of the model matched by filter from the data source. operationId: HosOther.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/HosOther' deprecated: false /HosOthers/update: post: tags: - HosOther summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosOther.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/HosOther' 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 /HosOthers/count: get: tags: - HosOther summary: Count instances of the model matched by where from the data source. operationId: HosOther.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 /HosOldcases: post: tags: - HosOldcase summary: Create a new instance of the model and persist it into the data source. operationId: HosOldcase.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosOldcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOldcase' deprecated: false patch: tags: - HosOldcase summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosOldcase.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosOldcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOldcase' deprecated: false put: tags: - HosOldcase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosOldcase.replaceOrCreate__put_HosOldcases parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosOldcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOldcase' deprecated: false get: tags: - HosOldcase summary: Find all instances of the model matched by filter from the data source. operationId: HosOldcase.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/HosOldcase' deprecated: false /HosOldcases/replaceOrCreate: post: tags: - HosOldcase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosOldcase.replaceOrCreate__post_HosOldcases_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosOldcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOldcase' deprecated: false /HosOldcases/upsertWithWhere: post: tags: - HosOldcase summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosOldcase.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/HosOldcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOldcase' deprecated: false '/HosOldcases/{id}/exists': get: tags: - HosOldcase summary: Check whether a model instance exists in the data source. operationId: 'HosOldcase.exists__get_HosOldcases_{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 '/HosOldcases/{id}': head: tags: - HosOldcase summary: Check whether a model instance exists in the data source. operationId: 'HosOldcase.exists__head_HosOldcases_{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: - HosOldcase summary: 'Find a model instance by {{id}} from the data source.' operationId: HosOldcase.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/HosOldcase' deprecated: false put: tags: - HosOldcase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosOldcase.replaceById__put_HosOldcases_{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/HosOldcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOldcase' deprecated: false delete: tags: - HosOldcase summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosOldcase.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: - HosOldcase summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosOldcase.prototype.patchAttributes parameters: - name: id in: path description: HosOldcase 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/HosOldcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOldcase' deprecated: false '/HosOldcases/{id}/replace': post: tags: - HosOldcase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosOldcase.replaceById__post_HosOldcases_{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/HosOldcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosOldcase' deprecated: false /HosOldcases/findOne: get: tags: - HosOldcase summary: Find first instance of the model matched by filter from the data source. operationId: HosOldcase.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/HosOldcase' deprecated: false /HosOldcases/update: post: tags: - HosOldcase summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosOldcase.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/HosOldcase' 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 /HosOldcases/count: get: tags: - HosOldcase summary: Count instances of the model matched by where from the data source. operationId: HosOldcase.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 /HosRevenues: post: tags: - HosRevenue summary: Create a new instance of the model and persist it into the data source. operationId: HosRevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosRevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRevenue' deprecated: false patch: tags: - HosRevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosRevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosRevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRevenue' deprecated: false put: tags: - HosRevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosRevenue.replaceOrCreate__put_HosRevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosRevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRevenue' deprecated: false get: tags: - HosRevenue summary: Find all instances of the model matched by filter from the data source. operationId: HosRevenue.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/HosRevenue' deprecated: false /HosRevenues/replaceOrCreate: post: tags: - HosRevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosRevenue.replaceOrCreate__post_HosRevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosRevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRevenue' deprecated: false /HosRevenues/upsertWithWhere: post: tags: - HosRevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosRevenue.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/HosRevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRevenue' deprecated: false '/HosRevenues/{id}/exists': get: tags: - HosRevenue summary: Check whether a model instance exists in the data source. operationId: 'HosRevenue.exists__get_HosRevenues_{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 '/HosRevenues/{id}': head: tags: - HosRevenue summary: Check whether a model instance exists in the data source. operationId: 'HosRevenue.exists__head_HosRevenues_{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: - HosRevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: HosRevenue.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/HosRevenue' deprecated: false put: tags: - HosRevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosRevenue.replaceById__put_HosRevenues_{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/HosRevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRevenue' deprecated: false delete: tags: - HosRevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosRevenue.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: - HosRevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosRevenue.prototype.patchAttributes parameters: - name: id in: path description: HosRevenue 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/HosRevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRevenue' deprecated: false '/HosRevenues/{id}/replace': post: tags: - HosRevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosRevenue.replaceById__post_HosRevenues_{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/HosRevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRevenue' deprecated: false /HosRevenues/findOne: get: tags: - HosRevenue summary: Find first instance of the model matched by filter from the data source. operationId: HosRevenue.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/HosRevenue' deprecated: false /HosRevenues/update: post: tags: - HosRevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosRevenue.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/HosRevenue' 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 /HosRevenues/count: get: tags: - HosRevenue summary: Count instances of the model matched by where from the data source. operationId: HosRevenue.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 /HosShangpins: post: tags: - HosShangpin summary: Create a new instance of the model and persist it into the data source. operationId: HosShangpin.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosShangpin' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosShangpin' deprecated: false patch: tags: - HosShangpin summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosShangpin.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosShangpin' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosShangpin' deprecated: false put: tags: - HosShangpin summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosShangpin.replaceOrCreate__put_HosShangpins parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosShangpin' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosShangpin' deprecated: false get: tags: - HosShangpin summary: Find all instances of the model matched by filter from the data source. operationId: HosShangpin.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/HosShangpin' deprecated: false /HosShangpins/replaceOrCreate: post: tags: - HosShangpin summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosShangpin.replaceOrCreate__post_HosShangpins_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosShangpin' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosShangpin' deprecated: false /HosShangpins/upsertWithWhere: post: tags: - HosShangpin summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosShangpin.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/HosShangpin' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosShangpin' deprecated: false '/HosShangpins/{id}/exists': get: tags: - HosShangpin summary: Check whether a model instance exists in the data source. operationId: 'HosShangpin.exists__get_HosShangpins_{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 '/HosShangpins/{id}': head: tags: - HosShangpin summary: Check whether a model instance exists in the data source. operationId: 'HosShangpin.exists__head_HosShangpins_{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: - HosShangpin summary: 'Find a model instance by {{id}} from the data source.' operationId: HosShangpin.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/HosShangpin' deprecated: false put: tags: - HosShangpin summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosShangpin.replaceById__put_HosShangpins_{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/HosShangpin' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosShangpin' deprecated: false delete: tags: - HosShangpin summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosShangpin.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: - HosShangpin summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosShangpin.prototype.patchAttributes parameters: - name: id in: path description: HosShangpin 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/HosShangpin' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosShangpin' deprecated: false '/HosShangpins/{id}/replace': post: tags: - HosShangpin summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosShangpin.replaceById__post_HosShangpins_{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/HosShangpin' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosShangpin' deprecated: false /HosShangpins/findOne: get: tags: - HosShangpin summary: Find first instance of the model matched by filter from the data source. operationId: HosShangpin.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/HosShangpin' deprecated: false /HosShangpins/update: post: tags: - HosShangpin summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosShangpin.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/HosShangpin' 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 /HosShangpins/count: get: tags: - HosShangpin summary: Count instances of the model matched by where from the data source. operationId: HosShangpin.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 /HosThismonthfirsts: post: tags: - HosThismonthfirst summary: Create a new instance of the model and persist it into the data source. operationId: HosThismonthfirst.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThismonthfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthfirst' deprecated: false patch: tags: - HosThismonthfirst summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosThismonthfirst.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThismonthfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthfirst' deprecated: false put: tags: - HosThismonthfirst summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosThismonthfirst.replaceOrCreate__put_HosThismonthfirsts parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThismonthfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthfirst' deprecated: false get: tags: - HosThismonthfirst summary: Find all instances of the model matched by filter from the data source. operationId: HosThismonthfirst.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/HosThismonthfirst' deprecated: false /HosThismonthfirsts/replaceOrCreate: post: tags: - HosThismonthfirst summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- HosThismonthfirst.replaceOrCreate__post_HosThismonthfirsts_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThismonthfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthfirst' deprecated: false /HosThismonthfirsts/upsertWithWhere: post: tags: - HosThismonthfirst summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosThismonthfirst.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/HosThismonthfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthfirst' deprecated: false '/HosThismonthfirsts/{id}/exists': get: tags: - HosThismonthfirst summary: Check whether a model instance exists in the data source. operationId: 'HosThismonthfirst.exists__get_HosThismonthfirsts_{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 '/HosThismonthfirsts/{id}': head: tags: - HosThismonthfirst summary: Check whether a model instance exists in the data source. operationId: 'HosThismonthfirst.exists__head_HosThismonthfirsts_{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: - HosThismonthfirst summary: 'Find a model instance by {{id}} from the data source.' operationId: HosThismonthfirst.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/HosThismonthfirst' deprecated: false put: tags: - HosThismonthfirst summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosThismonthfirst.replaceById__put_HosThismonthfirsts_{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/HosThismonthfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthfirst' deprecated: false delete: tags: - HosThismonthfirst summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosThismonthfirst.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: - HosThismonthfirst summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosThismonthfirst.prototype.patchAttributes parameters: - name: id in: path description: HosThismonthfirst 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/HosThismonthfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthfirst' deprecated: false '/HosThismonthfirsts/{id}/replace': post: tags: - HosThismonthfirst summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosThismonthfirst.replaceById__post_HosThismonthfirsts_{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/HosThismonthfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthfirst' deprecated: false /HosThismonthfirsts/findOne: get: tags: - HosThismonthfirst summary: Find first instance of the model matched by filter from the data source. operationId: HosThismonthfirst.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/HosThismonthfirst' deprecated: false /HosThismonthfirsts/update: post: tags: - HosThismonthfirst summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosThismonthfirst.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/HosThismonthfirst' 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 /HosThismonthfirsts/count: get: tags: - HosThismonthfirst summary: Count instances of the model matched by where from the data source. operationId: HosThismonthfirst.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 /HosThisyearseconds: post: tags: - HosThisyearsecond summary: Create a new instance of the model and persist it into the data source. operationId: HosThisyearsecond.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearsecond' deprecated: false patch: tags: - HosThisyearsecond summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosThisyearsecond.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearsecond' deprecated: false put: tags: - HosThisyearsecond summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosThisyearsecond.replaceOrCreate__put_HosThisyearseconds parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearsecond' deprecated: false get: tags: - HosThisyearsecond summary: Find all instances of the model matched by filter from the data source. operationId: HosThisyearsecond.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/HosThisyearsecond' deprecated: false /HosThisyearseconds/replaceOrCreate: post: tags: - HosThisyearsecond summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- HosThisyearsecond.replaceOrCreate__post_HosThisyearseconds_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearsecond' deprecated: false /HosThisyearseconds/upsertWithWhere: post: tags: - HosThisyearsecond summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosThisyearsecond.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/HosThisyearsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearsecond' deprecated: false '/HosThisyearseconds/{id}/exists': get: tags: - HosThisyearsecond summary: Check whether a model instance exists in the data source. operationId: 'HosThisyearsecond.exists__get_HosThisyearseconds_{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 '/HosThisyearseconds/{id}': head: tags: - HosThisyearsecond summary: Check whether a model instance exists in the data source. operationId: 'HosThisyearsecond.exists__head_HosThisyearseconds_{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: - HosThisyearsecond summary: 'Find a model instance by {{id}} from the data source.' operationId: HosThisyearsecond.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/HosThisyearsecond' deprecated: false put: tags: - HosThisyearsecond summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosThisyearsecond.replaceById__put_HosThisyearseconds_{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/HosThisyearsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearsecond' deprecated: false delete: tags: - HosThisyearsecond summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosThisyearsecond.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: - HosThisyearsecond summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosThisyearsecond.prototype.patchAttributes parameters: - name: id in: path description: HosThisyearsecond 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/HosThisyearsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearsecond' deprecated: false '/HosThisyearseconds/{id}/replace': post: tags: - HosThisyearsecond summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosThisyearsecond.replaceById__post_HosThisyearseconds_{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/HosThisyearsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearsecond' deprecated: false /HosThisyearseconds/findOne: get: tags: - HosThisyearsecond summary: Find first instance of the model matched by filter from the data source. operationId: HosThisyearsecond.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/HosThisyearsecond' deprecated: false /HosThisyearseconds/update: post: tags: - HosThisyearsecond summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosThisyearsecond.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/HosThisyearsecond' 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 /HosThisyearseconds/count: get: tags: - HosThisyearsecond summary: Count instances of the model matched by where from the data source. operationId: HosThisyearsecond.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 /HosThisyearfirsts: post: tags: - HosThisyearfirst summary: Create a new instance of the model and persist it into the data source. operationId: HosThisyearfirst.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearfirst' deprecated: false patch: tags: - HosThisyearfirst summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosThisyearfirst.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearfirst' deprecated: false put: tags: - HosThisyearfirst summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosThisyearfirst.replaceOrCreate__put_HosThisyearfirsts parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearfirst' deprecated: false get: tags: - HosThisyearfirst summary: Find all instances of the model matched by filter from the data source. operationId: HosThisyearfirst.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/HosThisyearfirst' deprecated: false /HosThisyearfirsts/replaceOrCreate: post: tags: - HosThisyearfirst summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosThisyearfirst.replaceOrCreate__post_HosThisyearfirsts_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThisyearfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearfirst' deprecated: false /HosThisyearfirsts/upsertWithWhere: post: tags: - HosThisyearfirst summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosThisyearfirst.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/HosThisyearfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearfirst' deprecated: false '/HosThisyearfirsts/{id}/exists': get: tags: - HosThisyearfirst summary: Check whether a model instance exists in the data source. operationId: 'HosThisyearfirst.exists__get_HosThisyearfirsts_{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 '/HosThisyearfirsts/{id}': head: tags: - HosThisyearfirst summary: Check whether a model instance exists in the data source. operationId: 'HosThisyearfirst.exists__head_HosThisyearfirsts_{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: - HosThisyearfirst summary: 'Find a model instance by {{id}} from the data source.' operationId: HosThisyearfirst.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/HosThisyearfirst' deprecated: false put: tags: - HosThisyearfirst summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosThisyearfirst.replaceById__put_HosThisyearfirsts_{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/HosThisyearfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearfirst' deprecated: false delete: tags: - HosThisyearfirst summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosThisyearfirst.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: - HosThisyearfirst summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosThisyearfirst.prototype.patchAttributes parameters: - name: id in: path description: HosThisyearfirst 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/HosThisyearfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearfirst' deprecated: false '/HosThisyearfirsts/{id}/replace': post: tags: - HosThisyearfirst summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosThisyearfirst.replaceById__post_HosThisyearfirsts_{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/HosThisyearfirst' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThisyearfirst' deprecated: false /HosThisyearfirsts/findOne: get: tags: - HosThisyearfirst summary: Find first instance of the model matched by filter from the data source. operationId: HosThisyearfirst.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/HosThisyearfirst' deprecated: false /HosThisyearfirsts/update: post: tags: - HosThisyearfirst summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosThisyearfirst.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/HosThisyearfirst' 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 /HosThisyearfirsts/count: get: tags: - HosThisyearfirst summary: Count instances of the model matched by where from the data source. operationId: HosThisyearfirst.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 /HosThismonthseconds: post: tags: - HosThismonthsecond summary: Create a new instance of the model and persist it into the data source. operationId: HosThismonthsecond.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThismonthsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthsecond' deprecated: false patch: tags: - HosThismonthsecond summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosThismonthsecond.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThismonthsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthsecond' deprecated: false put: tags: - HosThismonthsecond summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosThismonthsecond.replaceOrCreate__put_HosThismonthseconds parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThismonthsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthsecond' deprecated: false get: tags: - HosThismonthsecond summary: Find all instances of the model matched by filter from the data source. operationId: HosThismonthsecond.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/HosThismonthsecond' deprecated: false /HosThismonthseconds/replaceOrCreate: post: tags: - HosThismonthsecond summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- HosThismonthsecond.replaceOrCreate__post_HosThismonthseconds_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosThismonthsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthsecond' deprecated: false /HosThismonthseconds/upsertWithWhere: post: tags: - HosThismonthsecond summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosThismonthsecond.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/HosThismonthsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthsecond' deprecated: false '/HosThismonthseconds/{id}/exists': get: tags: - HosThismonthsecond summary: Check whether a model instance exists in the data source. operationId: 'HosThismonthsecond.exists__get_HosThismonthseconds_{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 '/HosThismonthseconds/{id}': head: tags: - HosThismonthsecond summary: Check whether a model instance exists in the data source. operationId: 'HosThismonthsecond.exists__head_HosThismonthseconds_{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: - HosThismonthsecond summary: 'Find a model instance by {{id}} from the data source.' operationId: HosThismonthsecond.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/HosThismonthsecond' deprecated: false put: tags: - HosThismonthsecond summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosThismonthsecond.replaceById__put_HosThismonthseconds_{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/HosThismonthsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthsecond' deprecated: false delete: tags: - HosThismonthsecond summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosThismonthsecond.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: - HosThismonthsecond summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosThismonthsecond.prototype.patchAttributes parameters: - name: id in: path description: HosThismonthsecond 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/HosThismonthsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthsecond' deprecated: false '/HosThismonthseconds/{id}/replace': post: tags: - HosThismonthsecond summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosThismonthsecond.replaceById__post_HosThismonthseconds_{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/HosThismonthsecond' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosThismonthsecond' deprecated: false /HosThismonthseconds/findOne: get: tags: - HosThismonthsecond summary: Find first instance of the model matched by filter from the data source. operationId: HosThismonthsecond.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/HosThismonthsecond' deprecated: false /HosThismonthseconds/update: post: tags: - HosThismonthsecond summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosThismonthsecond.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/HosThismonthsecond' 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 /HosThismonthseconds/count: get: tags: - HosThismonthsecond summary: Count instances of the model matched by where from the data source. operationId: HosThismonthsecond.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 /HosTodaycases: post: tags: - HosTodaycase summary: Create a new instance of the model and persist it into the data source. operationId: HosTodaycase.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosTodaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTodaycase' deprecated: false patch: tags: - HosTodaycase summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosTodaycase.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosTodaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTodaycase' deprecated: false put: tags: - HosTodaycase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosTodaycase.replaceOrCreate__put_HosTodaycases parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosTodaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTodaycase' deprecated: false get: tags: - HosTodaycase summary: Find all instances of the model matched by filter from the data source. operationId: HosTodaycase.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/HosTodaycase' deprecated: false /HosTodaycases/replaceOrCreate: post: tags: - HosTodaycase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosTodaycase.replaceOrCreate__post_HosTodaycases_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosTodaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTodaycase' deprecated: false /HosTodaycases/upsertWithWhere: post: tags: - HosTodaycase summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosTodaycase.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/HosTodaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTodaycase' deprecated: false '/HosTodaycases/{id}/exists': get: tags: - HosTodaycase summary: Check whether a model instance exists in the data source. operationId: 'HosTodaycase.exists__get_HosTodaycases_{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 '/HosTodaycases/{id}': head: tags: - HosTodaycase summary: Check whether a model instance exists in the data source. operationId: 'HosTodaycase.exists__head_HosTodaycases_{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: - HosTodaycase summary: 'Find a model instance by {{id}} from the data source.' operationId: HosTodaycase.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/HosTodaycase' deprecated: false put: tags: - HosTodaycase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosTodaycase.replaceById__put_HosTodaycases_{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/HosTodaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTodaycase' deprecated: false delete: tags: - HosTodaycase summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosTodaycase.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: - HosTodaycase summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosTodaycase.prototype.patchAttributes parameters: - name: id in: path description: HosTodaycase 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/HosTodaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTodaycase' deprecated: false '/HosTodaycases/{id}/replace': post: tags: - HosTodaycase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosTodaycase.replaceById__post_HosTodaycases_{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/HosTodaycase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTodaycase' deprecated: false /HosTodaycases/findOne: get: tags: - HosTodaycase summary: Find first instance of the model matched by filter from the data source. operationId: HosTodaycase.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/HosTodaycase' deprecated: false /HosTodaycases/update: post: tags: - HosTodaycase summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosTodaycase.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/HosTodaycase' 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 /HosTodaycases/count: get: tags: - HosTodaycase summary: Count instances of the model matched by where from the data source. operationId: HosTodaycase.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 /HosTotalcases: post: tags: - HosTotalcase summary: Create a new instance of the model and persist it into the data source. operationId: HosTotalcase.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTotalcase' deprecated: false patch: tags: - HosTotalcase summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosTotalcase.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTotalcase' deprecated: false put: tags: - HosTotalcase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosTotalcase.replaceOrCreate__put_HosTotalcases parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTotalcase' deprecated: false get: tags: - HosTotalcase summary: Find all instances of the model matched by filter from the data source. operationId: HosTotalcase.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/HosTotalcase' deprecated: false /HosTotalcases/replaceOrCreate: post: tags: - HosTotalcase summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosTotalcase.replaceOrCreate__post_HosTotalcases_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTotalcase' deprecated: false /HosTotalcases/upsertWithWhere: post: tags: - HosTotalcase summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosTotalcase.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/HosTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTotalcase' deprecated: false '/HosTotalcases/{id}/exists': get: tags: - HosTotalcase summary: Check whether a model instance exists in the data source. operationId: 'HosTotalcase.exists__get_HosTotalcases_{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 '/HosTotalcases/{id}': head: tags: - HosTotalcase summary: Check whether a model instance exists in the data source. operationId: 'HosTotalcase.exists__head_HosTotalcases_{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: - HosTotalcase summary: 'Find a model instance by {{id}} from the data source.' operationId: HosTotalcase.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/HosTotalcase' deprecated: false put: tags: - HosTotalcase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosTotalcase.replaceById__put_HosTotalcases_{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/HosTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTotalcase' deprecated: false delete: tags: - HosTotalcase summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosTotalcase.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: - HosTotalcase summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosTotalcase.prototype.patchAttributes parameters: - name: id in: path description: HosTotalcase 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/HosTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTotalcase' deprecated: false '/HosTotalcases/{id}/replace': post: tags: - HosTotalcase summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosTotalcase.replaceById__post_HosTotalcases_{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/HosTotalcase' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosTotalcase' deprecated: false /HosTotalcases/findOne: get: tags: - HosTotalcase summary: Find first instance of the model matched by filter from the data source. operationId: HosTotalcase.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/HosTotalcase' deprecated: false /HosTotalcases/update: post: tags: - HosTotalcase summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosTotalcase.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/HosTotalcase' 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 /HosTotalcases/count: get: tags: - HosTotalcase summary: Count instances of the model matched by where from the data source. operationId: HosTotalcase.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 /HosYiliaos: post: tags: - HosYiliao summary: Create a new instance of the model and persist it into the data source. operationId: HosYiliao.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosYiliao' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosYiliao' deprecated: false patch: tags: - HosYiliao summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosYiliao.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosYiliao' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosYiliao' deprecated: false put: tags: - HosYiliao summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosYiliao.replaceOrCreate__put_HosYiliaos parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosYiliao' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosYiliao' deprecated: false get: tags: - HosYiliao summary: Find all instances of the model matched by filter from the data source. operationId: HosYiliao.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/HosYiliao' deprecated: false /HosYiliaos/replaceOrCreate: post: tags: - HosYiliao summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosYiliao.replaceOrCreate__post_HosYiliaos_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosYiliao' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosYiliao' deprecated: false /HosYiliaos/upsertWithWhere: post: tags: - HosYiliao summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosYiliao.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/HosYiliao' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosYiliao' deprecated: false '/HosYiliaos/{id}/exists': get: tags: - HosYiliao summary: Check whether a model instance exists in the data source. operationId: 'HosYiliao.exists__get_HosYiliaos_{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 '/HosYiliaos/{id}': head: tags: - HosYiliao summary: Check whether a model instance exists in the data source. operationId: 'HosYiliao.exists__head_HosYiliaos_{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: - HosYiliao summary: 'Find a model instance by {{id}} from the data source.' operationId: HosYiliao.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/HosYiliao' deprecated: false put: tags: - HosYiliao summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosYiliao.replaceById__put_HosYiliaos_{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/HosYiliao' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosYiliao' deprecated: false delete: tags: - HosYiliao summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosYiliao.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: - HosYiliao summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosYiliao.prototype.patchAttributes parameters: - name: id in: path description: HosYiliao 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/HosYiliao' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosYiliao' deprecated: false '/HosYiliaos/{id}/replace': post: tags: - HosYiliao summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosYiliao.replaceById__post_HosYiliaos_{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/HosYiliao' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosYiliao' deprecated: false /HosYiliaos/findOne: get: tags: - HosYiliao summary: Find first instance of the model matched by filter from the data source. operationId: HosYiliao.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/HosYiliao' deprecated: false /HosYiliaos/update: post: tags: - HosYiliao summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosYiliao.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/HosYiliao' 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 /HosYiliaos/count: get: tags: - HosYiliao summary: Count instances of the model matched by where from the data source. operationId: HosYiliao.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 /HosAccrualdays: post: tags: - HosAccrualday summary: Create a new instance of the model and persist it into the data source. operationId: HosAccrualday.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosAccrualday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualday' deprecated: false patch: tags: - HosAccrualday summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosAccrualday.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosAccrualday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualday' deprecated: false put: tags: - HosAccrualday summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosAccrualday.replaceOrCreate__put_HosAccrualdays parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosAccrualday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualday' deprecated: false get: tags: - HosAccrualday summary: Find all instances of the model matched by filter from the data source. operationId: HosAccrualday.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/HosAccrualday' deprecated: false /HosAccrualdays/replaceOrCreate: post: tags: - HosAccrualday summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosAccrualday.replaceOrCreate__post_HosAccrualdays_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosAccrualday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualday' deprecated: false /HosAccrualdays/upsertWithWhere: post: tags: - HosAccrualday summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosAccrualday.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/HosAccrualday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualday' deprecated: false '/HosAccrualdays/{id}/exists': get: tags: - HosAccrualday summary: Check whether a model instance exists in the data source. operationId: 'HosAccrualday.exists__get_HosAccrualdays_{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 '/HosAccrualdays/{id}': head: tags: - HosAccrualday summary: Check whether a model instance exists in the data source. operationId: 'HosAccrualday.exists__head_HosAccrualdays_{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: - HosAccrualday summary: 'Find a model instance by {{id}} from the data source.' operationId: HosAccrualday.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/HosAccrualday' deprecated: false put: tags: - HosAccrualday summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosAccrualday.replaceById__put_HosAccrualdays_{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/HosAccrualday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualday' deprecated: false delete: tags: - HosAccrualday summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosAccrualday.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: - HosAccrualday summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosAccrualday.prototype.patchAttributes parameters: - name: id in: path description: HosAccrualday 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/HosAccrualday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualday' deprecated: false '/HosAccrualdays/{id}/replace': post: tags: - HosAccrualday summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosAccrualday.replaceById__post_HosAccrualdays_{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/HosAccrualday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualday' deprecated: false /HosAccrualdays/findOne: get: tags: - HosAccrualday summary: Find first instance of the model matched by filter from the data source. operationId: HosAccrualday.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/HosAccrualday' deprecated: false /HosAccrualdays/update: post: tags: - HosAccrualday summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosAccrualday.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/HosAccrualday' 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 /HosAccrualdays/count: get: tags: - HosAccrualday summary: Count instances of the model matched by where from the data source. operationId: HosAccrualday.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 /HosAccrualmonths: post: tags: - HosAccrualmonth summary: Create a new instance of the model and persist it into the data source. operationId: HosAccrualmonth.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosAccrualmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualmonth' deprecated: false patch: tags: - HosAccrualmonth summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosAccrualmonth.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosAccrualmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualmonth' deprecated: false put: tags: - HosAccrualmonth summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosAccrualmonth.replaceOrCreate__put_HosAccrualmonths parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosAccrualmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualmonth' deprecated: false get: tags: - HosAccrualmonth summary: Find all instances of the model matched by filter from the data source. operationId: HosAccrualmonth.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/HosAccrualmonth' deprecated: false /HosAccrualmonths/replaceOrCreate: post: tags: - HosAccrualmonth summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosAccrualmonth.replaceOrCreate__post_HosAccrualmonths_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosAccrualmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualmonth' deprecated: false /HosAccrualmonths/upsertWithWhere: post: tags: - HosAccrualmonth summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosAccrualmonth.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/HosAccrualmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualmonth' deprecated: false '/HosAccrualmonths/{id}/exists': get: tags: - HosAccrualmonth summary: Check whether a model instance exists in the data source. operationId: 'HosAccrualmonth.exists__get_HosAccrualmonths_{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 '/HosAccrualmonths/{id}': head: tags: - HosAccrualmonth summary: Check whether a model instance exists in the data source. operationId: 'HosAccrualmonth.exists__head_HosAccrualmonths_{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: - HosAccrualmonth summary: 'Find a model instance by {{id}} from the data source.' operationId: HosAccrualmonth.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/HosAccrualmonth' deprecated: false put: tags: - HosAccrualmonth summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosAccrualmonth.replaceById__put_HosAccrualmonths_{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/HosAccrualmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualmonth' deprecated: false delete: tags: - HosAccrualmonth summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosAccrualmonth.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: - HosAccrualmonth summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosAccrualmonth.prototype.patchAttributes parameters: - name: id in: path description: HosAccrualmonth 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/HosAccrualmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualmonth' deprecated: false '/HosAccrualmonths/{id}/replace': post: tags: - HosAccrualmonth summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosAccrualmonth.replaceById__post_HosAccrualmonths_{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/HosAccrualmonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosAccrualmonth' deprecated: false /HosAccrualmonths/findOne: get: tags: - HosAccrualmonth summary: Find first instance of the model matched by filter from the data source. operationId: HosAccrualmonth.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/HosAccrualmonth' deprecated: false /HosAccrualmonths/update: post: tags: - HosAccrualmonth summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosAccrualmonth.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/HosAccrualmonth' 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 /HosAccrualmonths/count: get: tags: - HosAccrualmonth summary: Count instances of the model matched by where from the data source. operationId: HosAccrualmonth.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 /HosGoods: post: tags: - HosGoods summary: Create a new instance of the model and persist it into the data source. operationId: HosGoods.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosGoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosGoods' deprecated: false patch: tags: - HosGoods summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosGoods.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosGoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosGoods' deprecated: false put: tags: - HosGoods summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosGoods.replaceOrCreate__put_HosGoods parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosGoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosGoods' deprecated: false get: tags: - HosGoods summary: Find all instances of the model matched by filter from the data source. operationId: HosGoods.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/HosGoods' deprecated: false /HosGoods/replaceOrCreate: post: tags: - HosGoods summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosGoods.replaceOrCreate__post_HosGoods_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosGoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosGoods' deprecated: false /HosGoods/upsertWithWhere: post: tags: - HosGoods summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosGoods.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/HosGoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosGoods' deprecated: false '/HosGoods/{id}/exists': get: tags: - HosGoods summary: Check whether a model instance exists in the data source. operationId: 'HosGoods.exists__get_HosGoods_{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 '/HosGoods/{id}': head: tags: - HosGoods summary: Check whether a model instance exists in the data source. operationId: 'HosGoods.exists__head_HosGoods_{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: - HosGoods summary: 'Find a model instance by {{id}} from the data source.' operationId: HosGoods.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/HosGoods' deprecated: false put: tags: - HosGoods summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosGoods.replaceById__put_HosGoods_{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/HosGoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosGoods' deprecated: false delete: tags: - HosGoods summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosGoods.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: - HosGoods summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosGoods.prototype.patchAttributes parameters: - name: id in: path description: HosGoods 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/HosGoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosGoods' deprecated: false '/HosGoods/{id}/replace': post: tags: - HosGoods summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosGoods.replaceById__post_HosGoods_{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/HosGoods' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosGoods' deprecated: false /HosGoods/findOne: get: tags: - HosGoods summary: Find first instance of the model matched by filter from the data source. operationId: HosGoods.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/HosGoods' deprecated: false /HosGoods/update: post: tags: - HosGoods summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosGoods.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/HosGoods' 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 /HosGoods/count: get: tags: - HosGoods summary: Count instances of the model matched by where from the data source. operationId: HosGoods.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 /InterKuanghuans: post: tags: - InterKuanghuan summary: Create a new instance of the model and persist it into the data source. operationId: InterKuanghuan.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterKuanghuan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuan' deprecated: false patch: tags: - InterKuanghuan summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterKuanghuan.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterKuanghuan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuan' deprecated: false put: tags: - InterKuanghuan summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterKuanghuan.replaceOrCreate__put_InterKuanghuans parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterKuanghuan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuan' deprecated: false get: tags: - InterKuanghuan summary: Find all instances of the model matched by filter from the data source. operationId: InterKuanghuan.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/InterKuanghuan' deprecated: false /InterKuanghuans/replaceOrCreate: post: tags: - InterKuanghuan summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterKuanghuan.replaceOrCreate__post_InterKuanghuans_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterKuanghuan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuan' deprecated: false /InterKuanghuans/upsertWithWhere: post: tags: - InterKuanghuan summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterKuanghuan.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/InterKuanghuan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuan' deprecated: false '/InterKuanghuans/{id}/exists': get: tags: - InterKuanghuan summary: Check whether a model instance exists in the data source. operationId: 'InterKuanghuan.exists__get_InterKuanghuans_{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 '/InterKuanghuans/{id}': head: tags: - InterKuanghuan summary: Check whether a model instance exists in the data source. operationId: 'InterKuanghuan.exists__head_InterKuanghuans_{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: - InterKuanghuan summary: 'Find a model instance by {{id}} from the data source.' operationId: InterKuanghuan.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/InterKuanghuan' deprecated: false put: tags: - InterKuanghuan summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterKuanghuan.replaceById__put_InterKuanghuans_{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/InterKuanghuan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuan' deprecated: false delete: tags: - InterKuanghuan summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterKuanghuan.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: - InterKuanghuan summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterKuanghuan.prototype.patchAttributes parameters: - name: id in: path description: InterKuanghuan 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/InterKuanghuan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuan' deprecated: false '/InterKuanghuans/{id}/replace': post: tags: - InterKuanghuan summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterKuanghuan.replaceById__post_InterKuanghuans_{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/InterKuanghuan' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuan' deprecated: false /InterKuanghuans/findOne: get: tags: - InterKuanghuan summary: Find first instance of the model matched by filter from the data source. operationId: InterKuanghuan.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/InterKuanghuan' deprecated: false /InterKuanghuans/update: post: tags: - InterKuanghuan summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterKuanghuan.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/InterKuanghuan' 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 /InterKuanghuans/count: get: tags: - InterKuanghuan summary: Count instances of the model matched by where from the data source. operationId: InterKuanghuan.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 /InterKuanghuanrevenues: post: tags: - InterKuanghuanrevenue summary: Create a new instance of the model and persist it into the data source. operationId: InterKuanghuanrevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterKuanghuanrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuanrevenue' deprecated: false patch: tags: - InterKuanghuanrevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterKuanghuanrevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterKuanghuanrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuanrevenue' deprecated: false put: tags: - InterKuanghuanrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterKuanghuanrevenue.replaceOrCreate__put_InterKuanghuanrevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterKuanghuanrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuanrevenue' deprecated: false get: tags: - InterKuanghuanrevenue summary: Find all instances of the model matched by filter from the data source. operationId: InterKuanghuanrevenue.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/InterKuanghuanrevenue' deprecated: false /InterKuanghuanrevenues/replaceOrCreate: post: tags: - InterKuanghuanrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- InterKuanghuanrevenue.replaceOrCreate__post_InterKuanghuanrevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterKuanghuanrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuanrevenue' deprecated: false /InterKuanghuanrevenues/upsertWithWhere: post: tags: - InterKuanghuanrevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterKuanghuanrevenue.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/InterKuanghuanrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuanrevenue' deprecated: false '/InterKuanghuanrevenues/{id}/exists': get: tags: - InterKuanghuanrevenue summary: Check whether a model instance exists in the data source. operationId: 'InterKuanghuanrevenue.exists__get_InterKuanghuanrevenues_{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 '/InterKuanghuanrevenues/{id}': head: tags: - InterKuanghuanrevenue summary: Check whether a model instance exists in the data source. operationId: 'InterKuanghuanrevenue.exists__head_InterKuanghuanrevenues_{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: - InterKuanghuanrevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: InterKuanghuanrevenue.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/InterKuanghuanrevenue' deprecated: false put: tags: - InterKuanghuanrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterKuanghuanrevenue.replaceById__put_InterKuanghuanrevenues_{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/InterKuanghuanrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuanrevenue' deprecated: false delete: tags: - InterKuanghuanrevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterKuanghuanrevenue.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: - InterKuanghuanrevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterKuanghuanrevenue.prototype.patchAttributes parameters: - name: id in: path description: InterKuanghuanrevenue 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/InterKuanghuanrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuanrevenue' deprecated: false '/InterKuanghuanrevenues/{id}/replace': post: tags: - InterKuanghuanrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: >- InterKuanghuanrevenue.replaceById__post_InterKuanghuanrevenues_{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/InterKuanghuanrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterKuanghuanrevenue' deprecated: false /InterKuanghuanrevenues/findOne: get: tags: - InterKuanghuanrevenue summary: Find first instance of the model matched by filter from the data source. operationId: InterKuanghuanrevenue.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/InterKuanghuanrevenue' deprecated: false /InterKuanghuanrevenues/update: post: tags: - InterKuanghuanrevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterKuanghuanrevenue.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/InterKuanghuanrevenue' 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 /InterKuanghuanrevenues/count: get: tags: - InterKuanghuanrevenue summary: Count instances of the model matched by where from the data source. operationId: InterKuanghuanrevenue.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 /InterQijianorders: post: tags: - InterQijianorder summary: Create a new instance of the model and persist it into the data source. operationId: InterQijianorder.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterQijianorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianorder' deprecated: false patch: tags: - InterQijianorder summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterQijianorder.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterQijianorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianorder' deprecated: false put: tags: - InterQijianorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterQijianorder.replaceOrCreate__put_InterQijianorders parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterQijianorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianorder' deprecated: false get: tags: - InterQijianorder summary: Find all instances of the model matched by filter from the data source. operationId: InterQijianorder.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/InterQijianorder' deprecated: false /InterQijianorders/replaceOrCreate: post: tags: - InterQijianorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterQijianorder.replaceOrCreate__post_InterQijianorders_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterQijianorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianorder' deprecated: false /InterQijianorders/upsertWithWhere: post: tags: - InterQijianorder summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterQijianorder.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/InterQijianorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianorder' deprecated: false '/InterQijianorders/{id}/exists': get: tags: - InterQijianorder summary: Check whether a model instance exists in the data source. operationId: 'InterQijianorder.exists__get_InterQijianorders_{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 '/InterQijianorders/{id}': head: tags: - InterQijianorder summary: Check whether a model instance exists in the data source. operationId: 'InterQijianorder.exists__head_InterQijianorders_{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: - InterQijianorder summary: 'Find a model instance by {{id}} from the data source.' operationId: InterQijianorder.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/InterQijianorder' deprecated: false put: tags: - InterQijianorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterQijianorder.replaceById__put_InterQijianorders_{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/InterQijianorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianorder' deprecated: false delete: tags: - InterQijianorder summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterQijianorder.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: - InterQijianorder summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterQijianorder.prototype.patchAttributes parameters: - name: id in: path description: InterQijianorder 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/InterQijianorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianorder' deprecated: false '/InterQijianorders/{id}/replace': post: tags: - InterQijianorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterQijianorder.replaceById__post_InterQijianorders_{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/InterQijianorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianorder' deprecated: false /InterQijianorders/findOne: get: tags: - InterQijianorder summary: Find first instance of the model matched by filter from the data source. operationId: InterQijianorder.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/InterQijianorder' deprecated: false /InterQijianorders/update: post: tags: - InterQijianorder summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterQijianorder.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/InterQijianorder' 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 /InterQijianorders/count: get: tags: - InterQijianorder summary: Count instances of the model matched by where from the data source. operationId: InterQijianorder.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 /InterQijianrevenues: post: tags: - InterQijianrevenue summary: Create a new instance of the model and persist it into the data source. operationId: InterQijianrevenue.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterQijianrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianrevenue' deprecated: false patch: tags: - InterQijianrevenue summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterQijianrevenue.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterQijianrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianrevenue' deprecated: false put: tags: - InterQijianrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterQijianrevenue.replaceOrCreate__put_InterQijianrevenues parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterQijianrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianrevenue' deprecated: false get: tags: - InterQijianrevenue summary: Find all instances of the model matched by filter from the data source. operationId: InterQijianrevenue.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/InterQijianrevenue' deprecated: false /InterQijianrevenues/replaceOrCreate: post: tags: - InterQijianrevenue summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- InterQijianrevenue.replaceOrCreate__post_InterQijianrevenues_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterQijianrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianrevenue' deprecated: false /InterQijianrevenues/upsertWithWhere: post: tags: - InterQijianrevenue summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterQijianrevenue.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/InterQijianrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianrevenue' deprecated: false '/InterQijianrevenues/{id}/exists': get: tags: - InterQijianrevenue summary: Check whether a model instance exists in the data source. operationId: 'InterQijianrevenue.exists__get_InterQijianrevenues_{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 '/InterQijianrevenues/{id}': head: tags: - InterQijianrevenue summary: Check whether a model instance exists in the data source. operationId: 'InterQijianrevenue.exists__head_InterQijianrevenues_{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: - InterQijianrevenue summary: 'Find a model instance by {{id}} from the data source.' operationId: InterQijianrevenue.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/InterQijianrevenue' deprecated: false put: tags: - InterQijianrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterQijianrevenue.replaceById__put_InterQijianrevenues_{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/InterQijianrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianrevenue' deprecated: false delete: tags: - InterQijianrevenue summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterQijianrevenue.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: - InterQijianrevenue summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterQijianrevenue.prototype.patchAttributes parameters: - name: id in: path description: InterQijianrevenue 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/InterQijianrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianrevenue' deprecated: false '/InterQijianrevenues/{id}/replace': post: tags: - InterQijianrevenue summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterQijianrevenue.replaceById__post_InterQijianrevenues_{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/InterQijianrevenue' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterQijianrevenue' deprecated: false /InterQijianrevenues/findOne: get: tags: - InterQijianrevenue summary: Find first instance of the model matched by filter from the data source. operationId: InterQijianrevenue.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/InterQijianrevenue' deprecated: false /InterQijianrevenues/update: post: tags: - InterQijianrevenue summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterQijianrevenue.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/InterQijianrevenue' 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 /InterQijianrevenues/count: get: tags: - InterQijianrevenue summary: Count instances of the model matched by where from the data source. operationId: InterQijianrevenue.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 /HosRegnummonths: post: tags: - HosRegnummonth summary: Create a new instance of the model and persist it into the data source. operationId: HosRegnummonth.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosRegnummonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnummonth' deprecated: false patch: tags: - HosRegnummonth summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosRegnummonth.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosRegnummonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnummonth' deprecated: false put: tags: - HosRegnummonth summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosRegnummonth.replaceOrCreate__put_HosRegnummonths parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosRegnummonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnummonth' deprecated: false get: tags: - HosRegnummonth summary: Find all instances of the model matched by filter from the data source. operationId: HosRegnummonth.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/HosRegnummonth' deprecated: false /HosRegnummonths/replaceOrCreate: post: tags: - HosRegnummonth summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosRegnummonth.replaceOrCreate__post_HosRegnummonths_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosRegnummonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnummonth' deprecated: false /HosRegnummonths/upsertWithWhere: post: tags: - HosRegnummonth summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosRegnummonth.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/HosRegnummonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnummonth' deprecated: false '/HosRegnummonths/{id}/exists': get: tags: - HosRegnummonth summary: Check whether a model instance exists in the data source. operationId: 'HosRegnummonth.exists__get_HosRegnummonths_{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 '/HosRegnummonths/{id}': head: tags: - HosRegnummonth summary: Check whether a model instance exists in the data source. operationId: 'HosRegnummonth.exists__head_HosRegnummonths_{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: - HosRegnummonth summary: 'Find a model instance by {{id}} from the data source.' operationId: HosRegnummonth.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/HosRegnummonth' deprecated: false put: tags: - HosRegnummonth summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosRegnummonth.replaceById__put_HosRegnummonths_{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/HosRegnummonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnummonth' deprecated: false delete: tags: - HosRegnummonth summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosRegnummonth.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: - HosRegnummonth summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosRegnummonth.prototype.patchAttributes parameters: - name: id in: path description: HosRegnummonth 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/HosRegnummonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnummonth' deprecated: false '/HosRegnummonths/{id}/replace': post: tags: - HosRegnummonth summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosRegnummonth.replaceById__post_HosRegnummonths_{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/HosRegnummonth' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnummonth' deprecated: false /HosRegnummonths/findOne: get: tags: - HosRegnummonth summary: Find first instance of the model matched by filter from the data source. operationId: HosRegnummonth.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/HosRegnummonth' deprecated: false /HosRegnummonths/update: post: tags: - HosRegnummonth summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosRegnummonth.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/HosRegnummonth' 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 /HosRegnummonths/count: get: tags: - HosRegnummonth summary: Count instances of the model matched by where from the data source. operationId: HosRegnummonth.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 /HosRegnumdays: post: tags: - HosRegnumday summary: Create a new instance of the model and persist it into the data source. operationId: HosRegnumday.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosRegnumday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnumday' deprecated: false patch: tags: - HosRegnumday summary: >- Patch an existing model instance or insert a new one into the data source. operationId: HosRegnumday.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosRegnumday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnumday' deprecated: false put: tags: - HosRegnumday summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosRegnumday.replaceOrCreate__put_HosRegnumdays parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosRegnumday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnumday' deprecated: false get: tags: - HosRegnumday summary: Find all instances of the model matched by filter from the data source. operationId: HosRegnumday.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/HosRegnumday' deprecated: false /HosRegnumdays/replaceOrCreate: post: tags: - HosRegnumday summary: >- Replace an existing model instance or insert a new one into the data source. operationId: HosRegnumday.replaceOrCreate__post_HosRegnumdays_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/HosRegnumday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnumday' deprecated: false /HosRegnumdays/upsertWithWhere: post: tags: - HosRegnumday summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: HosRegnumday.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/HosRegnumday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnumday' deprecated: false '/HosRegnumdays/{id}/exists': get: tags: - HosRegnumday summary: Check whether a model instance exists in the data source. operationId: 'HosRegnumday.exists__get_HosRegnumdays_{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 '/HosRegnumdays/{id}': head: tags: - HosRegnumday summary: Check whether a model instance exists in the data source. operationId: 'HosRegnumday.exists__head_HosRegnumdays_{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: - HosRegnumday summary: 'Find a model instance by {{id}} from the data source.' operationId: HosRegnumday.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/HosRegnumday' deprecated: false put: tags: - HosRegnumday summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosRegnumday.replaceById__put_HosRegnumdays_{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/HosRegnumday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnumday' deprecated: false delete: tags: - HosRegnumday summary: 'Delete a model instance by {{id}} from the data source.' operationId: HosRegnumday.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: - HosRegnumday summary: >- Patch attributes for a model instance and persist it into the data source. operationId: HosRegnumday.prototype.patchAttributes parameters: - name: id in: path description: HosRegnumday 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/HosRegnumday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnumday' deprecated: false '/HosRegnumdays/{id}/replace': post: tags: - HosRegnumday summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'HosRegnumday.replaceById__post_HosRegnumdays_{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/HosRegnumday' responses: '200': description: Request was successful schema: $ref: '#/definitions/HosRegnumday' deprecated: false /HosRegnumdays/findOne: get: tags: - HosRegnumday summary: Find first instance of the model matched by filter from the data source. operationId: HosRegnumday.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/HosRegnumday' deprecated: false /HosRegnumdays/update: post: tags: - HosRegnumday summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: HosRegnumday.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/HosRegnumday' 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 /HosRegnumdays/count: get: tags: - HosRegnumday summary: Count instances of the model matched by where from the data source. operationId: HosRegnumday.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 /InterVrentityorders: post: tags: - InterVrentityorder summary: Create a new instance of the model and persist it into the data source. operationId: InterVrentityorder.create parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterVrentityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrentityorder' deprecated: false patch: tags: - InterVrentityorder summary: >- Patch an existing model instance or insert a new one into the data source. operationId: InterVrentityorder.patchOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterVrentityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrentityorder' deprecated: false put: tags: - InterVrentityorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: InterVrentityorder.replaceOrCreate__put_InterVrentityorders parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterVrentityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrentityorder' deprecated: false get: tags: - InterVrentityorder summary: Find all instances of the model matched by filter from the data source. operationId: InterVrentityorder.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/InterVrentityorder' deprecated: false /InterVrentityorders/replaceOrCreate: post: tags: - InterVrentityorder summary: >- Replace an existing model instance or insert a new one into the data source. operationId: >- InterVrentityorder.replaceOrCreate__post_InterVrentityorders_replaceOrCreate parameters: - name: data in: body description: Model instance data required: false schema: description: Model instance data $ref: '#/definitions/InterVrentityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrentityorder' deprecated: false /InterVrentityorders/upsertWithWhere: post: tags: - InterVrentityorder summary: >- Update an existing model instance or insert a new one into the data source based on the where criteria. operationId: InterVrentityorder.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/InterVrentityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrentityorder' deprecated: false '/InterVrentityorders/{id}/exists': get: tags: - InterVrentityorder summary: Check whether a model instance exists in the data source. operationId: 'InterVrentityorder.exists__get_InterVrentityorders_{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 '/InterVrentityorders/{id}': head: tags: - InterVrentityorder summary: Check whether a model instance exists in the data source. operationId: 'InterVrentityorder.exists__head_InterVrentityorders_{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: - InterVrentityorder summary: 'Find a model instance by {{id}} from the data source.' operationId: InterVrentityorder.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/InterVrentityorder' deprecated: false put: tags: - InterVrentityorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterVrentityorder.replaceById__put_InterVrentityorders_{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/InterVrentityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrentityorder' deprecated: false delete: tags: - InterVrentityorder summary: 'Delete a model instance by {{id}} from the data source.' operationId: InterVrentityorder.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: - InterVrentityorder summary: >- Patch attributes for a model instance and persist it into the data source. operationId: InterVrentityorder.prototype.patchAttributes parameters: - name: id in: path description: InterVrentityorder 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/InterVrentityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrentityorder' deprecated: false '/InterVrentityorders/{id}/replace': post: tags: - InterVrentityorder summary: >- Replace attributes for a model instance and persist it into the data source. operationId: 'InterVrentityorder.replaceById__post_InterVrentityorders_{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/InterVrentityorder' responses: '200': description: Request was successful schema: $ref: '#/definitions/InterVrentityorder' deprecated: false /InterVrentityorders/findOne: get: tags: - InterVrentityorder summary: Find first instance of the model matched by filter from the data source. operationId: InterVrentityorder.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/InterVrentityorder' deprecated: false /InterVrentityorders/update: post: tags: - InterVrentityorder summary: 'Update instances of the model matched by {{where}} from the data source.' operationId: InterVrentityorder.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/InterVrentityorder' 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 /InterVrentityorders/count: get: tags: - InterVrentityorder summary: Count instances of the model matched by where from the data source. operationId: InterVrentityorder.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 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 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 MapShanghai: properties: id: maxLength: 36 type: string city: maxLength: 100 type: string name: maxLength: 100 type: string value: maxLength: 45 type: string additionalProperties: false MapChengdu: properties: id: maxLength: 36 type: string city: maxLength: 100 type: string name: maxLength: 100 type: string value: maxLength: 45 type: string additionalProperties: false MapGuangzhou: properties: id: maxLength: 36 type: string city: maxLength: 100 type: string name: maxLength: 100 type: string value: maxLength: 45 type: string additionalProperties: false MapBeijing: properties: id: maxLength: 36 type: string city: maxLength: 100 type: string name: maxLength: 100 type: string value: maxLength: 45 type: string additionalProperties: false MapShenzhen: properties: id: maxLength: 36 type: string city: maxLength: 100 type: string name: maxLength: 100 type: string value: maxLength: 45 type: string additionalProperties: false MapCity: properties: id: maxLength: 36 type: string city: maxLength: 255 type: string name: maxLength: 255 type: string value: maxLength: 45 type: string additionalProperties: false RuipengTest: properties: id: maxLength: 36 type: string name: maxLength: 255 type: string additionalProperties: false EducBrowse2: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false EducStudent1: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false EducStudent2: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false EducCourse1: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false EducCourse2: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false EducTeachers: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false EducWanpan: properties: id: maxLength: 36 type: string name: maxLength: 50 type: string value: type: number format: double additionalProperties: false EducWeite: properties: id: maxLength: 36 type: string name: maxLength: 50 type: string value: type: number format: double additionalProperties: false EducZhiyue: properties: id: maxLength: 36 type: string name: maxLength: 50 type: string value: type: number format: double additionalProperties: false EducMeilian: properties: id: maxLength: 36 type: string name: maxLength: 50 type: string value: type: number format: double additionalProperties: false EducForteachers: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false EducDoctor: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false EducDoctorass: 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: 3 type: string value: type: number format: double required: - name additionalProperties: false EducCourse5: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false HosAccrual: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double required: - name additionalProperties: false BillCangku: properties: id: maxLength: 36 type: string name: maxLength: 255 type: string value: type: number format: double required: - value additionalProperties: false BillMendian: properties: id: maxLength: 36 type: string name: maxLength: 255 type: string value: type: number format: double required: - value additionalProperties: false BillQuanguo: properties: id: maxLength: 36 type: string name: maxLength: 255 type: string value: type: number format: double required: - value additionalProperties: false BillRevenuetotal: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false BillRevenueyesterday: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double required: - name additionalProperties: false BillOrdertotal: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name - value additionalProperties: false BillOrderyesterday: properties: id: maxLength: 36 type: string name: maxLength: 6 type: string value: type: number format: double required: - name - value additionalProperties: false BillBduan: properties: id: maxLength: 36 type: string name: maxLength: 255 type: string value: type: number format: double required: - value additionalProperties: false BillOrder1: properties: id: maxLength: 36 type: string name: maxLength: 200 type: string value: type: number format: double additionalProperties: false BillOrder2: properties: id: maxLength: 36 type: string name: maxLength: 200 type: string value: type: number format: double additionalProperties: false BillOrder3: properties: id: maxLength: 36 type: string name: maxLength: 200 type: string value: type: number format: double additionalProperties: false BillOrder4: properties: id: maxLength: 36 type: string name: maxLength: 200 type: string value: type: number format: double additionalProperties: false Atest: properties: id: maxLength: 36 type: string name: maxLength: 100 type: string value1: type: number format: double value2: type: number format: double value3: type: number format: double required: - value1 additionalProperties: false InterBaidu: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false InterBzhan: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false InterDogcat: properties: id: maxLength: 36 type: string name: maxLength: 50 type: string value: type: number format: double additionalProperties: false InterDouyin: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false InterQq: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false InterToutiao: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false InterWeibo: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false InterZhihu: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false InterDoctor: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false InterTengxun: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false InterMiaopai: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double required: - name additionalProperties: false InterTotal: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double required: - name additionalProperties: false InterYesterday: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double required: - name additionalProperties: false BillEachbrands: properties: id: maxLength: 36 type: string value1: maxLength: 200 type: string value2: type: number format: double value3: maxLength: 6 type: string additionalProperties: false BillCategory: properties: id: maxLength: 36 type: string name: maxLength: 200 type: string value1: type: number format: double value2: maxLength: 2 type: string value3: maxLength: 55 type: string required: - value2 additionalProperties: false BillShop: properties: id: maxLength: 36 type: string name: maxLength: 200 type: string value1: type: number format: double value2: maxLength: 2 type: string value3: maxLength: 55 type: string required: - value2 additionalProperties: false AnotherForteacher: properties: id: maxLength: 36 type: string name: maxLength: 65535 type: string value1: maxLength: 65535 type: string value2: maxLength: 4294967295 type: string img: maxLength: 65535 type: string additionalProperties: false AnotherTeacher: properties: id: maxLength: 36 type: string name: maxLength: 65535 type: string value1: maxLength: 65535 type: string value2: maxLength: 4294967295 type: string img: maxLength: 65535 type: string img1: maxLength: 500 type: string img2: maxLength: 500 type: string additionalProperties: false HosCasereturn: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosCuscnt: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosClientsource: properties: id: maxLength: 36 type: string area: maxLength: 101 type: string value0: type: number format: double value1: type: number format: double value2: type: number format: double value3: type: number format: double value4: type: number format: double value5: type: number format: double value6: type: number format: double value7: type: number format: double value8: type: number format: double value9: type: number format: double value10: type: number format: double additionalProperties: false HosCosmetology: properties: id: maxLength: 36 type: string name: maxLength: 6 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosDaycase: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosEachareacase: properties: id: maxLength: 36 type: string name: maxLength: 101 type: string value: type: number format: double area: maxLength: 256 type: string additionalProperties: false HosEachareahospitals: properties: id: maxLength: 36 type: string name: maxLength: 256 type: string value: type: number format: double area: maxLength: 3 type: string required: - value additionalProperties: false HosFlownum: properties: id: maxLength: 36 type: string name: maxLength: 8 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosEachrevenue: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosJiancha: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosMeirong: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosQita: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosNewcase: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosOther: properties: id: maxLength: 36 type: string name: maxLength: 8 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosOldcase: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosRevenue: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double year: type: number format: double area: maxLength: 101 type: string required: - year additionalProperties: false HosShangpin: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosThismonthfirst: properties: id: maxLength: 36 type: string value: type: number format: double area: maxLength: 101 type: string additionalProperties: false HosThisyearsecond: properties: id: maxLength: 36 type: string value: type: number format: double area: maxLength: 101 type: string additionalProperties: false HosThisyearfirst: properties: id: maxLength: 36 type: string value: type: number format: double area: maxLength: 101 type: string additionalProperties: false HosThismonthsecond: properties: id: maxLength: 36 type: string value: type: number format: double area: maxLength: 101 type: string additionalProperties: false HosTodaycase: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosTotalcase: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosYiliao: properties: id: maxLength: 36 type: string name: maxLength: 4 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false HosAccrualday: properties: id: maxLength: 36 type: string value: type: number format: double area: maxLength: 101 type: string required: - value additionalProperties: false HosAccrualmonth: properties: id: maxLength: 36 type: string value: type: number format: double area: maxLength: 101 type: string required: - value additionalProperties: false HosGoods: properties: id: maxLength: 36 type: string name: maxLength: 6 type: string value: type: number format: double area: maxLength: 101 type: string required: - name additionalProperties: false InterKuanghuan: properties: id: maxLength: 36 type: string name: maxLength: 100 type: string value1: type: number format: double value2: type: number format: double value3: type: number format: double additionalProperties: false InterKuanghuanrevenue: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double additionalProperties: false InterQijianorder: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double year: type: number format: double additionalProperties: false InterQijianrevenue: properties: id: maxLength: 36 type: string name: maxLength: 5 type: string value: type: number format: double year: type: number format: double additionalProperties: false HosRegnummonth: properties: id: maxLength: 36 type: string value: type: number format: double required: - value additionalProperties: false HosRegnumday: properties: id: maxLength: 36 type: string value: type: number format: double required: - value additionalProperties: false InterVrentityorder: properties: id: maxLength: 36 type: string name: maxLength: 3 type: string value: type: number format: double year: maxLength: 2 type: string required: - year 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)