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 /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 /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 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 DashboardHospitalBaseInformation: properties: 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: type: number format: double clinicName: maxLength: 100 type: string clinicShortname: maxLength: 100 type: string lng: type: number format: double lat: type: number format: double id: maxLength: 100 type: string 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 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)